jQuery(window).load(function() {
			// nivoslider init
			jQuery('#slider').nivoSlider({
				effect: 'boxRainGrow',
				animSpeed:500,
				pauseTime:5000,
				startSlide:0,
				slices:15,
				directionNav:true,
				directionNavHide:true,
				controlNav:false,
				controlNavThumbs:false,
				keyboardNav:true,
				pauseOnHover:true,
				beforeChange: function(){
					jQuery('.nivo-caption').animate({bottom:"-56px"}, {easing:"easeInCubic"});
				},
				afterChange: function(){
					jQuery('.nivo-caption').animate({bottom:"0px"}, {easing:"easeOutCubic"});
				}
			});
		});
