$(document).ready(function(){
	$("div#footer div.right a span").hide();
	$("div#footer div.right a").hover(function(){
		$(this).find("span").stop().fadeTo(500, 1);
	}, function(){
		$(this).find("span").stop().fadeTo(500, 0);
	});
	$("div#news span:not(:first)").hide();
	$t = setTimeout('nextTwitter()', 8000);
});
function nextTwitter(){
	currentshow = $("div#news span:visible").index();
	totalspan = $("div#news span").length;
	nextshow = currentshow+1;
	if(nextshow > totalspan)
		nextshow = 0;
	$("div#news span:visible").fadeOut(800, function(){
		$("div#news span:eq("+nextshow+")").fadeIn(800);
	});
	$t = setTimeout('nextTwitter()', 8000);
}
