(function($) {
  $.fn.mytooltip = function() {
    return this.each(function() {
    	var tooltip_id = '#'+$(this).attr('id')+'-pu';
      	$(this).hoverIntent(
			function() {
				$(tooltip_id).fadeIn();
			},
			function() {
				$(tooltip_id).fadeOut();
			}
		);
    });
  }
})(jQuery);
