//Menu object creation
etf=new makeCM("etf") //Making the menu object. Argument: menuname

//Menu properties   
etf.pxBetween=0
etf.fromLeft=10 
etf.fromTop=116
etf.rows=0 
etf.menuPlacement=0

etf.offlineRoot="" 
etf.onlineRoot=""
//changed the online root from setting of "/" to "" to support relative paths
etf.resizeCheck=1 
etf.wait=300 
etf.fillImg="/img/cm_fill.gif"
etf.zIndex=0

//Background bar properties
etf.useBar=0

//Level properties - ALL properties have to be spesified in level 0
etf.level[0]=new cm_makeLevel() //Add this for each new level
etf.level[0].width=130
etf.level[0].height=19
etf.level[0].regClass="clLevel0"
etf.level[0].overClass="clLevel0over"
etf.level[0].borderX=1 
etf.level[0].borderY=1
etf.level[0].borderClass="clLevel0border"
etf.level[0].offsetX=1
etf.level[0].offsetY=-1
etf.level[0].rows=0
etf.level[0].align="right"
etf.level[0].arrow="img/arrow.gif"
etf.level[0].arrowWidth=6
etf.level[0].arrowHeight=7

//EXAMPLE SUB LEVEL[1] PROPERTIES - You have to spesify the properties you want different from LEVEL[0] - If you want all items to look the same just remove this
etf.level[1]=new cm_makeLevel() //Add this for each new level (adding one to the number)
etf.level[1].width=etf.level[0].width-10
etf.level[1].height=19
etf.level[1].regClass="clLevel1"
etf.level[1].overClass="clLevel1over"
etf.level[1].style=""
etf.level[1].offsetX=-1
etf.level[1].offsetY=-1
etf.level[1].borderClass="clLevel1border"
etf.level[1].borderX=1
etf.level[1].borderY=1
etf.level[1].rows=0
etf.level[1].align="right" 

/******************************************
Menu item creation:
myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 
*************************************/
etf.makeMenu('top0_','','Home',JS_Global_URL_Subdir_NonSec+'default.asp')
etf.makeMenu('top1_','','Contact',JS_Global_URL_Subdir_NonSec+'contact.asp')
etf.makeMenu('top2_','','About ETFCo',JS_Global_URL_Subdir_NonSec+'About_Us.asp')
etf.makeMenu('top3_','','What We Offer',JS_Global_URL_Subdir_NonSec+'products.asp')
etf.makeMenu('top4_','','Beyond Expectations',JS_Global_URL_Subdir_Secured+'BeyondExpectations.asp')
etf.makeMenu('top5_','','Client Services','','','','','','','clLevel0head','','','',1)
etf.makeMenu('top6_','','Report a Claim',JS_Global_URL_Subdir_Secured+'ReportClaim_I.asp')
etf.makeMenu('top7_','','Request a Change')
	etf.makeMenu('sub7_0_','top7_','Auto',JS_Global_URL_Subdir_Secured+'RequestPolicyChange_Auto_I.asp')
	etf.makeMenu('sub7_1_','top7_','Property',JS_Global_URL_Subdir_Secured+'RequestPolicyChange_Prop_I.asp')
	etf.makeMenu('sub7_2_','top7_','Liability',JS_Global_URL_Subdir_Secured+'RequestPolicyChange_Liab_I.asp')
	etf.makeMenu('sub7_3_','top7_','Musical Instruments',JS_Global_URL_Subdir_Secured+'RequestPolicyChange_Inst_I.asp')
	etf.makeMenu('sub7_4_','top7_','Other',JS_Global_URL_Subdir_Secured+'RequestPolicyChange_Other_I.asp')
etf.makeMenu('top8_','','Request an ID Card',JS_Global_URL_Subdir_Secured+'RequestAutoIDCard_I.asp')
etf.makeMenu('top9_','','Request a Certificate',JS_Global_URL_Subdir_Secured+'RequestCertificate_I.asp')
etf.makeMenu('top10_','','Account Access')
	etf.makeMenu('sub10_0_','top10_','Sign In',JS_Global_URL_Subdir_Secured+'Login_I.asp','',100,19)
	etf.makeMenu('sub10_1_','top10_','Register',JS_Global_URL_Subdir_Secured+'RequestLogin_I.asp','',100,19)
etf.makeMenu('top11_','','Programs','','','','','','','clLevel0head','','','',1)
etf.makeMenu('top12_','','Health Insurance','https://www.ehealthinsurance.com:443/ehi/Alliance?allid=Zur17270&sid=02054047','_blank')
etf.makeMenu('top13_','','Auto Value/<br>Bumper to Bumper',JS_Global_URL_Subdir_Secured+'AutoValue_about.asp','_blank',130,32)
etf.makeMenu('top14_','','Musical Instruments',JS_Global_URL_Subdir_Secured+'RequestPolicyChange_Inst_I.asp')

//Leave this line - it constructs the menu
etf.construct()		