var roomDetails =
[ 
    {'nodeID':'room12186514', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Radio, Ironing Facilities, Toilet, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room12186513', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Radio, Ironing Facilities, Toilet, Heating, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room12186512', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Radio, Ironing Facilities, Toilet, Heating, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room10598', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>All these rooms have twin beds and are traditionally styled and pleasantly decorated. Each room has en suite facilities with personal toiletries and towels. The rate includes full use of the hotel\'s facilities.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Radio, Ironing Facilities, Toilet, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room10597', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>All single rooms are traditionally styled, pleasantly decorated, and have 1 double bed. Each room has en suite facilities, including personal toiletries and towels.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Radio, Ironing Facilities, Toilet, Heating, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room10568', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>All double bedrooms are traditionally styled, pleasantly decorated, with one double bed. Each room has en suite facilities, including personal toiletries and towels. Rate is fully inclusive of VAT and full use of leisure facilities.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Radio, 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;
    }
} 


