var roomDetails =
[ 
    {'nodeID':'room73495', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>The rooms have all been completely refurbished. The rooms are located over 3 floors; please note that the hotel does not have a lift. You may request a room on the lower floors but these are subject to availibility.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Work Desk, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room7052', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Our bedrooms offer a home from home experience, with the majority of the rooms facing the sea. There are some superb views of Cardigan Bay with panoramic sunsets. Double rooms are located over 3 floors; please note that the hotel does not have a lift. You may request a room on the lower floors but this is subject to availability.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Work Desk, Toilet, Heating, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room7051', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>These bedrooms offer a home from home experience. The majority of the rooms are facing the sea. The twin rooms are located over 3 floors; please note that the hotel does not have a lift. You may request a room on the lower floors but these are subject to availability.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Work Desk, Toilet, Heating.</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;
    }
} 

