var roomDetails =
[ 
    {'nodeID':'room21704601', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>A TV, tea and coffee making facilities and a hairdryer are included in this room.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Iron, Trouser Press, Work Desk, Ironing Facilities, Toilet, Bathroom, Heating, Satellite TV, Carpeted Floor, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room9357', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>A private bathroom features in this room, which also has a TV, tea and coffee making facilities and a hairdryer.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Iron, Ironing Facilities, Seating Area, Toilet, Bathroom, Heating, Satellite TV, Carpeted Floor, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room9356', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This room can comfortably accommodate up to 4 people - 2 adults and 2 children. All bedrooms are non-smoking.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Iron, Ironing Facilities, Toilet, Bathroom, Heating, Satellite TV, Carpeted Floor, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room9015', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Double room with a private bathroom, tea and coffee making facilities and a hairdryer.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Iron, Work Desk, Ironing Facilities, Seating Area, Toilet, Bathroom, Heating, Satellite TV, Carpeted Floor, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room9014', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>A private bathroom features in this room, which also has a TV, tea and coffee making facilities and a hairdryer.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Iron, Work Desk, Ironing Facilities, Toilet, Bathroom, Heating, Satellite TV, Carpeted Floor, Electric Kettle.</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;
    }
} 


