var roomDetails =
[ 
    {'nodeID':'room22365', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Features free Wi-Fi and Freeview TV. Tea and coffee facilities are provided. The room also include an en suite bathroom and a private wc located outside of the room.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Bathrobe, Radio, Bathroom Amenities, Fan, Heating, LCD /Plasma /Flat-screen TV, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room18283', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Room has a private bathroom outside the room, with a toilet, shower and washbasin.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, TV, Hairdryer, Bathrobe, Radio, Work Desk, Bathroom Amenities, Heating, LCD /Plasma /Flat-screen TV, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room13866', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Offers free Wi-Fi and Freeview TV. Also includes an en suite shower and tea/coffee making facilities. </p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Bathrobe, Radio, Work Desk, Bathroom Amenities, Fan, Toilet, Heating, LCD /Plasma /Flat-screen TV, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room13865', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Features free Wi-Fi and Free view TV. Tea and coffee making facilities are also included. </p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Bathrobe, Radio, Bathroom Amenities, Toilet, Heating, LCD /Plasma /Flat-screen TV, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room2471', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This room features a traditional 4-poster bed, en suite bathroom and free Wi-Fi. Freeview TV and tea/coffee making facilities are also included. </p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Bathrobe, Radio, Work Desk, Bathroom Amenities, Fan, Toilet, Heating, LCD /Plasma /Flat-screen TV, 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;
    }
} 


