$(document).ready(function () {
    $("#main-navigation ul li").hoverIntent(
        function () { $(this).children('ul').fadeIn(200); },
        function () { $(this).children('ul').fadeOut(200); }
    );

    $('#klanten').cycle({
        fx: 'fade',
        timeout: 4500,
        delay: 500,
        sync: true
    });
});
