var roomDetails =
[ 
    {'nodeID':'room18194', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>The hotel has been refurbished and at the moment we are awaiting a regrading to three stars.</p>', 'amenities':'', 'clickTest':false},
    {'nodeID':'room15433', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Our rooms offer comfort only a few minutes from Worcester city centre. This room has a romantic style with a four poster bed. Full English breakfast is included.</p>', 'amenities':'', 'clickTest':false},
    {'nodeID':'room15423', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Our redecorated rooms offer comfort only a few minutes walk from the city centre.</p>', 'amenities':'', 'clickTest':false},
    {'nodeID':'room15421', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Our redecorated rooms offer comfort only a few minutes from Worcester city centre.</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;
    }
} 


