$(function() {
	$('.slideshow').cycle({
	delay: -2000,
	fx: 'scrollLeft',
	//speed: 'fast',
	timeoutFn: calculateTimeout
	});
});

// timeouts per slide (in seconds)
var timeouts = [20,20,20,20,20,20,20,20,20];
function calculateTimeout(currElement, nextElement, opts, isForward) {
var index = opts.currSlide;
return timeouts[index] * 1000;
}
