(function($){
	
	$(window).bind('load',function(){
		setTimeout(function(){
			// fixes the weird scrolling in IE while killing the fade
			$(document.body).css("height", "auto")
			$('#overlay').fadeOut(function(){
				$(this).remove();
			});
		}, 1000);
	});
	
})(jQuery);
