// JavaScript Document

//dropdown menu fix for ie

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;

//flash

function RunSplash()
{
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="349" height="414">\n');
document.write('<param name="wmode" value="transparent">');
document.write('<param name="movie" value="/flash/splash-page.swf">\n');
document.write('<param name="quality" value="high">\n');
document.write('<embed src="/flash/splash-page.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="349" height="414"  wmode="transparent"></embed>\n');
document.write('</object>\n');
}