$(document).ready(function () {
	setTimeout(function() {
		var img = new Image();
		$(img)
		.load(function () {
			$(this).hide();
			$('#loader').hide();
			$('#container').append(this);
			$('#container').css('text-align','center');
			$(this).fadeIn('slow');
			$(this).css('display', 'inline');
			$('#linktoicv').click(function() {
				window.open('http://www.icvbook.com');
			});
		})
		.attr('src', 'intro.png');
	}, 1000);
});
