var roomDetails =
[ 
    {'nodeID':'room12103103', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Situated on the ground floor next to the main entrance door. Sea-view rooms are not available with this room type.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Shower, TV, Hairdryer, Wake Up Service/Alarm Clock, DVD Player, Toilet, Bathroom, Heating.</p>', 'clickTest':false},
    {'nodeID':'room12103102', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This room has a sea view. Please request Twin/Double when booking. Please note this room is on the 3rd Floor and there is no lift.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, DVD Player, Toilet, Bathroom, Heating, LCD /Plasma /Flat-screen TV, View (sea, garden, landmark, etc.), Alarm Clock.</p>', 'clickTest':false},
    {'nodeID':'room12103101', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Please request Double/Twin when booking.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, DVD Player, Toilet, Bathroom, Heating, LCD /Plasma /Flat-screen TV, View (sea, garden, landmark, etc.), Alarm Clock.</p>', 'clickTest':false},
    {'nodeID':'room165474', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Please request Double/Twin when booking.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Wake Up Service/Alarm Clock, Iron, Radio, Ironing Facilities, Seating Area, DVD Player, Toilet, Video Games, Bathroom, Heating.</p>', 'clickTest':false},
    {'nodeID':'room32075', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Double room with en suite/private facilities.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Wake Up Service/Alarm Clock, Radio, Ironing Facilities, Seating Area, DVD Player, CD Player, Toilet, Video, Video Games, Bathroom, Heating.</p>', 'clickTest':false},
    {'nodeID':'room32073', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Four-poster en suite double room, ideal for that special occasion. This room does not have a sea view. Towels are provided.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Wake Up Service/Alarm Clock, Iron, Radio, Ironing Facilities, Seating Area, DVD Player, CD Player, Toilet, Video, Video Games, Bathroom, Heating.</p>', 'clickTest':false},
    {'nodeID':'room32072', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Twin en suite room. Towels are provided.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Wake Up Service/Alarm Clock, Iron, Radio, Ironing Facilities, Seating Area, DVD Player, CD Player, Toilet, Video, Video Games, Bathroom, Heating.</p>', 'clickTest':false},
    {'nodeID':'room32020', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>The room has an interconnecting door leading from the double/twin en suite room into the children\'s room with bunk beds and colour TV. The room has a sea view and a view of Newquay\'s bays. Tea/coffee making facilities are in the master room only. This room has double glazed windows and its own key access. This room is for 2 adults and 2 children under the age of 15.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Wake Up Service/Alarm Clock, Radio, Ironing Facilities, Seating Area, DVD Player, CD Player, Toilet, Video Games, Bathroom, Heating, Interconnecting Room(s) available.</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;
    }
} 


