//slider haut
$(window).load(function() {
    $('#slider').nivoSlider({
        effect:'boxRain', // Specify sets like: 'fold,fade,sliceDown'
		slices: 25, // For slice animations
        boxCols: 8, // For box animations
        boxRows: 8, // For box animations
        animSpeed:500, // Slide transition speed
        pauseTime:5000, // How long each slide will show
        directionNav:false, // Next &amp; Prev navigation
        directionNavHide:false, // Only show on hover
        controlNav:false, // 1,2,3... navigation
        controlNavThumbs:false, // Use thumbnails for Control Nav
        controlNavThumbsFromRel:false, // Use image rel for thumbs
        keyboardNav:false, // Use left &amp; right arrows
        pauseOnHover:false // Stop animation while hovering
    });
});
