/* 
 * Version: 1.0.0
 * Written with jQuery 1.3.2
 */
jQuery.fn.delay = function(time,func){
    return this.each(function(){
        setTimeout(func,time);
    });
};
