// Easing equation, borrowed from jQuery easing plugin
// http://gsgd.co.uk/sandbox/jquery/easing/
jQuery.easing.easeOut = function (x, t, b, c, d) {
	return -c *(t/=d)*(t-2) + b;
};