// 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=\"/js/09/sdmenu/topCompany.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>Who We Are</span>");

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

        document.write("<a href=\"/company/philosophy.html\"><strong>Philosophy</strong></a>");
        document.write("<a href=\"/company/benefits.html\"><strong>Benefits</strong></a>");
        document.write("<a href=\"/company/commitment.html\"><strong>Commitment</strong></a>");
        document.write("<a href=\"/company/history.html\"><strong>History</strong></a>");
        document.write("<a href=\"/company/careers.html\"><strong>採用情報</strong></a>");
        
 	
	document.write("<a href=\"/company/contact.html\"><strong>Contact Us</strong></a>");
            
        document.write("</div>");
      
    document.write("</div>");
    
    


      