var roomDetails =
[ 
    {'nodeID':'room22683501', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This rate includes accommodation in a bright and airy double bedroom, decorated in neutral colours, with a fresh modern feel. All rooms are impeccably clean, are serviced daily and come with a Digital TV.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Wake Up Service/Alarm Clock, Radio, Ironing Facilities, Toilet, Heating, Cable TV.</p>', 'clickTest':false},
    {'nodeID':'room136139', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Bright and airy double room with a Digital TV and a super king-size bed (7 feet wide). Decorated in neutral colours, with a fresh modern feel, all rooms are impeccably clean and are serviced daily.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Wake Up Service/Alarm Clock, Radio, Ironing Facilities, Toilet, Heating, Cable TV.</p>', 'clickTest':false},
    {'nodeID':'room136132', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>For those on a budget, everything you need but on a smaller scale. Decorated in modern neutral colours with a light and airy feel. All rooms are impeccably clean and are serviced daily, and come with Digital TV.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Wake Up Service/Alarm Clock, Radio, Ironing Facilities, Toilet, Heating, Cable TV.</p>', 'clickTest':false},
    {'nodeID':'room72448', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Bright, single room decorated in neutral colours, with a fresh modern feel. All rooms are impeccably clean and are serviced daily, and come with Digital TV.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Wake Up Service/Alarm Clock, Radio, Ironing Facilities, Toilet, Heating, Cable TV.</p>', 'clickTest':false},
    {'nodeID':'room72443', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Large, bright and airy double room with a Digital TV and a queen-size bed. Looking out over the front of the hotel with views across to Torwood Gardens and looking to the right, partial sea and harbour views. Decorated in neutral colours, with a fresh modern feel. This room can have an additional bed for one child added. All rooms are impeccably clean and are serviced daily.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Wake Up Service/Alarm Clock, Radio, Ironing Facilities, Toilet, Heating, Cable TV.</p>', 'clickTest':false},
    {'nodeID':'room72409', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Bright and airy double bedroom decorated in neutral colours, with a fresh modern feel. All rooms are impeccably clean and are serviced daily, and come with Digital TV.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Wake Up Service/Alarm Clock, Radio, Ironing Facilities, Toilet, Heating, Cable 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;
    }
} 


