var stopHide = false;
jQuery(document).ready(function(){
  $('#mainmenu').find('a').bind({
	mouseover: function() {
		$('#extLinks').find('a').hide();
		stopHide = true;
		var eltId = $(this).attr('id').replace("mma","");
  		$('#mel'+eltId).show();
	},
	mouseout : function() {
		var eltId = $(this).attr('id').replace("mma","");
		window.setTimeout(function(){if(!stopHide) $('#mel'+eltId+':visible').hide();}, 5000);
		stopHide = false;
	}
  });
});
