$(function(){
	$('#updateInfo dd:last , #updateInfo dt:last').css("border-bottom", "none");
	// logo rotation
	var logoHeight = '85';
	setInterval(function() {
		$('#sponsorsLogoList > li:first').animate({'marginTop': '-' + logoHeight + 'px'}, 1500, function() {
			$(this).remove();
		}).clone().appendTo($('#sponsorsLogoList'));
	}, 4000);
});

