var roomDetails =
[ 
    {'nodeID':'room23148208', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>The 1 Deluxe bedroom, fully refurbished in 2011, has a large bay window and a new en suite shower. The room is very spacious and comfortable with all the equipment listed, including a flat-screen digital TV.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Shower, TV, Hairdryer, Radio, Refrigerator, Work Desk, Toilet, Heating, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room121024', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>These well-positioned, quiet rooms have a large bathroom, and are beautifully furnished with solid wood furniture, luxury towels, and an LCD TV with Freeview.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Shower, Bath, TV, Hairdryer, Radio, Refrigerator, Work Desk, Seating Area, Toilet, Bathroom, Heating, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room121005', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Features include luxury towels and a digital TV with Freeview.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Shower, TV, Hairdryer, Radio, Refrigerator, Work Desk, Toilet, Heating, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room121000', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Rooms feature a digital TV with Freeview channels, and come with luxury towels.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Shower, TV, Hairdryer, Radio, Refrigerator, Work Desk, Toilet, Heating, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room120983', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Features digital TV with Freeview, and luxury towels.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Shower, TV, Hairdryer, Radio, Refrigerator, Work Desk, Toilet, Heating, Carpeted Floor, 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;
    }
} 


