







//Making a menu object
oMenu=new menuObj('oMenu') //Place a name for the menu in there. Must be uniqe for each menu








//Setting menu object variables








//Style variables NOTE: The stylesheet have been removed. Use this instead! (some styles are there by default, like position:absolute ++)
oMenu.clMain='padding:0px; font-family:verdana; font-size:9px; font-weight:bold' //The style for the main menus


if (navigator.appName.indexOf('Netscape')==-1)
	{
oMenu.clSub='padding:2px; font-family:verdana; font-size:9px; font-weight:bold' //The style for the submenus
oMenu.clSubSub='padding:2px; font-family:verdana; font-size:9px; font-weight:bold' //The style for the subsubmenus
	}
else
	{
oMenu.clSub='padding:2px; font-family:verdana; font-size:8pt; font-weight:bold' //The style for the submenus
oMenu.clSubSub='padding:2px; font-family:verdana; font-size:8pt; font-weight:bold' //The style for the subsubmenus
	}


oMenu.clAMain='text-decoration:none; color:black' //The style for the main links
oMenu.clASub='text-decoration:none; color:White' //The style for the sub links


oMenu.clASubSub='text-decoration:none; color:White' //The style for the subsub links








//Writing out the style for the menu (leave this line!)
oMenu.makeStyle()








//Background bar properties
oMenu.backgroundbar=0 //Set to 0 if no backgroundbar
oMenu.backgroundbarfromleft=0 //The left placement of the backgroundbar in pixel or %
oMenu.backgroundbarfromtop=0 //The top placement of the backgroundbar  in pixel or %
oMenu.backgroundbarsize=0 //The size of the bar in pixel or %
oMenu.backgroundbarcolor=0 //The backgroundcolor of the bar








oMenu.mainheight=16 //The height of the main menuitems in pixel or %
oMenu.mainwidth=0 //The width of the main menuitems  in pixel or %








/*These are new variables. In this example they are set like the previous version*/




oMenu.subwidth=310 // ** NEW ** The width of the submenus
oMenu.subheight=16 //The height if the subitems in pixel or % 








oMenu.subsubwidth=250 // ** NEW ** The width of the subsubmenus in pixel or % 
oMenu.subsubheight=16 //** NEW ** The height if the subsubitems in pixel or % 








oMenu.subplacement=0 //** NEW ** Relative to the main item
oMenu.subsubXplacement=160 //** NEW ** The X placement of the subsubmenus, relative to the sub item
oMenu.subsubYplacement=5 //** NEW ** The Y placement of the subsubmenus, relative to the sub item








oMenu.mainbgcoloroff='#000000' //The backgroundcolor of the main menuitems

oMenu.mainbgcoloron='#000000' //The backgroundcolor on mouseover of the main menuitems
oMenu.mysubcolor='#9966CC' //The backgroundcolor on mouseover of the main menuitems
oMenu.subbgcoloroff='#000066' //The backgroundcolor of the sub menuitems
oMenu.subbgcoloron='#003399' //The backgroundcolor on mouseover of the sub menuitems
oMenu.subsubbgcoloroff='#003399' //The backgroundcolor of the subsub menuitems
oMenu.subsubbgcoloron='#3399CC' //The backgroundcolor on mouseover of the subsub menuitems
oMenu.stayoncolor=1 //Do you want the menus to stay on the mouseovered color when clicked?








oMenu.menuspeed=60 //The speed of the clipping in px
oMenu.menusubspeed=60 //The speed of the submenus clipping in px








oMenu.menurows=0 //Set to 0 if you want rows and to 1 if you want columns








oMenu.menueventon="mouse" //Set this to "mouse" if you want the menus to appear onmouseover, set it to "click" if you want it to appear onclick
oMenu.menueventoff="mouse" //Set this to "mouse" if you them to disappear onmouseout, if not set it to "click"








//Placement of the menuitems








//Example in %:
//oMenu.menuplacement=new Array("20%","40%","60%","50%","65%") //Remember to make the arrays contain as many values as you have main menuitems









//Example in px: (remember to use the ' ' around the numbers)
oMenu.menuplacement=new Array('106','121','137','152','167','182','197','212','238','238','280','295','310','325','340','355','370')








//Example right beside eachother (only adding the pxbetween variable)
//oMenu.menuplacement=0








//If you use the "right beside eachother" you cant how many pixel there should be between each here
oMenu.pxbetween=0 //in pixel or %








//And you can set where it should start from the left here
oMenu.fromleft=189 //in pixel or %








//This is how much from the top the menu should be.
oMenu.fromtop=107 //in pixel or %








/********************************************************************************
Construct your menus below
********************************************************************************/








//MAIN 0
//Main items = SPECIAL OFFERS
// makeMain(MAIN_NUM,'TEXT','LINK') (set link to 0 if you want submenus of this menu item)


oMenu.makeMain(0,'',1)


	//Sub items:
	// makeSub(MAIN_NUM,SUB_NUM,'TEXT','LINK',TOTAL) (set link to 0 if you want submenus of this menu item)	
	


//MAIN 1 = GROW MY WEALTH		
oMenu.makeMain(1,'',0)
	oMenu.makeSub(1,0,'運用','../gwealth/growing.htm',3)
	oMenu.makeSub(1,1,'管理','../gwealth/protec.htm',3)	
	oMenu.makeSub(1,2,'相続','../gwealth/wplan.htm',3)		





		
//MAIN 2 = FINANCIAL PLANNING	
oMenu.makeMain(2,'',0)
	oMenu.makeSub(2,0,'はじめる前に ','../finplan/gstart/gstart.htm',6)
	oMenu.makeSub(2,1,'投資','../finplan/invest/invest.htm',6)
	oMenu.makeSub(2,2,'個人資産アドバイザリーサービス','../finplan/wealth/wealth.htm',6)
	oMenu.makeSub(2,3,'投資手段','../finplan/itools/itools.htm',6)
	oMenu.makeSub(2,4,'最新のお知らせ','../finplan/news/news.htm',6)
	oMenu.makeSub(2,5,'資産運用ハンドブック ','../finplan/glossary/glossary.htm',6)




		//Investment Sub Menu
		oMenu.makeSubSub(2,1,0,'為替交換と為替取引','../finplan/invest/foreign/foreign.htm',4)
		oMenu.makeSubSub(2,1,1,'プレミアムデポジット','../finplan/invest/edeposit/edeposit.htm',4)
		oMenu.makeSubSub(2,1,2,'ゴールド投資','../finplan/invest/gdinvest/gdinvest.htm',4)
		oMenu.makeSubSub(2,1,3,'投資手段','../finplan/invest/itools/itools.htm',4)

		//Private Wealth Advisory Services Sub Menu
		oMenu.makeSubSub(2,2,0,'今すぐお申し込み','../finplan/wealth/apply/apply.htm',1)




		//Investment Tools Sub Menu
		oMenu.makeSubSub(2,3,0,'教育プランナ','../finplan/itools/edufund/edufund.htm',5)
		oMenu.makeSubSub(2,3,1,'将来試算','../finplan/itools/fcal/fcal.htm',5)
		oMenu.makeSubSub(2,3,2,'現状試算','../finplan/itools/pcal/pcal.htm',5)
		oMenu.makeSubSub(2,3,3,'追加試算','../finplan/itools/pacal/pacal.htm',5)
		oMenu.makeSubSub(2,3,4,'支出プランナ','../finplan/itools/major/major.htm',5)








//Main 3 = PRODUCTS
oMenu.makeMain(3,'',0)
	oMenu.makeSub(3,0,'普通預金／当座預金','../products/savings/savings.htm',6)
	oMenu.makeSub(3,1,'定期預金','../products/deposit/deposit.htm',6)
	oMenu.makeSub(3,2,'投資','../products/invest/invest.htm',6)
	oMenu.makeSub(3,3,'シティゴールド','../products/citigold/citigold.htm',6)
	oMenu.makeSub(3,4,'個人資産アドバイザリーサービス','../products/wealth/wealth.htm',6)
	oMenu.makeSub(3,5,'ローン','../products/loans/loans.htm',6)	




		//Savings Sub Menu
		oMenu.makeSubSub(3,0,0,'普通預金','../products/savings/saccount/saccount.htm',4)
		oMenu.makeSubSub(3,0,1,'当座預金','../products/savings/check/check.htm',4)
		oMenu.makeSubSub(3,0,2,'利付き当座預金','../products/savings/interest/interest.htm',4)
		oMenu.makeSubSub(3,0,3,'シティカード','../products/savings/citicard/citicard.htm',4)




		//Deposit Sub Menu
		oMenu.makeSubSub(3,1,0,'定期預金','../products/deposit/tdeposit/tdeposit.htm',2)
		oMenu.makeSubSub(3,1,1,'Enhanced Deposit','../products/deposit/edeposit/edeposit.htm',2)




		//Investment Sub Menu
		oMenu.makeSubSub(3,2,0,'為替交換と為替取引','../products/invest/foreign/foreign.htm',4)
		oMenu.makeSubSub(3,2,1,'プレミアムデポジット','../products/invest/edeposit/edeposit.htm',4)
		oMenu.makeSubSub(3,2,2,'ゴールド投資','../products/invest/gdinvest/gdinvest.htm',4)
		oMenu.makeSubSub(3,2,3,'投資手段','../products/invest/itools/itools.htm',4)



		//Private Wealth Advisory Services Sub Menu
		oMenu.makeSubSub(3,4,0,'今すぐお申し込み','../products/wealth/apply/apply.htm',1)




		//Loans Sub Menu
		oMenu.makeSubSub(3,5,0,'ヮｩ動当座貸越 ','../products/loans/aodraft/aodraft.htm',4)
		oMenu.makeSubSub(3,5,1,'短期固定利率ローン ','../products/loans/stloan/stloan.htm',4)
		oMenu.makeSubSub(3,5,2,'マルチ通貨住宅ローン ','../products/loans/mcloan/mcloan.htm',4)
		oMenu.makeSubSub(3,5,3,'リバレッジローン','../products/loans/levloan/levloan.htm',4)
		


//MAIN 4 = SERVICES		
oMenu.makeMain(4,'',1)
	oMenu.makeSub(4,0,'シティカード','../services/citicard/citicard.htm',5)
	oMenu.makeSub(4,1,'シティダイレクト インターネットバンキング','../services/ibank/ibank.htm',5)
	oMenu.makeSub(4,2,'シティホンバンキング','../services/cphone/cphone.htm',5)
	oMenu.makeSub(4,3,'FAXバンキング／FAX情報サービス','../services/faxbank/faxbank.htm',5)
	oMenu.makeSub(4,4,'シティゴールド','../services/citigold/citigold.htm',5)




		//Internet Banking Sub Menu
		oMenu.makeSubSub(4,1,0,"デモを見る","javascript:newwin('http://www.citibank.com.sg/singapore/gcb/english/demo/startx.htm')",5)
		oMenu.makeSubSub(4,1,1,'はじめる前に','../services/ibank/gstart/gstart.htm',5)
		oMenu.makeSubSub(4,1,2,'サービス概要','../services/ibank/services/services.htm',5)
		oMenu.makeSubSub(4,1,3,'ユーザーガイド','../services/ibank/guide/guide.htm',5)
		oMenu.makeSubSub(4,1,4,'セキュリティについて','../services/ibank/security/security.htm',5)
		


//MAIN 5 = Internet Banking
oMenu.makeMain(5,'',0)
	oMenu.makeSub(5,0,"デモを見る","javascript:newwin('http://www.citibank.com.sg/singapore/gcb/english/demo/startx.htm')",5)
	oMenu.makeSub(5,1,'はじめる前に','../ibank/gstart/gstart.htm',5)
	oMenu.makeSub(5,2,'サービス概要','../ibank/services/services.htm',5)
	oMenu.makeSub(5,3,'ユーザーガイド','../ibank/guide/guide.htm',5)
	oMenu.makeSub(5,4,'セキュリティについて','../ibank/security/security.htm',5)




		
//MAIN 6 = LIFESTYLE	
oMenu.makeMain(6,'',0)
	oMenu.makeSub(6,0,'Security','../lifesty/security/security.htm',3)
	oMenu.makeSub(6,1,'Shopping Guide','../lifesty/sguide/sguide.htm',3)
	oMenu.makeSub(6,2,'Apply Now','../lifesty/apply/apply.htm',3)






//MAIN 7		
oMenu.makeMain(7,'',1)	




//MAIN 8		
oMenu.makeMain(8,'',1)	






//MAIN 9 = ABOUT US & SINGAPORE
oMenu.makeMain(9,'',0)
	oMenu.makeSub(9,0,"インターナショナル パーソナルバンキング シンガポールのご紹介","javascript:ipbtour('../../english/about/tour/ipbtour/frame.htm')",7)
	oMenu.makeSub(9,1,"シンガポールでの口座開設Q&A","javascript:openTWin('../../english/about/sbank/index.htm')",7)
	oMenu.makeSub(9,2,'お客様の声',"javascript:openTWin('../../english/about/customer/index.htm')",7)
	oMenu.makeSub(9,3,'働く',"javascript:openTWin('../../english/about/work/index.htm')",7)
	oMenu.makeSub(9,4,'学ぶ',"javascript:openTWin('../../english/about/study/index.htm')",7)
	oMenu.makeSub(9,5,'住む',"javascript:openTWin('../../english/about/live/index.htm')",7)
	oMenu.makeSub(9,6,'休む',"javascript:openTWin('../../english/about/holiday/index.htm')",7)








/********************************************************************************
End menu construction
********************************************************************************/
		
		
//When all the menus are written out we initiates the menu
oMenu.construct()	
