/* Calendar Setup */
function setDateNav() {
	if (document.getElementById && document.getElementById("months")) {
		navRoot = document.getElementById("months");
		rootElems = navRoot.getElementsByTagName("li");
		for (i=0; i<rootElems.length; i++) {
			node = rootElems[i];
			if (node.className == "monthBoxOff") {
				for (j=0; j<node.childNodes.length; j++) {
					if (node.childNodes[j].className == "calendar") {
						elem = node.childNodes[j];
						elem.onmouseout = function() {
							// empty 
						};
					}
				}
				node.onmouseover = function() {
					this.className = 'monthBoxOn';
				};
				node.onmouseout = function() {
					this.className = 'monthBoxOff';
				};
			}
		}
	}
}
