/**************
Copyright (c) 2001 Thomas Brattli (www.dhtmlcentral.com)
Version 3.02/
/*****************************************************************************
Default browsercheck
******************************************************************************/
function lib_bwcheck(){ //Browsercheck (needed)
	this.ver=navigator.appVersion
	this.agent=navigator.userAgent
	this.dom=document.getElementById?1:0
	this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0;
	this.ie6=(this.ver.indexOf("MSIE 6")>-1 && this.dom)?1:0;
	this.ie4=(document.all && !this.dom)?1:0;
	this.ie=this.ie4||this.ie5||this.ie6
	this.mac=this.agent.indexOf("Mac")>-1
	this.opera5=this.agent.indexOf("Opera 5")>-1
	this.ns6=(this.dom && parseInt(this.ver) >= 5) ?1:0;
	this.ns4=(document.layers && !this.dom)?1:0;
	this.bw=(this.ie6 || this.ie5 || this.ie4 || this.ns4 || this.ns6 || this.opera5 || this.dom)
	return this
}
var bw=new lib_bwcheck()
mDebugging=1 //Set to 0 for NO Debugging, set to 1 for alert debugging and set to 2 for status.

//COOLMENU CODE
oCMenu=new makeCoolMenu('oCMenu') //Making a new menu

//General variables
oCMenu.useframes=0
oCMenu.offlineUrl=''
oCMenu.onlineUrl='http://www.higginswhite.com/cmnav/'
oCMenu.useclick=0
oCMenu.useNS4links=1
oCMenu.NS4padding=2
oCMenu.checkselect=0
oCMenu.pagecheck=1
oCMenu.checkscroll=0
oCMenu.resizecheck=1
oCMenu.wait=500
//Background bar variables
oCMenu.usebar=0
oCMenu.barcolor='#006600'
oCMenu.barwidth='menu'
oCMenu.barheight='menu'
oCMenu.barx='menu'
oCMenu.bary=0
oCMenu.barinheritborder=1
//Placement variables
oCMenu.rows=1
oCMenu.fromleft=85
oCMenu.fromtop=109
oCMenu.pxbetween=0
oCMenu.menuplacement='center'
//Level 0 variables
oCMenu.level[0]=new Array()
oCMenu.level[0].width=120
oCMenu.level[0].height=20
oCMenu.level[0].bgcoloroff='#006600'
oCMenu.level[0].bgcoloron='#CCFFCC'
oCMenu.level[0].textcolor='white'
oCMenu.level[0].hovercolor='#006600'
oCMenu.level[0].style='padding:2px; font-family:verdana,arial,helvetica; font-size:10px; font-weight:bold'
oCMenu.level[0].border=1
oCMenu.level[0].bordercolor='006600'
oCMenu.level[0].offsetX=0
oCMenu.level[0].offsetY=0
oCMenu.level[0].NS4font='verdana,arial,helvetica'
oCMenu.level[0].NS4fontSize=2
oCMenu.level[0].align='bottom'
oCMenu.level[0].clip=0
oCMenu.level[0].clippx=0
oCMenu.level[0].cliptim=0
oCMenu.level[0].filter=0
//Level 1 variables
//Level 2 variables
//Level 3 variables

//Menu items
oCMenu.makeMenu('top0','','&nbsp;Home','/index.html')
	
oCMenu.makeMenu('top1','','&nbsp;Principals','/principals/index.html')
	oCMenu.makeMenu('sub10','top1','Nutmeats','/principals/index.html')
	oCMenu.makeMenu('sub11','top1','Fruits','/principals/pfruit.html')
	oCMenu.makeMenu('sub12','top1','Dairy Products','/principals/pdairy.html')
	oCMenu.makeMenu('sub13','top1','Specialty Products','/principals/pspecialty.html')

oCMenu.makeMenu('top2','','&nbsp;Ingredients','/ingredients/index.html')
	oCMenu.makeMenu('sub20','top2','Resources','/ingredients/resources.html')

oCMenu.makeMenu('top3','','&nbsp;News','/news/index.html')

oCMenu.makeMenu('top4','','&nbsp;Contacts','/contacts/index.html')
	oCMenu.makeMenu('sub41','top4','Locations','/contacts/map.html')

oCMenu.makeStyle(); oCMenu.construct() //Starts the menus