var roomDetails =
[ 
    {'nodeID':'room23119103', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Murder mystery event on Saturday 25 February 2012. This is an open invitation event subject to availability. Special offer includes: -Saturday night bed and breakfast, -&quot;Curl up and dye&quot; murder mystery performed by the Candlelight Theatre Company, -3-course dinner and coffee, -1 free drink in the bar</p>', 'amenities':'', 'clickTest':false},
    {'nodeID':'room23119101', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Valentine\'s special running from Friday 10 February - Sunday 19 Febuary 2012 includes: Bed and breakfast Bottle of champagne Chocolates Bunch of flowers Balloons</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Radio, Ironing Facilities, Toilet, Heating, Carpeted Floor, LCD /Plasma /Flat-screen TV, Alarm Clock, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room125849', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Hairdryer, Radio, Ironing Facilities, Toilet, Heating, Carpeted Floor, LCD /Plasma /Flat-screen TV, Alarm Clock, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room108741', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Radio, Ironing Facilities, Toilet, Heating, Carpeted Floor, LCD /Plasma /Flat-screen TV, Alarm Clock, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room108740', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Radio, Ironing Facilities, Toilet, Heating, Bath or Shower, LCD /Plasma /Flat-screen TV, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room108739', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, TV, Hairdryer, Radio, Ironing Facilities, Toilet, Heating, Bath or Shower, Carpeted Floor, LCD /Plasma /Flat-screen TV, Alarm Clock, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room108730', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, TV, Hairdryer, Balcony, Radio, Ironing Facilities, Toilet, Heating, Bath or Shower, LCD /Plasma /Flat-screen TV, View (sea, garden, landmark, etc.), Alarm Clock, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room108729', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Radio, Toilet, 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;
    }
} 


