jQuery.easing.easeOutQuart = function (x, t, b, c, d) {
	return -c * ((t=t/d-1)*t*t*t - 1) + b;
};
jQuery (function (){
	jQuery('#featured-container2 .featured').serialScroll({
		items:'li.list_body',
		prev:'#featured-container2 .prev',
		next:'#featured-container2 .next',
		offset:-255, //when scrolling to photo, stop 230 before reaching it (from the left)
		start:1, //as we are centering it, start at the 2nd
		duration:1200
	});
})
