var roomDetails =
[ 
    {'nodeID':'room159324', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Twin bedded room with en suite facilities.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room159323', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>A TV, tea and coffee facilities and a hairdryer are included in this room. Sea view rooms are available on request and subject to availability. Please contact the hotel prior to arrival using the contact details found on the booking confirmation in order to request a sea view.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room159322', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>A TV, tea and coffee facilities and a hairdryer are included in this room. Sea view rooms are available on request and subject to availability. Please contact the hotel prior to arrival using the contact details found on the booking confirmation in order to request a sea view. </p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room76638', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Twin bedded room with ensuite facilities </p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room76637', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>A TV, tea and coffee facilities and a hairdryer are included in this room. Sea view rooms are available on request and subject to availability. Please contact the hotel prior to arrival using the contact details found on the booking confirmation in order to request a sea view.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room76624', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>A TV, tea and coffee facilities and a hairdryer are included in this room. Sea view rooms are available on request and subject to availability. Please contact the hotel prior to arrival using the contact details found on the booking confirmation in order to request a sea view. </p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, 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;
    }
} 


