var roomDetails =
[ 
    {'nodeID':'room15365', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This delightful large room has 1 double bed and 1 single bed. It can be used as a double, twin or family room (for 2 adults and 1 child up to 16 years of age). See below for child charges. In the tower of the guest house, there is a large fully fitted en suite bathroom. The room offers lovely sea views of the harbour and Hillsborough nature reserve.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Wake Up Service/Alarm Clock, Radio, Toilet, Heating, Bath or Shower.</p>', 'clickTest':false},
    {'nodeID':'room585', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Large, bright, spacious en suite room with harbour views.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Wake Up Service/Alarm Clock, Radio, DVD Player, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room128', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This charming, bright dual aspect room on the 1st floor of the tower has a outside private bathroom. The room offers lovely views of the sea and Ilfracombe harbour.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Wake Up Service/Alarm Clock, Radio, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room127', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This charming room offers garden views.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Wake Up Service/Alarm Clock, Radio, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room124', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>We have 3 double rooms, all with their own particular charm. Views of the sea and Ilfracombe harbour can be enjoyed from some rooms.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Wake Up Service/Alarm Clock, Radio, 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;
    }
} 

