$(function () {
	// jQuery slideshow managers
	// Only cycle if multiple elements exist
	if ($('div#slider > div > img').length > 1) {
		$('div#slider > div').cycle({
			slideExpr: 'img',
			fx: 'scrollLeft',
			timeout: 10000,
			width: 1000,
			height: 360
		});
	}
	if ($('div#clients > table > tr').length > 1) {
		$('div#clients > table').cycle({
			slideExpr: 'tr',
			fx: 'scrollLeft',
			timeout: 10000,
			width: 1000,
			height: 85
		});
	}
});

