var roomDetails =
[ 
    {'nodeID':'room12907', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Our twin bedrooms are on-suite and feature working desk and lamp, mini bar, iron and ironingboard, hairdryer and tea and cofee making facilities. Complimentary entrance into Waves Leisure Club included to all residents.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Minibar, Shower, Bath, Pay TV, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Bathrobe, Radio, Work Desk, Ironing Facilities, Seating Area, Toilet, Heating, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room12832', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Our double bedrooms are ensuite and feature working desk and lamp, mini bar, iron and ironingboard, hairdryer and tea and cofee making facilities. Complimentary entrance into Waves Leisure Club included for all residents.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Minibar, Shower, Bath, Pay TV, TV, Hairdryer, Wake Up Service/Alarm Clock, Bathrobe, Radio, Work Desk, Ironing Facilities, Toilet, Satellite TV.</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;
    }
} 


