// JavaScript CONSOLAS Expande Colapsa
jQuery(document).ready(function() {
  //Contenedor Datos  = Pagina de Producto / Servicio
  $("#contenedor_datos").show();

  $("#encabezado").click(function()
  {
	 if ($('#contenedor_datos').is(':visible')) {
		$('#contenedor_datos').hide('fast');
	 } else {
		$('#contenedor_datos').show('fast');
	 } 
  });
  
//Contenedor Datos 2 = Cápsula de Información Técnica
   $("#contenedor_datos2").hide();

  $("#encabezado_capsula").click(function()
  {
	 if ($('#contenedor_datos2').is(':visible')) {
		$('#contenedor_datos2').hide('fast');
	 } else {
		$('#contenedor_datos2').show('fast');
	 } 
  });

//Contenedor Datos 3 = Geo Ip
   $("#contenedor_datos3").hide();
   //toggle the componenet with class msg_body
  $("#encabezado_geoip").click(function()
  {
	 if ($('#contenedor_datos3').is(':visible')) {
		$('#contenedor_datos3').hide('fast');
	 } else {
		$('#contenedor_datos3').show('fast');
	 } 
 });


//Contenedor Datos 4 = Solicitud de Cotización
   $("#contenedor_datos4").show();

  $("#encabezado_coti").click(function()
  {
	 if ($('#contenedor_datos4').is(':visible')) {
		$('#contenedor_datos4').hide('fast');
	 } else {
		$('#contenedor_datos4').show('fast');
	 } 
  });

});

