jQuery(function($){

    $("#menu-sidebar li a").hover(function(){
            $(this).stop().animate({
                marginLeft: '20px'
            },200);

        }, function(){
            $(this).stop().animate({
                marginLeft: '10px'
            },200);
        });

    $("#carousel").carouFredSel({
        height:95,
        width:500,
        align:'left',
        scroll:1,
        items:4,
        auto : {
            play:true,
            delay:3000,
            pauseOnHover:true,
            duration:1000
        },
        prev: {
            button: $('.prev')
        },
        next: {
            button: $('.next')
        },
    });

    /*$("#sidebar").css({'height': $("#contenu").height() + "px" });

    alert($("#contenu").height());*/

});
