var roomDetails =
[ 
    {'nodeID':'room20074303', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Radio, Work Desk, Toilet, Bathroom, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room20074302', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Radio, Work Desk, Toilet, Bathroom, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room20074301', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Radio, Work Desk, Toilet, Bathroom, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room8598', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>All rooms have a flat-screen TV with Freeview channels. There is also a dial-up internet connection.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Radio, Work Desk, Toilet, Bathroom, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room8597', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>The room also has a computer point. </p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Radio, Work Desk, Toilet, Bathroom, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room8532', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>All rooms have a flat-screen TV with Freeview channels. A dial-up internet connection is also available. Each Double room has a sofa bed, which converts the room to a family room. Please contact the hotel after making your online reservation if you would like to use the sofa bed, or require an adjoining room or a room with disabled access. </p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Radio, Work Desk, Toilet, Bathroom, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room8057', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>All rooms have a flat-screen TV with Freeview channels. A dial-up internet connection is also available. Each Double room has a sofa bed, which converts the room to a family room. Please contact the hotel after making your online reservation if you would like to use the sofa bed, or if you require an adjoining room or a room with disabled access. </p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Radio, Work Desk, Toilet, Bathroom, 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;
    }
} 


