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