/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

$(function() {

$(".tooltip_button").hover(
  function () {
    $(this).siblings('.tooltip').show();
  },
  function () {
    $(this).siblings('.tooltip').hide();
  }
);

});



