
function initMenu() {
	var navRoot = document.getElementById("navigation");
	for (i = 0; i < navRoot.childNodes.length; i++) {
		var node = navRoot.childNodes[i];
		if ((node.nodeName == "LI") || (node.nodeName == "li")) {
			node.onmouseover = function() {
				this.className = "over";
			}
			
			node.onmouseout = function() {
				if (this.className = "over") {
					this.className = "";
				}
			}
		}
	}
}

function printObjectTag(data, widthPx, heightPx) {
    document.write('<object type = "application/x-shockwave-flash" data = "' + data + '" width = "' + widthPx + '" height = "' + heightPx + '">');
    document.write('  <param name = "movie" value = "' + data + '" />');
	document.write('  <param name = "quality" value = "high" />');
	document.write('  <param name = "wmode" value = "transparent" />');
    document.write('</object>');
}
