jQuery(document).ready(function(){
	
$(".myrollover").hover(
 function()
 {
  this.src = this.src.replace("_off","_on");
    $("#boton_boletin").hide();

 },
 function()
 {
  this.src = this.src.replace("_on","_off");
 }
);
$(".myrollover_map").hover(
 function()
 {
  this.src = this.src.replace("_off","_on");
    $("#mapa_label").html($(this).attr("alt"));

 },
 function()
 {
  this.src = this.src.replace("_on","_off");
 }
);
$(".myrollover_galeria").hover(
 function()
 { 
  file = this.src;
  $("#maingaleria").attr("src",file.replace("_icon_off",""));
  this.src =file.replace("_off","_on");
   

 },
 function()
 {
  this.src = this.src.replace("_on","_off");
 }
);

$(".myrollover_galeria").click(
 function()
 { 
  file = this.src;
  /*$("#maingaleria").attr("src",file.replace("_icon_off",""));*/
  this.src =file.replace("_off","_on");
   

 }
);

$("#btnboletin").click(function () { 
      $("#boton_boletin").fadeIn("slow"); 
    });
	
});
function show_over_up(name){
	
	$("#mapa_icono"+name).attr("src",$("#mapa_icono"+name).attr("src").replace("_on","_off"));
	
	
}

function show_over_down(name){
	$("#mapa_icono"+name).attr("src",$("#mapa_icono"+name).attr("src").replace("_off","_on"));
	$("#mapa_label").html($("#mapa_icono"+name).attr("alt"));
	
}
function change_disponibilidad(name,id){
	
	$("#img_disponibilidad").attr("src","http://www.grupograndcoral.com.mx/padmin/viewmap.php?idp="+id);
	$("#label_torre").html(name);
	
	
}

$("#printimg").click(function () { 

	window.print();
	alert("a");

});
