// 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() {
    jQuery("#noticias-slide").jCarouselLite({
        btnNext: ".next-not",
        btnPrev: ".prev-not",
		easing: 'easeOutBounce',
		speed: 1000
    });
	
	jQuery("#clientes-slide").jCarouselLite({
        btnNext: ".next-cli",
        btnPrev: ".prev-cli",
		scroll: 3,
		easing: 'easeOutBounce',
		speed: 1000
	});
	
});
