    jQuery(window).load(function() {
        jQuery('#featurednivo-slides').nivoSlider({
        effect:'boxRain', // Specify sets like: 'fold,fade,sliceDown'
        slices: 15, // For slice animations
        boxCols: 10, // For box animations
        boxRows: 8, // For box animations
        animSpeed:500, // Slide transition speed
        pauseTime:8000, // How long each slide will show
		keyboardNav:true, //Use left & right arrows
		pauseOnHover:true, //Stop animation while hovering
		manualAdvance:false, //Force manual transitions
		captionOpacity:0.8, //Universal caption opacity
		beforeChange: function(){},
		afterChange: function(){},
		slideshowEnd: function(){} //Triggers after all slides have been shown
		});
    });

