var roomDetails =
[ 
    {'nodeID':'room11117501', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This room has recently been refurbished to a very high standard. This is a more luxurious room but still comfortable and tastefully decorated with modern facilities. Luxury double rooms can be turned into twin bedded rooms. Please contact the hotel at the time of booking if you require this.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Radio, Work Desk, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room10107', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>All rooms are comfortable and tastefully decorated with all modern facilities to ensure your stay is an enjoyable experience. There is a selection of films available for rent. </p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Radio, Work Desk, Ironing Facilities, 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;
    }
} 


