var roomDetails =
[ 
    {'nodeID':'room5211', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Double non smoking room containing one double bed. Some rooms have views overlooking the river or gardens and are available if requested in advance. Unparalleled views of the River Humber, Humber Bridge and Lincolnshire. Some rooms overlooking the gardens.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Telephone, Hairdryer, Trouser Press.</p>', 'clickTest':false},
    {'nodeID':'room5210', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Twin room containing two single beds. Over a third of our rooms have a view of the River or Gardens. These are available if requested in advance. Over a third of the rooms have a view of the River Humber, Humber Bridge and Lincolnshire. Some rooms are overlooking the gardens.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Telephone, Hairdryer, Trouser Press, DVD Player.</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;
    }
} 


