$(document).ready(function(){

      var uelemento=null;

      $("a[@id^=mnu]").hover(
		      function () {

					if (uelemento != null) {
						$("#mnusub" + uelemento).hide();
						uelemento = null;
					}

					if ($("#mnusub" + this.id.substr(3)) != null) {

						uelemento = this.id.substr(3);

						$("#mnusub" + uelemento).fadeTo("fast", 0.8);

						$("#mnusub" + uelemento).css("left",this.offsetLeft + ((this.offsetWidth-200)/2));
						$("#mnusub" + uelemento).css("top",document.getElementById('nav_center').offsetTop + document.getElementById('nav_center').offsetHeight + 2);
						$("#mnusub" + uelemento).slideDown("fast");
					}
		      },

		      function () {}
    	),

    	$("div[@id^=mnusub]").hover(
			function () {},

		   function () {
				if (uelemento != null) {
					$("#mnusub" + uelemento).hide();
					uelemento = null;
				}
		   }
		);

});
