
$(window).load(function() {
    $('#slider').nivoSlider({
        effect:'fade', // Specify sets like: 'sliceDown,sliceDownLeft,sliceUp,sliceUpLeft,sliceUpDown,sliceUpDownLeft,fold,fade,random,slideInRight,slideInLeft,boxRandom,boxRain,boxRainReverse,boxRainGrow,boxRainGrowReverse'
        slices:20, // For slice animations
        boxCols: 10, // For box animations
        boxRows: 5, // For box animations
        animSpeed:750, // Slide transition speed
        pauseTime:4500, // How long each slide will show
        startSlide:0, // Set starting Slide (0 index)
        directionNav:true, // Next & Prev navigation
        directionNavHide:true, // Only show on hover
        controlNav:false, // 1,2,3... navigation
        keyboardNav:true, // Use left & right arrows
        pauseOnHover:true, // Stop animation while hovering
        manualAdvance:false, // Force manual transitions
        captionOpacity:0.8, // Universal caption opacity
        prevText: '&laquo;', // Prev directionNav text
        nextText: '&raquo; ' // Next directionNav text
    });

});

