<!--//--><![CDATA[//><!--
function insertFlash (furl, fwidth, fheight, fwmode) {
            document.write("<OBJECT CLASSID=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" WIDTH=\"" + fwidth + "\" HEIGHT=\"" + fheight + "\" CODEBASE=\"http://active.macromedia.com/flash5/cabs/swflash.cab#version=7,0,0,0\">");
            document.write("<param name=\"wmode\" value=\"" + fwmode + "\">");
            document.write("<PARAM NAME=\"movie\" VALUE=\"" + furl + "\">");
            document.write("<PARAM NAME=\"play\" VALUE=\"true\">");
            document.write("<PARAM NAME=\"loop\" VALUE=\"false\">");
            document.write("<PARAM NAME=\"quality\" VALUE=\"high\">");
            document.write("<EMBED src=\""+furl+"\" WIDTH=\"" + fwidth + "\" HEIGHT=\"" + fheight + "\" loop=\"false\" TYPE=\"application/x-shockwave-flash\" PLUGINSPAGE=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\" play=\"true\" wmode=\"" + fwmode + "\" quality=\"high\"></EMBED>");
            document.write("</OBJECT>");
}
startList = function() {
    if (document.all&&document.getElementById) {
        navRoot = document.getElementById("nav");        
        for (i=0; i<navRoot.childNodes.length; i++) {
            node = navRoot.childNodes[i];
            if (node.nodeName=="LI") {
                node.onmouseover=function() {
                    this.className+=" over";
                    this.childNodes[0].className="navhover";
                }
                node.onmouseout=function() {
                    this.className=this.className.replace(" over", "");
                    this.childNodes[0].className="";
                }
            }
        }
    }
}
window.onload=startList;
//--><!]]>
