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);


var FooterHTML = "";

FooterHTML += '<div id="footer">';
FooterHTML += '<table width="803" style="margin:35px 0 0 35px;">';
FooterHTML += '<tr>';
FooterHTML += '<td width="482">';
FooterHTML += '<a href="mission.html">About Us</a> ';
FooterHTML += ' | <a href="news.html">News &amp; Events</a> ';
FooterHTML += ' | <a href="funding.html">Resources</a> ';
FooterHTML += ' | <a href="registration.php">Join the Alliance</a> ';
FooterHTML += ' | <a href="contact.php">Contact</a> ';
FooterHTML += ' | <a href="links.html">Links</a>';
FooterHTML += ' </td>';
FooterHTML += '<td width="72">&nbsp;</td>';
FooterHTML += '<td width="237" class="copyright" align="right">&copy;2010 Users First&trade; Alliance. All Rights Reserved.</td>';
FooterHTML += '</tr>';
FooterHTML += '</table>';
FooterHTML += '</div>';

document.write (FooterHTML);