﻿$(document).ready(function() {
	$("#como_funciona").hide();
	$("#en_que_me_beneficia").hide();
	$("#quienes_somos").hide();
	$("#formulario_contratacion").hide();
	$("#detalles_contratacion").hide();
	$("#contenedor_texto").css("background-color","transparent");	
	
	/*Voy a la sección presente en la ruta*/
	var seccion = window.location.hash.substring(1);
	if(seccion!="") {
		$("#que_es").hide();
		$("#" + seccion).show();
	} else {
		$("#que_es").show();
	}
	
	$("#contenedor_flash").html("");
	$("#contenedor_flash").flash({
		swf : "img/adserver_700x400.swf",
		width: 700,
		height: 400,
		params:{wmode:"transparent"}
	});			
	
	$("#boton_contratacion").mouseover(function(){
		$(this).attr("src","img/boton_derecha2.png");
	})
	
	$("#boton_contratacion").mouseout(function(){
		$(this).attr("src","img/boton_derecha.png");
	})
	
	$("#boton_contratacion").click(function(){
		$(".menu span").removeClass("active");
		$("#contenedor_texto>div").hide();
		$("#formulario_contratacion").show("fast");		
		return false;
	})
	
	$(".menu, #boton_quienes_somos, #boton_detalles_contratacion").click(function(){
		var id_boton = $(this).attr("id");
		var id_texto_asociado = id_boton.slice(6);
		$(".menu span").removeClass("active");
		$(this).find("span").addClass("active");
		$("#contenedor_texto>div").hide();
		$("#"+id_texto_asociado).show("slow");
		return false;
	})
		
	$(".mas_info").hoverbox();
});
