	function mainMenu(text) {
		var subMenuText = '';
		
		subMenuText += '\n<ul>';
		
		if( text == 'tour' ) {
			subMenuText += '\n<li><a href="/tour"><img src="http://static.eharmony.com/assets/images/mn-tour-on.gif" border="0" name="tour" /></a></li>';
		} else {
			subMenuText += '\n<li><a href="/tour" onmouseover="MM_swapImage(\'tour\',\'\',\'http://static.eharmony.com/assets/images/mn-tour-over.gif\',1)" onmouseout="MM_swapImgRestore()"><img src="http://static.eharmony.com/assets/images/mn-tour-off.gif" border="0" name="tour" /></a></li>';
		} // End if/else
		
		if( text == 'why' ) {
			subMenuText += '\n<li><a href="/why"><img src="http://static.eharmony.com/assets/images/mn-whyeh-on.gif" border="0" name="whyeh" /></a></li>';
		} else {
			subMenuText += '\n<li><a href="/why" onmouseover="MM_swapImage(\'whyeh\',\'\',\'http://static.eharmony.com/assets/images/mn-whyeh-over.gif\',1)" onmouseout="MM_swapImgRestore()"><img src="http://static.eharmony.com/assets/images/mn-whyeh-off.gif" border="0" name="whyeh" /></a></li>';
		} // End if/else
        
        if( text == 'success' ) {
			subMenuText += '\n<li><a href="/success"><img src="http://static.eharmony.com/assets/images/mn-ss-on.gif" border="0" name="ss" /></a></li>';
		} else {
			subMenuText += '\n<li><a href="/success" onmouseover="MM_swapImage(\'ss\',\'\',\'http://static.eharmony.com/assets/images/mn-ss-over.gif\',1)" onmouseout="MM_swapImgRestore()"><img src="http://static.eharmony.com/assets/images/mn-ss-off.gif" border="0" name="ss" /></a></li>';
		} // End if/else
		
		if( text == 'signup' ) {
			subMenuText += '\n<li><a href="/register"><img src="http://static.eharmony.com/assets/images/mn-signup-on.gif" border="0" name="signup" /></a></li>';
		} else {
			subMenuText += '\n<li><a href="/register" onmouseover="MM_swapImage(\'signup\',\'\',\'http://static.eharmony.com/assets/images/mn-signup-over.gif\',1)" onmouseout="MM_swapImgRestore()"><img src="http://static.eharmony.com/assets/images/mn-signup-off.gif" border="0" name="signup" /></a></li>';
		} // End if/else
		
		subMenuText += '\n</ul>';
		
		document.getElementById('subNav').innerHTML = subMenuText;
		
	} // End function
