////////////////////////////////////////////////////////////////////////////////
//
//	[ファイル名]	home.js
//	
//	[文字コード]	utf-8
//	
//	[概要]	
//
////////////////////////////////////////////////////////////////////////////////
$(function(){
	
	//
	//	イチ押し 点線用
	//
	var rec = document.getElementById("sectionRecommend");
	if(rec){
		var lis = rec.getElementsByTagName("li");
		var arr = [];
		for(var i=0, len=lis.length; i<len; i++){
			arr.push(lis[i]);
		}
		var secondRow = document.createElement("ul");
		secondRow.className = "secondRow"
		for(i=3, len=arr.length; i<len; i++){
			secondRow.appendChild(arr[i]);
		}
		rec.appendChild(secondRow);
		rec = lis = arr = secondRow = null;
	}
	
	//
	//	news ロールオーバー用
	//
	$("#sectionNews dd a").each(function(){
		$(this).hover(function(){
			$(this.parentNode).addClass("hover");
		},function(){
			$(this.parentNode).removeClass("hover");
		});
	});
	
	
	//
	//	高さを揃える
	//
	resize3($("#sectionRecommend li a").get());
	
});