jQuery(document).ready(function(){
		// fadein animation, only on homepage
		// hide elements
		jQuery('#access').css('opacity',0);
		jQuery('#site-title').css('opacity',0);
		jQuery('#content').css('opacity',0);
		jQuery('#socialLinks').css('opacity',0);
		// show container (container is hidden at start)
		jQuery('#page').css('opacity',1);
		// show elements
		jQuery('#site-title').delay(500).animate({'opacity':1}, 500, function() { jQuery(this).removeAttr('filter'); });
		jQuery('#access').delay(1000).animate({'opacity':1}, 500, function() { jQuery(this).removeAttr('filter'); });
		jQuery('#content').delay(1500).animate({'opacity':1}, 500, function() { jQuery(this).removeAttr('filter'); });
		jQuery('#socialLinks').delay(2000).animate({'opacity':1}, 500, function() { jQuery(this).removeAttr('filter'); });
		// start slideshow
		jQuery('#frontpageSlideshow').cycle({ fx:'fade', speed:1500, timeout:1500, pause:true, cleartype:1, pause:0, pauseOnPagerHover: 0 });
		jQuery('#frontpageSlideshowTitles').cycle({ fx:'fade', speed:1500, timeout:1500, pause:true, cleartype:1, pause:0, pauseOnPagerHover: 0 });
});
