		jQuery(window).load(function() {
			// nivoslider init
			jQuery('#slider').nivoSlider({
				effect: 'sliceUpDownLeft',
				animSpeed:500,
				pauseTime:5000,
				startSlide:0,
				slices:15,
				directionNav:true,
				directionNavHide:false,
				controlNav:false,
				controlNavThumbs:false,
				keyboardNav:true,
				pauseOnHover:true,
				captionOpacity:1,
				afterLoad: function(){
					jQuery('.nivo-caption h1').animate({marginLeft:"0"}, {easing:"jswing"});
					jQuery('.nivo-caption .desc').animate({right:"0"}, {easing:"jswing"});
				},
				beforeChange: function(){
					jQuery('.nivo-caption h1').animate({marginLeft:"-617px"}, {easing:"jswing"});
					jQuery('.nivo-caption .desc').animate({right:"-273px"}, {easing:"jswing"});
				},
				afterChange: function(){
					jQuery('.nivo-caption h1').animate({marginLeft:"0"}, {easing:"easeOutBounce"});
					jQuery('.nivo-caption .desc').animate({right:"0"}, {easing:"easeOutBounce"});
				}
			});
		});
