function show(i) {

	$('#logos table:visible').fadeOut('medium',function() {

		$('#logos table').eq(i).fadeIn('medium');

	});

	if (++i >= $('#logos table').length){i=0};

	setTimeout('show(' + i + ')',5000);	

}



$(function() { $('#logos table:first').show(); setTimeout('show(0)',5000); });