(function($) {
	jQuery.fn.changeFontsize = function(increment, speed, easing, callback) {
		this.each(function(){
			var self = jQuery(this),
				current = parseInt(self.css('font-size'));
			self.css('font-size', current + increment + "px");
			
		});
		return false;
	};
	
})(jQuery);
