var roomDetails =
[ 
    {'nodeID':'room23154604', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Situated on the first and second floors, these rooms have partial sea views, and feature a 32-inch flat-screen TV.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Hairdryer, Radio, Ironing Facilities, Toilet, Bathroom, Heating, Bath or Shower, Carpeted Floor, LCD /Plasma /Flat-screen TV, Alarm Clock.</p>', 'clickTest':false},
    {'nodeID':'room23154603', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Situated on the first and second floors, these spacious rooms have partial sea views, and feature a 32-inch flat-screen TV.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Hairdryer, Radio, Ironing Facilities, Toilet, Bathroom, Heating, Bath or Shower, Carpeted Floor, LCD /Plasma /Flat-screen TV, Alarm Clock.</p>', 'clickTest':false},
    {'nodeID':'room23154602', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Situated on the first and second floors, these spacious rooms have partial sea views, and feature a 32-inch flat-screen TV.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Hairdryer, Radio, Ironing Facilities, Toilet, Bathroom, Heating, Bath or Shower, Carpeted Floor, LCD /Plasma /Flat-screen TV, Alarm Clock.</p>', 'clickTest':false},
    {'nodeID':'room23154601', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Situated on the first and second floors, these rooms do not offer any sea views but all are comfortably appointed and have a TV, hairdryer, and free toiletries.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Radio, Ironing Facilities, Toilet, Bathroom, Heating, Bath or Shower, Carpeted Floor, Alarm Clock.</p>', 'clickTest':false},
    {'nodeID':'room128792', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Situated on the first and second floors, these rooms do not offer any sea views but all are comfortably appointed and have a TV, hairdryer, and free toiletries.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Radio, Ironing Facilities, Toilet, Bathroom, Heating, Bath or Shower, 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;
    }
} 


