var roomDetails =
[ 
    {'nodeID':'room104926', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This special offer includes accommodation in a standard double room at single occupancy business rates. Amherst\'s usual high quality is guaranteed. Some rooms have side sea views. Free upgrades are given when possible, subject to availability. This rate is not available during conferences or during public holidays.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Work Desk, Ironing Facilities, Seating Area, DVD Player, CD Player, Fan, Toilet, Heating, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room83458', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Amherst does not have any single rooms. The quoted price is for accommodation in a standard double room at single occupancy rates. Guests may also be accommodated in a junior suite and free upgrades are given when possible, subject to availability.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Telephone, Hairdryer, Work Desk, Ironing Facilities, DVD Player, CD Player, Fan, Toilet, Heating, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room80685', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>All of the junior suites have a king-size bed, a sofa, a table and chairs, and a digital widescreen TV. The suites have side sea views.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Work Desk, Ironing Facilities, Seating Area, DVD Player, CD Player, Fan, Toilet, Heating, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room80683', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Telephone, Hairdryer, Work Desk, Ironing Facilities, DVD Player, CD Player, Fan, 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;
    }
} 


