var subNav = new Array() 
//(id, parent id, div name, link text, subNavBorderColor, subNavHoverColor, subNavFontClass, URL, subNavVerticalAlign)
// if a nav item is given a parent id of zero, it becomes a left nav item

var x=0;

subNav[x] = new 
subnavItem(10,0,'home','Home','#D2D2D2','#1f3d99','LeftNavigation','/aci/home.asp',25);



subNav[x+=1] = new subnavItem(20,0,'events','Events','#D2D2D2','#1f3d99','LeftNavigation','/aci/events.asp',10);
subNav[x+=1] = new subnavItem(20,20,'events','AC Roundtable Series','#1f3d99','#1f3d99','LeftNavFlyout','/aci/roundtables.asp');
subNav[x+=1] = new subnavItem(20,20,'events','AC Webcasts','#1f3d99','#1f3d99','LeftNavFlyout','/aci/aci_webcasts.asp');
subNav[x+=1] = new subnavItem(20,20,'events','AC Fundamentals','#1f3d99','#1f3d99','LeftNavFlyout','/aci/aci_fundamentals.asp');
subNav[x+=1] = new subnavItem(20,20,'events','AC Issues Conference','#1f3d99','#1f3d99','LeftNavFlyout','/aci/events_annual_audit_conf.asp');
//subNav[x+=1] = new subnavItem(20,20,'events','External Events','#1f3d99','#1f3d99','LeftNavFlyout','/aci/external_events.asp');

//subNav[x+=1] = new subnavItem(30,0,'speakerhighlights','Keynote Speaker Highlights','#D2D2D2','#1f3d99','LeftNavigation','/aci/webcasts.asp',35);


subNav[x+=1] = new subnavItem(40,0,'pubs','Thought Leadership','#D2D2D2','#1f3d99','LeftNavigation','/aci/publications.asp',10);
subNav[x+=1] = new subnavItem(40,40,'pubs','Articles','#1f3d99','#1f3d99','LeftNavFlyout','/aci/ac_roundup.asp');
subNav[x+=1] = new subnavItem(40,40,'pubs','Audit Committee Practices/Processes','#1f3d99','#1f3d99','LeftNavFlyout','/aci/practices.asp');
subNav[x+=1] = new subnavItem(40,40,'pubs','Financial Crisis Oversight','#1f3d99','#1f3d99','LeftNavFlyout','/aci/fco.asp');
subNav[x+=1] = new subnavItem(40,40,'pubs','Financial Reporting','#1f3d99','#1f3d99','LeftNavFlyout','/aci/financial_reporting.asp');
subNav[x+=1] = new subnavItem(40,40,'pubs','Fraud Risk','#1f3d99','#1f3d99','LeftNavFlyout','/aci/fraud_risk.asp');
subNav[x+=1] = new subnavItem(40,40,'pubs','Information Technology','#1f3d99','#1f3d99','LeftNavFlyout','/aci/it.asp');
subNav[x+=1] = new subnavItem(40,40,'pubs','Not-for-Profit','#1f3d99','#1f3d99','LeftNavFlyout','/aci/non_profit.asp');
subNav[x+=1] = new subnavItem(40,40,'pubs','Regulatory','#1f3d99','#1f3d99','LeftNavFlyout','/aci/regulatory.asp');
subNav[x+=1] = new subnavItem(40,40,'pubs','Risk Management','#1f3d99','#1f3d99','LeftNavFlyout','/aci/risk_mgmt.asp');


subNav[x+=1] = new subnavItem(50,0,'international','International ACIs','#D2D2D2','#1f3d99','LeftNavigation','/aci/internationalpage.html',null,true);


//subNav[x+=1] = new subnavItem(60,0,'pressoffice','ACI Press Office','#D2D2D2','#1f3d99','LeftNavigation','/aci/pressoffice.asp',-35);
//subNav[x+=1] = new subnavItem(60,60,'pressoffice','ACI News','#1f3d99','#1f3d99','LeftNavFlyout','/aci/pressoffice_news.asp');
//subNav[x+=1] = new subnavItem(60,60,'pressoffice','ACI Resources and Commentary','#1f3d99','#1f3d99','LeftNavFlyout','/aci/pressoffice_resources_comm.asp');
//subNav[x+=1] = new subnavItem(60,60,'pressoffice','ACI Leadership Profiles','#1f3d99','#1f3d99','LeftNavFlyout','/aci/pressoffice_spokesperson_bios.asp');
//subNav[x+=1] = new subnavItem(60,60,'pressoffice','ACI Key Statistics','#1f3d99','#1f3d99','LeftNavFlyout','/aci/pressoffice_key_stats.asp');



subNav[x+=1] = new subnavItem(70,0,'about','About ACI','#D2D2D2','#1f3d99','LeftNavigation','/aci/about.asp',35);




// makenavbar(left nav borderColor, fontColor, navBar width (should be at most 175 pixels))

makeNavbar('#FFFFFF','#1f3d99',160);


