var roomDetails =
[ 
    {'nodeID':'room10329905', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>A flat-screen TV, free Wi-Fi access, tea and coffee making facilities and a hairdryer are included in this en suite room.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Hairdryer, Work Desk, Toilet, Heating, LCD /Plasma /Flat-screen TV, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room10329904', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>With a flat-screen TV and facilities for making tea and coffee.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Hairdryer, Iron, Work Desk, Toilet, Heating, LCD /Plasma /Flat-screen TV, Wake Up Service, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room10329903', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>With a flat-screen TV and facilities for making tea and coffee.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Fax, Hairdryer, Wake Up Service/Alarm Clock, Work Desk, Toilet, Heating, Bath or Shower, LCD /Plasma /Flat-screen TV, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room10329902', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>With a flat-screen TV and facilities for making tea and coffee.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Hairdryer, Iron, Work Desk, Seating Area, Toilet, Bathroom, Heating, Kitchen, Bath or Shower, LCD /Plasma /Flat-screen TV, Wake Up Service, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room10329901', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>With a flat-screen TV and facilities for making tea and coffee.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Telephone, Fax, Hairdryer, Wake Up Service/Alarm Clock, Iron, Work Desk, Toilet, Heating, Bath or Shower, LCD /Plasma /Flat-screen TV, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room52449', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>With a flat-screen TV and facilities for making tea and coffee.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Hairdryer, Iron, Work Desk, Seating Area, Toilet, Heating, Bath or Shower, LCD /Plasma /Flat-screen TV, Wake Up Service, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room6053', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>With a flat-screen TV and facilities for making tea and coffee.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Bath, Hairdryer, Work Desk, Toilet, Bathroom, Heating, LCD /Plasma /Flat-screen TV, Wake Up Service, 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;
    }
} 


