$(document).ready(function(){
		$('#top-banner A:not(:first)').hide();
		$('#right-one A:not(:first)').hide();
		$('#right-two A:not(:first)').hide();
		$('#right-three A:not(:first)').hide();
		setTimeout('rotateTop("top-banner", 3000)',3000);
		setTimeout('rotateTop("right-one", 6500)',6500);
		setTimeout('rotateTop("right-two", 3500)',3500);
		setTimeout('rotateTop("right-three", 3500)',3500);
	});
	
function rotateTop(containerId, timeout){
	if($('#' + containerId + ' A:visible').next().size() == 0) {
		$('#' + containerId + ' A:visible').fadeOut();
		$('#' + containerId + ' A:first').fadeIn();
	} else
		$('#' + containerId + ' A:visible').fadeOut().next(':first').fadeIn();
			
	setTimeout('rotateTop("' + containerId + '",' + timeout + ')',timeout);
}
