window.onload=function() {
	StyleTheLast();
}
function StyleTheLast() {
	lis=document.getElementById('nav').getElementsByTagName('span');	
	for (i=0;i<=lis.length-2;i++) {
		lis[i].style.color = "#222222";
	}
}
