function liRollover(liElement){
	var thisLiElement = document.getElementById(liElement);

	thisLiElement.style.backgroundColor = "#FFFFFF";

}

function liRollout(liElement){
	var thisLiElement = document.getElementById(liElement);

	thisLiElement.style.backgroundColor = "#E8E8E8";

}