$(document).ready(function() {
	$('#slider').nivoSlider({
        effect:'random', // Specify sets like: 'fold,fade,sliceDown'
        slices:20, // For slice animations
        boxCols: 10, // For box animations
        boxRows: 6, // For box animations
        animSpeed:500, // Slide transition speed
        pauseTime:3000, // How long each slide will show
        directionNav:true, // Next & Prev navigation
        directionNavHide:false, // Only show on hover
        controlNav:false, // 1,2,3... navigation
        keyboardNav:true, // Use left & right arrows
        pauseOnHover:true, // Stop animation while hovering
        captionOpacity:0.9, // Universal caption opacity
        prevText: '', // Prev directionNav text
        nextText: ''
    });
}); 

