var roomDetails =
[ 
    {'nodeID':'room12109602', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Room rate is based upon 2 adults and 2 children sharing the room. If 4 adults book this room, there will be an additional cost. There is also room for a cot. This room requires a minimum 3-night booking for any public holiday period. One night bookings are not accepted in June, July and August.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Wake Up Service/Alarm Clock, Radio, DVD Player, Toilet, Bathroom, Heating.</p>', 'clickTest':false},
    {'nodeID':'room12109601', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>A minimum 3 nights booking for any bank holiday period. One night bookings will not be accepted in June, July or August.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Radio, Toilet, Bathroom, Heating.</p>', 'clickTest':false},
    {'nodeID':'room134', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Wake Up Service/Alarm Clock, Radio, DVD Player, Toilet, Bathroom, Heating.</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;
    }
} 


