var module = {};

if(window.attachEvent){
	if (typeof document.documentElement.style.msInterpolationMode == "undefined") module.oldIE = true;
	module.IE = true;
}


//jQuery Start
(function($){ //コードブロック内で他のライブラリの$ショートカットを使用不可にする処理


//----------------------------------------------------------//
// BOX LINE
//----------------------------------------------------------//

module.boxline = function(){
	
	if($('#home-sec0')){
		$('#home-sec0').each(function(){
			
			var heightA = 0;
			
			$(this).find('div.inner').each(function(){
				var elmh = $(this).height();
				if(elmh > heightA){
					heightA = elmh;
				}				
			});
	
			$(this).find('div.inner').each(function(){
				if(module.IE){
				 $(this).css('height',heightA);
				}else{
				 $(this).css('minHeight',heightA);
				}		
			});
	
		});
	}
	
}

$(function(){ //onLoad処理
	module.boxline();
});


})(jQuery);
//jQuery End



