$(document).ready(function() {
	$("li.mostrar a").click(
	function(){
		
		$(".submenus div").hide();
		
     	var link = this.toString();
		var elemento = $(link.substr(link.indexOf('#')));
		
		elemento.fadeIn();
		

		$(this).find("mouseout", function(){
			$(elemento).oneTime(100, "escondeSubmenu", function() {	
				$(this).fadeOut();
				$(this).unbind("mouseout");
			});
		});
		
		$(elemento).find("ul li").hover(
			function(){ //mouseover
				$(this).parent().parent().stopTime("escondeSubmenu");
			}, 
			function(){ //mouseout
				$(this).parent().parent().oneTime(100, "escondeSubmenu", function() {	
					$(this).fadeOut();
					$(this).unbind("mouseout");
				});
			}						
		);
	});
});
