// Delay Plugin for jQuery
// - http://www.evanbot.com
// - © 2008 Evan Byrne

jQuery.fn.delay = function(time, func)
{
    this.each(function()
    {
        this.delayTimer = setTimeout(func, time);
    });

    return this;
};

jQuery.fn.clearDelay = function()
{
    this.each(function()
    {
        clearTimeout(this.delayTimer);
    });

    return this;
};