var edwardianScript = {
      src: 'includes/edwardianScript.swf'
};

sIFR.activate(edwardianScript);
 
sIFR.replace(edwardianScript, {
      selector: 'h1',
	  wmode: 'transparent',
	  css: [
      '.sIFR-root { font-size:26px; font-weight:normal; color:#000000; background-color: transparent;}'
      ]
});
sIFR.replace(edwardianScript, {
      selector: 'h2',
	  wmode: 'transparent',
	  css: [
      '.sIFR-root { font-size:20px; font-weight:normal; color:#1e4598; background-color: transparent;}'
      ]
});
/*sIFR.replace(edwardianScript, {
      selector: 'h5',
	  wmode: 'transparent',
	  css: [
      '.sIFR-root { font-size:20px; font-weight:normal; color:#000000; background-color: transparent;}'
      ]
});*/

// DropDown

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;
//activate this if you don't put it into the body tag <body onload="startList();">
