var roomDetails =
[ 
    {'nodeID':'room1008409', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This large room features classic ceiling decorations and a chandelier. It has an en suite bathroom with bath.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Minibar, Shower, Bath, TV, Telephone, Seating Area, Toilet.</p>', 'clickTest':false},
    {'nodeID':'room1008405', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This room has a private bathroom.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Minibar, Bath, TV, Telephone, Toilet.</p>', 'clickTest':false},
    {'nodeID':'room1008404', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This room has a private bathroom.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Minibar, Shower, TV, Telephone, Toilet.</p>', 'clickTest':false},
    {'nodeID':'room1008403', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This room includes a minibar, TV and a safe. There is a shared bathroom with a toilet and shower in the hallway.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Minibar, TV, Telephone, Shared Bathroom, Toilet.</p>', 'clickTest':false},
    {'nodeID':'room1008401', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This room includes a minibar, TV and a safe. There is a shared bathroom with a toilet and shower in the hallway.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Minibar, TV, Telephone, Shared Bathroom, Toilet.</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;
    }
} 


