// Header and top menu for all pages, including home

var menuCode;
function writeMenuCode() {
	// blanked out first; separated and spaced for easier viewing/editing
	menuCode = '';
	// Topper with logo
	menuCode += '<div id="top" style="margin:0px; width: 765px; height: 67px">';
	menuCode += ' <table width="100%" border="0" cellspacing="0" cellpadding="0">';
	menuCode += '  <tr>';
	menuCode += '   <td class="topstyle" align="left"><a href="/index.html"><img src="/images/ortho_topper.gif" width="765" height="67" border="0"></a></td>';
//	menuCode += '   <td class="topstyle" align="right"><img src="/images/spacer.gif" width="180" height="52"></td>';
	menuCode += '  </tr>';
	menuCode += ' </table>';
	menuCode += '</div>';
	// Top menu stripe containing persistent links
	menuCode += '<div id="topmenu" style="margin:0px; width: 765px;">';
	menuCode += ' <table width="100%" border="0" cellspacing="0" cellpadding="0">';
	menuCode += '  <tr>';
	menuCode += '   <td class="topmenustyle" width="15">&nbsp;</td>';
	menuCode += '   <td class="topmenustyle" width="70"><a href="/index.html" class="topnav">Home</a></td>';
	menuCode += '   <td class="topmenustyle"><a href="/info.html" class="topnav">Corporate Information</a></td>';
	menuCode += '   <td class="topmenustyle"><a href="/services.html" class="topnav">Products & Services</a></td>';
	menuCode += '   <td class="topmenustyle"><a href="/employment.html" class="topnav">Employment</a></td>';
	menuCode += '   <td class="topmenustyle"><a href="/contact.html" class="topnav">How to Contact Us</a></td>';
	menuCode += '  </tr>';
	menuCode += ' </table>';
	menuCode += '</div>';
	// write it out
	document.write(menuCode);
	
	}

writeMenuCode();

	
		
			
			
		
	



		
			
			
			
			
			
			
		
	

