var roomDetails =
[ 
    {'nodeID':'room11460024', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Pay TV, TV, Air Conditioning, Hairdryer, Wake Up Service/Alarm Clock, Work Desk, Seating Area, Toilet, Heating, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room11460022', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This cosy room offers a direct-dial telephone, coffee and tea provisions, an LCD TV, in-room safe and 24-hour room service.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Safety Deposit Box, Pay TV, TV, Air Conditioning, Hairdryer, Wake Up Service/Alarm Clock, Work Desk, Seating Area, Toilet, Heating, Satellite TV, Bath or Shower, Interconnecting Room(s) available.</p>', 'clickTest':false},
    {'nodeID':'room9718', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>The contemporary styled business friendly rooms have plenty of added extras. Business friendly rooms offer a larger room with modern lighting and workspace. Some have picturesque views over the river and each has upgraded toiletries, use of bathrobes and a complimentary Independent newspaper. All business friendly rooms are non-smoking double rooms.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Pay TV, TV, Air Conditioning, Hairdryer, Wake Up Service/Alarm Clock, Radio, Work Desk, Ironing Facilities, Seating Area, Toilet, Heating, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room9716', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>These comfortable en suite rooms have a three-quarter-size bed (1.22 metres wide).</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Pay TV, TV, Telephone, Air Conditioning, Hairdryer, Wake Up Service/Alarm Clock, Radio, Work Desk, Seating Area, Toilet, Heating, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room9548', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Standard en suite double rooms. Double room with en suite facilities, some with views over the river.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Pay TV, TV, Air Conditioning, Hairdryer, Wake Up Service/Alarm Clock, Work Desk, Seating Area, Toilet, Heating, 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;
    }
} 


