var roomDetails =
[ 
    {'nodeID':'room11178404', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Rate includes a 3 course dinner from the delicious table d\'hote menu, served in Brown\'s Restaurant. It also includes full English breakfast, served in Brown\'s Restaurant from 07:00 - 09:30 Monday to Friday and 08:00 - 10:00 Saturday and Sunday.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Work Desk, Ironing Facilities, Seating Area, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room11178401', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Rate includes full English breakfast, served in Brown\'s Restaurant from 07:00 - 09:30 Monday to Friday and 08:00 - 10:00 Saturday and Sunday.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Work Desk, Ironing Facilities, Seating Area, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room65203', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Rate includes full English breakfast, served in Brown\'s Restaurant from 07:00 - 09:30 Monday to Friday and 08:00 - 10:00 Saturday and Sunday.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Work Desk, Ironing Facilities, Seating Area, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room65202', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Rate includes full English breakfast which is served in Brown\'s Restaurant from 07:00 - 09:30 Monday to Friday and 08:00 - 10:00 Saturday and Sunday.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, 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;
    }
} 


