var roomDetails =
[ 
    {'nodeID':'room53317', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>When you enter your room, you will feel like you have entered into a place deigned to help you rest, like the four pillows on your bed. Exclusive details, such as the special reading lamps on the bed head, smoker/non-smoker rooms, room service and personal climate control. Designed to make you feel that your room is always how you want it.</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;
    }
} 


