// Easing equation, borrowed from jQuery easing plugin
// http://gsgd.co.uk/sandbox/jquery/easing/
jQuery.easing.easeOutQuart = function (x, t, b, c, d) {
	return -c * ((t=t/d-1)*t*t*t - 1) + b;
};

jQuery(function( $ ){
				
	$(".news").jCarouselLite({
        btnNext: "#next",
        btnPrev: "#prev",
		auto: 3200,
	    speed: 800
    });

	
	/*$('#news').serialScroll({
		items:'div.newsitem',
		prev:'a#prev',
		next:'a#next',
		duration:400,
		step:1,
		exclude:2,
		force:true,
		interval:5000
	});*/
	
	
});
