var roomDetails =
[ 
    {'nodeID':'room10853310', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Hairdryer, Trouser Press, Ironing Facilities, Toilet, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room10853309', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Hairdryer, Trouser Press, Ironing Facilities, Toilet, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room10853308', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Hairdryer, Trouser Press, Ironing Facilities, Toilet, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room10853306', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Hairdryer, Trouser Press, Ironing Facilities, Toilet, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room10853303', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>When booking this room, you must let the hotel know before arrival whether there will be children staying. This is so that the hotel can set up any extra beds that may be needed.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Fax, Hairdryer, Trouser Press, Ironing Facilities, Toilet, Satellite TV.</p>', 'clickTest':false},
    {'nodeID':'room10853302', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Hairdryer, Trouser Press, 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;
    }
} 

