var roomDetails =
[ 
    {'nodeID':'room148638', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Large first-floor room with huge windows, and a view right across Newquay Bay. Rooms have 4 single beds, 2 of which can zip and link into one super king-size bed.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Ironing Facilities, Toilet, Heating, Carpeted Floor, View (sea, garden, landmark, etc.), Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room98234', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Situated on the second floor at the front of the property, the triple rooms have sea views across the whole of Newquay Bay. </p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Ironing Facilities, Toilet, Heating, Carpeted Floor, View (sea, garden, landmark, etc.), Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room98078', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>These light and airy rooms have a TV and facilities for making tea and coffee.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Ironing Facilities, Toilet, Heating, Carpeted Floor, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room98076', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>The twin rooms have big windows, and most have en suite facilities. However, 3 have a private bathroom adjacent to the room and the 2 bunk-bed rooms share a bathroom on the same landing.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Shared Bathroom, Ironing Facilities, Toilet, Heating, Carpeted Floor, Electric Kettle.</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;
    }
} 


