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