$(document).ready(function() {
    // Nivo slider
    $('#slideshow').nivoSlider({
        effect: 'fade',
        slices: 10,
        animSpeed: 500,
        pauseTime: 5000,
        directionNav: true, //Next & Prev
        directionNavHide: true, //Only show on hover
        controlNav: false, //1,2,3...
        keyboardNav: true, //Use left & right arrows
        captionOpacity: 1, //Universal caption opacity
        pauseOnHover: true //Stop animation while hovering
    });

    $('#slideshow').find('.nivo-slice:first').addClass('roundleft');
    $('#slideshow').find('.nivo-slice:last').addClass('roundright');
});
