var roomDetails =
[ 
    {'nodeID':'room11176704', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Safety Deposit Box, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Trouser Press, Work Desk, Bathroom.</p>', 'clickTest':false},
    {'nodeID':'room22625', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Superior double room sleeping 2 people. Stylish yet classical. Lie in bed and take in the most spectacular views of Windsor Castle. Non-smoking.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Safety Deposit Box, TV, Telephone, Air Conditioning, Hairdryer, Wake Up Service/Alarm Clock, Trouser Press, Bathrobe, Work Desk, Bathroom.</p>', 'clickTest':false},
    {'nodeID':'room22478', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Standard double room sleeping 2 people. Take in the dreamy views overlooking the rooftops of Windsor, whilst enjoying a classic English afternoon tea. Each room is exclusively decorated and offers the latest in room amenities. Non-smoking.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Safety Deposit Box, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Trouser Press, Work Desk, Bathroom.</p>', 'clickTest':false},
    {'nodeID':'room22448', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>The courtyard single rooms offer stylish surroundings and stunning views over the rooftops of Windsor. In addition to the list facilities, enjoy comfortable beds and plasma-screen TVs.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Safety Deposit Box, TV, Telephone, Hairdryer, Wake Up Service/Alarm Clock, Trouser Press, Work Desk, Bathroom.</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;
    }
} 

