// 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
//code for the h1 tags
var goudy = {  src: 'goudy.swf' };
sIFR.activate(goudy);

sIFR.replace(goudy, {
  selector: 'h1', 
  wmode: 'transparent', 
  src: 'goudy.swf', 
  css: [ '.sIFR-root {color:#ffffff; font-weight:bold;}'  ]
});


// this is for the search box
function CheckForm () {
					
	//Check for a word to search
	if (document.frmSiteSearch.search.value==""){
		alert("Please enter at least one keyword to search");
		document.frmSiteSearch.search.focus();
		return false;
	}
	
	return true
}



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();};
}
}

}
