/**
 * This jQuery plugin displays pagination links inside the selected elements.
 *
 * @author Marcelo Moises
 * @version 1.0
 * @param {func} callback function
 * @return {Object} jQuery Object
 */
;(function($)
	{
		$.fn.callback = function(func)
			{
				if(typeof func == 'function') func();
			};
	
	})(jQuery);


