jQuery(document).ready( function(){

	/* external link */		
	jQuery("a[rel='blank']").click(function(){
		window.open(jQuery(this).attr('href'));
		return false;
	});


	$(".nav li a").click(function(){
		if ($(this).attr('href')=='')
		{			
			$(".header div").hide("fast");
			//alert();
			$("#"+$(this).parent("li").attr("class")).slideDown("slow");
			return false;
		}else{
			window.location=jQuery(this).attr('href');
		}
	});


	$(".footer li:first").css("border","0");


	$("#cerrar").animate({ bottom: "0px" }, 500 );

	$("#cerrar a").click(function(){
		$("#cerrar").animate({ bottom: "-40px" }, 500 );
		$("#abrir").animate({ bottom: "0px" }, 1000 );
		return false;
	});

	$("#abrir a").click(function(){
		$("#abrir").animate({ bottom: "-40px" }, 500 );
		$("#cerrar").animate({ bottom: "0px" }, 1000 );
		return false;
	});

	/* menu */
	$("#seccion_humor #humor").show();
	$("#seccion_clight #clight").show();
	$("#seccion_barra #barra").show();
	$("#seccion_revolvete #revolvete").show();
	
});

