jquery easing を extendするときの書き方
$.extend($.easing, { easeOutQuad: function(x, t, b, c, d) { return -c * (t /= d) * (t - 2) + b; } });