window.onload = function(){
	if (document.all) // only IE browsers load this function (window.attachEvent doesn't work in Mac/IE
		{ sfHover(); }
		
	/**/
	if (document.SUPPORTER296775) { 
	
		getStringVar();
	}	
		
}	

sfHover = function() {
 if (document.getElementsByTagName)
 {
  if (window.attachEvent) {
  var sfEls = document.getElementById("topnav").document.getElementsByTagName("LI");	
  }
  else {
	var sfEls = document.getElementsByTagName("LI");	
	}

	for (var i=0; i<sfEls.length; i++) {			
			
		sfEls[i].onmouseover=function() {
			this.className+=" hover";								
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" hover\\b"), "");
		}
	}	
 }
}

/* the form name, e.g. SUPPORTER99999, must be updated if necessary -- rprice@kintera.com 
*/
function getStringVar()
{
  var qs = window.location.search;
  if (qs.indexOf("email_address") >= 0)
  {
    document.SUPPORTER296775.email_address.value = qs.split("email_address=")[1];             
  }  
 }
    