var roomDetails =
[ 
    {'nodeID':'room11852503', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Offer includes evening dinner, bed and breakfast, and includes afternoon teas on 2 of the days as well as Christmas Day lunch. Valid from 24 December to 26 December 2011.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Toilet, Bathroom, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room11852501', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Elegant room with traditional furnishings, a TV, and facilities for making tea and coffee.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Toilet, Bathroom, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room3982', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Situated in the old inn, with period features and scenic views.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Toilet, Bathroom, Electric Kettle.</p>', 'clickTest':false}
];

// Example of roomDetails contents:
//
// var roomDetails =
// [ 
//     {'nodeID':'room0', 'description':'room0 description', 'amenities':'room 0 amenities', 'clickTest':false},
//     {'nodeID':'room1', 'description':'room1 description', 'amenities':'room 1 amenities', 'clickTest':false},
// ];

function secondClicktest(roomID) {
    var theroom = roomDetails[roomID];

    if (theroom["clickTest"] == false)
    {
        document.getElementById(theroom["nodeID"]).innerHTML=theroom["description"]+" "+theroom["amenities"];
        return theroom["clickTest"] = true;
    } else
    {
        document.getElementById(theroom["nodeID"]).innerHTML="";
        return theroom["clickTest"] = false;
    }
} 


