/*
ロールオーバー
--------------------------------------*/

$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_menu
--------------------------------------*/
$(function(){
	$("#footer_area ul li:first-child").css("border","none");
})


/*
top_news
--------------------------------------*/
$(function(){
					 $("div#information dl.news_dl dt:even , div#information dl.news_dl dd:even").css("background","#eaeae0");
})

/*
shop
--------------------------------------*/
$(function(){
					 $(".text_box1 table tr:even ").css("background","#eaeae0");
})


