// JavaScript Document
var menuID="ottmed-menu";

function ottmedMenuOver(){
	this.style.color="#ff8900";
}
function ottmedMenuOut(){
	this.style.color="#5d801f";
}
function ottmedMenuInit(){
	var a=document.getElementById(menuID).getElementsByTagName("A");
	var i=0;
	while(i<a.length){
		a[i].onmouseover=ottmedMenuOver;
		a[i].onmouseout=ottmedMenuOut;
		i++;
	}
}
