var roomDetails =
[ 
    {'nodeID':'room10373304', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Spacious room with king size double bed or two large singles, seating area and some offer views to the Cathedral or over the rooftops of historic Bailgate to Lincoln Castle.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Iron, Bathrobe, Work Desk, Ironing Facilities, Seating Area, Bathroom Amenities, Toilet, Bathroom.</p>', 'clickTest':false},
    {'nodeID':'room10373301', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>All of the suites are well appointed and have their own individual character and a range of antiques and art works. In addition to the normal services offered by the hotel, suites include: bathrobes, a wider range of toiletries and teas, plus a range of local magazines. All suites in the hotel are a minimum of 27.5 mē. Enjoy a great view of historic Lincoln or if you are very lucky, a view of Lincoln Cathedral.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Telephone, Hairdryer, Iron, Work Desk, Ironing Facilities, Toilet, Bath or Shower, LCD /Plasma /Flat-screen TV.</p>', 'clickTest':false},
    {'nodeID':'room24716', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Tastefully decorated rooms, some with views of Lincoln Cathedral.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Ironing Facilities, Toilet, Heating, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room24715', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Well-appointed rooms, some of which offer views of Lincoln Cathedral.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Telephone, Hairdryer, Iron, Toilet, Bath or Shower, LCD /Plasma /Flat-screen TV.</p>', 'clickTest':false},
    {'nodeID':'room24466', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Well-appointed single rooms with all facilities and views of either Bailgate or Lincoln Cathedral. </p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Ironing Facilities, Toilet, Heating, Satellite 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;
    }
} 


