$(function(){
	function fade_news() {
		var $news_li = $('#news li');
		var $first_news = $news_li.eq(0);
		var num_news_items = Math.min($news_li.length, Math.floor(($(window).height() - $first_news.position().top) / $first_news[0].offsetHeight) - 2);
	
		$news_li.each(function(i){
			$(this).css('opacity', Math.max(0, 1 - (i / num_news_items)));
		});
	}
	fade_news();

	$('body').prepend('<canvas id="theapt" width="100" height="100" style="position:absolute;z-index:0;top:0;left:0;"></canvas>');
		
	function schedule_scroll(){
		setTimeout(function(){
			$('#news li:first').slideUp(function(){
				$(this).remove().clone().show().appendTo('#news ul');
				
				fade_news();
				schedule_scroll();
			})
		}, 10000);
	}
	schedule_scroll();
});
