/**
 * @author ragoncalves
 * @example 
 * if (typeof(jQuery().reloadStop) == "function")  {jQuery().reloadStop();};
 * if (typeof(jQuery().reloadStart) == "function") {jQuery().reloadStart();};
 */
(function(){var functions={reloadNow:function(){window.location.reload(true);},reloadStop:function(){window.clearInterval(window.reloadHandle);},reloadStart:function(){$().reloadIn(window.reloadTime);},reloadIn:function(time){var reloadTime=window.reloadTime=time;var reloadHandle=window.reloadHandle=window.setInterval('$().reloadNow()',reloadTime*1000);}};jQuery.each(functions,function(i){jQuery.fn[i]=this;});})();

