$(document).ready(function() {
	$('#banner_rotator').cycle({
			fx: 'scrollHorz',
			//next: '#rotator_next',
			//prev: '#rotator_prev',
			timeout: 8000,
			after:	onAfter,
			speed:1000,
			pause: 1
	});
	/*$('#rotator_prev').click(function() {
		$('#banner_overlay_image').animate({'left':'-343px'},1000);
	});
	
	$('#rotator_next').click(function() {
		$('#banner_overlay_image').animate({'left':'-140px'},1000);
	});*/
	$('#rotator_narrow').cycle({
		fx:	'fade'
	});
});

function onAfter(curr, next, opts){
	var current = opts.currSlide;
	if(current==0){
		$('#banner_overlay_image').animate({'left':'-343px'},1000);
	} else {
		$('#banner_overlay_image').animate({'left':'-140px'},1000);
	}
}
