<!--
/*** 
Constructs site-wide menus
**/

//Menu object creation
oCMenu=new makeCM("oCMenu") //Making the menu object. Argument: menuname

oCMenu.frames = 0

//Menu properties   
oCMenu.pxBetween=0
oCMenu.fromLeft=265 
oCMenu.fromTop=72   
oCMenu.rows=1 
oCMenu.menuPlacement=0
                                                             
oCMenu.offlineRoot="file:///C|/Inetpub/wwwroot/projects/coolmenus/examples/" 
oCMenu.onlineRoot="/" 
oCMenu.resizeCheck=1 
oCMenu.wait=1000 
oCMenu.fillImg="images/spacer.gif"
oCMenu.zIndex=0

//Background bar properties
oCMenu.useBar=0

//1st level properties - ALL properties have to be spesified in level 0
oCMenu.level[0]=new cm_makeLevel()
oCMenu.level[0].width=125
oCMenu.level[0].height=25 
oCMenu.level[0].regClass="clLevel0"
oCMenu.level[0].overClass="clLevel0over"
oCMenu.level[0].borderX=0
oCMenu.level[0].borderY=0
oCMenu.level[0].borderClass="clLevel0border"
oCMenu.level[0].offsetX=0
oCMenu.level[0].offsetY=-1
oCMenu.level[0].rows=0
oCMenu.level[0].arrow=0
oCMenu.level[0].arrowWidth=0
oCMenu.level[0].arrowHeight=0
oCMenu.level[0].align="bottom"

//2nd level properties
oCMenu.level[1]=new cm_makeLevel()
oCMenu.level[1].height=22
oCMenu.level[0].width=124
oCMenu.level[1].regClass="clLevel1"
oCMenu.level[1].overClass="clLevel1over"
oCMenu.level[0].borderClass="clLevel1border"
oCMenu.level[1].borderX=0
oCMenu.level[1].borderY=1
oCMenu.level[1].align="right" 
oCMenu.level[1].offsetX=-5 // -(oCMenu.level[0].width-2)/2+50
oCMenu.level[1].offsetY=2
oCMenu.level[1].arrow="images/mn_arrow.gif"
oCMenu.level[1].arrowWidth=6
oCMenu.level[1].arrowHeight=12
oCMenu.level[1].borderClass="clLevel1border"


/******************************************
Menu item creation:
oCMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 
*************************************/

var nBrandsNormImage = 'images/mn_brands.gif'
var nOperationsNormImage = 'images/mn_operations.gif'
var nCompanyNormImage = 'images/mn_company.gif'
var nContactNormImage = 'images/mn_contact.gif'

if (secName=="brands") nBrandsNormImage = 'images/mn_brands-over.gif'
if (secName=="operations") nOperationsNormImage = 'images/mn_operations-over.gif'
if (secName=="company") nCompanyNormImage = 'images/mn_company-over.gif'
if (secName=="contact") nContactNormImage = 'images/mn_contact-over.gif'

oCMenu.makeMenu('nBrands','','Our Brands','brands/','',125,25,nBrandsNormImage,'images/mn_brands.gif')
  oCMenu.makeMenu('nBrands00','nBrands','Our Brand Portfolio','brands/default.asp')
  oCMenu.makeMenu('nBrands01','nBrands','Licensed Brands','brands/licensed.asp')
  //oCMenu.makeMenu('nBrands02','nBrands','Private Label &amp;<br>Co-Packaging','brands/privatelabel.asp','',124,34)
	
oCMenu.makeMenu('nOperations','','Operations','operations/','',125,25,nOperationsNormImage,'images/mn_operations.gif')
	oCMenu.makeMenu('nOperations01','nOperations','Integrated<br>Distribution System&trade;','operations/default.asp','',124,34)
	oCMenu.makeMenu('nOperations02','nOperations','Product Development','operations/productdevel.asp')
	oCMenu.makeMenu('nOperations03','nOperations','Packaging','operations/packaging.asp')
	oCMenu.makeMenu('nOperations04','nOperations','Logistics','operations/logistics.asp')
	oCMenu.makeMenu('nOperations05','nOperations','Distribution','operations/distribution.asp')
	oCMenu.makeMenu('nOperations06','nOperations','Marketing','operations/marketing.asp')
	
oCMenu.makeMenu('nCompany','','Company','company/','',125,25,nCompanyNormImage,'images/mn_company.gif')
	oCMenu.makeMenu('nCompany01','nCompany','About LBIX','company/default.asp')
	oCMenu.makeMenu('nCompany02','nCompany','Directors &amp; Officers','company/officers.asp')
	oCMenu.makeMenu('nCompany03','nCompany','Investors','company/investors/default.asp')
		oCMenu.makeMenu('nCompany03a','nCompany03','Investor Relations','company/investors/default.asp','',135,22)
		oCMenu.makeMenu('nCompany03b','nCompany03','Financial Reports','company/investors/documents.asp','',135,22)
		oCMenu.makeMenu('nCompany03d','nCompany03','Regulatory Fillings','company/investors/filings.asp','',135,22)
		oCMenu.makeMenu('nCompany03e','nCompany03','Stock Quote','company/investors/quote.asp','',135,22)
		oCMenu.makeMenu('nCompany03f','nCompany03','Press Releases','company/news/pressrelease.asp','',135,22)
		oCMenu.makeMenu('nCompany03h','nCompany03','Events & Webcasts','company/investors/events/default.asp','',135,22)
		oCMenu.makeMenu('nCompany03i','nCompany03','Investor Contact','company/investors/contact.asp','',135,22)
	oCMenu.makeMenu('nCompany04','nCompany','News &amp; Press','company/news/default.asp')
		oCMenu.makeMenu('nCompany04a','nCompany04','Latest News &amp; Press','company/news/default.asp','',135,22)
		oCMenu.makeMenu('nCompany04b','nCompany04','Press Releases','company/news/pressrelease.asp','',135,22)
		oCMenu.makeMenu('nCompany04d','nCompany04','Press &amp; Media Contacts','company/news/contact.asp','',135,22)
	oCMenu.makeMenu('nCompany05','nCompany','Careers','company/careers.asp')

oCMenu.makeMenu('nContact','','Contact','contact/','',125,25,nContactNormImage,'images/mn_contact.gif')
	oCMenu.makeMenu('nContact01','nContact','Contact Information','contact/default.asp')
	oCMenu.makeMenu('nContact02','nContact','Beverage Plants','contact/plants.asp')

//Leave this line - it constructs the menu
oCMenu.construct()		
//-->
