startList = function() {
	if (document.all && document.getElementById) {
	    var count = 1;
        while(document.getElementById("navsystem"+count)) {
            navRoot = document.getElementById("navsystem"+count);
            listhelper(navRoot);
            count = count + 1;
        }
    }
}
function listhelper(navRoot) {
	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", "");
            }
        }
    }
}
window.onload=startList;



//function to pop up an embedded player window
// use this syntax on the calling page:
//<a href="http://www.streamguys.com/player_i.html" onClick="return player(this, 'temp');">Click Here</a>
function player(myUrl, name) 
{
	var mywin = window.open(myUrl.href, name, 'width=350,height=383');
	mywin.focus();
	return false;
}


<!-- This displays the current date -->
<!-- ONLY use with the "no announcements" announcement -->
<!-- otherwise, comment out and put the date of the announcement -->

<!-- Begin
var months=new Array(13);
months[1]="January";
months[2]="February";
months[3]="March";
months[4]="April";
months[5]="May";
months[6]="June";
months[7]="July";
months[8]="August";
months[9]="September";
months[10]="October";
months[11]="November";
months[12]="December";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000)    // Y2K Fix, Isaac Powell
year = year + 1900; // http://onyx.idbsu.edu/~ipowell
// End -->
