var roomDetails =
[ 
    {'nodeID':'room140218', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Minibar, Shower, Bath, TV, Work Desk, Seating Area, DVD Player, CD Player, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room137671', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Situated a short walk from the main accomodation this private room offers a separate lounge and bedroom, with small kitchen area and bathroom. PLEASE NOTE, THIS APARTMENT IS NON-SMOKING</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Kitchenette, Refrigerator, Ironing Facilities, Seating Area, Toilet, Microwave, Heating.</p>', 'clickTest':false},
    {'nodeID':'room71956', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Smart, clean with a modern feel and en-suite. PLEASE NOTE, THIS ROOM IS NON-SMOKING</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, DVD Player, CD Player, Toilet, Heating, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room71955', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Includes a PlayStation for the kids and car parking. PLEASE NOTE, THIS ROOM IS NON-SMOKING</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, DVD Player, CD Player, Toilet, Heating, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room71937', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Open plan room with modern styling and Jacuzzi. Rate includes car parking. PLEASE NOTE, THIS ROOM IS NON-SMOKING</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Minibar, Shower, Bath, TV, DVD Player, CD Player, Toilet, Heating, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room71936', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Individually designed room with wood flooring and a country feel. Car parking included. PLEASE NOTE, THIS ROOM IS NON-SMOKING</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Work Desk, DVD Player, CD Player, Toilet, Heating, Satellite TV.</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;
    }
} 

