$(document).ready(function() {
	if($(document).height() < 780) {
		$('#bg').height((780 - 96));
		$('#left').height((780 - 360));
	}
	else {
		$('#bg').height(($(document).height() - 96));
		$('#left').height(($(document).height() - 360));
	}

	$('#menu ul li').hover(
		function() {
			if(!$(this).find('.hider:animated').size()) {
				$(this).find('.hider').css({ height: '0px', overflow: 'hidden', display: 'block' }).animate({ height: ($('.sub', this).height() + 20) + 'px' }, 400);
			}
		},
		function() {
				$(this).find('.hider').animate({ height: '0px' }, 200);
		}
	);
});
