var roomDetails =
[ 
    {'nodeID':'room9190013', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This room has simple, contemporary décor. It features a rain-effect shower, free minibar, free Wi-Fi and a flat-screen TV.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Minibar, Shower, Safety Deposit Box, Telephone, Air Conditioning, Hairdryer, Bathroom Amenities, Toilet, Bathroom, Heating, LCD /Plasma /Flat-screen TV, Wooden / Parquet floor.</p>', 'clickTest':false},
    {'nodeID':'room9190012', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This stylish room has contemporary décor and coloured lighting. It features a rain-effect shower, free minibar, free Wi-Fi and a flat-screen TV. Guests receive free access to the hotel spa.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Minibar, Shower, Safety Deposit Box, Telephone, Air Conditioning, Hairdryer, Bathrobe, Bathroom Amenities, Toilet, Bathroom, Heating, Slippers, LCD /Plasma /Flat-screen TV, Wooden / Parquet floor.</p>', 'clickTest':false},
    {'nodeID':'room9190001', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This room has simple, contemporary décor. It features a rain-effect shower, free minibar, free Wi-Fi and a flat-screen TV.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Minibar, Shower, Safety Deposit Box, Telephone, Air Conditioning, Hairdryer, Bathrobe, Bathroom Amenities, Toilet, Bathroom, Heating, Slippers, LCD /Plasma /Flat-screen TV, 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;
    }
} 


