// Credits: Robert Penners easing equations (http://www.robertpenner.com/easing/).
jQuery.easing['BackEaseOut'] = function(p, n, firstNum, diff) {
	var c=firstNum+diff;
	var s = 1.70158; // default overshoot value, can be adjusted to suit
	return c*((p=p/1-1)*p*((s+1)*p + s) + 1) + firstNum;
	};


jQuery(document).ready(function() {
    jQuery('#mycarousel').jcarousel({
        easing: 'BackEaseOut',
	auto: 4,
	scroll: 1,
	wrap: 'last',
        animation: 1500
    });
});
