var roomDetails =
[ 
    {'nodeID':'room53617', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Radio, Work Desk, Bathroom Amenities, Toilet, Video, Heating.</p>', 'clickTest':false},
    {'nodeID':'room3240', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Our bedrooms are all furnished and decorated to a very high standard and all have bath and/or shower rooms en-suite. Each room has a direct dial telephone with alarm clock/radio, colour television, hairdryer and tea and extensive hostess tray. The room rate for our family room covers upto 2 adults and two children, or upto 3 adults. This room has TV with Video and an en suite with bath and shower over</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Fax, Hairdryer, Wake Up Service/Alarm Clock, Radio, Work Desk, Bathroom Amenities, Toilet, Video, Heating.</p>', 'clickTest':false},
    {'nodeID':'room2722', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Radio, Work Desk, Bathroom Amenities, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room2411', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Our bedrooms are all furnished and decorated to a very high standard and all have bath and/or shower rooms en-suite. This room has a direct dial telephone with alarm clock/radio, colour television, hairdryer, tea and coffee making facilities.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Telephone, Fax, Hairdryer, Radio, Toilet, Video, Heating.</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;
    }
} 


