$(document).ready(function() {

        var hide01 = false;
		$("#about-the-trust").hover(function(){          
		   if (hide01) clearTimeout(hide01);
            $("#dropdown-about-the-trust").show();
			$(this).addClass("active");
        }, function() {
			hide01 = setTimeout(function() {$("#dropdown-about-the-trust").hide();});
			$("#about-the-trust").removeClass("active");
        });
        $("#dropdown-about-the-trust").hover(function(){
            if (hide01) clearTimeout(hide01);
            $("#about-the-trust").addClass("active");
        }, function() {
			hide01 = setTimeout(function() {$("#dropdown-about-the-trust").hide();});
			$("#dropdown-about-the-trust").stop().show();
			$("#about-the-trust").removeClass("active");
        });

        var hide02 = false;
		$("#about-the-manager").hover(function(){          
		   if (hide02) clearTimeout(hide02);
            $("#dropdown-about-the-manager").show();
			$(this).addClass("active");
        }, function() {
			hide02 = setTimeout(function() {$("#dropdown-about-the-manager").hide();});
			$("#about-the-manager").removeClass("active");
        });
        $("#dropdown-about-the-manager").hover(function(){
            if (hide02) clearTimeout(hide02);
            $("#about-the-manager").addClass("active");
        }, function() {
			hide02 = setTimeout(function() {$("#dropdown-about-the-manager").hide();});
			$("#dropdown-about-the-manager").stop().show();
			$("#about-the-manager").removeClass("active");
        });
		
        var hide03 = false;
		$("#asset-portfolio").hover(function(){          
		   if (hide03) clearTimeout(hide03);
            $("#dropdown-asset-portfolio").show();
			$(this).addClass("active");
        }, function() {
			hide03 = setTimeout(function() {$("#dropdown-asset-portfolio").hide();});
			$("#asset-portfolio").removeClass("active");
        });
        $("#dropdown-asset-portfolio").hover(function(){
            if (hide03) clearTimeout(hide03);
            $("#asset-portfolio").addClass("active");
        }, function() {
			hide03 = setTimeout(function() {$("#dropdown-asset-portfolio").hide();});
			$("#dropdown-asset-portfolio").stop().show();
			$("#asset-portfolio").removeClass("active");
        });
		
        var hide04 = false;
		$("#investors-relations").hover(function(){          
		   if (hide04) clearTimeout(hide04);
            $("#dropdown-investors-relations").show();
			$(this).addClass("active");
        }, function() {
			hide04 = setTimeout(function() {$("#dropdown-investors-relations").hide();});
			$("#investors-relations").removeClass("active");
        });
        $("#dropdown-investors-relations").hover(function(){
            if (hide04) clearTimeout(hide04);
            $("#investors-relations").addClass("active");
        }, function() {
			hide04 = setTimeout(function() {$("#dropdown-investors-relations").hide();});
			$("#dropdown-investors-relations").stop().show();
			$("#investors-relations").removeClass("active");
        });
		
        var hide05 = false;
		$("#news-room").hover(function(){          
		   if (hide05) clearTimeout(hide05);
            $("#dropdown-news-room").show();
			$(this).addClass("active");
        }, function() {
			hide05 = setTimeout(function() {$("#dropdown-news-room").hide();});
			$("#news-room").removeClass("active");
        });
        $("#dropdown-news-room").hover(function(){
            if (hide05) clearTimeout(hide05);
            $("#news-room").addClass("active");
        }, function() {
			hide05 = setTimeout(function() {$("#dropdown-news-room").hide();});
			$("#dropdown-news-room").stop().show();
			$("#news-room").removeClass("active");
        });
		
	
});

