var roomDetails =
[ 
    {'nodeID':'room70399', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Spacious rooms with a four-poster bed and spa bath.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Iron, Trouser Press, Jacuzzi/Whirlpool, Radio, Work Desk, Ironing Facilities, Bathroom Amenities, Toilet, Bathroom, Heating, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room70390', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Spacious rooms with a work desk, located in the courtyard buildings.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Iron, Trouser Press, Radio, Work Desk, Ironing Facilities, Bathroom Amenities, Toilet, Bathroom, Heating, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room70388', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Spacious rooms with a king-size bed and work desk.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Iron, Trouser Press, Radio, Work Desk, Ironing Facilities, Bathroom Amenities, Toilet, Bathroom, Heating, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room70375', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Iron, Radio, Ironing Facilities, Bathroom Amenities, Toilet, Bathroom, Heating, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room70373', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Iron, Radio, Ironing Facilities, Bathroom Amenities, 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;
    }
} 


