var roomDetails =
[ 
    {'nodeID':'room63957', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>A special room offering that little extra romance.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Radio, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room63904', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>There are 2 rooms on the ground floor, with the 3rd room on the first floor and located at the rear of the house, overlooking the garden and Exmoor. A ground floor room can be requested but cannot be guaranteed.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Radio, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room63903', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Two of the rooms are at the rear of the house with views of Exmoor. The other 3 are at the front of the house, benefiting from the morning sun and a queen-size bed.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Radio, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room15699', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>All rooms are a good size, have recently been refurbished and are at the rear of the house, overlooking the garden and the Exmoor hills.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, 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;
    }
} 


