
$(document).ready(function() {
  $('.map').hoverIntent({
    over: function() {
      $(this).children('.area').addClass('hover');
      $(this).children('.info').fadeIn('fast');
    },
    out: function() {
      $(this).children('.area').removeClass('hover');
      $(this).children('.info').fadeOut('fast');
    },
    timeout: 200,
  });
  
  $('#battery_red').pulse({
      opacity: [1,0] // pulse between 1 and 0
  }, {
    times: 1000,
    duration: 700
  });
});
