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