var roomDetails =
[ 
    {'nodeID':'room125', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Rooms have views overlooking the apple orchards and the hotel\'s array of geese, ducks and chickens.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Shower.</p>', 'clickTest':false},
    {'nodeID':'room123', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>These courtyard double rooms were converted from the stables over 10 years ago. The rooms have stunning views overlooking the apple orchards and the hotel\'s wonderful array of geese, ducks and chickens (no cockerels though!). These cosy rooms all have art on the wall by owner\'s wife, Sarah Bell, who also offers watercolour painting weekends.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Iron, Radio, Work Desk, Ironing Facilities, Toilet, Patio, Bathroom, Heating, Carpeted Floor, Fireplace, View (sea, garden, landmark, etc.), Wake Up Service, Electric Kettle.</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;
    }
} 


