window.addEvent('domready', function() {
	SexyLightbox = new SexyLightBox({imagesdir: 'images/layout/lightbox'});

	var myAccordion = new Accordion($('accordion'), 'h2.accordion_toggler', 'div.accordion_content', { opacity: false });
});

function setActiveNavLink(element) {
	$('active-nav').id = null;
	element.id = 'active-nav';
	element.blur();
}

function callAjaxPage(call, container) {
	var contentRequest = new Request.HTML({url:call, 
		onSuccess: function(html) {
			container.set('text', '');
			container.adopt(html);
			delete SexyLightbox;
			SexyLightbox = new SexyLightBox({imagesdir: 'images/layout/lightbox'});
			delete myAccordion;
			var myAccordion = new Accordion($('accordion'), 'h2.accordion_toggler', 'div.accordion_content', { opacity: false });
		},
		onFailure: function() { container.set('text', 'The page you are searching does not exist or have been moved. Sorry. <a href="http://www.the-thunderbirds.be">Return to homepage</a>.'); }
	});

	contentRequest.send();
}

