var roomDetails =
[ 
    {'nodeID':'room49032', 'description':'', 'amenities':'', 'clickTest':false},
    {'nodeID':'room49029', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>The 78 double rooms have been individually decorated following a Mediterranean-style pattern with top-quality furniture, complete bathroom with hairdryer, air conditioning, telephone, Internet access, satellite TV, minibar, balcony or terrace with teak furniture and views of the sea or marina.</p>', 'amenities':'', '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;
    }
} 


