var roomDetails =
[ 
    {'nodeID':'room53357', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Maximum occupancy is 4 adults and 1 child. Breakfast boxes can be ordered at an extra cost and must be booked in advance.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, Safety Deposit Box, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Iron, Radio, Refrigerator, Work Desk, Ironing Facilities, Seating Area, Bathroom Amenities, CD Player, Toilet, Microwave, Dishwasher, Washing Machine, Bathroom, Heating, Kitchen, LCD /Plasma /Flat-screen TV, Wooden / Parquet floor, Dining Area, Electric Kettle, Kitchenware.</p>', 'clickTest':false},
    {'nodeID':'room53351', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Maximum occupancy is 2 adults and 1 child. Breakfast boxes can be ordered at an extra cost and must be booked in advance.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, Safety Deposit Box, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Iron, Radio, Refrigerator, Work Desk, Ironing Facilities, Seating Area, Bathroom Amenities, CD Player, Toilet, Microwave, Dishwasher, Washing Machine, Bathroom, Heating, Kitchen, LCD /Plasma /Flat-screen TV, Wooden / Parquet floor, Dining Area, Electric Kettle, Kitchenware.</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;
    }
} 


