var roomDetails =
[ 
    {'nodeID':'room1034511', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This room includes a bathroom with a shower. It also comes with a selection of extras including a morning paper and coffee making facilities. Please note that a bathroom with a bath can be requested. However, this is subject to availability and cannot be guaranteed.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Minibar, Shower, Safety Deposit Box, Telephone, Air Conditioning, Hairdryer, Wake Up Service/Alarm Clock, Iron, Bathrobe, Radio, Work Desk, Bathroom Amenities, Toilet, Patio, Bathroom, Heating, Slippers, Laptop Safe Box, LCD /Plasma /Flat-screen TV, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room1034509', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This room features unique décor, flat-screen TV and a minibar. It also has a private bathroom with a shower.</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, Iron, Radio, Work Desk, Toilet, Patio, Bathroom, Heating, Laptop Safe Box, LCD /Plasma /Flat-screen TV.</p>', 'clickTest':false},
    {'nodeID':'room1034508', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This room features unique décor, flat-screen TV and a minibar. It also has a private bathroom with a shower.</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, Iron, Radio, Work Desk, Toilet, Patio, Bathroom, Heating, Laptop Safe Box, LCD /Plasma /Flat-screen TV.</p>', 'clickTest':false},
    {'nodeID':'room1034507', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This room features unique décor, flat-screen TV and a minibar. It also has a private bathroom with a shower.</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, Iron, Radio, Work Desk, Toilet, Patio, Bathroom, Heating, Laptop Safe Box, LCD /Plasma /Flat-screen TV.</p>', 'clickTest':false},
    {'nodeID':'room1034506', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This room features unique décor, flat-screen TV and a minibar. It also has a private bathroom with a shower.</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, Iron, Radio, Work Desk, Toilet, Patio, Bathroom, Heating, 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;
    }
} 


