//yee ol sIFR
if(typeof sIFR == "function"){
sIFR.replaceElement(named({sSelector:"#content h1",  sFlashSrc:"garamondBoldItalic.swf", sColor:"#002a52", sWmode:"transparent"}));
};



function runSiteScripts() {

// this makes the menu work
var acc = new Accordion($$('.menuTitle'), $$('.menuSubs'), {start:'all-close',transition: Fx.Transitions.quadOut});


// here's the flash
var so = new SWFObject("flash.swf", "flashanim", "558", "169", "6", "ffffff");
so.addParam("wmode", "transparent");
so.write("flash");


// gets rid of focus box on click
if(document.getElementsByTagName) {
var a = document.getElementsByTagName("a");
//collect all anchors A
for(var i = 0; i < a.length; i++){
// mouse onfocus, blur anchors
a[i].onfocus = function(){this.blur();};
}
}

}