var ns6 = document.getElementById && !document.all;

function SI_showSubNav2(SI_subnav){

	var SI_nav;
	var SI_complete;

	if(document.getElementById){
		SI_complete = "document.getElementById('" + SI_subnav + "Menu')";
	}
	else if(document.all){
		SI_complete = "document.all['" + SI_subnav + "Menu']";
	}

	SI_nav = eval(SI_complete);

	if (SI_nav){
		SI_nav.style.visibility = 'visible';
	}

	SI_displaySelects( 'hidden' );
}

function SI_hideSubNav2(SI_subnav){

	var SI_nav;
	var SI_complete;

	if(document.getElementById){
		SI_complete = "document.getElementById('" + SI_subnav + "Menu')";
	}
	else if(document.all){
		SI_complete = "document.all['" + SI_subnav + "Menu']";
	}

	SI_nav = eval(SI_complete);

	if (SI_nav){
		SI_nav.style.visibility = 'hidden';
	}

	SI_displaySelects( 'visible' );
}


var olympics_subnav1 = new Array(
"Archery", "/olympics/2004/archery/",
"Badminton", "/olympics/2004/badminton/",
"Baseball", "/olympics/2004/baseball/",
"Basketball", "/olympics/2004/basketball/",
"Boxing", "/olympics/2004/boxing/",
"Canoe/Kayak", "/olympics/2004/canoe_kayak/",
"Cycling", "/olympics/2004/cycling/",
"Diving", "/olympics/2004/diving/",
"Equestrian", "/olympics/2004/equestrian/",
"Fencing", "/olympics/2004/fencing/",
"Gymnastics", "/olympics/2004/gymnastics/"
);

var olympics_subnav2 = new Array(
"Handball", "/olympics/2004/handball/",
"Hockey", "/olympics/2004/hockey/",
"Judo", "/olympics/2004/judo/",
"Pentathlon", "/olympics/2004/pentathlon/",
"Rowing", "/olympics/2004/rowing/",
"Sailing", "/olympics/2004/sailing/",
"Shooting", "/olympics/2004/shooting/",
"Soccer", "/olympics/2004/soccer/",
"Softball", "/olympics/2004/softball/",
"Swimming", "/olympics/2004/swimming/",
"Sync Swim", "/olympics/2004/sync_swimming/"
);

var olympics_subnav3 = new Array(
"Table Tennis", "/olympics/2004/table_tennis/",
"Taekwondo", "/olympics/2004/taekwondo/",
"Tennis", "/olympics/2004/tennis/",
"Track & Field", "/olympics/2004/track/",
"Triathlon", "/olympics/2004/triathlon/",
"Volleyball", "/olympics/2004/volleyball/",
"Water Polo", "/olympics/2004/water_polo/",
"Weightlifting", "/olympics/2004/weightlifting/",
"Wrestling", "/olympics/2004/wrestling/",
"&nbsp;", "",
"&nbsp;", ""
);

function SI_setUpMenus2(){
var result = "<div id=\"mooMenu\" style=\"z-index:999;position: absolute; left: 425; width: 300; visibility: hidden\" onmouseover=\"SI_showSubNav2('moo');\" onmouseout=\"SI_hideSubNav2('moo');\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">";
result += "<tr bgcolor=\"2f1f11\">";
result += "<td colspan=\"2\"><img src=\"http://i.cnn.net/si/images/1.gif\" width=\"100\" height=\"1\"></td>";
result += "<td colspan=\"2\"><img src=\"http://i.cnn.net/si/images/1.gif\" width=\"100\" height=\"1\"></td>";
result += "<td colspan=\"2\"><img src=\"http://i.cnn.net/si/images/1.gif\" width=\"100\" height=\"1\"></td>";
result += "</tr>";
for( var i = 0; i < olympics_subnav1.length; i+=2 ) {
result += "<tr>";
  for( var j = 1; j <= 3; j++ ) {
    result += "<td class=\"olympic_cstrip\" id=\"r" + i + "c" + j + "\"><img src=\"http://i.cnn.net/si/images/1.gif\" width=\"3\" height=\"1\"></td>";
    if( eval( 'olympics_subnav' + j )[i] == "&nbsp;" ) {
      result += "<td class=\"olympic_subnav\">";
    } else {
      if( document.isRemoteHosted == 'local' ) {
        server = "http://sportsillustrated.cnn.com";
      } else {
        server = "http://sportsillustrated.cnn.com";
      }
      result += "<td class=\"olympic_subnav\" onmouseover=\"this.style.backgroundColor='#996600';this.style.color='#cccc99';if( !ns6 ) { r" + i + "c" + j + ".style.backgroundColor='#006600'; }\" onmouseout=\"this.style.backgroundColor='#000000';this.style.color='#ffffff';if( !ns6 ) { r" + i + "c" + j + ".style.backgroundColor='#990000'; }\" onClick=\"if (typeof P_popupoff != 'undefined') P_popupoff();document.location.href='" + server + eval( 'olympics_subnav' + j )[i+1] + "'\">";
    }
    result += eval( 'olympics_subnav' + j )[i];
    result += "</td>";
  }
result += "</tr>";
}
result += "</table></div>";
document.write( result );
}