//facilities page only

var alts = new Array();
alts[1] = 'Personal Concierge Services';
alts[2] = 'Catering Options';
alts[3] = 'Vehicle Options';
alts[4] = 'Activities';

var captions = new Array();
captions[1] = '<h3>Personal Concierge Services</h3>'
	+ '<ul><li>Luxury Lifestyle Managers, <a href="http://www.touchofspice.co.nz" target="_blank" title="Touch of Spice">Touch of Spice</a> provide personal concierge services to guests at One @ 25 Belfast.</li>'
	+ '<li>Concierge Services include booking activities and organising transfers to stocking the pantry,<br /> picking you up from the airport and arranging in-house staff</li>'
    + '<li>They can indulge, pamper, excite and exhilarate! Additional charges may apply<br /> - please <a href="http://www.touchofspice.co.nz" target="_blank" title="Touch of Spice">enquire</a> for further details.</li></ul>';

captions[2] = '<h3>Catering Options</h3>'
	+ '<ul><li>Private in-house chefs who can prepare, cook and serve exquisite meals<br /> for you and your guests can be arranged upon request.</li>'
    + '<li>Alternatively, gourmet "heat and serve" meals can be organised to ready on your arrival.</li></ul>';

captions[3] = '<h3>Vehicle Options</h3>'
	+ '<ul><li>Airport transfers from Queenstown Aiport, car hire and limousines can all be organised as required.</li>'
	+ '<li>Secure garaging and private off street parking is available at the apartment.</li></ul>';

captions[4] = '<h3>Activities</h3>'
	+ '<ul><li>Queenstown is known at the "Adventure Capital of the World" - try mountain biking, bungy jumping, jet boating, canyon swinging, sky diving, paragliding, fishing, rafting and climbing.</li>'
	+ '<li>In winter, Queenstown becomes an Alpine ski resort with four world class ski fields within easy reach.</li>'
	+ '<li>Queenstown also has a number of excellent beauty spas and boutique shops<br /> if you prefer a day in town.</li></ul>';


function changeDetails (which) 
{
    //change large image
	var lgImgObj    = document.getElementById('mainImg');
	lgImgObj.src    = 'images/facilities/'+ which +'.jpg'
	lgImgObj.alt    = alts[which];
	lgImgObj.title  = alts[which];

    //change caption
    var caption = document.getElementById('caption');
    caption.innerHTML = captions[which];
}

function addOnClicks() 
{
    if (!document.getElementsByTagName) return false;
    var items = document.getElementById('sectionNav').getElementsByTagName('a');
    for (var i=0; i < items.length; i++) {
        items[i].onclick = function() {
            changeDetails(this.id.substring(7));
//            alert(this.parentNode.style.className);//.value= 'current';
            return false;
        }
    }
}


//assign onclick events to all ul#rhNav a tags
window.onload = function () {
    addOnClicks();
}

