var roomDetails =
[ 
    {'nodeID':'room3409016', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>A private bathroom, TV and tea/coffee making facilities are featured in this room. Please note, this room is not in the main hotel building.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Bathrobe, Radio, Work Desk, Seating Area, Bathroom Amenities, Fan, Toilet, Bathroom, Heating, Carpeted Floor, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room3409010', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Some twin rooms have views of the Ystwyth Valley or the gardens.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Bathrobe, Radio, Work Desk, Seating Area, Bathroom Amenities, Fan, Toilet, Bathroom, Heating, Carpeted Floor.</p>', 'clickTest':false},
    {'nodeID':'room3409008', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Spacious rooms with views over the grounds and towards Welsh rolling hills. Most have a leather executive chair.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Bathrobe, Radio, Work Desk, Seating Area, Bathroom Amenities, Fan, Toilet, Bathroom, Heating, Slippers, Carpeted Floor, LCD /Plasma /Flat-screen TV, Private Entrance, View (sea, garden, landmark, etc.), Alarm Clock, Electric Kettle.</p>', 'clickTest':false},
    {'nodeID':'room3409007', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Some double rooms have views of the Ystwyth Valley or the gardens.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Bathrobe, Radio, Work Desk, Seating Area, Bathroom Amenities, Fan, Toilet, Bathroom, Heating, Carpeted Floor.</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;
    }
} 


