var roomDetails =
[ 
    {'nodeID':'room22940', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>These large rooms have beautiful country house drapes, high ceilings and comfortable sofas. The view is over the parkland with sheep grazing beyond the Ha Ha wall.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Bathrobe, Radio, Work Desk, Ironing Facilities, Seating Area, CD Player, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room17321', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>These rooms are decorated in tranquil colours and have high ceilings, comfy sofas and cherry wood furniture. The room boasts superb views over the hotel\'s lake and 70 acres of parkland, and some rooms views over the Malvern hills.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Bathrobe, Radio, Work Desk, Ironing Facilities, Seating Area, CD Player, 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;
    }
} 

