$(function() {
		
	//alert('why');
	
	$(window).bind("load", function() {
		$('#overlay').animate({ opacity: 0 }, 3000, function() {
			$(this).css({ display: 'none' });
		});
	});
	
	$(window).bind("resize", function() {
		if($(window).height() < $('#layout').height()) {
			$('body').css({ height: '600px', backgroundPositionY: '-120px' });
			$('#layout').css({ bottom: 'auto', top: '0px' });
		} else {
			$('body').css({ height: '100%', backgroundPositionY: 'bottom' });
			$('#layout').css({ bottom: '0px', top: 'auto' });
		}
	});
});
