var roomDetails =
[ 
    {'nodeID':'room62792', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>All triple rooms have sea views Minimum night stay:2 on Bank holidays. Room rate is for 3 people and includes Breakfast,car parking and VAT. Extra baby Cot is 22.50GBP</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, TV, Fax, Hairdryer, Radio, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room62791', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Minimum stay of 2 nights on bank holidays. Price is quoted on a bed and breakfast basis. Free parking and vat included</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Fax, Hairdryer, Radio, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room62789', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>Minimum of 2 nights stay on Bank Holidays. Prices are quoted on a bed and breakfast basis. Includes free parking and vat.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Fax, Hairdryer, Radio, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room62788', 'description':'', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Fax, Hairdryer, Radio, Toilet, 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;
    }
} 


