// JavaScript Document
$(window).load(function () {
    $.get('/cms/assets/xml/xml.aspx?is=slider', function (data) {
        if (data.length > 0) {
            $('#slider').html(data);
            init_slider();
        }
        else {
            init_slider();
        }
    });
});
function init_slider() {
    $('#slider').nivoSlider({
        effect: 'fade', //Specify sets like: 'fold,fade,sliceDown'
        animSpeed: 500, //Slide transition speed
        pauseTime: 9000,
        startSlide: 0, //Set starting Slide (0 index)
        directionNav: true, //Next & Prev
        directionNavHide: true, //Only show on hover
        controlNav: true, //1,2,3...
        keyboardNav: true, //Use left & right arrows
        pauseOnHover: true, //Stop animation while hovering
        captionOpacity: 0.8 //Universal caption opacity
    });
}
