$(function() {
	setTimeout(function() {
		var bodyHeight = $('.body').height();
		var bannerHeight = $('.banner').height();
		var docHeight = $(document).height();
		
		$('.body').css('height', Math.max(docHeight - bannerHeight, bodyHeight));
		$('.left').css('height', $('.body').height());
	}, 200);
	
	$('ul').each(function() {
		$(this).find('li:last').addClass('last');	
		$(this).find('li:first').addClass('first');			
	});
	
	$('ul').addClass('depth_0');
	$('ul ul').addClass('depth_1').removeClass('depth_0');
	$('ul ul ul').addClass('depth_2').removeClass('depth_1');
	$('ul ul ul ul').addClass('depth_3').removeClass('depth_2');	
	
	$('li:has(ul)').addClass('has_submenu');
});


