var roomDetails =
[ 
    {'nodeID':'room11903402', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>A large Family Room sleeping 2 Adults &amp; 2 children (under 15 years). Room has a private bathroom, TV/DVD and tea/coffee making facilities.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Wake Up Service/Alarm Clock, Ironing Facilities, DVD Player, Toilet, Bathroom, Heating, Bath or Shower, View (sea, garden, landmark, etc.).</p>', 'clickTest':false},
    {'nodeID':'room11903401', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Individually styled Double rooms with private bathroom facilities. TV/DVD and tea/coffee making facilities.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Hairdryer, Wake Up Service/Alarm Clock, Ironing Facilities, DVD Player, Toilet, Bathroom, Heating, Bath or Shower, View (sea, garden, landmark, etc.), Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room26753', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Family Room sleeping 5. Available for 2 adults &amp; up to 3 children (under 15 years).</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Wake Up Service/Alarm Clock, Ironing Facilities, DVD Player, Toilet, Bathroom, Heating, Bath or Shower, View (sea, garden, landmark, etc.).</p>', 'clickTest':false},
    {'nodeID':'room22279', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Twin rooms individually styled with private bathroom facilities.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Hairdryer, Wake Up Service/Alarm Clock, Ironing Facilities, Bathroom Amenities, DVD Player, Toilet, Bathroom, Heating, Bath or Shower, LCD /Plasma /Flat-screen TV, View (sea, garden, landmark, etc.).</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;
    }
} 


