var roomDetails =
[ 
    {'nodeID':'room133022', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Hairdryer, Bathrobe, Radio, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room128547', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Bath, TV, Hairdryer, Radio, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room84330', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>All rooms have en suite facilities. Some of them have shower, others bath, and others both. Full English breakfast included.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Hairdryer, Radio, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room545', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>All of the bedrooms have full en suite facilities as well as tea and coffee makers. Some of the bedrooms have fantastic views of Sandown Bay. Some of the bedrooms are located on the ground floor and are suitable for the disabled. Single rooms have no sea views. Includes a full English breakfast.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Shower, TV, Radio, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room543', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>All of our bedrooms have full en suite facilities and all of our bedrooms have colour tv and tea and coffee makers. Most have fantastic views of Sandown Bay. Some of the bedrooms are located on the ground floor and are suitable for the disabled. We have three budget double rooms and one twin, which are smaller and have 5% discount. Some of our rooms have sea view. Includes a full English breakfast. Please note that children under 2 years are free; 2 years to 8 years half rate, and 9 years to 13 years three quarter rate.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Radio, 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;
    }
} 


