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";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}
window.onload=startList;

function HaveCorrectFlashVersion(MinFlashVer)
{
    if (typeof deconcept!="undefined")
        if (MinFlashVer <= deconcept.SWFObjectUtil.getPlayerVersion().major)
            if (MinFlashVer >= deconcept.SWFObjectUtil.getPlayerVersion().minor)
                return true;
    return false;
}

function SetScreen(MinFlashVer)
{
    if (HaveCorrectFlashVersion(MinFlashVer) && document.getElementById)
    {
        document.getElementById('nomenucontent_holder').className = document.getElementById('nomenucontent_holder').className.replace("visible", "hidden");
        document.getElementById('footer').className = document.getElementById('footer').className.replace("visible", "hidden");
        document.getElementById('intro_holder').className = document.getElementById('intro_holder').className.replace("hidden", "visible");
        setTimeout("ShowData("+false+")",2500);
        var so_intro = new SWFObject("dog anim.swf","introAnim","210","139","6","#FFFFFF");
        so_intro.addParam("wmode","transparent");
        so_intro.addParam("name","introAnim");
        so_intro.addParam("id","introAnim");
        so_intro.addParam("swliveconnect","true");
        so_intro.write("intro_holder");
    }
}

function ShowData(FromFlash) // check we have correct version of no point running this script, maybe use movieloaded var
{
    if ((!MovieLoaded && !FromFlash) || (MovieLoaded && FromFlash))
    {
        document.getElementById('nomenucontent_holder').className = document.getElementById('nomenucontent_holder').className.replace("hidden", "visible");
        document.getElementById('footer').className = document.getElementById('footer').className.replace("hidden", "visible");
        document.getElementById('intro_holder').className = document.getElementById('intro_holder').className.replace("visible", "hidden");
        var so = new SWFObject("hush.swf","hushmovie","210","139","6","#FFFFFF");
        so.addParam("wmode","transparent");
        so.write("hush");
    }
}