var roomDetails =
[ 
    {'nodeID':'room12240206', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Bath, TV, Hairdryer, Radio, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room12240205', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Bath, TV, Hairdryer, Radio, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room12240204', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Bath, TV, Hairdryer, Radio, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room12240203', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Bath, TV, Hairdryer, Radio, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room12240202', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Bath, TV, Hairdryer, Radio, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room12240201', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, TV, Radio, Toilet, Bathroom, Heating.</p>', 'clickTest':false},
    {'nodeID':'room58291', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Hairdryer, Radio, Ironing Facilities, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room4485', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Bath, TV, Hairdryer, Radio, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room4484', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, TV, Telephone, Hairdryer, Bathroom, Heating.</p>', 'clickTest':false},
    {'nodeID':'room3936', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, TV, 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;
    }
} 

