var roomDetails =
[ 
    {'nodeID':'room1024311', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>These rooms are located on the 3rd and 4th floor of the building.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Safety Deposit Box, Telephone, Hairdryer, Shared Bathroom, Patio, Shared Toilet, LCD /Plasma /Flat-screen TV.</p>', 'clickTest':false},
    {'nodeID':'room1024310', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Shower, Telephone, Hairdryer, Toilet, LCD /Plasma /Flat-screen TV.</p>', 'clickTest':false},
    {'nodeID':'room1024308', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This cosy room has 2 single beds. Please note that this room is very small in size.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Shower, Safety Deposit Box, Telephone, Hairdryer, Toilet, Patio, Bathroom, LCD /Plasma /Flat-screen TV.</p>', 'clickTest':false},
    {'nodeID':'room1024307', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This spacious room has either a view of the Rijksmuseum or the city.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Shower, Telephone, Hairdryer, Toilet, Bathroom, LCD /Plasma /Flat-screen TV, View (sea, garden, landmark, etc.).</p>', 'clickTest':false},
    {'nodeID':'room1024306', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This room benefits from a spacious layout.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Shower, Safety Deposit Box, Telephone, Hairdryer, Toilet, Patio, Bathroom, LCD /Plasma /Flat-screen TV.</p>', 'clickTest':false},
    {'nodeID':'room1024303', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Shower, Safety Deposit Box, Telephone, Hairdryer, Toilet, Bathroom, LCD /Plasma /Flat-screen TV.</p>', 'clickTest':false},
    {'nodeID':'room1024301', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Safety Deposit Box, Telephone, Hairdryer, Shared Bathroom, Shared Toilet, LCD /Plasma /Flat-screen TV.</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;
    }
} 


