$(document).ready(function () {
	
	var img = new Image();
	$(img).load(function () {
		$(img).hide();
		$('div#container').removeClass('loading').append(img);
		$(img).fadeIn('slow');
	}).attr('src', '/img/uc.png');
});