	//	//marathon	// Herring Design, 2/10/04	//	// 	//	// true if we're on IEvar isIE = ( navigator.appVersion.indexOf("MSIE") != -1 ) ? true : false;     	// true if we're on NS6var isNS6 = ( document.getElementById ) ? true : false;	// variable declarationsvar thisSection = 0;		// current section numbervar thisPage = 0;			// current page numbervar totalPages = 0;			// total number of pagesvar prevPage = "";			// previous page name, i.e. 'products.htm'var nextPage = "";			// next page nameurl = new String( location.href );	// the URLvar i;							// page name --> menu section mappings	//  note this is also used for the next/previous navigation tool	//  Use this if using with flash nav String( "growth_strategies.htm#top" ), 7,	// <page name>, <section #>	//gPageMap = Array(	String( "corporateinfo.htm" ), 0,	String( "cover.htm" ), 1,	String( "fin_high.htm" ), 2,	String( "letter.htm" ), 3,	String( "ophighlight_1.htm" ), 4,	String( "ophighlight_2.htm" ), 4,	String( "ophighlight_3.htm" ), 4,	String( "ophighlight_4.htm" ), 4,	String( "ophighlight_5.htm" ), 4,		String( "opreview.htm" ), 5,	String( "responsibility.htm" ), 6,		String( "management.htm" ), 7,	String( "corporateinfo.htm" ), 0,	String( "cover.htm" ), 1 );		//end of gPageMap[]	// strip off all but the file nameurl = "/" + url.toLowerCase();		url = url.substr( url.lastIndexOf( "/" ) +1, url.length - url.lastIndexOf( "/" ) ); 		// find the current page in the list and fill-in the variablesfor( i = 2; i < gPageMap.length; i += 2 ) {	if( url == gPageMap[i] ) {		prevPage = gPageMap[i-2];		// save the previous page name		nextPage = gPageMap[i+2];		// save the next page name		thisSection = gPageMap[i+1];	// get the section number		thisPage = i / 2;		break;	}}totalPages = (gPageMap.length / 2) -2;	// total number of pages (based on gPageMap[] array)	// Load Rolloversif( document.images ) {	menu_next = new Image; 				menu_next.src = "images/menu_next.gif";	menu_over_next = new Image; 			menu_over_next.src = "images/menu_next_over.gif";		menu_previous = new Image; 				menu_previous.src = "images/menu_previous.gif";	menu_over_previous = new Image; 			menu_over_previous.src = "images/menu_previous_over.gif";		footer_previous = new Image; 				footer_previous.src = "images/menu_previous.gif";	footer_over_previous = new Image; 				footer_over_previous.src = "images/menu_previous_over.gif";		footer_next = new Image; 				footer_next.src = "images/menu_next.gif";	footer_over_next = new Image; 				footer_over_next.src = "images/menu_next_over.gif";		footer_print = new Image; 				footer_print.src = "footer_print10.gif";	footer_over_print = new Image; 				footer_over_print.src = "footer_over_print10.gif";	menu_01 = new Image; 	menu_01.src = "images/menu_cover.gif";	menu_over_01 = new Image; 	menu_over_01.src = "images/menu_cover_over.gif";	menu_02 = new Image; 	menu_02.src = "images/menu_fihi.gif";	menu_over_02 = new Image; 	menu_over_02.src = "images/menu_fihi_over.gif";	menu_03 = new Image; 	menu_03.src = "images/menu_letter.gif";	menu_over_03 = new Image; 	menu_over_03.src = "images/menu_letter_over.gif";	menu_04 = new Image; 	menu_04.src = "images/menu_ophi.gif";	menu_over_04 = new Image; 	menu_over_04.src = "images/menu_ophi_over.gif";	menu_05 = new Image; 	menu_05.src = "images/menu_op.gif";	menu_over_05 = new Image; 	menu_over_05.src = "images/menu_op_over.gif";	menu_06 = new Image; 	menu_06.src = "images/menu_corresp.gif";	menu_over_06 = new Image; 	menu_over_06.src = "images/menu_corresp_over.gif";	menu_07 = new Image; 	menu_07.src = "images/menu_mgmt.gif";	menu_over_07 = new Image; 	menu_over_07.src = "images/menu_mgmt_over.gif";	menu_0 = new Image; 	menu_0.src = "images/menu_corp.gif";	menu_over_0 = new Image; 	menu_over_0.src = "images/menu_corp_over.gif";		foot_01 = new Image; 	foot_01.src = "images/menu_cover.gif";	foot_over_01 = new Image; 	foot_over_01.src = "images/menu_cover_over.gif";	foot_02 = new Image; 	foot_02.src = "images/menu_fihi.gif";	foot_over_02 = new Image; 	foot_over_02.src = "images/menu_fihi_over.gif";	foot_03 = new Image; 	foot_03.src = "images/menu_letter.gif";	foot_over_03 = new Image; 	foot_over_03.src = "images/menu_letter_over.gif";	foot_04 = new Image; 	foot_04.src = "images/menu_ophi.gif";	foot_over_04 = new Image; 	foot_over_04.src = "images/menu_ophi_over.gif";	foot_05 = new Image; 	foot_05.src = "images/menu_op.gif";	foot_over_05 = new Image; 	foot_over_05.src = "images/menu_op_over.gif";	foot_06 = new Image; 	foot_06.src = "images/menu_corresp.gif";	foot_over_06 = new Image; 	foot_over_06.src = "images/menu_corresp_over.gif";	foot_07 = new Image; 	foot_07.src = "images/menu_mgmt.gif";	foot_over_07 = new Image; 	foot_over_07.src = "images/menu_mgmt_over.gif";	foot_0 = new Image; 	foot_0.src = "images/menu_corp.gif";	foot_over_0 = new Image; 	foot_over_0.src = "images/menu_corp_over.gif";				}	// write the style sheet for the page numbersdocument.write( '<style media="screen" type="text/css"><!-- .navtool { color: #323232; font-size: 11px; font-family: Arial } .navtoolbacktotop { color: #323232; font-size: 12px; font-family: Arial } --></style>' );	// swap images functionfunction SwitchImage( imgDocID, ImgObjName ) {	if( document.images ) {		document.images[imgDocID].src = eval( ImgObjName + ".src" );	}} //SwitchImage	// write the footerfunction writeFooter() {	document.write( '<table width="100%"  border="0" cellspacing="0" cellpadding="0"><tr><td><img src="images/spacer.gif" width="1" height="40"></td></tr><tr><td><table width="100%"  border="0" cellspacing="0" cellpadding="0"><tr bgcolor="#CCCCCC">' );	document.write( '<td>&nbsp;</td>' );		if( thisSection == 1 )		document.write( '<td width="34"><a href="cover.htm"><img name="foot_01" src="images/menu_cover_on.gif" width="34" height="20" border="0" alt="[Cover]"></a></td>' );	else		document.write( '<td width="34"><a href="cover.htm" onmouseover="SwitchImage( \x27foot_01\x27, \x27foot_over_01\x27 ); return true;" onmouseout="SwitchImage( \x27foot_01\x27, \x27foot_01\x27 ); return true;"><img name="foot_01" src="images/menu_cover.gif" width="34" height="20" border="0" alt="[cover]"></a></td>' );			document.write( '<td>&nbsp;</td>' );		if( thisSection == 2 ) 	       document.write( '<td width="100"><a href="fin_high.htm"><img name="foot_02" src="images/menu_fihi_on.gif" width="100" height="20" border="0" alt="[Financial Highlights]"></a></td>' );	else	       document.write( '<td width="100"><a href="fin_high.htm" onmouseover="SwitchImage( \x27foot_02\x27, \x27foot_over_02\x27 ); return true;" onmouseout="SwitchImage( \x27foot_02\x27, \x27foot_02\x27 ); return true;"><img name="foot_02" src="images/menu_fihi.gif" width="100" height="20" border="0" alt="[Financial Highlights]"></a></td>' );		   	document.write( '<td>&nbsp;</td>' ); 	if( thisSection == 3 )		document.write( '<td width="35"><a href="letter.htm"><img name="foot_03" src="images/menu_letter_on.gif" width="35" height="20" border="0" alt="[Letter]"></a></td>' );	else		document.write( '<td width="35"><a href="letter.htm" onmouseover="SwitchImage( \x27foot_03\x27, \x27foot_over_03\x27 ); return true;" onmouseout="SwitchImage( \x27foot_03\x27, \x27foot_03\x27 ); return true;"><img name="foot_03" src="images/menu_letter.gif" width="35" height="20" border="0" alt="[Letter]"></a></td>' );				document.write( '<td>&nbsp;</td>' );		if( thisSection == 4 )		document.write( '<td width="109"><a href="ophighlight_1.htm"><img name="foot_04" src="images/menu_ophi_on.gif" width="109" height="20" border="0" alt="[Operation Highlights]"></a></td>' );	else      	document.write( '<td width="109"><a href="ophighlight_1.htm" onmouseover="SwitchImage( \x27foot_04\x27, \x27foot_over_04\x27 ); return true;" onmouseout="SwitchImage( \x27foot_04\x27, \x27foot_04\x27 ); return true;"><img name="foot_04" src="images/menu_ophi.gif" width="109" height="20" border="0" alt="[Operation Highlights]"></a></td>' );				document.write( '<td>&nbsp;</td>' );		if( thisSection == 5 )       	document.write( '<td width="59"><a href="opreview.htm"><img name="foot_05" src="images/menu_op_on.gif" width="59" height="20" border="0" alt="[Operations]"></a></td>' );	else       	document.write( '<td width="59"><a href="opreview.htm" onmouseover="SwitchImage( \x27foot_05\x27, \x27foot_over_05\x27 ); return true;" onmouseout="SwitchImage( \x27foot_05\x27, \x27foot_05\x27 ); return true;"><img name="foot_05" src="images/menu_op.gif" width="59" height="20" border="0" alt="[Operations]"></a></td>' );				document.write( '<td>&nbsp;</td>' );	if( thisSection == 6 )		document.write( '<td width="124"><a href="responsibility.htm"><img name="foot_06" src="images/menu_corresp_on.gif" width="124" height="20" border="0" alt="[Corporate Responsibility]"></a></td>' );	else		document.write( '<td width="124"><a href="responsibility.htm" onmouseover="SwitchImage( \x27foot_06\x27, \x27foot_over_06\x27 ); return true;" onmouseout="SwitchImage( \x27foot_06\x27, \x27foot_06\x27 ); return true;"><img name="foot_06" src="images/menu_corresp.gif" width="124" height="20" border="0" alt="[Corporate Responsibility]"></a></td>' );				document.write( '<td>&nbsp;</td>' );	if( thisSection == 7 )       	document.write( '<td width="71"><a href="management.htm"><img name="foot_07" src="images/menu_mgmt_on.gif" width="71" height="20" border="0" alt="[Management]"></a></td>' );	else		document.write( '<td width="71"><a href="management.htm" onmouseover="SwitchImage( \x27foot_07\x27, \x27foot_over_07\x27 ); return true;" onmouseout="SwitchImage( \x27foot_07\x27, \x27foot_07\x27 ); return true;"><img name="foot_07" src="images/menu_mgmt.gif" width="71" height="20" border="0" alt="[Management]"></a></td>' );				document.write( '<td>&nbsp;</td>' );	if( thisSection == 0 )       	document.write( '<td width="76"><a href="corporateinfo.htm"><img name="foot_0" src="images/menu_corp_on.gif" width="76" height="20" border="0" alt="[Corporate Info] "></a></td>' );	else       	document.write( '<td width="76"><a href="corporateinfo.htm" onmouseover="SwitchImage( \x27foot_0\x27, \x27foot_over_0\x27 ); return true;" onmouseout="SwitchImage( \x27foot_0\x27, \x27foot_0\x27 ); return true;"><img name="foot_0" src="images/menu_corp.gif" width="76" height="20" border="0" alt="[Corporate Info] "></a></td>' );				document.write( '<td>&nbsp;</td>' );				// write everything up to the section titles	document.write( '</tr></table></td></tr></table>' );} //writeFooter()	// write the header (including the menu)function writeHeader() {	document.write( '<a name="top"></a>' );		// write everything up to the section titles	document.write( '<table width="100%"  border="0" cellspacing="0" cellpadding="0"><tr><td width="200"><img src="images/menu_newlogo.gif" width="200" height="75"></td><td width="100%"><img src="images/spacer.gif" width="100%" height="1"></td><td width="300" align="left" valign="top"><table width="300" border="0" cellspacing="0" cellpadding="0"><tr align="right" valign="bottom"><td height="20" colspan="4"><a href="http://www.marathon.com/content/released/marathon2003AR_10K_1.pdf" class="topnav">Download Full Report (pdf)</a><span class="topnolink"> | </span><a href="images/marathon_10K_1.pdf" class="topnav">Download 10-K (pdf) </a></td></tr><tr><td colspan="4" height="20"><img src="images/spacer.gif" width="1" height="20"></td></tr><tr><td width="225"><img src="images/spacer.gif" width="225" height="15"></td><td width="15"><a href="' + prevPage + '" onmouseover="SwitchImage( \x27menu_previous\x27, \x27menu_over_previous\x27 ); return true;" onmouseout="SwitchImage( \x27menu_previous\x27, \x27menu_previous\x27 ); return true;"><img name="menu_previous" src="images/menu_previous.gif" width="15" height="15" border="0" alt="[Previous]"></a></td><td bgcolor="#ffffff" valign="middle" class="topnolink" align="center" width="45">' + thisPage + ' of ' + totalPages + '</td><td width="15" align="left"><a href="' + nextPage + '" onmouseover="SwitchImage( \x27menu_next\x27, \x27menu_over_next\x27 ); return true;" onmouseout="SwitchImage( \x27menu_next\x27, \x27menu_next\x27 ); return true;"><img name="menu_next" src="images/menu_next.gif" width="15" height="15" border="0" alt="[Next]"></a></td></tr><tr><td colspan="4" height="15"><img src="images/spacer.gif" width="1" height="15"></td></tr></table></td><td width="20"><img src="images/spacer.gif" width="20" height="1"></td></tr></table>' );		// begin section titles	document.write( '<table width="100%"  border="0" cellspacing="0" cellpadding="0"><tr bgcolor="#CCCCCC">' );	document.write( '<td>&nbsp;</td>' );		if( thisSection == 1 )		document.write( '<td width="34"><a href="cover.htm"><img name="menu_01" src="images/menu_cover_on.gif" width="34" height="20" border="0" alt="[Cover]"></a></td>' );	else		document.write( '<td width="34"><a href="cover.htm" onmouseover="SwitchImage( \x27menu_01\x27, \x27menu_over_01\x27 ); return true;" onmouseout="SwitchImage( \x27menu_01\x27, \x27menu_01\x27 ); return true;"><img name="menu_01" src="images/menu_cover.gif" width="34" height="20" border="0" alt="[cover]"></a></td>' );				document.write( '<td>&nbsp;</td>' );	if( thisSection == 2 ) 	       document.write( '<td width="100"><a href="fin_high.htm"><img name="menu_02" src="images/menu_fihi_on.gif" width="100" height="20" border="0" alt="[Financial Highlights]"></a></td>' );	else	       document.write( '<td width="100"><a href="fin_high.htm" onmouseover="SwitchImage( \x27menu_02\x27, \x27menu_over_02\x27 ); return true;" onmouseout="SwitchImage( \x27menu_02\x27, \x27menu_02\x27 ); return true;"><img name="menu_02" src="images/menu_fihi.gif" width="100" height="20" border="0" alt="[Financial Highlights]"></a></td>' );		   		   document.write( '<td>&nbsp;</td>' )	if( thisSection == 3 )		document.write( '<td width="35"><a href="letter.htm"><img name="menu_03" src="images/menu_letter_on.gif" width="35" height="20" border="0" alt="[Letter]"></a></td>' );	else		document.write( '<td width="35"><a href="letter.htm" onmouseover="SwitchImage( \x27menu_03\x27, \x27menu_over_03\x27 ); return true;" onmouseout="SwitchImage( \x27menu_03\x27, \x27menu_03\x27 ); return true;"><img name="menu_03" src="images/menu_letter.gif" width="35" height="20" border="0" alt="[Letter]"></a></td>' );				document.write( '<td>&nbsp;</td>' )	if( thisSection == 4 )		document.write( '<td width="109"><a href="ophighlight_1.htm"><img name="menu_04" src="images/menu_ophi_on.gif" width="109" height="20" border="0" alt="[Operation Highlights]"></a></td>' );	else      	document.write( '<td width="109"><a href="ophighlight_1.htm" onmouseover="SwitchImage( \x27menu_04\x27, \x27menu_over_04\x27 ); return true;" onmouseout="SwitchImage( \x27menu_04\x27, \x27menu_04\x27 ); return true;"><img name="menu_04" src="images/menu_ophi.gif" width="109" height="20" border="0" alt="[Operation Highlights]"></a></td>' );				document.write( '<td>&nbsp;</td>' )	if( thisSection == 5 )       	document.write( '<td width="59"><a href="opreview.htm"><img name="menu_05" src="images/menu_op_on.gif" width="59" height="20" border="0" alt="[Operations]"></a></td>' );	else       	document.write( '<td width="59"><a href="opreview.htm" onmouseover="SwitchImage( \x27menu_05\x27, \x27menu_over_05\x27 ); return true;" onmouseout="SwitchImage( \x27menu_05\x27, \x27menu_05\x27 ); return true;"><img name="menu_05" src="images/menu_op.gif" width="59" height="20" border="0" alt="[Operations]"></a></td>' );				document.write( '<td>&nbsp;</td>' )	if( thisSection == 6 )		document.write( '<td width="124"><a href="responsibility.htm"><img name="menu_06" src="images/menu_corresp_on.gif" width="124" height="20" border="0" alt="[Corporate Responsibility]"></a></td>' );	else		document.write( '<td width="124"><a href="responsibility.htm" onmouseover="SwitchImage( \x27menu_06\x27, \x27menu_over_06\x27 ); return true;" onmouseout="SwitchImage( \x27menu_06\x27, \x27menu_06\x27 ); return true;"><img name="menu_06" src="images/menu_corresp.gif" width="124" height="20" border="0" alt="[Corporate Responsibility]"></a></td>' );				document.write( '<td>&nbsp;</td>' )	if( thisSection == 7 )       	document.write( '<td width="71"><a href="management.htm"><img name="menu_07" src="images/menu_mgmt_on.gif" width="71" height="20" border="0" alt="[Management]"></a></td>' );	else		document.write( '<td width="71"><a href="management.htm" onmouseover="SwitchImage( \x27menu_07\x27, \x27menu_over_07\x27 ); return true;" onmouseout="SwitchImage( \x27menu_07\x27, \x27menu_07\x27 ); return true;"><img name="menu_07" src="images/menu_mgmt.gif" width="71" height="20" border="0" alt="[Management]"></a></td>' );				document.write( '<td>&nbsp;</td>' )	if( thisSection == 0 )       	document.write( '<td width="76"><a href="corporateinfo.htm"><img name="menu_0" src="images/menu_corp_on.gif" width="76" height="20" border="0" alt="[Corporate Info] "></a></td>' );	else       	document.write( '<td width="76"><a href="corporateinfo.htm" onmouseover="SwitchImage( \x27menu_0\x27, \x27menu_over_0\x27 ); return true;" onmouseout="SwitchImage( \x27menu_0\x27, \x27menu_0\x27 ); return true;"><img name="menu_0" src="images/menu_corp.gif" width="76" height="20" border="0" alt="[Corporate Info] "></a></td>' );				document.write( '<td>&nbsp;</td>' )		// end section titles, close the table	document.write( '</tr><tr><td colspan="4"><img src="images/spacer.gif" width="1" height="35"></td></tr></table>' );} //writeHeader()// end of 'header.js'