var roomDetails =
[ 
    {'nodeID':'room12485303', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Christmas Eve: - Afternoon tea in front of the log fire in The Falconer\'s bar. - Table d\'hôte dinner served in the Ingfield Restaurant. Christmas Day: - Full English breakfast. - 5-course traditional Christmas Day lunch, served in the Ingfield Restaurant from 12.00. - A carved buffet served in the restaurant in the evening. Boxing Day Full English breakfast, followed by time out to enjoy the local walks &amp; attractions, Table d\'hôte Dinner is served in the Ingfield restaurant. Tuesday 27th December Following full English breakfast it is time to say goodbyes and wish you a safe journey.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Trouser Press, Radio, Seating Area, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room99186', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>All four-poster rooms have a private bathroom, and some feature a wide-screen TV as well as the facilities listed below. Two of the four-poster rooms have views over the bowling green, gardens and the rolling hills to the front of the hotel.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Trouser Press, Radio, Seating Area, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room7560', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Individually styled room with a private bathroom and all the facilities listed below. </p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Fax, Hairdryer, Wake Up Service/Alarm Clock, Trouser Press, Radio, Seating Area, 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;
    }
} 


