var roomDetails =
[ 
    {'nodeID':'room62586', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Large, traditional yet modern room with King size bed and spacious en suite bathroom (with both power shower and bath). Also has tv, coffee and tea making facilities, hairdryer, comfy seating area and telephone with data port.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Internet Facilities, Shower, Bath, TV, Fax, Hairdryer, Wake Up Service/Alarm Clock, Radio, Work Desk, Ironing Facilities, Seating Area, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room54502', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Internet Facilities, Shower, Bath, TV, Fax, Hairdryer, Wake Up Service/Alarm Clock, Radio, Work Desk, Ironing Facilities, Seating Area, Toilet, Heating.</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;
    }
} 


