$(document).ready(function() {
	
	// Expand Panel
	$("#open").click(function(){
		$("div#panel").slideDown("slow");
	
	});	
	
	// Collapse Panel
	$("#close").click(function(){
		$("div#panel").slideUp("slow");	
	});		
	
	// Switch buttons from "Log In | Register" to "Close Panel" on click
	$("#toggle a").click(function () {
		$("#toggle a").toggle();
	});		
		
});

$(document).ready(function() {

	//Default Action
	$(".contenido-tav").hide(); //Hide all content
	$("#nav ul li:first").addClass("active").show(); //Activate first tab
	$(".contenido-tav:first").show(); //Show first tab content
	
	//On Click Event
	$("#nav ul li").click(function() {
		$("#nav ul li").removeClass("active"); //Remove any "active" class
		$(this).addClass("active"); //Add "active" class to selected tab
		$(".contenido-tav").hide(); //Hide all tab content
		var activeTab = $(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content
		$(activeTab).fadeIn(); //Fade in the active content
		return false;
	});

});


 /*----------------------------------------------------
/ Inicio de Formulario de contacto dinámico
----------------------------------------------------*/

	$(document).ready(function(){
		// Mostrar las cabeceras del formulario		
		$("#educacion, #disponibilidad, #experiencia_laboral, #info_cine, #documentos").children().hide();
		$("#grupo_familiar").show(500);
		$("#educacion li:first-child").show(500);
		$("#disponibilidad li:first-child").show(500);
		$("#experiencia_laboral li:first-child").show(500);
		$("#info_cine li:first-child").show(500);
		$("#documentos li:first-child").show(500);
		
		// Al hacer click en botón Siguiente, estando en Grupo Familiar
		$(".1 .boton_siguiente_paso").click(function(){
			$(".1").children().hide();
			$("#grupo_familiar li:first-child").show();
			$("#educacion li:first-child").show();
			$("#disponibilidad li:first-child").show();
			$("#experiencia_laboral li:first-child").show();
			$("#info_cine li:first-child").show();
			$("#documentos li:first-child").show();
			$(".2").children().show(300);
		});
		
		// Al hacer click en botón Siguiente, estando en Educación
		$(".2 .boton_siguiente_paso").click(function(){
			$(".2").children().hide();
			$("#grupo_familiar li:first-child").show();
			$("#educacion li:first-child").show();
			$("#disponibilidad li:first-child").show();
			$("#experiencia_laboral li:first-child").show();
			$("#info_cine li:first-child").show();
			$("#documentos li:first-child").show();
			$(".3").children().show(300);
		});
		
		// Al hacer click en botón Anterior, estando en Educación
		$(".2 .boton_anterior_paso").click(function(){
			$(".2").children().hide();
			$("#grupo_familiar li:first-child").show();
			$("#educacion li:first-child").show();
			$("#disponibilidad li:first-child").show();
			$("#experiencia_laboral li:first-child").show();
			$("#info_cine li:first-child").show();
			$("#documentos li:first-child").show();
			$(".1").children().show(300);
		});
		
		// Al hacer click en botón Siguiente, estando en Disponibilidad
		$(".3 .boton_siguiente_paso").click(function(){
			$(".3").children().hide();
			$("#grupo_familiar li:first-child").show();
			$("#educacion li:first-child").show();
			$("#disponibilidad li:first-child").show();
			$("#experiencia_laboral li:first-child").show();
			$("#info_cine li:first-child").show();
			$("#documentos li:first-child").show();
			$(".4").children().show(300);
		});
		
		// Al hacer click en botón Anterior, estando en Disponibilidad
		$(".3 .boton_anterior_paso").click(function(){
			$(".3").children().hide();
			$("#grupo_familiar li:first-child").show();
			$("#educacion li:first-child").show();
			$("#disponibilidad li:first-child").show();
			$("#experiencia_laboral li:first-child").show();
			$("#info_cine li:first-child").show();
			$("#documentos li:first-child").show();
			$(".2").children().show(300);
		});

		// Al hacer click en botón Siguiente, estando en Experiencia
		$(".4 .boton_siguiente_paso").click(function(){
			$(".4").children().hide();
			$("#grupo_familiar li:first-child").show();
			$("#educacion li:first-child").show();
			$("#disponibilidad li:first-child").show();
			$("#experiencia_laboral li:first-child").show();
			$("#info_cine li:first-child").show();
			$("#documentos li:first-child").show();
			$(".5").children().show(300);
		});
		
		// Al hacer click en botón Anterior, estando en Experiencia
		$(".4 .boton_anterior_paso").click(function(){
			$(".4").children().hide();
			$("#grupo_familiar li:first-child").show();
			$("#educacion li:first-child").show();
			$("#disponibilidad li:first-child").show();
			$("#experiencia_laboral li:first-child").show();
			$("#info_cine li:first-child").show();
			$("#documentos li:first-child").show();
			$(".3").children().show(300);
		});
		
		// Al hacer click en botón Siguiente, estando en Info Cine
		$(".5 .boton_siguiente_paso").click(function(){
			$(".5").children().hide();
			$("#grupo_familiar li:first-child").show();
			$("#educacion li:first-child").show();
			$("#disponibilidad li:first-child").show();
			$("#experiencia_laboral li:first-child").show();
			$("#info_cine li:first-child").show();
			$("#documentos li:first-child").show();
			$(".6").children().show(300);
		});
		
		// Al hacer click en botón Anterior, estando en Info Cine
		$(".5 .boton_anterior_paso").click(function(){
			$(".5").children().hide();
			$("#grupo_familiar li:first-child").show();
			$("#educacion li:first-child").show();
			$("#disponibilidad li:first-child").show();
			$("#experiencia_laboral li:first-child").show();
			$("#info_cine li:first-child").show();
			$("#documentos li:first-child").show();
			$(".4").children().show(300);
		});
		
		// Al hacer click en botón Anterior, estando en Documentos
		$(".6 .boton_anterior_paso").click(function(){
			$(".6").children().hide();
			$("#grupo_familiar li:first-child").show();
			$("#educacion li:first-child").show();
			$("#disponibilidad li:first-child").show();
			$("#experiencia_laboral li:first-child").show();
			$("#info_cine li:first-child").show();
			$("#documentos li:first-child").show();
			$(".5").children().show(300);
		});
		
	})
	
/*----------------------------------------------------
/  Fin de Formulario de contacto dinámico
----------------------------------------------------*/
