
var fxInProgress = false;

function switchPage(newp, e) {
	if (e != null) e.blur();
	if (fxInProgress) return false;
	if (newp == currentp) return false;
	fxInProgress = true;
	divMenu = $('divMenu');
	var moveInFx = new Fx.Style('divBanner', 'top', {duration: 500, transition: Fx.Transitions.Back.easeIn});
	moveInFx.addEvent('onComplete', function() {
		var hideFx = new Fx.Style('divContents', 'opacity', {duration: 1000});
		hideFx.addEvent('onComplete', function() {
			var hRemote = new Ajax('http://www.herlitska.be/ajax.php/' + newp, {
				method: 'get',
				evalScripts: true,
				update: 'divContents'
			});
			hRemote.addEvent('onComplete', function() {
				$('divContents').setStyle('display', 'block');
				$('divContents').setOpacity(1);
				var moveOutFx = new Fx.Style('divBanner', 'top', {duration: 500, transition: Fx.Transitions.Back.easeOut});
				moveOutFx.addEvent('onComplete', function() {
					currentp = newp;
					fxInProgress = false;
				});
				moveOutFx.start(-180);
			});
			hRemote.request();
		});
		hideFx.start(0);
	});
	moveInFx.start(-92);
	return false;
}