function twitads() {
	var item_height = $('#twitads ul li').outerHeight() + 37;
	var top_indent = parseInt($('#twitads ul').css('top')) - item_height;
	$('#twitads ul').animate({'top': top_indent}, 1000 ,function(){
		$('#twitads ul li:last').after($('#twitads ul li:first'));
		$('#twitads ul').css({'top': '-81px'});
	});
};

$(document).ready(function() {
	$('#twitads ul a').click(function() {
		window.open(this.href);
		return false;
	});
	window.setInterval('twitads()',10000);
});