var roomDetails =
[ 
    {'nodeID':'room10665101', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Wake Up Service/Alarm Clock, Iron, Radio, Ironing Facilities, Toilet, Bathroom, Heating, Carpeted Floor, LCD /Plasma /Flat-screen TV, Alarm Clock, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room125799', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>A pretty room with an inter-connecting door to a twin room.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Wake Up Service/Alarm Clock, Iron, Radio, Ironing Facilities, Toilet, Bathroom, Heating, Carpeted Floor, Interconnecting Room(s) available, LCD /Plasma /Flat-screen TV, View (sea, garden, landmark, etc.), Alarm Clock.</p>', 'clickTest':false},
    {'nodeID':'room125797', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This room has one double bed plus a 2\' 6&quot; bed suitable for a child under 12.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Wake Up Service/Alarm Clock, Radio, Ironing Facilities, Toilet, Bathroom, Heating, Carpeted Floor, LCD /Plasma /Flat-screen TV, View (sea, garden, landmark, etc.), Alarm Clock, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room104427', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Shower, Bath, TV, Hairdryer, Wake Up Service/Alarm Clock, Iron, Radio, Ironing Facilities, Toilet, Bathroom, Heating, Carpeted Floor, LCD /Plasma /Flat-screen TV, Alarm Clock.</p>', 'clickTest':false},
    {'nodeID':'room104426', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Shower, TV, Hairdryer, Wake Up Service/Alarm Clock, Iron, Radio, Ironing Facilities, Toilet, Bathroom, Heating, Carpeted Floor, LCD /Plasma /Flat-screen TV, Alarm Clock, Electric Kettle.</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;
    }
} 


