var roomDetails =
[ 
    {'nodeID':'room76994', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>A king-size double room with a large luxury bathroom (including power shower and bidet). The room overlooks the front garden. This room may also be used as a family room, as it can accommodate up to 2 extra beds. There is room for a cot, but these cannot be supplied by Rathlin Country House.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Hairdryer, Wake Up Service/Alarm Clock, Bathrobe, Radio, Refrigerator, Work Desk, DVD Player, CD Player, Toilet, Bathroom, Extra Long Beds (&gt; 2 metres), Heating, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room76992', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This room has a steam shower. There is space in this room for 1 extra bed only. There is room a cot, but these cannot be supplied by Rathlin Country House.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Wake Up Service/Alarm Clock, Bathrobe, Radio, Refrigerator, Work Desk, DVD Player, CD Player, Toilet, Bathroom, Heating, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room76984', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This room has a Whirlpool bath. There is space in this room for 1 extra bed only. There is room a cot, but these cannot be supplied by Rathlin Country House.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Wake Up Service/Alarm Clock, Jacuzzi, Bathrobe, Jacuzzi/Whirlpool, Radio, Refrigerator, Work Desk, DVD Player, CD Player, Toilet, Bathroom, Heating, Satellite 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;
    }
} 

