jQuery.easing['easeInOutQuad'] = function (x, t, b, c, d) {    if ((t/=d/2) < 1) return c/2*t*t + b;    return -c/2 * ((--t)*(t-2) - 1) + b;};$(function() {    $("#renters .slider").jCarouselLite({        btnNext: "#renters .r",        btnPrev: "#renters .l",		visible: 7,		easing: 'easeInOutQuad',		speed: 500    });});
