jQuery(function($) {

	var $promoImg = $('#promo img');	
	
	$promoImg.fadeIn(400);
	
/*横三つ並びのボックスの高さ合わせ*/
	
		var maxHeight = 0;
		var row = 3;
		$('#topPageNaviArea li.naviBox').each(
			function(e){
				if( $(this).height() > maxHeight ) {
					maxHeight = $(this).height();
				}
				$(this).addClass('target');
				if( e%row == row-1 ) {
					$('li.target').height(maxHeight).removeClass('target');
					maxHeight = 0;
				}
			}
		);
		$('li.target').removeClass('target');
	
});


