var roomDetails =
[ 
    {'nodeID':'room10227904', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Christmas Eve - Afternoon tea on arrival. Welcome drinks reception. Three-course dinner with resident pianist. Christmas Day - Full English breakfast. Four-course traditional Christmas Day luncheon. Queen\'s speech followed by afternoon tea and cake. Buffet dinner followed by a festive quiz. Boxing Day - Full English breakfast. Hot and cold buffet luncheon. Afternoon tea with sweet mince pies. Three-course farewell dinner with dancing to the sounds of the 40\'s, 50\'s &amp; 60\'s from our resident DJ. 27th December - Full English breakfast prior to departure. Full prepayment will be taken on the day of the booking. All prepayments are non-refundable.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Hairdryer, Wake Up Service/Alarm Clock, Toilet.</p>', 'clickTest':false},
    {'nodeID':'room158598', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Rate include full use of the leisure facilities.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Hairdryer, Wake Up Service/Alarm Clock, Toilet.</p>', 'clickTest':false},
    {'nodeID':'room158597', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Rate includes full use of the leisure facilities.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Hairdryer, Wake Up Service/Alarm Clock, Toilet.</p>', 'clickTest':false},
    {'nodeID':'room87901', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Rate includes use of the indoor leisure facilities.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Hairdryer, Wake Up Service/Alarm Clock, Toilet.</p>', 'clickTest':false},
    {'nodeID':'room45624', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Rate include full use of the leisure facilities.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Hairdryer, Wake Up Service/Alarm Clock, Toilet.</p>', 'clickTest':false},
    {'nodeID':'room10307', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Rates are inclusive of use of the indoor leisure facilities.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Hairdryer, Wake Up Service/Alarm Clock, Toilet.</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;
    }
} 


