var roomDetails =
[ 
    {'nodeID':'room4070', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>The twin room have luxury beds and extra pillows and blankets.Please note that this room can accomodate 1 extra bed only.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Hairdryer, Wake Up Service/Alarm Clock, Radio, Work Desk, Ironing Facilities, Bathroom Amenities, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room3750', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>They have luxury beds and carry extra pillows and blankets.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Hairdryer, Wake Up Service/Alarm Clock, Bathrobe, Radio, Work Desk, Ironing Facilities, Seating Area, Bathroom Amenities, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room3749', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>All rooms have luxury beds, extra pillows and blankets.Please note that this room can not accomodate extra bed.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Hairdryer, Wake Up Service/Alarm Clock, Bathrobe, Radio, Work Desk, Ironing Facilities, Bathroom Amenities, 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;
    }
} 


