var element;

/* sets the footer links to the right style */
function setFoot(){
	for(var i = 1; i<= 9; i++){
		var id = "foot" + i;
		var el = document.getElementById(id);
		el.style.color = "#FFFFFF";
		el.style.fontWeight = "bold";
		el.style.backgroundColor = "#006600";
	}
}

/* changes the footer style during mouseover */
function footOn(element) {
	if (parseInt(navigator.appVersion) > 3){
		var el = document.getElementById(element);
		el.style.color = "#FFFF00";
		el.style.textDecoration = "underline";
		el.style.backgroundColor = "#006600";
	}
}

/* resets the footer style on mouseout */
function footOff(element){
	if (parseInt(navigator.appVersion) > 3){
		var el = document.getElementById(element);
		el.style.color = "#FFFFFF";
		el.style.textDecoration = "none";
		el.style.backgroundColor = "#006600";
	}
}
