/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

$(document).ready(function(){
            $('#slider').nivoSlider({
                effect:'fade', // Specify sets like: 'fold, fade,sliceDown'
                animSpeed:500, // Slide transition speed
                pauseTime:3000, // How long each slide will show
                startSlide:0, // Set starting Slide (0 index)
                directionNav:false, // Next & Prev navigation
                controlNav:true, // 1,2,3... navigation
                pauseOnHover:true // Stop animation while hovering
            });
        });

