//here's the sIfr code for the h1 tags
//code for the h1 tags
var edwardianScriptITC = {  src: 'edwardianScriptITC.swf' };
sIFR.activate(edwardianScriptITC);

sIFR.replace(edwardianScriptITC, {
  selector: 'h1', 
  wmode: 'transparent', 
  src: 'edwardianScriptITC.swf', 
  css: [ '.sIFR-root {color:#7a4d26;}'  ]
});


function runSiteScripts() {

// 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();};
}
}

}