var ORAIKO_activeHider
	ORAIKO_disappearTTL = 500
  , ORAIKO_rootPath     = "";

/**
 * Root path detection.
 * Author: Michael Lee
 * Copyright 2007 ORAIKO.com, All Rights Reserved.
 */
function ORAIKO_determineRoot()
{
   ORAIKO_rootPath = document.location.pathname;   
   var idxContent  = ORAIKO_rootPath.indexOf("content");
   var idxSlash    = ORAIKO_rootPath.lastIndexOf("/");
   var idxBSlash   = ORAIKO_rootPath.lastIndexOf("\\");
   var re          = (/\/$/);

   if(idxSlash == -1 && idxBSlash >= 0)
   {
      idxSlash = idxBSlash;
      re = (/\\$/);
   }

   ORAIKO_rootPath = ORAIKO_rootPath.substring(0, (idxContent < 0 ? idxSlash : idxContent));
   ORAIKO_rootPath = ORAIKO_rootPath.replace(re, '');
}

function ORAIKO_cancelDisappear()
{
   if(ORAIKO_activeHider) window.clearTimeout(ORAIKO_activeHider);
}

function ORAIKO_disappear()
{
   ORAIKO_activeHider = window.setTimeout(hideActiveMenus, ORAIKO_disappearTTL);
}

function mmLoadMenus() {
    if (window.mm_menu_Team) return;
    
    ORAIKO_determineRoot();
    
    window.mm_menu_Team = new Menu("root",120,36,"Verdana, Arial, Helvetica, sans-serif",10,"#D1D1D1","#ffffff","#ffffff","#C5E836","center","middle",3,0,ORAIKO_disappearTTL,-5,7,true,true,false,0,true,true);
	 mm_menu_Team.addMenuItem("COMBINATIONS","location='"+ ORAIKO_rootPath + "/content/combinations/combinations_holiday.htm'");
    mm_menu_Team.addMenuItem("PLACEMATS","location='"+ ORAIKO_rootPath + "/content/placemats/placemats_scallops.htm'");
    mm_menu_Team.addMenuItem("ACCESSORIES","location='"+ ORAIKO_rootPath + "/content/accessories/accessories_coasters.htm'");
    mm_menu_Team.hideOnMouseOut=true;
    mm_menu_Team.menuBorder=1;
    mm_menu_Team.menuLiteBgColor='#ffffff';
    mm_menu_Team.menuBorderBgColor='#D1D1D1';
    mm_menu_Team.bgColor='#ffffff';

    window.mm_menu_Portfolio = new Menu("root",137,36,"Verdana, Arial, Helvetica, sans-serif",10,"#D1D1D1","#ffffff","#ffffff","#C5E836","center","middle",3,0,ORAIKO_disappearTTL,-5,7,true,true,false,0,true,true);
    mm_menu_Portfolio.addMenuItem("THINKMARKETING","location='"+ ORAIKO_rootPath + "/content/marketing/marketing_magazine.htm'");
    mm_menu_Portfolio.addMenuItem("THINKWEB","location='"+ ORAIKO_rootPath + "/content/web/web_social.htm'");
    mm_menu_Portfolio.addMenuItem("THINKDESIGN","location='"+ ORAIKO_rootPath + "/content/design/design_retail.htm'");
    mm_menu_Portfolio.hideOnMouseOut=true;
    mm_menu_Portfolio.menuBorder=1;
    mm_menu_Portfolio.menuLiteBgColor='#ffffff';
    mm_menu_Portfolio.menuBorderBgColor='#D1D1D1';
    mm_menu_Portfolio.bgColor='#ffffff';

    mm_menu_Portfolio.writeMenus();
} // mmLoadMenus()

//-->
