//here's the sIfr
//code for the h1 tags
var trajan = {  src: 'trajan.swf' };
sIFR.activate(trajan);

sIFR.replace(trajan, {
  selector: 'h1', 
  wmode: 'transparent', 
  src: 'trajan.swf', 
  css: [ '.sIFR-root {color:#000000; }'  ]
});

//code for the h2 tags
var trajan2 = {  src: 'trajan.swf' };
sIFR.activate(trajan2);

sIFR.replace(trajan2, {
  selector: 'h2', 
  wmode: 'transparent', 
  src: 'trajan.swf', 
  css: [ '.sIFR-root {color:#000000; }'  ]
});


function runSiteScripts() {

var so = new SWFObject ("flashheader.swf", "animation1", "841", "382", "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();};
}
}


}