var roomDetails =
[ 
    {'nodeID':'room128485', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Rate shown is based on 4 people sharing. Up to 6 people can be accommodated, subject to an additional charge. Please see the Hotel Policies section for more information.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Kitchenette, Radio, Refrigerator, Work Desk, Ironing Facilities, Seating Area, CD Player, Toilet, Microwave, Video, Heating, Dining Area.</p>', 'clickTest':false},
    {'nodeID':'room128481', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Rate based on 2 adults. Please see extra bed policy for information on additional guests and extra charges.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Radio, Work Desk, Ironing Facilities, Seating Area, Toilet, Video, Heating.</p>', 'clickTest':false},
    {'nodeID':'room128429', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Radio, Work Desk, Ironing Facilities, Seating Area, Toilet, Video, Heating.</p>', 'clickTest':false},
    {'nodeID':'room128425', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Radio, Work Desk, Ironing Facilities, Seating Area, Toilet, Video, 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;
    }
} 


