﻿/**/
window.onload=function(){
	var nav = $("NavList");
	var nList = nav.getElementsByTagName("a");
	var cookieV = cookie.GET("ebdiy_nav_hover");
	for(var i = 0;i<nList.length;i++){
		nList[i].onclick=function(){
			try{
				cookie.SET("ebdiy_nav_hover",this.innerHTML,1);
				try{
						this.parentNode.setAttribute("className", "yellow");
				}catch(ex){
						this.parentNode.setAttribute("class","yellow");
				}
			}catch(ex){
				
			}
		};
		if(cookieV == nList[i].innerHTML){
			try{
					nList[i].parentNode.setAttribute("className", "yellow");
			}catch(ex){
					nList[i].parentNode.setAttribute("class","yellow");
			}
		}
	}
};