var roomDetails =
[ 
    {'nodeID':'room23035306', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Request Double/Twin when booking (subject to availability).</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Radio, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room23035305', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Radio, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room23035304', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>A beautiful room with fantastic sea views. It offers more space than a superior room and has high ceilings. The room includes an LCD TV and Gilchrist and Soames toiletries.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Minibar, Shower, Bath, Safety Deposit Box, TV, Hairdryer, Wake Up Service/Alarm Clock, Balcony, Radio, Seating Area, Bathroom Amenities, DVD Player, CD Player, Toilet, Bathroom, Heating.</p>', 'clickTest':false},
    {'nodeID':'room23035303', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>A romantic four-poster sea view room with beautiful views of the beach. A luxurious bathroom includes twin sinks and Gilchrist and Soames toiletries. </p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Minibar, Bath, Safety Deposit Box, TV, Hairdryer, Wake Up Service/Alarm Clock, Jacuzzi, Balcony, Jacuzzi/Whirlpool, Radio, Work Desk, Seating Area, Bathroom Amenities, DVD Player, Toilet, Bathroom, Heating.</p>', 'clickTest':false},
    {'nodeID':'room23035302', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>These luxurious suites offer panoramic views of the seafront. In addition to the facilities already listed (see below), these suites include beautiful furnishings, a 32 inch plasma-screen TV, a heart-shaped spa bath for 2, an additional TV in the bathroom, Gilchrist and Soames toiletries, and a separate shower.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Minibar, Shower, Bath, Safety Deposit Box, TV, Hairdryer, Wake Up Service/Alarm Clock, Jacuzzi, Balcony, Jacuzzi/Whirlpool, Radio, Seating Area, Bathroom Amenities, DVD Player, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room23035301', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>A no-frills style room, for those just wishing to have a bed for the night. </p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Radio, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room96717', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Request Double/Twin when booking (subject to availability).</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Minibar, Shower, TV, Hairdryer, Wake Up Service/Alarm Clock, Radio, Ironing Facilities, Seating Area, Bathroom Amenities, DVD Player, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room96716', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>A very light, tastefully furnished double/twin bedded room (please state if twin is required) with a smaller single room on the side, sharing en suite facilities with Gilchrist and Soames toiletries. You can enjoy stunning sea views. </p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Minibar, Shower, TV, Hairdryer, Wake Up Service/Alarm Clock, Radio, Ironing Facilities, Seating Area, Bathroom Amenities, DVD Player, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room96711', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Request Double/Twin when booking (subject to availability).</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Minibar, Shower, TV, Hairdryer, Wake Up Service/Alarm Clock, Radio, Bathroom Amenities, DVD Player, 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;
    }
} 


