jQuery(function($) {
	
	$('.dropdown').css({ visibility : "visible", display : "none" }).each(function () {
		$(this).parent().eq(0).hover(function () {
			$('#menu').css('z-index',999);
			$('.dropdown:eq(0)', this).show(); // muestra dropdown menu
			$('.dropdown:eq(0)', this).css("filter", "");
			//$('.dropdown:eq(0)', this).fadeIn('slow'); // muestra dropdown menu		
			$('.dropdown:eq(0)', this).stop().animate({display : 'inline' }, "slow");	
			
			$(this).find("a").eq(0).addClass('selected'); // mantiene el boton seleccionado
			
		}, function (){
			
			$('.dropdown:eq(0)', this).hide(); // esconde dropdown menu			
			$('.dropdown:eq(0)', this).stop().animate({'opacity' : 0}, "slow");
			$('.dropdown:eq(0)', this).stop().animate({'display' : 'none' }, "slow");	
			if($('.dropdown').css('display')=='none'){
					$('#menu').css('z-index',997);
				}
			//$('.dropdown:eq(0)', this).fadeOut('slow'); // esconde dropdown menu		
			//$(this).find("a").eq(0).removeClass('selected'); // deselecciona el boton seleccionado
		});
	});
	
	
	$('#submenu').hover(function () {
	
	}, function(){
	
	});

	
});

