//here's the sIfr code for the h1 tags
//code for the h1 tags
var trajanPro = {  src: 'trajanPro.swf' };
sIFR.activate(trajanPro);

sIFR.replace(trajanPro, {
  selector: 'h1', 
  wmode: 'transparent', 
  src: 'trajanPro.swf', 
  css: [ '.sIFR-root {color:#566747;}'  ]
});


function runSiteScripts() {

/*this fires the flash header. removed 07-1020
var so = new SWFObject("flashheader.swf", "flash1", "750", "181", "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();};
}
}

}