(function($) {   
    $.fn.TooltipPopup = function(opts) { 
    	var default_values = {
			id: '#tooltip'
		};
		var options = jQuery.extend(default_values, opts);
		
        return this.each(function() {
            $(this).tooltip({
                tip: options.id,
    		    position: 'bottom center',
    		    offset: [0, 105]    
            });    
        });   
    }
})(jQuery);

