// BIKES RIGHT NAV

var myMenu;
	window.onload = function() {
		myMenu = new SDMenu("my_menu");
    myMenu.speed = 5;                     // Menu sliding speed (1 - 5 recomended)
    myMenu.remember = false;               // Store menu states (expanded or collapsed) in cookie and restore later
    myMenu.oneSmOnly = true;             // One expanded submenu at a time
    myMenu.markCurrent = true;            // Mark current link / page (link.href == location.href)
		myMenu.init();
	};
  
  
var tableopen = "<table width=180 border=0 cellspacing=0 cellpadding=0><tr><td class=expanded>";
var tableclose = "</td></tr></table>";

var catopen = "<table width=180 border=0 cellspacing=0 cellpadding=0><tr><td class=cat>";
var catclose = "</td></tr></table>";


// WHERE AM I? Look for URL to determine which section you're in.

  
document.write("<img src=\"http://www.cannondale.com/js/09/sdmenu/topPlanet.gif\" height=24 width=180>");

document.write("<div style=\"float: left\" id=\"my_menu\" class=\"sdmenu\">");

// document.write(cat); /*FOR TESTING*/


/************************** COMPANY **************************/     
  document.write("<div>");

      
      document.write("<span>Join The Good Fight</span>");

        //document.write(catopen+"Join The Good Fight"+catclose);

        document.write("<a href=\"/thegoodfight/index.html\"><strong>Why We Fight</strong></a>");
        
            
        document.write("</div>");
      
    document.write("</div>");
    
    


      
