$(function() {
	$('img').hide();
});
$(window).load(function() {
	$('img').fadeIn('slow');
});
