$(document).ready(function(){
	$("#nav li").hover(function(){
		$("ul", this).fadeIn(250);
	},function(){
		$("ul", this).fadeOut(250);
	});
});

jQuery(window).load(function() {
	jQuery('#slider').nivoSlider({
		effect: 'fold',
		animSpeed:500,
		pauseTime:7500,
		startSlide:0,
		slices:8,
		directionNav:false,
		directionNavHide:false,
		controlNav:true,
		controlNavThumbs:false,
		keyboardNav:true,
		pauseOnHover:true,
		captionOpacity:0.85,
		afterLoad: function(){
			jQuery(".nivo-caption").animate({left:"0"}, {easing:"easeOutBack", duration: 500})
		},
		beforeChange: function(){
			jQuery(".nivo-caption").animate({left:"-500"}, {easing:"easeInBack", duration: 500})
		},
		afterChange: function(){
			jQuery(".nivo-caption").animate({left:"0"}, {easing:"easeOutBack", duration: 500})
		}
	});
});
