jQuery(document).ready(function(){
	
	jQuery("#menu li").hover(function(){
		$(this).children(":hidden").fadeIn();
		
		
		} , function(){
			jQuery(this).parent().find("ul").fadeOut(300);
			
			});
	
	});
	
	
	$(document).ready(function(){
		$("#funo , #fdos , #ftres , #fcuatro").hide();
		
		$("#fuego_maximo").click(function(){
			$("#funo").fadeOut();
			$("#fdos").fadeOut();
			$("#ftres").fadeOut();
			$("#fcuatro").fadeIn(1000);
			})
			
				$("#fuego_medio").click(function(){
			$("#funo").fadeOut();
			$("#fdos").fadeOut();
			$("#ftres").fadeIn(1000);
			$("#fcuatro").fadeOut();
			})
			
			$("#fuego_minimo").click(function(){
			$("#funo").fadeOut();
			$("#fdos").fadeIn(1000);
			$("#ftres").fadeOut();
			$("#fcuatro").fadeOut();
			})
			$("#fuego_corona").click(function(){
			$("#funo").fadeIn(1000);
			$("#fdos").fadeOut();
			$("#ftres").fadeOut();
			$("#fcuatro").fadeOut();
			})
		
		
		})
