/*
ロールオーバー
--------------------------------------*/

$j=jQuery.noConflict();

$j(function(){
	$j("img.rollover").mouseover(function(){
		 $j(this).attr("src",$j(this).attr("src").replace(/^(.+)_off(\.[a-z]+)$/, "$1_on$2"));
	}).mouseout(function(){
		$j(this).attr("src",$j(this).attr("src").replace(/^(.+)_on(\.[a-z]+)$/, "$1_off$2"));
	})
})

$=jQuery.noConflict();

/*
footer
--------------------------------------*/
$(function(){
					 $("#footer ul li:last").css("borderRight","1px solid #4c3a2e");
					 
});

/*
news
--------------------------------------*/
$(function(){
	$("div#information").each(function(){
					 $("dl.news_dl dt:even",this).css("background","#daeac3");
					 $("dl.news_dl dd:even",this).css("background","#daeac3");
	});
});

