function changeLoc(address) { window.location.href = address; }
function onOver(li,bgcolor,textcolor) {
	if(document.getElementById||(document.all && !(document.getElementById))) {
		li.style.backgroundColor=bgcolor;
		li.style.color=textcolor;
		li.childNodes[0].style.color=textcolor;
		li.style.cursor="pointer";
	}
}
function onOut(li,bgcolor,textcolor) {
	if(document.getElementById||(document.all && !(document.getElementById))) {
		li.style.backgroundColor=bgcolor;
		li.style.color=textcolor;
		li.childNodes[0].style.color=textcolor;
	}
}