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