var roomDetails =
[ 
    {'nodeID':'room1044118', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Spacious design room with a large desk.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, Pay TV, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Trouser Press, Bathrobe, Radio, Work Desk, Bathroom Amenities, Fan, Toilet, Bathroom, Heating, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room1044117', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Luxurious and large 1-bedroom suite including: -A Sensiq entertainment system -Private bathroom with rain shower -Nespresso Coffee maker -Exclusive mattress</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, Pay TV, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Trouser Press, Bathrobe, Radio, Work Desk, Bathroom Amenities, Fan, Toilet, Bathroom, Heating, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room1044116', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, Pay TV, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Trouser Press, Bathrobe, Radio, Work Desk, Bathroom Amenities, Fan, Toilet, Bathroom, Heating, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room1044104', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This spacious one-bedroom suite includes a 120 cm wide sofa bed suitable for 2 children under the age of 12. Please note that breakfast for the children is included in the rate. Also note that this room does not accommodate extra beds.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, Pay TV, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Trouser Press, Bathrobe, Radio, Work Desk, Bathroom Amenities, Fan, Toilet, Bathroom, Heating, Laptop Safe Box, Sofa Bed.</p>', 'clickTest':false},
    {'nodeID':'room1044103', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, Pay TV, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Trouser Press, Bathrobe, Radio, Work Desk, Bathroom Amenities, Fan, Toilet, Bathroom, Heating, Satellite 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;
    }
} 


