$(window).load(function () {
    $('#slider').nivoSlider({
        effect: 'fade', // Specify sets like: 'fold,fade,sliceDown'
        slices: 1, // For slice animations
        animSpeed: 500, // Slide transition speed
        pauseTime: 4500, // How long each slide will show
        directionNav: false, // Next & Prev navigation
        controlNav: true, // 1,2,3... navigation
        keyboardNav: true, // Use left & right arrows
        pauseOnHover: true, // Stop animation while hovering
        captionOpacity: 0.8 // Universal caption opacity
    });
    $('.contentWrap').liteSlider({
        content: '.content', 	// The panel selector. Can be a list also. eg:li
        width: 260, 		// Width of the slider
        height: 70, 		// Height of the slider
        autoplay: true, 	// Autoplay the slider. Values, true & false
        delay: 5, 		// Transition Delay. Default 3s
        buttonsClass: 'buttons', // Button's class
        activeClass: 'active', 	// Active class
        controlBt: '.control', 	// Control button selector
        playText: 'Play', 	// Play text
        pauseText: 'Stop'		// Stop text
    });
});
