$(document).ready(function() {

		// Disable the animation in IE6
		if(browserVersion == 'ie6') {
			$('#cycle').cycle({
				fx: 'fade',
				speed: 500,
				timeout: 5000,
				pause: 1,
				pager: '#cycle-pager'
			});
		} else {
			$('.teaser-content').css('left', '980px');
			$('#cycle').cycle({
				fx: 'fade',
				speed: 500,
				timeout: 5000,
				pause: 1,
				pager: '#cycle-pager',
				before: slideRight,
				after: slideLeft
			});
		}
		$('#cycle-pager').css('width', ($('#cycle-pager').children().length * 13) + 'px');
});

// Counter so we start animating from the 2nd banner on
var i = 0;
var j = 0;

function slideRight() {
	$('.teaser-content').stop().animate({
		left: '920px'
	}, 350, 'easeOutExpo');
}

function slideLeft() {
	$('.teaser-content').stop().animate({
		left: '646px'
	}, 500, 'easeOutQuad');
}
