var roomDetails =
[ 
    {'nodeID':'room11642405', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Rate is based on 2 people staying for a minimum of a 2-night stay or multiples thereof (4 nights, 6 nights, etc). Rate includes full English breakfast each morning and dinner on 1 night of the stay.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Toilet, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room11642404', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Most rooms have views of the hotels grounds or courtyard. </p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Toilet, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room158590', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Spacious, individually furnished suites featuring antiques and period pieces. Most rooms have stunning views of the hotels grounds or courtyard.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Hairdryer, Wake Up Service/Alarm Clock, Work Desk, Seating Area, Toilet.</p>', 'clickTest':false},
    {'nodeID':'room158589', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Most rooms have views of the hotels grounds or courtyard. </p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Work Desk, Seating Area, Toilet, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room87891', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Most rooms have views of the hotels grounds or courtyard. </p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Toilet, Satellite TV.</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;
    }
} 


