$(document).ready(function() {
    $("#mySlider").royalSlider({
        captionShowEffects:["moveleft", "fade"],
        directionNavAutoHide: true,
        imageAlignCenter:true,
        slideSpacing: 0,
        slideshowEnabled: true,                // Autoslideshow enabled          
        slideshowDelay:8000,                    // Delay between slides in slideshow
        slideshowPauseOnHover: true,            // Pause slideshow on hover
        slideshowAutoStart:true, 
        /* other options go here, view javascript options to learn more */			
    });  
    $("div#navigation").css('height', '60px');
    $("div#navigation").css('overflow', 'hidden');
    $("li.page-item-13").mouseover(function() {
        $(".merkenChildren").attr('style', 'display: block !important');
        $(".teamChildren").attr('style', 'display: none !important');
    	$("#navigation").stop().animate({height:"170px"},200);
    }).mouseout(function(){
    	$("#navigation").stop().animate({height:"60px"},200);
    });

    $("li.page-item-25").mouseover(function() {
        $(".merkenChildren").attr('style', 'display: none !important');
        $(".teamChildren").attr('style', 'display: block !important');
        $("#navigation").stop().animate({height:"170px"},200);
    }).mouseout(function(){
        $("#navigation").stop().animate({height:"60px"},200);
    });
});
