var roomDetails =
[ 
    {'nodeID':'room3323', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Twin room. Tea and coffee making facilities. Colour Television. Vanity unit. Comfortable homely style rooms. Bedrooms are not en suite.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, TV, Radio, Heating.</p>', 'clickTest':false},
    {'nodeID':'room3322', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Double room. Tea and coffee making facilities. Colour Television. Vanity unit. Comfortable, homely style rooms. Bedrooms are not en suite.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, TV, Radio, Heating.</p>', 'clickTest':false},
    {'nodeID':'room3321', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Single room. Tea and coffee making facilities. Colour Television. Vanity unit. Comfortable, homely style room. Bedrooms are not en suite.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, TV, Radio, 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;
    }
} 


