var roomDetails =
[ 
    {'nodeID':'room10545103', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Large, luxury suite some with separate lounge. Molton Brown toiletries and parkland views.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Bath, Safety Deposit Box, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Trouser Press, Bathrobe, Radio, Work Desk, Ironing Facilities, Toilet, Heating, Slippers, Satellite TV, Bath or Shower.</p>', 'clickTest':false},
    {'nodeID':'room10545102', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Cot available, but no extra beds.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Bath, Safety Deposit Box, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Trouser Press, Bathrobe, Radio, Work Desk, Ironing Facilities, Toilet, Heating, Slippers, Satellite TV, Bath or Shower.</p>', 'clickTest':false},
    {'nodeID':'room10545101', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Large room with Molton Brown toiletries; some with separate lounge area. View: lake/lawns or chapel.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, Safety Deposit Box, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Trouser Press, Bathrobe, Radio, Work Desk, Ironing Facilities, Toilet, Heating, Slippers, Satellite TV, Bath or Shower.</p>', 'clickTest':false},
    {'nodeID':'room12680', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Cot available, but no extra beds.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Bath, Safety Deposit Box, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Trouser Press, Bathrobe, Radio, Work Desk, Ironing Facilities, Toilet, Heating, Slippers, Satellite TV, Bath or Shower.</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;
    }
} 

