function pageClose() {
	// slideshow
	slideCycle({cleartype:1});
	// navigation with subnav
	jQuery('#nav').superfish({ 
		delay:       500,                            // delay on mouseout 
		animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
		speed:       'fast',                          // faster animation speed 
		autoArrows:  true,                           // disable generation of arrow mark-up 
		dropShadows: true                            // disable drop shadows 
	});
	// fancybox for GoogleMap
	$('a.iframe').fancybox({'type':'iframe','width':'90%','height':'90%'});
	// fancybox for images (press clippings)
	$('a.fb').fancybox();
	// tooltips
	$('.help[title]').qtip({style:{classes:'ui-tooltip-tipsy ui-tooltip-shadow'},show:{solo:true},position:{at:'top center',my:'bottom center',viewport:$(window)}});
	// equalise height of items
	equalHeight($('.equal'));
	// scroll to top
	$('a[href=#header]').click(function(){	
		$('html, body').animate({scrollTop:0}, 'slow');
		return false;
	});
}	
