

//Menu object creation
oCMenu=new makeCM("oCMenu") //Making the menu object. Argument: menuname

oCMenu.frames = 0

//Menu properties   
oCMenu.pxBetween=3
oCMenu.fromLeft=0
oCMenu.fromTop=90   
oCMenu.rows=1 
oCMenu.menuPlacement="center"
                                                             
oCMenu.offlineRoot="" 
oCMenu.onlineRoot="" 
oCMenu.resizeCheck=1 
oCMenu.wait=1000 
oCMenu.fillImg="cm_fill.gif"
oCMenu.zIndex=100



//Level properties - ALL properties have to be spesified in level 0
oCMenu.level[0]=new cm_makeLevel() //Add this for each new level
oCMenu.level[0].width=135
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].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"

//EXAMPLE SUB LEVEL[1] PROPERTIES - You have to specify the properties you want different from LEVEL[0] - If you want all items to look the same just remove this
oCMenu.level[1]=new cm_makeLevel() //Add this for each new level (adding one to the number)
oCMenu.level[1].width=oCMenu.level[0].width-2
oCMenu.level[1].height=20
oCMenu.level[1].regClass="clLevel1"
oCMenu.level[1].overClass="clLevel1over"
oCMenu.level[1].borderX=1
oCMenu.level[1].borderY=1
oCMenu.level[1].align="right" 
oCMenu.level[1].offsetX=-(oCMenu.level[0].width-2)/2+20
oCMenu.level[1].offsetY=1
oCMenu.level[1].borderClass="clLevel1border"


/******************************************
Menu item creation:
myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 
*************************************/

if ((navigator.appName=='Microsoft Internet Explorer') && (navigator.appVersion.indexOf('Win')<0)) {
oCMenu.makeMenu('top0','','','','','60','1','/images/spacer.gif','/images/spacer.gif','','','','','1')

}

else

{

oCMenu.makeMenu('top0','','','','','60','1','/images/spacer.gif','/images/spacer.gif','','','','','1')

}

//oCMenu.makeMenu('top1','','Contact Us','/index.asp','','82','26','','')

oCMenu.makeMenu('top1','','Contact Us ','','','82','26','','')
  oCMenu.makeMenu('sub20','top1','Overview','/overview.asp','','157')
  oCMenu.makeMenu('sub21','top1','Contact Info','/contactUs.asp','','157')
  oCMenu.makeMenu('sub22','top1','Directions','/directions.asp','','157')
  oCMenu.makeMenu('sub23','top1','Join our mail/email list','/asp/registration.asp','','157')
  
	
oCMenu.makeMenu('top2','','Personal Appraisal','','','110','26','','')
	oCMenu.makeMenu('sub24','top2','Appraisal Services','/appraisalServices.asp','','150')
	oCMenu.makeMenu('sub31','top2','Linda Stamm','/lindaStamm.asp','','150')	
	oCMenu.makeMenu('sub32','top2','Christina K. Vida','/christinaVida.asp','','150')
	//oCMenu.makeMenu('sub33','top3','Absentee Bids','/absentee.asp','','150')
	//oCMenu.makeMenu('sub34','top3','Telephone Bids','/telephone.asp','','150')
	
oCMenu.makeMenu('top3','','Consignment Info','/consignmentInfo.asp','','110','26','','')
	//oCMenu.makeMenu('sub40','top4','Online Bidding','https://www.chait.com/asp/registration.asp','','85')
	//oCMenu.makeMenu('sub41','top4','Newsletter','/newsletter.asp','','85')	
	//oCMenu.makeMenu('sub42','top4','Update Details','https://www.chait.com/asp/registration_update.asp','','85')	

oCMenu.makeMenu('top4','','Auctions','','','75','26','','')
	oCMenu.makeMenu('sub40','top4','Schedule','../asp/schedule.asp','','85')
	oCMenu.makeMenu('sub41','top4','Catalogues','../asp/cataloguesearch.asp','','85')	
	oCMenu.makeMenu('sub42','top4','Archives','../asp/archivesearch.asp','','85')	
	oCMenu.makeMenu('sub43','top4','Results','../asp/resultsmenu.asp','','85')	
	oCMenu.makeMenu('sub44','top4','Login','../asp/link_login.asp','','85')
	
oCMenu.makeMenu('top5','','Bidding/Payment Info','','','130','26','','')
	oCMenu.makeMenu('sub50','top5','Condition of Sale','/conditionsOfSale.asp','','140')
	oCMenu.makeMenu('sub51','top5','Fax Absentee bids','/absenteeBids.asp','','140')	
	oCMenu.makeMenu('sub52','top5','Online payment','https://secure.auctionsappraisers.com/payments.asp','','140')	
	//oCMenu.makeMenu('sub54','top5','Terms of Sale','/terms.asp','','85')	
	//oCMenu.makeMenu('sub55','top5','Mailing List','/mailinglists.asp','','85')	

	//oCMenu.makeMenu('sub24','top2','Preferences','/asp/preferences.asp','','87')
	//oCMenu.makeMenu('sub25','top2','Login','/asp/link_login.asp','','87') 
  
oCMenu.makeMenu('top6','','Conditions of Sale','/conditionsOfSale.asp','','130','26','','')

//Leave this line - it constructs the menu
oCMenu.construct()	

