

/*================================================
	sub menu
================================================*/

Event.observe(window, 'load', function(){
	if (!$$("ul#helpList li")){
		
		return ;
	}


	$A($$("ul#helpList li")).each(function(li){

		if (li.firstChild.tagName=="A" &&
			((function(loc, href){

				if (loc == href) return true;

				if (loc.substr(0, href.length)==href) return true;

				return false;
				
			})(location.href,li.firstChild.href))){
			Element.addClassName(li,"on");
		}
	});
});
