var roomDetails =
[ 
    {'nodeID':'room114842', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This is very large and spacious room with a light, romantic atmosphere. The room has a beautiful, French-style queen-size bed with memory-foam mattress. A Tassimo drinks machine can make quality coffee, cappuccino, tea, coffee and hot chocolate. To chill your milk, wine and water/juice, a mini fridge is provided. There is a comfortable sofa to relax on and enjoy the flat screen TV. This room has a lovely view through large patio doors overlooking the garden and the open fields beyond. The spacious bathroom has a large corner bath and shower with body jets.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Hairdryer, Bathrobe, Radio, Refrigerator, Ironing Facilities, Seating Area, DVD Player, Toilet, Heating.</p>', 'clickTest':false},
    {'nodeID':'room114838', 'description':'<p style="padding-bottom: 8px;"><b>Description: </b>This is a large, spacious room with a traditional and classy decor. Enjoy the luxury of the wonderful carved oak four-poster bed dressed with pure cotton sheets, silk throws and drapes, complete with a memory foam mattress. A luxurious double jacuzzi bath is situated within the bedroom. A state-of-the-art coffee machine makes quality coffee, cappuccino, tea and hot chocolate.</p>', 'amenities':'<p style="padding-bottom: 8px;"><b>Room amenities: </b>Tea/Coffee Maker, Shower, Bath, TV, Hairdryer, Bathrobe, Radio, Refrigerator, Ironing Facilities, Seating Area, DVD Player, 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;
    }
} 

