var roomDetails =
[ 
    {'nodeID':'room1087906', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This top-floor room is situated in the building\'s attic. It has private bathroom facilities. </p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Shower, Safety Deposit Box, TV, Hairdryer, Wake Up Service/Alarm Clock, Trouser Press, Radio, Refrigerator, Work Desk, Bathroom Amenities, Toilet, Heating, Carpeted Floor, Alarm Clock.</p>', 'clickTest':false},
    {'nodeID':'room1087904', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Featuring a private balcony, this large first-floor room has views of the city Zoo.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Shower, Safety Deposit Box, TV, Hairdryer, Wake Up Service/Alarm Clock, Balcony, Trouser Press, Radio, Refrigerator, Work Desk, Bathroom Amenities, Toilet, Bathroom, Heating, Carpeted Floor, Alarm Clock.</p>', 'clickTest':false},
    {'nodeID':'room1087903', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This spacious room has private bathroom facilities and has views of the city Zoo. </p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Shower, Safety Deposit Box, TV, Hairdryer, Wake Up Service/Alarm Clock, Trouser Press, Radio, Refrigerator, Work Desk, Bathroom Amenities, Toilet, Heating, Carpeted Floor, Alarm Clock.</p>', 'clickTest':false},
    {'nodeID':'room1087902', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Spacious rooms on the first or second floor. </p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Shower, Safety Deposit Box, TV, Hairdryer, Wake Up Service/Alarm Clock, Trouser Press, Radio, Refrigerator, Work Desk, Bathroom Amenities, Toilet, Heating, Carpeted Floor, Interconnecting Room(s) available, Alarm Clock.</p>', 'clickTest':false},
    {'nodeID':'room1087901', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>A compact room on the top floor.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Shower, Safety Deposit Box, TV, Hairdryer, Radio, Refrigerator, Work Desk, Bathroom Amenities, Toilet, Heating, Carpeted Floor, Alarm Clock.</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;
    }
} 


