$(document).ready(function(){


function footerSet(){

			var tempNum;
			panelHeight = $('#LEFT').height();
			if($('.boxW710')){ panelHeight = $('.boxW710').height(); }
			rightPanelHeight = $('#RIGHT').height();

			if(rightPanelHeight){
				//左パルよりも右メニューの方が高さがある場合
				if(panelHeight<rightPanelHeight){
					tempNum=rightPanelHeight;
				}else{
					tempNum=panelHeight;
				}
				$('#LEFT').css({ height: tempNum });
			}
	
			var position = $('#BANNER').position();
			//$("p:last").text( "left: " + position.left + ", top: " + position.top );
			$('#CONTAINER_ALL').css({ height: position.top+$('#BANNER').height()+100 });
}


$("#LEFT ul li img").click(function(){
		var $target = $(this);
		var targetEl=$(this).attr("class");
		$("div."+targetEl).slideToggle( function(){footerSet()});
});


footerSet();


});


