// making the menu work
<!--//--><![CDATA[//><!--

sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

//--><!]]>


//here's the sIfr
//code for the h1 tags
var futura = {  src: 'futura.swf' };
sIFR.activate(futura);

sIFR.replace(futura, {
  selector: 'h1', 
  wmode: 'transparent', 
  src: 'futura.swf', 
  css: [ '.sIFR-root {color:#d90000; }'  ]
});


function OpenChildWin(nurl,nname, nwidth,nheight) {
  popupWin = window.open(nurl, nname, 'scrollbars=1,width=' + nwidth +',height=' + nheight)
}

function runSiteScripts() {


//var so = new SWFObject("flashheader.swf", "flashmov", "770", "317", "6", "ffffff");
//so.addParam("wmode","transparent");
//so.write("flashheader");



// 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();};
}
}

}