// 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( $ ){

	$('.infiniteCarousel').infiniteCarousel();
	$('#slider1_content')
	  .anythingSlider({
	   width        : 600,
	   height       : 217,
	   autoPlay 	: true,
	   startStopped : false,
	   delay 		: 6000,
	   animationTime : 600,
	   resumeDelay 	: 15000,
	   autoPlayLocked : true
	})
});	



 

