/*
    CUSTOM PRO JQUERY
*/

$(document).ready(
  function()
  { 
    
    $("#mapa_CR map area").mouseover(function(){
      $("#mapa_CR div." + this.id).show(); //fadeIn(300); // show() 
    });
    
    $("#mapa_CR div").mouseover(function(){    
      $(this).show();
    });
    
    $("#mapa_CR map area").mouseout(function(){
      $("#mapa_CR div." + this.id).hide(); //fadeOut(300); // hide()            
    });
    
    $("#mapa_CR div").mouseout(function(){        
      $(this).hide();
    });
    
  }
);

