// JavaScript Document
<!--
	function linkSelect( id ){
		var navlist = document.getElementById( id ).getElementsByTagName("A");
		 for (var i = 0; i < navlist.length; i++){
				if(window.location.href.indexOf(navlist[i].href) > -1){
					if(navlist[i].className!=''){
							navlist[i].className += ' sel';
					}else{
							navlist[i].className = 'sel';
					}
				}
		 }
	}
-->