// JavaScript Document

ariyooHover = function() {
	var ariyooID = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<ariyooID.length; i++) {
		ariyooID[i].onmouseover=function() {
			this.className+=" ariyoohover";
		}
		ariyooID[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" ariyoohover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", ariyooHover);

ariyoo1Hover = function() {
	var ariyoo1ID = document.getElementById("nav1").getElementsByTagName("LI");
	for (var i=0; i<ariyoo1ID.length; i++) {
		ariyoo1ID[i].onmouseover=function() {
			this.className+=" ariyoo1hover";
		}
		ariyoo1ID[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" ariyoo1hover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", ariyoo1Hover);