$(document).ready(function() {

    // menu
    $('.menu-top > li').hoverIntent(function() {
        $(this).addClass('menu-hover');
        $(this).children('ul').slideDown();
    }, function() {
        $(this).removeClass('menu-hover');
        $(this).children('ul').slideUp();
    });

    // naarboven
    $('a[href=#site]').click(function(){
        $('html, body').animate({scrollTop:0}, 'slow');
        return false;
	});

    // nieuw venster
    $('a[rel=target_blank]').click(function() {
        window.open(this);
        return false;
    });

});

$(window).load(function() {
    $('#slider').nivoSlider({
        effect:'fade', //Specify sets like: 'random,fold,fade,sliceDown'
        slices:15,
        animSpeed:500, //Slide transition speed
        pauseTime:3500,
        startSlide:0, //Set starting Slide (0 index)
        directionNav:true, //Next & Prev
        directionNavHide:true, //Only show on hover
        controlNav:false, //1,2,3...
        keyboardNav:true, //Use left & right arrows
        pauseOnHover:true, //Stop animation while hovering
        manualAdvance:false, //Force manual transitions
        captionOpacity:0.8
    });

});
