
//UDMv--Updated 3.5 (with 3.4.1.1b elements)
//**DO NOT EDIT THIS *****
if (!exclude) { //********
//************************

///////////////////////////////////////////////////////////////////////////
//
//  ULTIMATE DROPDOWN MENU VERSION 3.5 by Brothercake
//  This is a special version for Dynamic Drive (http://www.dynamicdrive.com)
//
//  Link-wrapping routine by Brendan Armstrong
//  Original KDE modifications by David Joham
//  Opera reload/resize based on a routine by Michael Wallner
//  Select-element hiding routine by Huy Do
//
///////////////////////////////////////////////////////////////////////////


// *** POSITIONING AND STYLES *********************************************

menuALIGN = "left";		// alignment
absLEFT = 	0;		// absolute left or right position (if menu is left or right aligned)
absTOP = 	0; 		// absolute top position

staticMENU = false;		// static positioning mode (ie5,ie6 and ns4 only)

stretchMENU = false;		// show empty cells
showBORDERS = false;		// show empty cell borders

baseHREF = "http://www.interactivebrokers.com/scripts/common/";	// base path to .js files for the script (ie: resources/)
zORDER = 	1000;		// base z-order of nav structure (not ns4)

mCOLOR = 	"";	// main nav cell color  
rCOLOR = 	"#434A54";	// main nav cell rollover color  
bSIZE = 	1;		// main nav border size
bCOLOR = 	"";	// main nav border color
aLINK = 	"white";	// main nav link color
aHOVER = 	"#FFFFFF";	// main nav link hover-color (dual purpose)
aDEC = 	"none";		// main nav link decoration
fFONT = 	"Verdana, Arial, Helvetica, sans-serif";	// main nav font face
fSIZE = 	11;		// main nav font size (pixels)
fWEIGHT = 	"bold"		// main nav font weight
tINDENT = 	18;		// main nav text indent (if text is left or right aligned)
vPADDING = 	1;		// main nav vertical cell padding
vtOFFSET = 	0;		// main nav vertical text offset (+/- pixels from middle)

keepLIT =	true;		// keep rollover color when browsing menu
vOFFSET = 	5;		// shift the submenus vertically
hOFFSET = 	4;		// shift the submenus horizontally

smCOLOR = 	"#EBEEEE";	// submenu cell color

srCOLOR = 	"#636E7D";	// submenu cell rollover color
sbSIZE = 	1;		// submenu border size
sbCOLOR = 	"#666666"	// submenu border color
saLINK = 	"black";	// submenu link color
saHOVER = 	"white";		// submenu link hover-color (dual purpose)
saDEC = 	"none";		// submenu link decoration
sfFONT = 	"Verdana, Arial, Helvetica, sans-serif";// submenu font face
sfSIZE = 	9;		// submenu font size (pixels)
sfWEIGHT = 	"normal"	// submenu font weight
stINDENT = 	5;		// submenu text indent (if text is left or right aligned)
svPADDING = 1;		// submenu vertical cell padding
svtOFFSET = 0;		// submenu vertical text offset (+/- pixels from middle)

shSIZE =	0;		// submenu drop shadow size
shCOLOR =	"#999999";	// submenu drop shadow color
shOPACITY = 50;		// submenu drop shadow opacity (not ie4,ns4 or opera)

keepSubLIT = true;		// keep submenu rollover color when browsing child menu
chvOFFSET = -12;		// shift the child menus vertically
chhOFFSET = 7;		// shift the child menus horizontally

openTIMER = 0; // [** new **] menu opening delay time (not ns4/op5/op6)
openChildTIMER = 0; // [** new **] child-menu opening delay time (not ns4/op5/op6)
closeTIMER = 100;		// menu closing delay time

cellCLICK = true;		// links activate on TD click
aCURSOR = "hand";		// cursor for active links (not ns4 or opera)

altDISPLAY = "";		// where to display alt text
allowRESIZE = false;		// allow resize/reload

redGRID = false;		// show a black grid
gridWIDTH = 0;		// override grid width
gridHEIGHT = 0;		// override grid height
documentWIDTH = 0;		// override document width

hideSELECT = false;		// auto-hide select boxes when menus open (ie only)
allowForSCALING = false;	// allow for text scaling in mozilla 5

//new variables 3.5 version

allowPRINTING = false; // allow the navbar and menus to print (not ns4)
arrWIDTH = 10; // [** new **] arrow width (not ns4/op5/op6)
arrHEIGHT = 7; // [** new **] arrow height (not ns4/op5/op6)
arrHOFFSET = 0; // [** new **] arrow horizontal offset (not ns4/op5/op6)
arrVOFFSET = 0; // [** new **] arrow vertical offset (not ns4/op5/op6)
arrVALIGN = "middle"; // [** new **] arrow vertical align (not ns4/op5/op6)
arrLEFT = "subnav2.gif"; // [** new **] left arrow (not ns4/op5/op6)
arrRIGHT = "subnav2.gif"; // [** new **] right arrow (not ns4/op5/op6)
////////


// Open a new window
  var win = null;
  function NewWindow(mypage, myname, w, h, pos, infocus) {
    if (pos == "random") {
      myleft = (screen.width) ? Math.floor(Math.random() * (screen.width-w)):100;
      mytop = (screen.height) ? Math.floor(Math.random() * ((screen.height-h)-75)):100;
    }
    if (pos == "center") {
      myleft = (screen.width) ? (screen.width-w) / 2:100;
      mytop = (screen.height) ? (screen.height-h) / 2:100;
    } else if ((pos !='center' && pos != "random") || pos == null) {
      myleft = 0; mytop = 20
    }
    settings = "width=" + w + ", height=" + h + ",top=" + mytop + ",left=" + myleft + ", scrollbars=yes, location=no, directories=no, status=no, menubar=no, toolbar=no, resizable=yes";
    win = window.open(mypage, myname, settings);
    win.focus();
  }
  
  function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

  function MM_openWindow(theURL) { //v2.0
  window.open(theURL);
}

function MM_openBrWindow3(theURL,winName,features) { //v2.0
    	//document.location.replace("");
        window.open(theURL,winName,features); 
	if (document.getElementById("ticker")!=null) {
	    document.getElementById("ticker").src="tickerInit2.php";
	}
	loaded = false;
}
fSIZE=14
sfSIZE=14

	defineSubmenuProperties(160,"left","left",-4,0,"");
	addSubmenuItem("http://www.interactivebrokers.com/cgi-bin/loginControl.pl?ib_entity=cn","Trade","","");


		defineChildmenuProperties(145,"left","left",0,-20,"");
		addChildmenuItem("http://www.interactivebrokers.com/cn/software/twsDisclaimer.php?ib_entity=cn","TWS","","");


		addChildmenuItem("http://www.interactivebrokers.com/cn/software/twsPluginDisclaimer.php?ib_entity=cn","TWS Beta","","");


		addChildmenuItem("https://wt1.interactivebrokers.com/webtrader/servlet/login","WebTrader","_blank","");


	addSubmenuItem("https://www.interactivebrokers.com/Universal/servlet/AccountAccess.Login","Account Management Menu","_blank","");


	addSubmenuItem("https://www.interactivebrokers.com/Universal/servlet/AccountAccess.Login?forwardTo=1","Statements","_blank","");


	addSubmenuItem("https://www.interactivebrokers.com/Universal/servlet/AccountAccess.Login?forwardTo=2","Tax Forms","_blank","");


	addSubmenuItem("https://www.interactivebrokers.com/Universal/servlet/AccountAccess.Login?forwardTo=3","Deposits and Transfers","_blank","");


	addSubmenuItem("https://www.interactivebrokers.com/Universal/servlet/AccountAccess.Login?forwardTo=4","Withdrawals","_blank","");


	addSubmenuItem("https://www.interactivebrokers.com/Universal/servlet/AccountAccess.Login?forwardTo=5","Funds Status","_blank","");


	addSubmenuItem("https://www.interactivebrokers.com/Universal/servlet/AccountAccess.Login?c=t","Finish Application","_blank","");


//&#20027;&#39029; ****************************************************

addMainItem("","&#20027;&#39029;",110,"left","","",0,0,"w");


	defineSubmenuProperties(100,"left","left",-4,0,"");
	addSubmenuItem("http://www.interactivebrokers.com/en/main.php","&#33521;&#25991;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/main.php","&#20013;&#25991;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/ibglobal_sites.php?ib_entity=cn","IB &#20840;&#29699;","","");


//&#36153;&#29992; ****************************************************

addMainItem("","&#36153;&#29992;",110,"left","","",0,0,"w");


	defineSubmenuProperties(120,"left","left",-4,0,"");
	addSubmenuItem("http://www.interactivebrokers.com/cn/accounts/fees/commission.php?ib_entity=cn","&#20323;&#37329;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/accounts/fees/interest.php?ib_entity=cn","&#21033;&#24687;&#21644;&#34701;&#36164;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/p.php?f=marketData&ib_entity=cn","&#24066;&#22330;&#25968;&#25454;&#21644;&#26032;&#38395;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/p.php?f=otherFees&ib_entity=cn","&#20854;&#20182;&#36153;&#29992;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/accounts/fees/minimumDeposits.php?ib_entity=cn","&#36134;&#25143;&#26368;&#20302;&#37329;&#39069;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/accounts/advisors/advisorWrapFees.php?ib_entity=cn","&#39038;&#38382;&#23458;&#25143;&#36153;&#29992;","","");


//&#20132;&#26131; ****************************************************

addMainItem("","&#20132;&#26131;",110,"left","","",0,0,"w");


	defineSubmenuProperties(150,"left","left",-4,0,"");
	addSubmenuItem("http://www.interactivebrokers.com/cn/general/education/highlights.php?p=p","&#20135;&#21697;&#20030;&#35201;","","");


	addSubmenuItem("","&#20135;&#21697;&#21015;&#20030;","","");


		defineChildmenuProperties(120,"left","left",0,-20,"");
		addChildmenuItem("http://www.interactivebrokers.com/cn/trading/products.php?pdt=STK&ib_entity=cn","&#32929;&#31080;","","");


		addChildmenuItem("http://www.interactivebrokers.com/cn/trading/products.php?pdt=OPT&ib_entity=cn","&#26399;&#26435;","","");


		addChildmenuItem("http://www.interactivebrokers.com/cn/trading/products.php?pdt=FUT&ib_entity=cn","&#26399;&#36135;","","");


		addChildmenuItem("http://www.interactivebrokers.com/cn/trading/products.php?pdt=FOP&ib_entity=cn","&#26399;&#36135;&#26399;&#26435;","","");


		addChildmenuItem("http://www.interactivebrokers.com/cn/trading/products.php?pdt=ETF&ib_entity=cn","&#20132;&#26131;&#25152;&#25351;&#25968;&#22522;&#37329;","","");


		addChildmenuItem("http://www.interactivebrokers.com/cn/trading/products.php?pdt=WAR&ib_entity=cn","&#26435;&#35777;","","");


		addChildmenuItem("http://www.interactivebrokers.com/cn/trading/products.php?pdt=SSF&ib_entity=cn","&#21333;&#19968;&#32929;&#31080;&#26399;&#36135;","","");


		addChildmenuItem("http://www.interactivebrokers.com/cn/trading/products.php?pdt=FX&ib_entity=cn","&#22806;&#27719;","","");


		addChildmenuItem("http://www.interactivebrokers.com/cn/trading/products.php?pdt=IND&ib_entity=cn","&#25351;&#25968;","","");


		addChildmenuItem("http://www.interactivebrokers.com/cn/trading/products.php?pdt=BOND&ib_entity=cn","&#20538;&#21048;","","");


		addChildmenuItem("http://www.interactivebrokers.com/cn/trading/products.php?pdt=FUND&ib_entity=cn","&#22522;&#37329;","","");


		addChildmenuItem("http://www.interactivebrokers.com/cn/trading/products.php?pdt=CFD&ib_entity=cn","&#24046;&#20215;&#21512;&#32422;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/trading/productsupdates.php?ib_entity=cn","&#26032;&#22686;&#20135;&#21697;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/p.php?f=shortableStocks&ib_entity=cn","&#21487;&#21334;&#31354;&#32929;&#31080;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/trading/products.php?ib_entity=cn","&#20132;&#26131;&#25152;&#21015;&#20030;","","");


		defineChildmenuProperties(100,"left","left",0,-20,"");
		addChildmenuItem("http://www.interactivebrokers.com/cn/trading/products.php?ib_entity=cn","&#27010;&#35201;","","");


		addChildmenuItem("http://www.interactivebrokers.com/cn/trading/products.php?ib_entity=cn#global","&#20840;&#29699;","","");


		addChildmenuItem("http://www.interactivebrokers.com/cn/trading/products.php?ib_entity=cn#america","&#21271;&#32654;","","");


		addChildmenuItem("http://www.interactivebrokers.com/cn/trading/products.php?ib_entity=cn#europe","&#27431;&#27954;","","");


		addChildmenuItem("http://www.interactivebrokers.com/cn/trading/products.php?ib_entity=cn#asia","&#20122;&#22826;","","");


	addSubmenuItem("javascript:NewWindow('http://www.interactivebrokers.co.uk/contract_info/index.php?ib_entity=cn?site=IB',600,700,'custom','front')","&#21512;&#32422;&#20449;&#24687;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/p.php?f=smartRouting&ib_entity=cn","&#26234;&#33021;&#20256;&#36882;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/p.php?f=orderTypes&ib_entity=cn","&#23450;&#21333;&#31867;&#22411;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/p.php?f=margin&ib_entity=cn","&#20445;&#35777;&#37329;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/p.php?f=deliveryExerciseActions&ib_entity=cn","&#20132;&#21106;&#12289;&#23653;&#32422;&#21644;&#20844;&#21496;&#34892;&#20026;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/trading/holidayAndExpirationCalendar.php?ib_entity=cn","&#20132;&#26131;&#32773;&#26085;&#21382;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/p.php?f=customerService&p=b&ib_entity=cn","&#38169;&#35823;&#20132;&#26131;&#25919;&#31574;","","");


//&#36134;&#25143; ****************************************************

addMainItem("","&#36134;&#25143;",110,"left","","",0,0,"w");


	defineSubmenuProperties(120,"left","left",-4,0,"");
	addSubmenuItem("http://www.interactivebrokers.com/cn/general/education/highlights.php?p=a","&#36134;&#25143;&#20030;&#35201;","","");


	addSubmenuItem("","&#26032;&#36134;&#25143;","","");


		defineChildmenuProperties(110,"left","left",0,-20,"");
		addChildmenuItem("http://www.interactivebrokers.com/cn/accounts/individuals/individualMain.php?ib_entity=cn","&#20010;&#20154;","","");


		addChildmenuItem("http://www.interactivebrokers.com/cn/accounts/advisors/advisorsMain.php?ib_entity=cn","&#32844;&#19994;&#39038;&#38382;","","");


		addChildmenuItem("http://www.interactivebrokers.com/cn/accounts/brokers/brokerMain.php?ib_entity=cn","&#32463;&#32426;&#21830;","","");


		addChildmenuItem("http://www.interactivebrokers.com/cn/accounts/institutions/institutionalMain.php?ib_entity=cn","&#26426;&#26500;","","");


		addChildmenuItem("http://www.interactivebrokers.com/cn/accounts/institutions/fundMain.php?ib_entity=cn","&#22522;&#37329;","","");


		addChildmenuItem("http://www.interactivebrokers.com/cn/p.php?f=inst_new_accounts&p=c&ib_entity=cn","&#21512;&#35268;&#19987;&#21592;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/p.php?f=accountmanagement&ib_entity=cn","&#36134;&#25143;&#31649;&#29702;","","");


	addSubmenuItem("http://www.interactivebrokers.com/Universal/servlet/AccountAccess.Login?c=t","&#23436;&#25104;&#30003;&#35831;","_blank","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/p.php?f=funding&ib_entity=cn","&#36164;&#37329;&&#38134;&#34892;&#27963;&#21160;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/p.php?f=accountConfig&ib_entity=cn","&#36134;&#25143;&#35774;&#32622;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/trading/tradingConfiguration.php?ib_entity=cn","&#20132;&#26131;&#35774;&#32622;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/p.php?f=userMgmt&ib_entity=cn","&#29992;&#25143;&#20351;&#29992;&#26435;&#21033;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/p.php?f=statements&ib_entity=cn","&#36134;&#21333;&&#25253;&#21578;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/p.php?f=tax&ib_entity=cn","&#31246;&#25910;&#25253;&#21578;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/accounts/accountProtection.php?ib_entity=cn","&#36134;&#25143;&#20445;&#25252;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/p.php?f=security&ib_entity=cn","&#23433;&#20840;&#20449;&#24687;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/accounts/closingAccount.php?ib_entity=cn","&#27880;&#38144;&#36134;&#25143;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/p.php?f=legalDocs&ib_entity=cn","&#34920;&#26684;&#21644;&#22768;&#26126;","","");


//&#36719;&#20214; ****************************************************

addMainItem("","&#36719;&#20214;",110,"left","","",0,0,"w");


	defineSubmenuProperties(140,"left","left",-4,0,"");
	addSubmenuItem("http://www.interactivebrokers.com/cn/general/education/highlights.php?p=s","&#36719;&#20214;&#20030;&#35201;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/p.php?f=tws&ib_entity=cn","&#20132;&#26131;&#24179;&#21488;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/p.php?f=programInterface&ib_entity=cn","&#24212;&#29992;&#31243;&#24207;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/p.php?f=webtrader&ib_entity=cn","&#32593;&#32476;&#29256;&#20132;&#26131;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/p.php?f=mobiletrader&ib_entity=cn","&#31227;&#21160;&#20132;&#26131;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/p.php?f=iTWS&ib_entity=cn","&#38024;&#23545;iPhone&#30340;iTWS","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/p.php?f=cam&ib_entity=cn","&#23458;&#25143;&#27963;&#21160;&#30417;&#31649;","","");


	addSubmenuItem("http://www.interactivebrokers.com/en/general/poll/ibconsultants.php?ib_entity=cn","&#20249;&#20276;&#39033;&#30446;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/p.php?f=bandwidth&ib_entity=cn","&#20132;&#26131;&#25152;&#24102;&#23485;","","");


//&#30740;&#31350;&#23398;&#20064; ****************************************************

addMainItem("","&#30740;&#31350;&#23398;&#20064;",125,"left","","",0,0,"w");


	defineSubmenuProperties(120,"left","left",-4,0,"");
	addSubmenuItem("http://www.interactivebrokers.com/optionsCommentary/index.php?ib_entity=cn","&#26399;&#26435;&#26399;&#36135;&#25253;&#21578;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/general/education/FX-View.php?ib_entity=cn","&#22806;&#27719;&#19968;&#35272;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/general/education/webinars.php?p=l&ib_entity=cn","&#32593;&#30740;&#20250;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/p.php?f=tradersuniversity&ib_entity=cn","&#20132;&#26131;&#32773;&#22823;&#23398;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/software/twsTutorial.php?ib_entity=cn","&#20132;&#20114;&#24335;&#21521;&#23548;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/general/education/UserGuides.php?ib_entity=cn","&#29992;&#25143;&#25351;&#21335;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/p.php?f=exchangesEdu&ib_entity=cn","&#20840;&#29699;&#20132;&#26131;&#25152;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/p.php?f=productsEdu&ib_entity=cn","&#20135;&#21697;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/p.php?f=ibchat_bb&ib_entity=cn","&#20844;&#21578;&#26639;&&#32842;&#22825;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/general/education/IBStudentTradingLab.php?ib_entity=cn","IB&#23398;&#29983;&#20132;&#26131;&#23460;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/p.php?f=liveEvents&ib_entity=cn","&#29616;&#22330;&#27963;&#21160;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/general/poll/ibconsultants.php?progid=13&ib_entity=cn","&#25945;&#32946;&#20249;&#20276;","","");


//&#20851;&#20110; IB ****************************************************

addMainItem("","&#20851;&#20110; IB",125,"left","","",0,0,"w");


	defineSubmenuProperties(120,"left","left",-4,0,"");
	addSubmenuItem("http://www.interactivebrokers.com/cn/general/about/about.php?ib_entity=cn","&#20449;&#24687;&#21644;&#21382;&#21490;","","");


	addSubmenuItem("http://investors.interactivebrokers.com/ir/main.php","&#25237;&#36164;&#32773;&#20851;&#31995;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/general/education/highlights.php?ib_entity=cn","&#20026;&#20160;&#20040;&#36873;&#25321;IB","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/general/about/ibgStrength.php?ib_entity=cn","&#20844;&#21496;&#23454;&#21147;&#20445;&#35777;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/general/poll/poll.php?ib_entity=cn","&#25237;&#31080;&#26032;&#21151;&#33021;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/general/contact/feedbackForm.php?ib_entity=cn","&#24314;&#35758;&&#25237;&#35785;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/p.php?f=news&ib_entity=cn","IB &#26032;&#38395;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/p.php?f=media&ib_entity=cn","&#23186;&#20307;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/general/about/commentLetters.php?ib_entity=cn","&#35780;&#35770;&#20449;&#20214;&&#25253;&#32440;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/accounts/legalDocuments/brokerPerformanceReports.php?ib_entity=cn","&#34920;&#29616;&#25253;&#21578;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/general/about/financials.php?ib_entity=cn","&#36130;&#25919;","","");


	addSubmenuItem("http://www.interactivebrokers.com/download/sp_rating.pdf","&#26631;&#20934;&#26222;&#23572;&#35780;&#20272;","_blank","");


	addSubmenuItem("http://interactivebrokers.hrmdirect.com/employment/index.php","&#23601;&#19994;&#26426;&#20250;","_blank","");


//&#24110;&#21161;&&#32852;&#31995; ****************************************************

addMainItem("","&#24110;&#21161;&&#32852;&#31995;",125,"left","","",0,0,"w");


	defineSubmenuProperties(120,"left","left",-4,0,"");
	addSubmenuItem("http://www.interactivebrokers.com/cn/p.php?f=customerService&ib_entity=cn","&#23458;&#25143;&#26381;&#21153;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/p.php?f=salesInfo&ib_entity=cn","&#32852;&#31995;&#38144;&#21806;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/general/contact/tipsContractsDatabaseSearch.php?ib_entity=cn","&#21512;&#32422;&#25968;&#25454;&#24211;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/software/systemStatus.php?ib_entity=cn","&#31995;&#32479;&#29366;&#24577;","","");


	addSubmenuItem("http://ibkb.interactivebrokers.com","IB &#30693;&#35782;&#24211;","_blank","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/p.php?f=faq&ib_entity=cn","&#24120;&#35265;&#38382;&#39064;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/p.php?f=calendars&ib_entity=cn","&#26085;&#21382;","","");


	addSubmenuItem("http://www.interactivebrokers.com/cn/trading/pdfhighlights/PDF-OptionsDesk.php?ib_entity=cn","&#26399;&#26435;&#20132;&#26131;&#26381;&#21153;","","");



}

//**line-height switch ****************************************
var lineHeightSwitch=false;
//**DO NOT EDIT THIS ******************************************
if(!exclude){var d=document;var mrSize,srSize;if(typeof fSIZE=="number"){mrSize=fSIZE+"px";}else {if(fSIZE=="x-small"){mrSize="xx-small";if(com){mrSize="x-small";}fSIZE=10;}else if(fSIZE=="small") {mrSize="x-small";if(com){mrSize="small";}fSIZE=13;}else if(fSIZE=="medium"){mrSize="small";if(com){mrSize="medium";}fSIZE=16;}else if(fSIZE=="large"){mrSize="medium";if(com){mrSize="large";}fSIZE=19;}else if(fSIZE=="x-large"){mrSize="large";if(com){mrSize="x-large";}fSIZE=24;}else {mrSize="x-small";if(com){mrSize="small";}fSIZE=13;}}if(menuALIGN=="free"){mrSize=fSIZE+"px";}if(typeof sfSIZE=="number"){srSize=sfSIZE+"px";}else {if(sfSIZE=="x-small"){srSize="xx-small";if(com){srSize="x-small";}sfSIZE=10;}else if(sfSIZE=="small") {srSize="x-small";if(com){srSize="small";}sfSIZE=13;}else if(sfSIZE=="medium"){srSize="small";if(com){srSize="medium";}sfSIZE=16;}else if(sfSIZE=="large"){srSize="medium";if(com){srSize="large";}sfSIZE=19;}else if(sfSIZE=="x-large"){srSize="large";if(com){srSize="x-large";}sfSIZE=24;}else{srSize="x-small";if(com){srSize="small";}sfSIZE=13;}}if(menuALIGN=="free"){srSize=sfSIZE+"px";}if((!mac&&ns4)||(mac&&op5)){fSIZE+=1;sfSIZE+=1;}if(lin&&op7){fSIZE-=2;sfSIZE-=2;}if(bSIZE<0)bSIZE=0;if(fSIZE<5)fSIZE=5;if(tINDENT<0)tINDENT=0;if(vPADDING<1)vPADDING=1;if(sbSIZE<0)sbSIZE=0;if(sfSIZE<5) sfSIZE=5;if(stINDENT<0)stINDENT=0;if(svPADDING<0)svPADDING=0;if(fWEIGHT=="")fWEIGHT="normal";if(sfWEIGHT=="")sfWEIGHT="normal";if(shSIZE<0){shSIZE=0;}if(menuALIGN=="virtual"){remoteTRIGGERING=1;menuALIGN="left";if(ns4||op5||op6||(mac&&ie5)){if(allowRESIZE==mu){allowRESIZE=true;}}else {if(allowRESIZE==mu){allowRESIZE=false;}}staticMENU=0;}if(ns4&&shCOLOR==""){shCOLOR="#cccccc";shSIZE=0;}var sty='';sty+='<style type="text/css"><!--';sty+='.mTD,.mTD A:Link,.mTD A:Visited \{color:'+aLINK+'\}';sty+='.mTD,.mTD A \{';if(!ns4){sty+='white-space:nowrap\;';}sty+='color:'+aLINK+'\;font-weight:'+fWEIGHT+'\;\}';sty+='.mTD,.mTD A:Active,.mTD A:Link,.mTD A:Visited,.mTD A:Hover\{font-weight:'+fWEIGHT+'\;font-size:'+fSIZE+'px\;font-family:'+fFONT+'\;text-decoration:'+aDEC+'\;';if(!ns4){sty+='position:relative\;';}sty+='\}';sty+='.SUBmTD,.SUBmTD A \{';if(!ns4){sty+='white-space:nowrap\;';}sty+='color:'+saLINK+'\;font-weight:'+sfWEIGHT+'\;\}';sty+='.SUBmTD,.SUBmTD A:Link,.SUBmTD A:Visited \{color:'+saLINK+'\}';sty+='.SUBmTD,.SUBmTD A:Active,.SUBmTD A:Link,.SUBmTD A:Visited,.SUBmTD A:Hover\{font-weight:'+sfWEIGHT+'\;font-size:'+sfSIZE+'px\;font-family:'+sfFONT+'\;text-decoration:'+saDEC+'\;\}';if(lineHeightSwitch){if(ie){sty+='#udm-n,#udm-navbar,.restore,.printhide,.linkspan,#underb td,#mas span{line-height:100%\;\}';}if(ns4){sty+='.restore span,.restore div,.restore td{line-height:100%\;\}';}if(ns6||mz7||op7){sty+='.printhide div,.mTD span,.SUBmTD span{line-height:100%\;\}';}if(op6){sty+='.printhide td{line-height:100%\;\}';}if(op5){sty+='.printhide td,.printhide span{line-height:100%\;\}';}}if(win&&ie5){sty+='.u\{text-decoration:underline\;\}';}
//*************************************************************
//****##### USE THIS SPACE FOR NEW STYLE DEFINITIONS #####*****

//** DO NOT EDIT THIS ****************************************
sty+='//--></style>';if(!allowPRINTING&&!ns4&&!(mac&&ie4)&&!kde&&!ice&&!saf){sty+='<style type="text/css" media="print">';sty+='.printhide \{display:none\;\}';sty+='</style>';}d.write(sty);};

function genericOnloadFunction(){menuReadyState=1;
//*************************************************************
//****##### USE THIS SPACE TO DEFINE ONLOAD FUNCTIONS #####****

//** DO NOT EDIT THIS *****************************************
if(ns4){nsinit();}
}
//*************************************************************
