$(document).ready(function() {
	setInterval('updateAwards()', 2000);
});

function updateAwards() {
	$('#sideLatestAwards ul li:first-child').width(($('#sideLatestAwards ul li:first-child img').width() + 'px'));
	$('#sideLatestAwards ul li:first-child img').css({'position': 'absolute', 'right': '0'});
	$('#sideLatestAwards ul li:first-child').animate({width: 0}, 'fast', function() {
		$('#sideLatestAwards ul li:first-child img').css({'position': 'relative'});
		$('#sideLatestAwards ul li:first-child').appendTo($('#sideLatestAwards ul')).width('auto');
	});
}

