/* 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/ */

$.fn.delay=function(t,n){return this.queue((n||"fx"),function(){var s=this;setTimeout(function(){$.dequeue(s);},t);});};

