	$svjq(document).ready(function() {
		var loc = document.location;
		var path = loc.href;
		if (loc.host == 'boka.hogakusten.com') {
		var regexps = [];
		regexps.push(/\/91.2136eb0912f2ebfdf8e800013095\.html/i);
		regexps.push(/\/eventguide\?c=5984/gi);
		regexps.push(/\/accommodationguide/gi);
		regexps.push(/\/restaurantguide/gi);
		regexps.push(/\/eventguide\/.*/gi);
		regexps.push(/\/eventguide\?c=10534/gi);
		regexps.push(/\/package.*/gi);
		$svjq("#main-nav a").each(function(index) {
				link = $svjq(this);
				li = link.parent()
				if (path.match(regexps[index]) !== null) {
					link.addClass("tactive"); 
					li.addClass("litactive");
				}
				try {console.log(path.match(regexps[index]), regexps[index])} catch(e){}
			});
		}
	
	});
