var roomDetails =
[ 
    {'nodeID':'room3852', 'description':'', '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, Heating.</p>', 'clickTest':false},
    {'nodeID':'room1204', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This en suite double bedroom with a balcony overlooks Towan Beach, the harbour and Newquay\'s famous Island House. Room has a colour TV, hairdryer and tea/coffee making facilities. A minimum 2 night stay is required. During July and August there are only weekly bookings available.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Wake Up Service/Alarm Clock, Balcony, Radio, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room1202', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>The superior double room is fully en suite with views over Towan Beach and the harbour. Room has a colour TV, tea/coffee making facilities, a hairdryer, mini cooler and trouser press. A minimum 2 night stay is required. During July and August, the rooms are available for weekly bookings only. The hotel is non-smoking throughout.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Wake Up Service/Alarm Clock, Radio, Toilet, 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;
    }
} 


