var divs = new Array();
divs[0] = "navHome";
divs[1] = "navServices";
divs[2] = "navContact";
startList = function() {
	if (document.all&&document.getElementById) {
		for(i=0; i < 2; i = i + 1) {
			dropDown = document.getElementById(divs[i]);
			dropDown.onmouseover=function() {
				this.className+=" over";
			}
			dropDown.onmouseout=function() {
				this.className=this.className.replace(" over", "");
			}
		}
	}
}
window.onload=startList;

