
function myTest() {
	var whichPage = location.pathname;

	//alert(whichPage);

	if(whichPage == "/index_new.php") {
		var toSwitch=document.getElementsByTagName("li")
		toSwitch.style.color='#ffffff';
		alert(toSwitch);
	}
}

