$(function () {
	// Slideshow

	$('#slider').cycle({fx: 'turnDown', timeout: 8000, speed: 3000});
	$('.slide-img').click(function () { window.location.href = $(this).data('url'); });
});

function slide()
{
	// Slide Away
	$('#scroller div:eq('+ window.scur +')')
		.animate({left: '-'+$('#scroller').width()+'px'}, function () {
			//Place on right
			$(this).css('left', window.swidth+'px')

			if (++window.scur >= window.smax) window.scur = 0;

			// Slide Into View
			$('#scroller div:eq('+ window.scur +')')
				.animate({left: window.sleft+'px'}, 1000, 'easeOutCirc');
		});

	setTimeout('slide()', 5000);
}
