$(document).ready(function() {
    //Hides the second level of the menu after 3 seconds mouse is out of the ul
		$('.level1-fadeout').mouseleave(function(){
    $(this).addClass("slownavfade");
    $(this).siblings().addClass("level0-hover");
		var selector = $(this);
    setTimeout(function() {
       $(selector).removeClass("slownavfade");
       $(selector).siblings().removeClass("level0-hover");
    }, 2000);
   });
});

