$(
  function() {
    $("div.google_map_tooltip").show();

    $('div.google_map_tooltip').animate({
      "opacity": .6
    });

    //hover effect
    $("div.google_map_tooltip").hover(
      function(){
        $(this).animate({
          "opacity": 1
        },100);
        $(this).children("div.tooltip").stop().show().animate({opacity: 1, top: "-263px"}, 300);
      },
      function(){
        $(this).animate({
          "opacity": .6
        },100);
        $(this).children("div.tooltip").stop().animate({opacity: 0, top: "-283px"}, 200,function(){$(this).hide()})
      }
    );
    
  
  }
);

$(
  function() {
    $("div.google_map_tooltip_mapa").show();

    $('div.google_map_tooltip_mapa').animate({
      "opacity": .6
    });

    //hover effect
    $("div.google_map_tooltip_mapa").hover(
      function(){
        $(this).animate({
          "opacity": 1
        },100);
        $(this).children("div.tooltip_mapa").stop().show().animate({opacity: 1, top: "-263px"}, 300);
      },
      function(){
        $(this).animate({
          "opacity": .6
        },100);
        $(this).children("div.tooltip_mapa").stop().animate({opacity: 0, top: "-283px"}, 200,function(){$(this).hide()})
      }
    );
    
  
  }
);


