//preload
var PL1 = new Image();
PL1.src = 'images/pageElements/pagenav-over.jpg';


//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:#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();};
}
}


}