var roomDetails =
[ 
    {'nodeID':'room11326609', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Saturday 11 February 2012 1-Night Valentines Package Consisting of a 3-course dinner, live music, overnight accommodation and breakfast.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Bath, TV, Telephone, Hairdryer, Trouser Press, Toilet, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room13581', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Trouser Press, Radio, Toilet, Bathroom, Heating, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room13494', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Reservation includes complimentary use of the leisure centre.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Trouser Press, Toilet, Bathroom, Heating, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room13493', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Front-facing rooms overlook the immaculate lawns and flowerbeds of the Kings Gardens, the seafront and the coastline of the North-West.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Trouser Press, Radio, Toilet, Heating, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room13492', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Trouser Press, Toilet, Bathroom, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room13278', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Front-facing rooms overlook the immaculate lawns and flowerbeds of the Kings Gardens, the seafront and the coastline of the North-West.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Trouser Press, Radio, Toilet, Bathroom, 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;
    }
} 


