// JavaScript Document
$().ready(function(){
			
	$("#active a.visible").hide(500);
	$("#active a.oculto").show(500);
	$("#active div.oculto").show(500);	
	
	$("#entradillas > div a.vinculo").click(function(){
		
		$("#active a.visible").show(500);
		$("#active a.oculto").hide(500);
		$("#active div.oculto").hide(500);	
		$("#entradillas > div").removeAttr("id");
			$(this).parent().parent().attr("id","active");
			$("#active a.visible").hide(500,function(){
				$("#active a.oculto").show(500);
				$("#active div.oculto").show(500);		
		});
	});
	$("#entradillas a.visible").click(function(){
		$("#active a.visible").show(500);
		$("#active a.oculto").hide(500);
		$("#active div.oculto").hide(500);	
		$("#entradillas > div").removeAttr("id");
			$(this).parents("div:first").parent().attr("id","active");
			$("#active a.visible").hide(500,function(){
				$("#active a.oculto").show(500);
				$("#active div.oculto").show(500);	
			});
	});
	
});
