var roomDetails =
[ 
    {'nodeID':'room5469', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Downstairs twin room graded as NAS level 2 suitable for moderate disability (must be able to take a few steps). The en suite has a seated shower. Dining room and entrance hall wheelchair accessible. The entrance has 2 shallow steps. The room has a view of the countryside, sea and some houses in the village. </p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Radio, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room2911', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>View of the sea and surrounding hills over open countryside.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, TV, Hairdryer, Wake Up Service/Alarm Clock, Radio, Ironing Facilities, Seating Area, Bathroom Amenities, Toilet, Heating, Bath or Shower.</p>', 'clickTest':false},
    {'nodeID':'room2909', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>View of the sea and surrounding hills over open countryside.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, TV, Hairdryer, Wake Up Service/Alarm Clock, Radio, Ironing Facilities, Seating Area, Toilet, Heating, Bath or Shower.</p>', 'clickTest':false},
    {'nodeID':'room2908', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Children must be over 8 years of age. View of the sea and surrounding hills over open countryside.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, TV, Hairdryer, Wake Up Service/Alarm Clock, Radio, Ironing Facilities, Seating Area, Bathroom Amenities, Toilet, Heating, Bath or Shower.</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;
    }
} 


