$(function(){
    
    
    $('#slideshow').nivoSlider({
        controlNav:         false,
        pauseTime:          8000,
        directionNav:       false,
        directionNavHide:   false,
        pauseOnHover:       true,
        captionOpacity:     0.7
    });
    
    
    if($("#news ul").children().length > 1){
        $("#news").jCarouselLite({
            vertical: true,
            visible: 3,
            auto: 3000,
            speed: 1000
        });
    }
    
    $("#offerte dl")
        .click(function(){
            window.location = $('a:first', this).attr('href');
        });
        
    $("#offerte dl").attr('title',$('#offerte dl img:first').attr('title'));
    
});


