//preload
var PL1 = new Image();
PL1.src = 'images/pageElements/pagenav-over.jpg';


//here's the sIfr
//code for the h1 tags
var arial = {  src: 'arial.swf' };
sIFR.activate(arial);
sIFR.replace(arial, {
  selector: 'h1', 
  wmode: 'transparent', 
  src: 'arial.swf', 
  css: [ '.sIFR-root {color:#765e34; font-weight:bold;}'  ]
});





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();};
}
}


}