var roomDetails =
[ 
    {'nodeID':'room9144901', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This air-conditioned room includes satellite TV, a minibar and a CD player. Bathrooms include a hairdryer. Some rooms have a balcony, and safes are available to rent.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Minibar, Shower, Safety Deposit Box, Telephone, Air Conditioning, Hairdryer, Wake Up Service/Alarm Clock, Radio, Work Desk, Bathroom Amenities, CD Player, Toilet, Bathroom, Heating, Satellite TV, Bath or Shower, Laptop Safe Box, LCD /Plasma /Flat-screen TV, Soundproofing, Wooden / Parquet floor.</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;
    }
} 


