var roomDetails =
[ 
    {'nodeID':'room10395909', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>The largest room category at Heathlands Hotel. A private bathroom, TV and tea/coffee making facilities are included.</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, Bathroom, Heating, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room10395907', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Back-facing room with windows. Accommodates 2 adults and 2 children. Please confirm group number when booking.</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, Bathroom, Heating, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room10395906', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Accommodates 2 adults and 1 child. Please confirm group number when booking. There is no capacity for extra beds in this room type.</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, Bathroom, Heating, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room10395905', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>There is no capacity for extra beds in this room type.</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, Bathroom, Heating, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room10395903', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>There is no capacity for extra beds in this room type.</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, Bathroom, Heating, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room10395901', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>There is no capacity for extra beds in this room type.</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, Bathroom, Heating, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room85406', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Back-facing room with windows. There is no capacity for extra beds in this room type.</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, Bathroom, Heating, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room85404', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Back-facing room with windows. There is no capacity for extra beds in this room type.</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, Bathroom, Heating, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room85401', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Back-facing room with windows.</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, Bathroom, Heating, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room49617', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Spacious, front-facing room with windows and a seating area.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Seating Area, Toilet, Bathroom, Heating, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room49607', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Spacious, front-facing room with windows and a seating area.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Seating Area, Toilet, Bathroom, Heating, Electric Kettle.</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;
    }
} 


