var roomDetails =
[ 
    {'nodeID':'room3696', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Most rooms have direct dial telephones.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Wake Up Service/Alarm Clock.</p>', 'clickTest':false},
    {'nodeID':'room3695', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Most rooms have direct dial telephones. Shower in room; toilet nearby.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Wake Up Service/Alarm Clock.</p>', 'clickTest':false},
    {'nodeID':'room3254', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Most rooms have direct dial telephones. Shower in room; toilet nearby.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Wake Up Service/Alarm Clock.</p>', 'clickTest':false},
    {'nodeID':'room3253', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Most rooms have direct dial telephones.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Wake Up Service/Alarm Clock, Toilet, Bathroom.</p>', 'clickTest':false},
    {'nodeID':'room3252', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Rooms have direct dial telephones.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Wake Up Service/Alarm Clock, Toilet, Bathroom.</p>', 'clickTest':false},
    {'nodeID':'room3251', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Most rooms have direct dial telephone. Some of these rooms are accessible without using stairs.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Wake Up Service/Alarm Clock, Toilet, Bathroom.</p>', 'clickTest':false},
    {'nodeID':'room3250', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Some rooms have direct dial telephones.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Wake Up Service/Alarm Clock, Toilet, Bathroom.</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;
    }
} 

