//here's the sIfr
//code for the h1 tags
var garamond = {  src: 'garamond.swf' };
sIFR.activate(garamond);

sIFR.replace(garamond, {
  selector: 'h1', 
  wmode: 'transparent', 
  src: 'garamond.swf', 
  css: [ '.sIFR-root {color:#6e805b; font-style:italic; }'  ]
});

//here's the sIfr
//code for the h2 tags
var garamond2 = {  src: 'garamond.swf' };
sIFR.activate(garamond2);

sIFR.replace(garamond2, {
  selector: 'h2', 
  wmode: 'transparent', 
  src: 'garamond.swf', 
  css: [ '.sIFR-root {color:#333300; }'  ]
});

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();};
}
}


}
