var roomDetails =
[ 
    {'nodeID':'room12074406', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>With a Nespresso coffee machine, large LCD TV and an iPod dock. Also features a spacious work area with free internet access.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Minibar, Shower, Safety Deposit Box, Pay TV, Telephone, Air Conditioning, Hairdryer, Iron, Bathrobe, Radio, Work Desk, Ironing Facilities, Bathroom Amenities, Toilet, Bathroom, Heating, Slippers, Satellite TV, Bath or Shower, Laptop Safe Box, LCD /Plasma /Flat-screen TV.</p>', 'clickTest':false},
    {'nodeID':'room12074404', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>With a large work area and a 26-inch LCD TV. This room can also accommodate 2 adults and 2 children sharing up to the age of 15.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Minibar, Shower, Safety Deposit Box, Pay TV, Telephone, Air Conditioning, Hairdryer, Iron, Radio, Work Desk, Ironing Facilities, Bathroom Amenities, Toilet, Bathroom, Heating, Satellite TV, Bath or Shower, Laptop Safe Box, 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;
    }
} 


