var roomDetails =
[ 
    {'nodeID':'room11919704', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Telephone, Hairdryer, Ironing Facilities, Toilet, Bathroom, LCD /Plasma /Flat-screen TV.</p>', 'clickTest':false},
    {'nodeID':'room11919703', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Telephone, Hairdryer, Ironing Facilities, Toilet, Bathroom, LCD /Plasma /Flat-screen TV.</p>', 'clickTest':false},
    {'nodeID':'room11919702', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Telephone, Hairdryer, Ironing Facilities, Toilet, Bathroom, LCD /Plasma /Flat-screen TV.</p>', 'clickTest':false},
    {'nodeID':'room11919701', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>All rooms are equipped with a flat-screen digital TV, free tea and coffee facilities, a desk area, free Wi-Fi access, and a private bathroom with complimentary toiletries. Wake up calls, a newspaper, an early breakfast and laundry service can all be arranged.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Telephone, Hairdryer, Ironing Facilities, Toilet, Bathroom, LCD /Plasma /Flat-screen TV.</p>', 'clickTest':false},
    {'nodeID':'room105651', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Suite has a super-king-sized bed, en suite bathroom, French windows leading to a personal terrace with patio furniture.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Balcony, Ironing Facilities, Toilet, Patio, Bathroom, LCD /Plasma /Flat-screen TV.</p>', 'clickTest':false},
    {'nodeID':'room105647', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>These spacious rooms feature a king-size bed and a spa bath.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Jacuzzi/Whirlpool, Ironing Facilities, Toilet, Bathroom, LCD /Plasma /Flat-screen TV.</p>', 'clickTest':false},
    {'nodeID':'room66777', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>All rooms are equipped with a flat-screen digital TV, free tea and coffee facilities, a desk area, free Wi-Fi access, and a private bathroom with complimentary toiletries. Wake up calls, a newspaper, an early breakfast and laundry service can all be arranged.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Telephone, Hairdryer, Ironing Facilities, Toilet, Bathroom, LCD /Plasma /Flat-screen TV.</p>', 'clickTest':false},
    {'nodeID':'room66775', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>All rooms are equipped with a flat-screen digital TV, free tea and coffee facilities, a desk area, free Wi-Fi access, and a private bathroom with complimentary toiletries. Wake up calls, a newspaper, an early breakfast and laundry service can all be arranged.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Telephone, Hairdryer, Ironing Facilities, Toilet, Bathroom, 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;
    }
} 


