﻿    jQuery.noConflict();
    jQuery(document).ready(function($){
	// ここでは、$はjQueryとして使えます。
	$(document).ready(function(){
	//パス取得
	path = location.pathname

	if(path.match("/konomys.jp/outline/")){
		$("li#outline a").addClass("here");
	}else if(path.match("/konomys.jp/info/")){
		$("li#info a").addClass("here");
	}else if(path.match("/konomys.jp/what/")){
		$("li#what a").addClass("here");
	}else if(path.match("/konomys.jp/winning/")){
		$("li#winning a").addClass("here");
	}else if(path.match("/konomys.jp/history/")){
		$("li#history a").addClass("here");
	}else if(path.match("/konomys.jp/voice/")){
		$("li#voice a").addClass("here");
	}else if(path.match("/konomys.jp/faq/")){
		$("li#faq a").addClass("here");
	}
    });
    });
