// initialize cycle (jquery slideshow) and superfish (jquery drop down menus)
$(document).ready(function() {
	$('ul#navigation').superfish({
		pathLevels:1,
		delay:300,
		animation:{opacity:'show',height:'show'},
		speed:'fast',
		autoArrows:true,
		dropShadows:true
	});
	$('#slides').cycle({
		fx: 'fade',
		speed: 2000,
		timeout: 80000,
		random: 1,
		fastOnEvent: 150,
		next: '#next',
		prev: '#prev',
	    pause: 1,     // true to enable "pause on hover" 
    	pauseOnPagerHover: 1
	});
});
