




/*
     FILE ARCHIVED ON 14:08:27 Jan 28, 2011 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 16:09:16 Jan 16, 2012.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/**
 * jQuery Delay - A delay function
 * Copyright (c) 2009 Clint Helfers - chelfers(at)gmail(dot)com | http://web.archive.org/web/20110128140827/http://blindsignals.com
 * Dual licensed under MIT and GPL.
 * Date: 7/01/2009
 * @author Clint Helfers
 * @version 1.0.0
 *
 * http://web.archive.org/web/20110128140827/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 );
    } );

};

