//here's the sIfr
//code for the h1 tags
var optima = {  src: 'optima.swf' };
sIFR.activate(optima);
sIFR.replace(optima, {
  selector: 'h1', 
  wmode: 'transparent', 
  src: 'optima.swf', 
  css: [ '.sIFR-root {color:#7d5011; text-transform:uppercase;}'  ]
});

function runSiteScripts() {

var so = new SWFObject("flashheader3.swf", "flashmov", "770", "302", "6", "ffffff");
so.addParam("wmode","transparent");
so.write("flashheader");

// 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();};
}
}

}