
startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("ddnav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
					if (document.getElementById('hz_hide_select')) {
						var hide_select = document.getElementById('hz_hide_select');
					    hide_select.style.display = 'none';
					}
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
					if (document.getElementById('hz_hide_select')) {
						var hide_select = document.getElementById('hz_hide_select');
					    hide_select.style.display = 'block';
					}
				}
			}
		}
	}
}
window.onload=startList;

function thisMovie(movieName) {
	var isIE = navigator.appName.indexOf("Microsoft") != -1;
	return (isIE) ? window[movieName] : document[movieName];
}

function play(url) {
	thisMovie("mp3Player").playMusic(url);
}

function pwin(file, width, height)
{
	popwindow = window.open(file,"PopUp","toolbar=no, location=no, directories=no, status=yes, menubar=no, scrollbars=no, reziable=no, top=200, left=50, width="+width+",height="+height);
	popwindow.focus();
	return false;
}
function printwin(file, width, height)
{
	popwindow = window.open(file,"PopUp","toolbar=no, location=no, directories=no, status=yes, menubar=yes, scrollbars=yes, reziable=no, top=200, left=50, width="+width+",height="+height);
	popwindow.focus();
	return false;
}