/***** NOTES ***********************************************************************
*
* MOD01: Netscape 4.7 has to have a width setting in CSS if you are using "text-align: right" or the text
*		goes way out into space somewhere and it looks like there is no text.  This fix is in "wcla.css"
* MOD02: Netscape 4.7 shows gray borders around every menu item unless you use a fill image.  I use a 1x1
*		transparent GIF file.  You also have to leave offlineRoot and onlineRoot blank to get rid of the border.
* MOD03: Fixed a problem where the outer menu bar did not stay with the menu.  This in the add-in checkscrolled()
* MOD04: show a partially transparent background for the whole menu only in IE.  I do this by having two
		bar styles in "wcla.css" and selecting them based on bw.ie in this file.
* MOD05: Scrolling was erratic; the menu did not return to it starting position.  It could show up anywhere
		on the page if you scrolled enough, especially with the mouse over the menu.  Replaced a line in
		showsub() and also had to remove the pagecheck() add-in.  The problem was in both places.  I did
		not try to fix pagecheck() because I don't need it for this site.  It will need to be fixed.
* MOD06: Fixed an error in MOD05  It did not take into consideration the offsetY parameter.
		Added "+ c.l[l-1].offsetY" to the code
**********************************************************************************/

oCMenu=new makeCM('oCMenu') //Making a new menu

//General variables
/* start MOD02 */
//oCMenu.onlineRoot='http://www.loggers.com/'
oCMenu.offlineRoot=""
oCMenu.onlineRoot=""
/* end MOD02 */
oCMenu.resizeCheck=1
oCMenu.wait=500
oCMenu.scrollstop=0

//Background bar variables
oCMenu.useBar=1
oCMenu.barWidth='menu'
oCMenu.barHeight='menu'
oCMenu.barX='menu'
oCMenu.barY='menu'
oCMenu.barBorderX=0
oCMenu.barBorderY=0
oCMenu.barBorderClass=0
/* MOD02 */
oCMenu.fillImg="blank.gif"
oCMenu.zIndex=0
/* MOD04 */
//oCMenu.barClass="clBar"
oCMenu.barClass=( bw.ie ? "clBarIE" : "clBar" )

//Placement variables
oCMenu.rows=false
oCMenu.fromLeft=0
oCMenu.fromTop=80
oCMenu.pxBetween=0
oCMenu.menuPlacement=0

//Level 0 variables
oCMenu.level[0]=new cm_makeLevel()
oCMenu.level[0].width=0
oCMenu.level[0].height=20
oCMenu.level[0].regClass="clLevel0"
oCMenu.level[0].overClass="clLevel0over"
oCMenu.level[0].borderX=1
oCMenu.level[0].borderY=1
oCMenu.level[0].borderClass="clLevel0border"
oCMenu.level[0].offsetX=2
oCMenu.level[0].offsetY=-4
oCMenu.level[0].align='right'
oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.RandomDissolve(duration=0.4); alpha(opacity=90)"
oCMenu.level[0].rows=false
oCMenu.level[0].arrow=0
//oCMenu.level[0].arrow="images/menu_arrow.gif"
oCMenu.level[0].arrowWidth=10
oCMenu.level[0].arrowHeight=9

//Level 1 variables
oCMenu.level[1]=new cm_makeLevel()
oCMenu.level[1].height=20
oCMenu.level[1].regClass="clLevel1"
oCMenu.level[1].overClass="clLevel1over"
oCMenu.level[1].borderClass="clLevel1border"
oCMenu.level[1].filter="progid:DXImageTransform.Microsoft.RandomDissolve(duration=0.4); alpha(opacity=90)"
oCMenu.level[1].offsetY=84

//Level 2 variables
oCMenu.level[2]=new cm_makeLevel()
//new cm_makeLevel(width,height,regClass,overClass,borderX,borderY,borderClass,rows,align,offsetX,offsetY,arrow,arrowWidth,arrowHeight)

//                   0   1   2  3   4   5   6  7   8   9  10 11  12  13 14 15  16 17  18
widths = new Array(130,165,125,180,135,100,140,90,180,190,120,155,80,115,90,80,135,90,100);

//.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, "my_function()", onmouseover, onmouseout)
//Menu items
oCMenu.makeMenu('top00','','Home','default.asp','',widths[0],'','','','','','','','','','')
oCMenu.makeMenu('top01','','WCLA','wcla.htm','',widths[0],'','','','','','','','','','')
	oCMenu.makeMenu('sub010','top01','Mission&nbsp;Statement','wcla.htm#mission','',widths[1],'','','','','','','','','','')
	oCMenu.makeMenu('sub011','top01','Goals','wcla.htm#goals','',widths[1],'','','','','','','','','','')
	oCMenu.makeMenu('sub012','top01','History','wcla.htm#history','',widths[1],'','','','','','','','','','')
	oCMenu.makeMenu('sub013','top01','Organizational&nbsp;Chart','organization.htm','',widths[1],'','','','','','','','','','')
	oCMenu.makeMenu('sub014','top01','Staff&nbsp;Contacts','staff_contacts.htm','',widths[1],'','','','','','','','','','')
	oCMenu.makeMenu('sub015','top01','Association&nbsp;Board','assoc_board.htm','',widths[1],'','','','','','','','','','')
	oCMenu.makeMenu('sub016','top01','Agency&nbsp;Board','agency_board.htm','',widths[1],'','','','','','','','','','')
	oCMenu.makeMenu('sub017','top01','AFCC&nbsp;Board','afcc_board.htm','',widths[1],'','','','','','','','','','')
	oCMenu.makeMenu('sub019','top01','Chapters','chapters.htm','',widths[1],'','','','','','','','','','')
	oCMenu.makeMenu('sub01a','top01','Links','links.htm','',widths[1],'','','','','','','','','','')
	oCMenu.makeMenu('sub01b','top01','Documents','documents.htm','',widths[1],'','','','','','','','','','')
	oCMenu.makeMenu('sub01c','top01','Related&nbsp;Associations','related_assn.asp','',widths[1],'','','','','','','','','','')
	oCMenu.makeMenu('sub01d','top01','Contact&nbsp;Us','contact.htm','',widths[1],'','','','','','','','','','')
oCMenu.makeMenu('top02','','Membership','membership.htm','',widths[0],'','','','','','','','','','')
	oCMenu.makeMenu('sub020','top02','Categories','membership.htm#classes','',widths[2],'','','','','','','','','','')
	oCMenu.makeMenu('sub021','top02','Apply&nbsp;/&nbsp;Renew&nbsp;Online','membership_app.htm','',widths[2],'','','','','','','','','','')
	oCMenu.makeMenu('sub023','top02','Membership&nbsp;List','memberlist_app.asp','',widths[2],'','','','','','','','','','')
	oCMenu.makeMenu('sub024','top02','Staff','membership.htm#staff','',widths[2],'','','','','','','','','','')
oCMenu.makeMenu('top03','','Calendar&nbsp;of&nbsp;Events','calendar.htm','',widths[0],'','','','','','','','','','')
	oCMenu.makeMenu('sub031','top03','First&nbsp;Aid','calendar.htm#aid','',widths[3],'','','','','','','','','','')
	oCMenu.makeMenu('sub032','top03','MLP','calendar.htm#ALP','',widths[3],'','','','','','','','','','')
	oCMenu.makeMenu('sub033','top03','WLSC','calendar.htm#WLSC','',widths[3],'','','','','','','','','','')
	oCMenu.makeMenu('sub034','top03','Annual&nbsp;Meeting','annual_mtg.htm','',widths[3],'','','','','','','','','','')
	oCMenu.makeMenu('sub0340','sub034','General&nbsp;Information','annual_mtg.htm','',widths[10],'','','','','','','','','','')
	oCMenu.makeMenu('sub0341','sub034','Agenda','mtg_agenda.htm','',widths[10],'','','','','','','','','','')
	oCMenu.makeMenu('sub0344','sub034','Other&nbsp;Years','annual_mtg_other.htm','',widths[10],'','','','','','','','','','')
	oCMenu.makeMenu('sub0345','sub034','Accommodations','annual_mtg.htm#hotel','',widths[10],'','','','','','','','','','')
	oCMenu.makeMenu('sub035','top03','Scholarship Golf Tournament','golftourn.htm','',widths[3],'','','','','','','','','','')
oCMenu.makeMenu('top04','','Master&nbsp;Loggers','mlp.htm','',widths[0],'','','','','','','','','','')
	oCMenu.makeMenu('sub040','top04','General&nbsp;Info','mlp.htm','',widths[4],'','','','','','','','','','')
	oCMenu.makeMenu('sub041','top04','FAQs','mlp_faq.htm','',widths[4],'','','','','','','','','','')
	oCMenu.makeMenu('sub042','top04','Certified&nbsp;Professionals','MLPList.asp','',widths[4],'','','','','','','','','','')
	oCMenu.makeMenu('sub043','top04','Staff','mlp.htm#staff','',widths[4],'','','','','','','','','','')
oCMenu.makeMenu('top05','','Springboard&nbsp;Magazine','springboard.htm','',widths[0],'','','','','','','','','','')
	oCMenu.makeMenu('sub050','top05','General&nbsp;Info','springboard.htm','',widths[5],'','','','','','','','','','')
	oCMenu.makeMenu('sub054','top05','Subscribe','springboard_subscription.htm','',widths[5],'','','','','','','','','','')
	oCMenu.makeMenu('sub055','top05','Advertise','advertising.htm','',widths[5],'','','','','','','','','','')
	oCMenu.makeMenu('sub056','top05','Demographics','demographics.htm','',widths[5],'','','','','','','','','','')
	oCMenu.makeMenu('sub057','top05','Classified&nbsp;Ads','classified.htm','',widths[5],'','','','','','','','','','')
	oCMenu.makeMenu('sub058','top05','Staff','springboard.htm#staff','',widths[5],'','','','','','','','','','')
oCMenu.makeMenu('top06','','Claims Management','li_retro.htm','',widths[0],'','','','','','','','','','')
	oCMenu.makeMenu('sub060','top06','Information/Enrollment','li_retro.htm','',widths[6],'','','','','','','','','','')
	oCMenu.makeMenu('sub062','top06','Enrollment Form','li_retro.htm#enroll','',widths[6],'','','','','','','','','','')
	oCMenu.makeMenu('sub063','top06','FAQs','li_faq.htm','',widths[6],'','','','','','','','','','')
	oCMenu.makeMenu('sub064','top06','Staff','li_retro.htm#staff','',widths[6],'','','','','','','','','','')
oCMenu.makeMenu('top07','','Safety&nbsp;Programs','safety.htm','',widths[0],'','','','','','','','','','')
	oCMenu.makeMenu('sub070','top07','General&nbsp;Info','safety.htm','',widths[7],'','','','','','','','','','')
	oCMenu.makeMenu('sub072','top07','Staff','safety.htm#staff','',widths[7],'','','','','','','','','','')
oCMenu.makeMenu('top08','','Insurance&nbsp;Agency','insurance.htm','',widths[0],'','','','','','','','','','')
	oCMenu.makeMenu('sub080','top08','General&nbsp;Info','insurance.htm','',widths[8],'','','','','','','','','','')
	oCMenu.makeMenu('sub081','top08','AFCCRRG','captive.htm','',widths[8],'','','','','','','','','','')
	oCMenu.makeMenu('sub085','top08','Grange Insurance','grange.htm','',widths[8],'','','','','','','','','','')
	oCMenu.makeMenu('sub082','top08','Kibble &amp; Prentice','brg.htm','',widths[8],'','','','','','','','','','')
	oCMenu.makeMenu('sub084','top08','Staff','insurance.htm#staff','',widths[8],'','','','','','','','','','')
oCMenu.makeMenu('top09','','Legislative&nbsp;Presence','legislative.htm','',widths[0],'','','','','','','','','','')
	oCMenu.makeMenu('sub090','top09','General&nbsp;Info','legislative.htm','',widths[9],'','','','','','','','','','')
	oCMenu.makeMenu('sub091','top09','How&nbsp;To&nbsp;Contact&nbsp;Your&nbsp;Legislator','legis_contact.htm','',widths[9],'','','','','','','','','','')
	oCMenu.makeMenu('sub092','top09','State&nbsp;&&nbsp;Federal&nbsp;Contacts','govt_contacts.htm','',widths[9],'','','','','','','','','','')
	oCMenu.makeMenu('sub093','top09','WCLA&nbsp;Lobbyists&nbsp;(Staff)','legislative.htm#staff','',widths[9],'','','','','','','','','','')
oCMenu.makeMenu('top11','','Log&nbsp;A&nbsp;Load&nbsp;for&nbsp;Kids&#174;','log-a-load.htm','',widths[0],'','','','','','','','','','')
	oCMenu.makeMenu('sub110','top11','General&nbsp;Info','log-a-load.htm','',widths[11],'','','','','','','','','','')
	oCMenu.makeMenu('sub111','top11','Auction&nbsp;Contribution&nbsp;Form','auction.htm','',widths[11],'','','','','','','','','','')
	oCMenu.makeMenu('sub112','top11','Staff','log-a-load.htm#staff','',widths[11],'','','','','','','','','','')
oCMenu.makeMenu('top13','','Timber&nbsp;Facts','timber_facts.htm','',widths[0],'','','','','','','','','','')
	oCMenu.makeMenu('sub130','top13','Timber&nbsp;Facts','timber_facts.htm','',widths[13],'','','','','','','','','','')
	oCMenu.makeMenu('sub131','top13','Forest&nbsp;Language','forest_language.htm','',widths[13],'','','','','','','','','','')
	oCMenu.makeMenu('sub132','top13','Staff','timber_facts.htm#staff','',widths[13],'','','','','','','','','','')
oCMenu.makeMenu('top14','','Other&nbsp;Programs','programs.htm','',widths[0],'','','','','','','','','','')
	oCMenu.makeMenu('sub140','top14','Scholarships','programs.htm#scholarships','',widths[14],'','','','','','','','','','')
	oCMenu.makeMenu('sub142','top14','Staff','programs.htm#staff','',widths[14],'','','','','','','','','','')
oCMenu.makeMenu('top15','','Shareholder&nbsp;Info','shareholder.htm','',widths[0],'','','','','','','','','','')
oCMenu.makeMenu('top16','','Contact&nbsp;Us','contact.htm','',widths[0],'','','','','','','','','','')

//Starts the menus
oCMenu.construct();

