var roomDetails =
[ 
    {'nodeID':'room10840801', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Located on the 3rd floor, this room offers uninterrupted sea views over the channel. Tea and coffee making facilities are also included. </p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Seating Area, Toilet, Heating, Carpeted Floor, View (sea, garden, landmark, etc.), Alarm Clock.</p>', 'clickTest':false},
    {'nodeID':'room87364', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Located on the 1st, 2nd and 3rd floors, these rooms offer uninterrupted views across the channel. Each includes tea and coffee making facilities. </p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Seating Area, Toilet, Heating, Carpeted Floor, View (sea, garden, landmark, etc.), Alarm Clock.</p>', 'clickTest':false},
    {'nodeID':'room87363', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Room with partial sea view.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Seating Area, Toilet, Heating, Carpeted Floor, Alarm Clock.</p>', 'clickTest':false},
    {'nodeID':'room87362', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>These rooms are small rooms and are at the rear of the hotel. </p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Seating Area, Toilet, Heating, Carpeted Floor, Alarm Clock.</p>', 'clickTest':false},
    {'nodeID':'room87361', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Rooms at the side or back of the property. Some are on the ground floor.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Seating Area, Toilet, Heating, Carpeted Floor, Alarm Clock.</p>', 'clickTest':false},
    {'nodeID':'room87358', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Located on the 1st and 2nd floors, these rooms offer uninterrupted views across the English Channel. Tea and coffee making facilities are included. </p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Seating Area, Toilet, Heating, Carpeted Floor, View (sea, garden, landmark, etc.), Alarm Clock.</p>', 'clickTest':false},
    {'nodeID':'room87340', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Rooms at the side or back of the property. Some are on the ground floor.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Seating Area, Toilet, Heating, Carpeted Floor, 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;
    }
} 


