	$(document).ready(
	function() {
    	$('.rotate').cycle({
			fx: 'fade', 
			continuous: 0,
			timeout: 9000,
			speed: 500,
			pager:  '#pager'
		});

    	$('.rotate_sponsor').cycle({
			fx: 'fade', 
			continuous: 0,
			timeout: 8000,
			speed: 500
		});

    	$('.rotate_side').cycle({
			fx: 'fade', 
			continuous: 0,
			timeout: 5000,
			speed: 500,
			after:   onAfter
		});	
		function onAfter() {
    $('#output').html("Current anchor: " + this.href);
}

	});
	

	

