// This file contains the script (linked in the page head) for the drop-down menu.
// Please DO NOT EDIT this script.

// The navRoot call (document.getElementById) must equal the ID tag of the UL used in the menu.
// In this script, the Element is called "frepmenu".

function startList() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("frepmenu");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}

function hidethis() {
    var currentdate = new Date();
    var todaydate   = currentdate.getDate();
        if (todaydate == 10) {
            document.getElementById("hidden").style.display = "inline";
        }
        else if (todaydate == 22) {
            document.getElementById("hidden").style.display = "inline";
        }
        else {
            document.getElementById("hidden").style.display = "none";
        }
}
