/* menuA.js writes the html for the main menu into the page. This makes it possible to maintain */
/* the menu in this file and have the change impact all the pages that use this file.           */
                                                  
var writeMenu = '';

writeMenu += '<TABLE WIDTH=770 BORDER=0 CELLPADDING=0 CELLSPACING=0>';
writeMenu += '	<TR>';
writeMenu += '		<TD>';
writeMenu += '			<a href="index.html"';
writeMenu += '			onmouseover="changeImages(\'home\', \'images/home.gif\'); return true;"';
writeMenu += '			onmouseout="changeImages(\'home\', \'images/home.gif\'); return true;">';
writeMenu += '			<img name="home" src="images/home.gif" width="92" height="30" border="0" alt="Financial Resources Home"></a></TD>';
writeMenu += '		<TD>';
writeMenu += '			<a href="about.html"';
writeMenu += '			onmouseover="changeImages(\'about\', \'images/about-over.gif\'); return true;"';
writeMenu += '			onmouseout="changeImages(\'about\', \'images/about.gif\'); return true;">';
writeMenu += '				<img name="about" src="images/about.gif" width="163" height="30" border="0" alt="About Financial Resources"></a></TD>';
writeMenu += '		<TD>';
writeMenu += '			<a href="services.html"';
writeMenu += '			onmouseover="changeImages(\'services\', \'images/services-over.gif\'); return true;"';
writeMenu += '			onmouseout="changeImages(\'services\', \'images/services.gif\'); return true;">';
writeMenu += '				<img name="services" src="images/services.gif" width="234" height="30" border="0" alt="Financial Resources Services"></a></TD>';
writeMenu += '		<TD>';
writeMenu += '			<a href="contact.html"';
writeMenu += '			onmouseover="changeImages(\'contact\', \'images/contact-over.gif\'); return true;"';
writeMenu += '			onmouseout="changeImages(\'contact\', \'images/contact.gif\'); return true;">';
writeMenu += '				<img name="contact" src="images/contact.gif" width="281" height="30" border="0" alt="FMSI Membership Information"></a></TD>';


writeMenu += '	</TR>';
writeMenu += '</TABLE>';
document.writeln(writeMenu);
