var roomDetails =
[ 
    {'nodeID':'room86764', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>The Coach House is set in the village of Thornham and the rooms either overlook the car park to the rear or tables and seating area outside to the front and onto the road.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Wake Up Service/Alarm Clock, Ironing Facilities, Toilet, Bathroom, Heating.</p>', 'clickTest':false},
    {'nodeID':'room84365', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>The Coach House is set in the village of Thornham and the rooms either overlook the car park to the rear or tables and seating area outside to the front and onto the road.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Wake Up Service/Alarm Clock, Ironing Facilities, Toilet, Bathroom, Heating, Bath or Shower.</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;
    }
} 


