var roomDetails =
[ 
    {'nodeID':'room63753', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Super deluxe double rooms are very modern and are simply but beautifully furnished. The rooms have stunning panoramic views over Ventnor Bay.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Balcony, Radio, Ironing Facilities, Seating Area, Bathroom Amenities, Toilet, Heating, Bath or Shower, View (sea, garden, landmark, etc.).</p>', 'clickTest':false},
    {'nodeID':'room63613', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Deluxe double rooms are beautifully furnished to a high modern standard. The rooms are situated on the first floor with breathtaking panoramic views over Ventnor Bay. Unlike the super deluxe double rooms, the deluxe double rooms do not have a balcony.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Radio, Ironing Facilities, Seating Area, Bathroom Amenities, Toilet, Bathroom, Heating, Slippers, Bath or Shower, Carpeted Floor, Guest Toilet, View (sea, garden, landmark, etc.), Alarm Clock.</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;
    }
} 


