var roomDetails =
[ 
    {'nodeID':'room4715', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>All rooms have bath, shower, hair dryers, colour tv, with cable and terrestrial channels, radio, mini bar, direct dial telephones, modem points, tea and coffee making facilities and trouser presses. All single bedrooms overlook the River Tyne and the historic Swing Bridge.</p>', 'amenities':'', 'clickTest':false},
    {'nodeID':'room4714', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>All rooms have bath, shower, hair dryers, colour tv, with cable and terrestrial channels, radio, mini bar, direct dial telephones, modem points, tea and coffee making facilities and trouser presses. A select number of the bedrooms overlook the River Tyne and the historic Swing Bridge.</p>', 'amenities':'', 'clickTest':false},
    {'nodeID':'room4713', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>All rooms have bath, shower, hair dryers, colour tv, with cable and terrestrial channels, radio, mini bar, direct dial telephones, modem points, tea and coffee making facilities and trouser presses. A select number of the bedrooms overlook the River Tyne and the historic Swing Bridge.</p>', 'amenities':'', 'clickTest':false},
    {'nodeID':'room4369', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>All rooms have bath, shower, hair dryers, colour tv, with cable and terrestrial channels, radio, mini bar, direct dial telephones, modem points, tea and coffee making facilities and trouser presses. All single bedrooms overlook the River Tyne and the historic Swing Bridge.</p>', 'amenities':'', 'clickTest':false},
    {'nodeID':'room4368', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>All rooms have bath, shower, hair dryers, colour tv, with cable and terrestrial channels, radio, mini bar, direct dial telephones, modem points, tea and coffee making facilities and trouser presses. A select number of the bedrooms overlook the River Tyne and the historic Swing Bridge.</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;
    }
} 


