function GenLeftNavMenu( sNavSelection )
{
	document.write('<TABLE cellspacing="0" cellpadding="0" width="129" border="0" id="Table2">');
	document.write('<TR height="10">');
	document.write('<TD colspan="2"></TD>');
	document.write('</TR>');
	document.write('<TR>');
	document.write('<TD><A href="index.asp"><IMG height="22" src="images/mm_intro.gif" width="119" border="0"></A></TD>');
	document.write('<TD><IMG id="arrow_INTRO" style="display:none" src="images/arrowleft.gif"></TD>');
	document.write('</TR>');
	document.write('<TR>');
	document.write('<TD><A href="MMAboutUs.htm"><IMG height="22" src="images/mm_about.gif" width="119" border="0"></A></TD>');
	document.write('<TD><IMG id="arrow_ABOUTUS" style="display:none" src="images/arrowleft.gif"></TD>');
	document.write('</TR>');
	document.write('<TR>');
	document.write('<TD><A href="OVRedHeadRanch.htm"><IMG height="22" src="images/mm_vineyards.gif" width="119" border="0"></A></TD>');
	document.write('<TD><IMG id="arrow_VINEYARDS" style="display:none" src="images/arrowleft.gif"></TD>');
	document.write('</TR>');
	document.write('<TR>');
	document.write('<TD><A href="index.asp?PageAction=VIEWCATS&Category=35"><IMG height="22" src="images/mm_wines.gif" width="119" border="0"></A></TD>');
	document.write('<TD><IMG id="arrow_OURWINE" style="display:none" src="images/arrowleft.gif"></TD>');
	document.write('</TR>');
	document.write('<TR>');
	document.write('<TD><A href="MMWineClub.htm"><IMG height="22" src="images/mm_club.gif" width="119" border="0"></A></TD>');
	document.write('<TD><IMG id="arrow_WINECLUB" style="display:none" src="images/arrowleft.gif"></TD>');
	document.write('</TR>');
	document.write('<TR>');
	document.write('<TD><A href="MMWhereToBuy.htm"><IMG height="22" src="images/mm_where2buy.gif" width="119" border="0"></A></TD>');
	document.write('<TD><IMG id="arrow_WHERETOBUY" style="display:none" src="images/arrowleft.gif"></TD>');
	document.write('</TR>');
	document.write('<TR>');
	document.write('<TD><A href="index.asp?PageAction=VIEWCATS&Category=8"><IMG height="22" src="images/mm_app.gif" width="119" border="0"></A></TD>');
	document.write('<TD><IMG id="arrow_APPAREL" style="display:none" src="images/arrowleft.gif"></TD>');
	document.write('</TR>');
	document.write('<TR>');
	document.write('<TD><A href="PGAtTheWinery.htm"><IMG height="22" src="images/mm_photo.gif" width="119" border="0"></A></TD>');
	document.write('<TD><IMG id="arrow_GALLERY" style="display:none" src="images/arrowleft.gif"></TD>');
	document.write('</TR>');
	document.write('<TR>');
	document.write('<TD><A href="MMForTheTrade.htm"><IMG height="22" src="images/mm_fortrade.gif" width="119" border="0"></A></TD>');
	document.write('<TD><IMG id="arrow_TRADE" style="display:none" src="images/arrowleft.gif"></TD>');
	document.write('</TR>');
	document.write('<TR>');
	document.write('<TD><A href="CSOrdering.htm"><IMG height="22" src="images/mm_contact.gif" width="119" border="0"></A></TD>');
	document.write('<TD><IMG id="arrow_CONTACTUS" style="display:none" src="images/arrowleft.gif"></TD>');
	document.write('</TR>');
	
	document.write('<TR height=22><td colspan=2>&nbsp;</td></tr>');
	
	document.write('<tr><TD colspan=2 background="images/dash_horizontal.gif"><IMG src="images/spacer.gif" height="1" width="1"></TD></tr>');
	document.write('<TR height=22>');
	document.write('<TD style="vertical-align: middle;"><A href="MMNews.htm"><IMG height="16" src="images/mm_news.gif" width="119" border="0"></A></TD>');
	document.write('<TD><IMG id="arrow_NEWS" style="display:none" src="images/arrowleft.gif"></TD>');
	document.write('</TR>');
	document.write('<tr><TD colspan=2 background="images/dash_horizontal.gif"><IMG src="images/spacer.gif" height="1" width="1"></TD></tr>');
	
	//
	//  LDH * 11/27/2006 * Added for holiday specials
	//
	//document.write('<TR height=22>');
	//document.write('<TD><A href="index.asp?PageAction=VIEWCATS&Category=32"><IMG height="16" src="images/mm_holiday.gif" width="119" border="0"></A></TD>');
	//document.write('<TD><IMG id="arrow_HOLIDAY" style="display:none" src="images/arrowleft.gif"></TD>');
	//document.write('</TR>');
	//document.write('<tr><TD colspan=2 background="images/dash_horizontal.gif"><IMG src="images/spacer.gif" height="1" width="1"></TD></tr>');

	//
	//  LDH * 11/27/2006 * end holiday specials addition
	//

	document.write('</TABLE>');

	//
	//  If told which arrow, show it.  Otherwise detect which to show through
	//  the environment.
	//
	if ( sNavSelection == "" || sNavSelection == "autodetect" )
	{
		
		var bNoMenuSelection = NoMenuSelection();

		if ( NoMenuSelection() )
		{
			// nothing
		}
		else if ( Is2005WinePage() )	// our 2005 wines
		{
			document.getElementById("arrow_OURWINE").style.display = "inline";
		}
		else if ( Is2006WinePage() )	// our 2006 wines
		{
			document.getElementById("arrow_OURWINE").style.display = "inline";
		}
		else if ( Is2007WinePage() )	// our 2007 wines
		{
			document.getElementById("arrow_OURWINE").style.display = "inline";
		}
		else if ( IsApparelPage() )	// apparel
		{
			document.getElementById("arrow_APPAREL").style.display = "inline";
		}
		else if ( IsIntroPage() )
		{
			document.getElementById("arrow_INTRO").style.display = "inline";
		}
		else if ( IsHolidaySpecialsPage() )	//  LDH * 11/27/2006 * holiday specials
		{
			document.getElementById("arrow_HOLIDAY").style.display = "inline";
		}
		else if ( IsWinePage() )
		{
			document.getElementById("arrow_OURWINE").style.display = "inline";
		}
	}
	else
	{
		document.getElementById(sNavSelection).style.display = "inline";
	}

}

