//here's the sIfr
//code for the h1 tags
var futuraLight = {  src: 'futuraLight.swf' };
sIFR.activate(futuraLight);

sIFR.replace(futuraLight, {
  selector: 'h1', 
  wmode: 'transparent', 
  src: 'futuraLight.swf', 
  css: [ '.sIFR-root {color:#035b46; }'  ]
});



function runSiteScripts() {

//var so = new SWFObject ("flashlogo.swf", "animationTop", "383", "140", "6", "ffffff");
//so.addParam("wmode", "transparent");
//so.write("flashlogo");


// 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();};
}
}


}