var roomDetails =
[ 
    {'nodeID':'room114787', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Refurbished room overlooking the Castell Valley.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Telephone, Fax, Wake Up Service/Alarm Clock, Radio, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room114784', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Telephone, Fax, Wake Up Service/Alarm Clock, Radio, Work Desk, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room1495', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>A refurbished room with double and single bed. Overlooking the countryside.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Telephone, Fax, Wake Up Service/Alarm Clock, Work Desk, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room1494', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Newly refurbished room with a lovely view of the valley and Cumbrian hills. Rooms are situated on the first and 2nd floors.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Telephone, Fax, Wake Up Service/Alarm Clock, Work Desk, Toilet, Heating.</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;
    }
} 


