/* jQuery Delay - A delay function * Copyright (c) 2009 Clint Helfers - chelfers(at)gmail(dot)com | http://blindsignals.com * Dual licensed under MIT and GPL. * Date: 7/01/2009 * @author Clint Helfers * @version 1.0.0 * http://blindsignals.com/index.php/2009/07/jquery-delay/ */
jQuery.fn.delay=function(time,name){return this.queue((name||"fx"),function(){var self=this;setTimeout(function(){jQuery.dequeue(self);},time);});};
// Delay Plugin for jQuery http://www.evanbot.com  © 2008 Evan Byrne
jQuery.fn.delayFunc=function(time,func){this.each(function(){setTimeout(func,time);});return this;};