
$(function(){
	
	/* ==
	
	　トップページ
	
	============================================================================================== */
	/* マウスオーバー処理
	---------------------------------------------------------------------------------------------- */
	$(".container #news > dl").hover(function(){
		$(this).css("backgroundColor", "transparent");
	},function(){
		$(this).css("backgroundColor", "#f4f4f4");
	});
	$(".container #news > dl:last").children("dd").css("backgroundImage", "none");
	
	$(".container #cp > dl").hover(function(){
		$(this).css("backgroundColor", "transparent");
	},function(){
		$(this).css("backgroundColor", "#f4f4f4");
	});
	$(".container #cp > dl:last").children("dd").css("backgroundImage", "none");
	

});


