jQuery.noConflict();

jQuery(function(){
	init_rollover();
	set_current_contents();
});

/* ロールオーバーのイベント設定 */
function init_rollover(){
	jQuery("img", jQuery("#wrap")).each(function(){
		jQuery(this).hover(function(){
				this.src = this.src.replace(/_off\./, "_on.");
			},
			function(){
				this.src = this.src.replace(/_on\./, "_off.");
			}
		);
	});
}


/* カレントのメニュー画像の表示切り替え */
function set_current_contents(){
	/* URLと画像名の対応 */
	var config = {
		"" : "",
		"about" : "navi_01_off.gif",
		"service" : "navi_02_off.gif",
		"price" : "navi_03_off.gif",
		"faq" : "navi_04_off.gif",
		"contact" : "navi_05_off.gif"
	}

	var path =  location.pathname.split("/");
	var current_dir = path[path.length-2];

	jQuery("img", jQuery("#wrap")).each(function(){
			if(this.src.indexOf(config[location.pathname]) >= 0 || 	// 絶対パス
					this.src.indexOf(config[current_dir]) >= 0){       	// ディレクトリ
				jQuery(this).unbind();
				this.src = this.src.replace(/_off\./, "_on.");
				return false;
			}
	});
}

