var roomDetails =
[ 
    {'nodeID':'room24692', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Relax in any of our well appointed bedrooms offering facilities of the highest standard. In addition to the usual appointments every room contains direct dialling telephone, remote control colour tv with 4 channel radio and complimentary refreshments. All have en-suite shower/bathroom.</p>', 'amenities':'', 'clickTest':false},
    {'nodeID':'room12397', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Relax in any of our well appointed bedrooms offering facilities of the highest standard. In addition to the usual appointments every room contains direct dialling telephone, remote control colour tv with 4 channel radio and complimentary refreshments. All have en-suite shower/bathroom</p>', 'amenities':'', 'clickTest':false},
    {'nodeID':'room12396', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Relax in any of our well appointed bedrooms offering facilities of the highest standard. In addition to the usual appointments every room contains direct dialling telephone, remote control colour tv with 4 channel radio and complimentary refreshments. All have en-suite shower/bathroom</p>', 'amenities':'', 'clickTest':false},
    {'nodeID':'room8242', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Relax in any of our well appointed bedrooms offering facilities of the highest standard. In addition to the usual appointments every room contains direct dialling telephone, remote control colour tv with 4 channel radio and complimentary refreshments. All have en-suite shower/bathroom</p>', 'amenities':'', 'clickTest':false},
    {'nodeID':'room5434', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Relax in any of our well appointed bedrooms offering facilities of the highest standard. In addition to the usual appointments every room contains direct dialling telephone, remote control colour tv with 4 channel radio and complimentary refreshments. All have en-suite shower/bathroom.</p>', 'amenities':'', '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;
    }
} 


