var roomDetails =
[ 
    {'nodeID':'room12112403', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>With triple bed, single bed and en suite bathroom.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Iron, Ironing Facilities, Bathroom Amenities, Toilet, Bathroom, Heating, Carpeted Floor, LCD /Plasma /Flat-screen TV.</p>', 'clickTest':false},
    {'nodeID':'room12112402', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, TV, Hairdryer, Iron, Ironing Facilities, Heating, Carpeted Floor, LCD /Plasma /Flat-screen TV.</p>', 'clickTest':false},
    {'nodeID':'room12112401', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Single room with a washbasin within the room, a flat-screen television, and tea and coffee-making facilities. Towels are provided.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Iron, Heating, Carpeted Floor, LCD /Plasma /Flat-screen TV.</p>', 'clickTest':false},
    {'nodeID':'room136157', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Double room with a en-suite, towels provided.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, TV, Hairdryer, Iron, Ironing Facilities, Heating, Carpeted Floor, LCD /Plasma /Flat-screen TV.</p>', 'clickTest':false},
    {'nodeID':'room68466', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Twin room with a double and single bed.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, TV, Hairdryer, Iron, Heating, Carpeted Floor, LCD /Plasma /Flat-screen TV.</p>', 'clickTest':false},
    {'nodeID':'room3303', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Most rooms enjoy breathtaking views over Towan beach and the Harbour.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Hairdryer, Iron, Heating, Carpeted Floor, LCD /Plasma /Flat-screen TV.</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;
    }
} 


