$.fn.extend({
later: function(_s, _m){
var that = this,
args = Array.prototype.slice.apply(arguments, [2]);
if (typeof _m === 'string')
_m = that[_m];
time = setTimeout(function(){
_m.apply(that, args);
}, _s);

return this;
}
});

