// JavaScript Document
$(document).ready(function() {
						   
var planoanterior="1a";
  $('#contacto').hover(function() {
   $('#fade_contacto').stop().show().animate({top:'-105px'}, {queue:false, duration:500, easing: 'easeInOutBack'});
    $('#fade_newsletter').stop().animate({top:'-48px'}, {queue:false, duration:200, easing: 'easeInOutBack'}).hide();    
  },
  function() {
     	
    }
  );
  $('#newsletter').hover(function() {
	   $('#fade_newsletter').stop().show().animate({top:'-105px'}, {queue:false, duration:500, easing: 'easeInOutBack'}); 
	   $('#fade_contacto').stop().animate({top:'-48px'}, {queue:false, duration:200, easing: 'easeInOutBack'}).hide();  
	  },
	  function() {
		
	  }
  );
    $('.menuinferior').hover(function() {
	   $('.fades').stop().animate({top:'-48px'}, {queue:false, duration:200, easing: 'easeInOutBack'}).hide();  
	  },
	  function() {
		
	  }
  );
	
	$('.rollovermap').hover(
			function()
			{
				//$(this).fadeOut('slow');
				this.src = this.src.replace("_off","_on");
				var src = this.src.replace("Icono_tipo","plano_").replace("_on","");
				$(this).fadeIn('slow');
            	//$('#plano').attr("src", src);
				//$('#plano').fadeIn('slow');
				
				
			},
			function()
			{
				//$(this).fadeOut('slow');
				this.src = this.src.replace("_on","_off");
				//$('#plano').fadeOut('slow');
			}
		);
	$('.rollovermap').click(
			function()
			{
				$('#plano').fadeOut('fast');
				var src = this.src.replace("Icono_tipo","plano_").replace("_on","")
            	$('#plano').attr("src", src);
				$('#planotxt_'+planoanterior).hide();
				planoanterior=$(this).attr("hover");
				$('#planotxt_'+planoanterior).fadeIn('slow');
				$('#plano').fadeIn('slow');
				
				
			}
		);
	
		$('.selectmapa').click(
			function()
			{
				$('#plano_disponibilidad_mapa').fadeOut('fast');
				$('#planomini_disponibilidad').fadeOut('fast');
				$('#planomini_disponibilidad_mapa').fadeOut('fast');
				
				var src1 = "/images/imagen_"+$(this).attr("hover")+".jpg";
				
				var src2 = "/images/plano_"+$(this).attr("hover")+".jpg";
				
				
				if ($(this).attr("hover")=="a"){var src3 = "http://www.grupograndcoral.com.mx/padmin/viewmap.php?idp=2";}
				if ($(this).attr("hover")=="b"){var src3 = "http://www.grupograndcoral.com.mx/padmin/viewmap.php?idp=3";}
				if ($(this).attr("hover")=="c"){var src3 = "http://www.grupograndcoral.com.mx/padmin/viewmap.php?idp=4";}
				
            	$('#plano_disponibilidad_mapa').attr("src", src1);
				$('#planomini_disponibilidad').attr("src", src2);
				$('#planomini_disponibilidad_mapa').attr("src", src3);
				
				$('#plano_disponibilidad_mapa').fadeIn('slow');
				$('#planomini_disponibilidad').fadeIn('slow');
				$('#planomini_disponibilidad_mapa').fadeIn('slow');
				$('.selectmapa').css('text-decoration', 'none');
				$(this).css('text-decoration', 'underline');
				
				
			}
		);
  
});
function show_info(op){
 if (op==1){
   	 $('#info_texto2').fadeIn('slow');     
	 $('#info_texto1').fadeOut('slow');
	 }else
 if (op==2){
 	 $('#info_texto1').fadeIn('slow');     
	 $('#info_texto2').fadeOut('slow');
	} 
  
  }
function printpage() {
	window.print();  
}