var roomDetails =
[ 
    {'nodeID':'room98466', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Large rooms with views, separate seating area, bathrobes, fruit, chocolates, mineral water and turndown service.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Trouser Press, Bathrobe, Radio, Work Desk, Ironing Facilities, Seating Area, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room95869', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Large rooms in the old Keswick Station building. Includes bathrobes, mineral water, chocolates and fruit.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Trouser Press, Bathrobe, Radio, Work Desk, Ironing Facilities, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room95867', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This room cannot accommodate children.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Trouser Press, Radio, Work Desk, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room95865', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This room cannot accommodate children.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Trouser Press, Radio, Work Desk, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room95864', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This room cannot accommodate children.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Trouser Press, Radio, Work Desk, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room95863', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This room cannot accommodate children.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Trouser Press, Radio, Work Desk, 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;
    }
} 

