jQuery.easing.easeOutQuart = function (x, t, b, c, d) {
	return -c * ((t=t/d-1)*t*t*t - 1) + b;
};
$(document).ready(function() {
	  $('#slideshow').cycle({timeout:1000,fx: 'fade' 	  })	

});


