var roomDetails =
[ 
    {'nodeID':'room1048814', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This room accommodates one person and has shared bathroom facilities.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Cable TV.</p>', 'clickTest':false},
    {'nodeID':'room1048813', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This room has a private shower and shared toilet.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Shower, Wake Up Service/Alarm Clock, Shared Toilet, Cable TV.</p>', 'clickTest':false},
    {'nodeID':'room1048811', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Please note that this room is located a 5-minute walk from Bema Hotel.It includes a private kitchenette.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, TV, Hairdryer, Iron, Kitchenette, Shared Bathroom, Microwave, Heating, Shared Toilet.</p>', 'clickTest':false},
    {'nodeID':'room1048810', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This room is situated a 5-minute walk from Bema Hotel.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Iron, Refrigerator, Shared Bathroom, Heating, Shared Toilet, Cable TV.</p>', 'clickTest':false},
    {'nodeID':'room1048809', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This large apartment offers 2 separate bedrooms and a comfortable seating area. These apartments are located at different addresses throughout the centre of the city.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Hairdryer, Iron, Kitchenette, Refrigerator, Seating Area, Toilet, Microwave, Heating, Cable TV, Sofa, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room1048808', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Shower, Hairdryer, Iron, Toilet, Cable TV.</p>', 'clickTest':false},
    {'nodeID':'room1048807', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Shower, Wake Up Service/Alarm Clock, Iron, Toilet, Heating, Cable TV.</p>', 'clickTest':false},
    {'nodeID':'room1048806', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This large studio apartment offers a separate seating area and well-equipped kitchen. These apartments are located at different addresses throughout the centre of the city.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Iron, Kitchenette, Refrigerator, Work Desk, Toilet, Microwave, Heating, Kitchen, Cable TV, Electric Kettle, Kitchenware.</p>', 'clickTest':false},
    {'nodeID':'room1048805', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Shower, Wake Up Service/Alarm Clock, Iron, Toilet, Cable TV.</p>', 'clickTest':false},
    {'nodeID':'room1048804', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Wake Up Service/Alarm Clock, Iron, Shared Bathroom, Shared Toilet, Cable TV.</p>', 'clickTest':false},
    {'nodeID':'room1048803', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This room has a shared toilet and bathroom downstairs.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Wake Up Service/Alarm Clock, Iron, Shared Bathroom, Shared Toilet, Cable TV.</p>', 'clickTest':false},
    {'nodeID':'room1048801', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Wake Up Service/Alarm Clock, Iron, Shared Bathroom, Shared Toilet, 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;
    }
} 


