var roomDetails =
[ 
    {'nodeID':'room4318', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Spacious room with views of the seafront.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Wake Up Service/Alarm Clock, Radio, Toilet, Heating, View (sea, garden, landmark, etc.).</p>', 'clickTest':false},
    {'nodeID':'room3973', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>A comfortable twin room, with a private bathroom and a direct telephone, digital flat screen TV. Tea/coffee making facilities with courtesy tray are also provided.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, TV, Telephone, Wake Up Service/Alarm Clock, Radio, Heating.</p>', 'clickTest':false},
    {'nodeID':'room3972', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>A comfortable double room, with a private bathroom and a direct telephone, digital flat screen TV. Tea/coffee making facilities with courtesy tray are also provided.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, TV, Telephone, Wake Up Service/Alarm Clock, Radio, Heating, View (sea, garden, landmark, etc.).</p>', 'clickTest':false},
    {'nodeID':'room3971', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>A small and charming single room complete with a direct dial telephone, digital television. Also provided are tea/coffee making facilities with a courtesy tray. All the singles are with an inland view. </p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Wake Up Service/Alarm Clock, Radio, Toilet.</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;
    }
} 


