window.onload		= function(){
	setNav();
}

function setNav(){
	var navElem 	= document.getElementById("ac_sidenav");
	var navLI	= navElem.getElementsByTagName("li");
	for(i=0;i<navLI.length;i++){
		
        if(navLI[i].id == 'activeSubNav'){
            	navLI[i].style.backgroundColor	= "#B83D11";
        }
        
        navLI[i].onmouseover	= function(){
			this.style.backgroundColor	= "#B83D11";
		}
		navLI[i].onmouseout	= function(){
		if(this.id != 'activeSubNav'){
			this.style.backgroundColor	= "#C1CDCB";
			}
		}
	}
}
