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

	thisLiElement.style.backgroundColor = "#FFFFFF";

}

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

	thisLiElement.style.backgroundColor = "";

}