
$(function () {
    $('.header li').hover(function () {
        $(this).children('ul').stop(true, true).slideDown('500');
    }, function () {
        $(this).children('ul').stop(true, true).slideUp('500');
    });
    
    $('#partner-slider').jcarousel({
        scroll: 1,
        auto: 4,
        wrap: 'last'
    });

});


