var roomDetails =
[ 
    {'nodeID':'room67155', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Can accommodate up to 2 adults and 4 children. Rate shown is for 2 adults and 1 child; additional charges apply for additional children. Large and spacious room with private bathroom. Additional beds can be requested.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Ironing Facilities, Bathroom Amenities, Fan, Toilet, Heating, Fireplace, LCD /Plasma /Flat-screen TV, View (sea, garden, landmark, etc.), Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room67153', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Can accommodate up to 2 adults and 3 children. Rate shown is for 2 adults and 1 child; additional charges apply for additional children.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, TV, Hairdryer, Shared Bathroom, Ironing Facilities, Heating, Shared Toilet, LCD /Plasma /Flat-screen TV.</p>', 'clickTest':false},
    {'nodeID':'room67151', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Overlooks the quiet Trinity Gardens.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, TV, Shared Bathroom, Bathroom Amenities, Heating, Shared Toilet, LCD /Plasma /Flat-screen TV.</p>', 'clickTest':false},
    {'nodeID':'room67145', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>A large light and airy room, overlooking Folkestone towards Castle Hill or Trinity gardens. This room has a flat-screen television, hospitality tray and hand wash basin.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, TV, Shared Bathroom, Bathroom Amenities, Heating, Shared Toilet, LCD /Plasma /Flat-screen TV.</p>', 'clickTest':false},
    {'nodeID':'room67143', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>A light and airy room with an private shower room and views out over Folkestone towards Castle Hill or Trinity Gardens. This room has a flat-screen television and hospitality tray.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Toilet, Heating, LCD /Plasma /Flat-screen TV.</p>', 'clickTest':false},
    {'nodeID':'room67142', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Includes views over Folkestone towards Castle Hill and Trinity Gardens.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Ironing Facilities, Toilet, Bathroom, Heating, Carpeted Floor, Fireplace, LCD /Plasma /Flat-screen TV, View (sea, garden, landmark, etc.), Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room67132', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>A large, light and airy room, overlooking the quiet Trinity gardens. This room has a flat-screen TV, hospitality tray and wash basin.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, TV, Shared Bathroom, Seating Area, Bathroom Amenities, Heating, Shared Toilet, LCD /Plasma /Flat-screen TV.</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;
    }
} 


