var roomDetails =
[ 
    {'nodeID':'room18292', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This family suite can also accommodate up to 3 children under 16 years of age. Please confirm how many adults and how many children will be staying in the room on the day of booking, either by using the comments field when making your reservation or by contacting the hotel directly, using the contact details supplied on your confirmation email.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Radio, Ironing Facilities, Toilet, Bathroom, Heating.</p>', 'clickTest':false},
    {'nodeID':'room12152', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This is a double room which can also accommodate one child under 16 years. Please confirm how many adults and how many children will be staying in the room on the day of booking, either by using the comments field when making your reservation or by contacting the hotel directly, using the contact details supplied on your confirmation email.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Wake Up Service/Alarm Clock, Radio, Toilet, Bathroom, Heating.</p>', 'clickTest':false},
    {'nodeID':'room626', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Single rooms have a view of the garden.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Telephone, Wake Up Service/Alarm Clock, Radio, Toilet, Bathroom, Heating.</p>', 'clickTest':false},
    {'nodeID':'room624', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Twin rooms have a view of the gardens and the surrounding woodland.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Telephone, Wake Up Service/Alarm Clock, Radio, Toilet, Bathroom, Heating.</p>', 'clickTest':false},
    {'nodeID':'room623', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>The majority of the double rooms have a view of the garden.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Wake Up Service/Alarm Clock, Radio, Toilet, Bathroom, 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;
    }
} 


