jQuery(window).load(function() {
		// nivoslider init
		jQuery('#slider').nivoSlider({
			effect: 'fold',
			animSpeed:500,
			pauseTime:5000,
			startSlide:0,
			slices:15,
			directionNav:false,
			directionNavHide:false,
			controlNav:true,
			controlNavThumbs:false,
			keyboardNav:true,
			pauseOnHover:true,
			captionOpacity:0.9,
			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})
			}
		});
	});
