Event.observe(window, "load", function(){
	if (!$("gNavi")){
		return ;
	}
	$A($("gNavi").getElementsByTagName('LI')).each(function(li){
		if (li.firstChild.tagName=="A" &&
			((function(loc, href){
				if (loc == href) return true;
				var href = href.replace(/index\.html$/,'');
				if (loc.substr(0, href.length)==href) return true;
				return false;
			})(location.href,li.firstChild.href))){
			Element.addClassName(li,"on");
		}
	});
});

Event.observe(window, "load", function(){
	if (!$("prevList")){
		return ;
	}
	$A($("prevList").getElementsByTagName('LI')).each(function(li){
		if (li.firstChild.tagName=="A" &&
			((function(loc, href){
				if (loc == href) return true;
				var href = href.replace(/index\.html$/,'');
				if (loc.substr(0, href.length)==href) return true;
				return false;
			})(location.href,li.firstChild.href))){
			Element.addClassName(li,"on");
		}
	});
});

