/*===========================================
	jqueryでのファンクション ver1.0
	製作日:2008/05/09
	
	1.ロールオーバー設定


===========================================*/

// ボタンのロールオーバー設定
//===========================================
$(function(){
	$("a img.btn").mouseover(function(){
		this.src = this.src.replace(/(\.gif|\.jpg|\.png)/, "_on$1");
	});
	$("a img.btn").mouseout(function(){
		this.src = this.src.replace(/_on(\.gif|\.jpg|\.png)/, "$1");
	});
});
