//CALCARGO-J-MENUS_DEFS: Content and creation of CALCARGO's website submenu pulldowns 
//11/07/07 CH created pulldown menu file 
//11/07/07 CH Redefined the menutop for Netscape 6 
//11/04/07 CH Much, much shorter and simpler menu definitions 


//The following sections describe the pulldown submenus. Each is enclosed in a table. 
// -----Company-----
menu1= "<a class='smenu' href='/company.html'>Overview</a><br>"
	+  "<a class='smenu' href='/mission.html'>Mission</a><br>"
	+  "<a class='smenu' href='/presmessage.html'>President's&nbspMessage</a><br>"
	+  "<a class='smenu' href='/recycling.html'>Environmental&nbspInitiatives</a><br>"
	+  "<a class='smenu' href='/contactus.html'>Contact&nbspUs</a><br>"
	+  "<a class='smenu' href='/directions.html'>Directions&nbspto&nbspCalCargo</a><br>"
	+  "<a class='smenu' href='/requestinfo.html'>Request&nbsp;More&nbsp;Company&nbsp;Info</a><br>"
	+  "<a class='smenu' href='/careers.html'>Careers</a>"

// ----Services---
menu2= "<a class='smenu' href='/services.html'>Overview</a><br>"
	+  "<a class='smenu' href='/facilities.html'>Facilities</a><br>"
	+  "<a class='smenu' href='/technology.html'>Computing&nbsp;&&nbsp;EDI</a><br>"
	+  "<a class='smenu' href='/qualityprogram.html'>Quality&nbsp;Control&nbsp;Program</a><br>"
	+  "<a class='smenu' href='/singlepro.html'>Single&nbsp;Pro&nbsp;eTracking</a><br>" 
              +  "<a class='smenu' href='/aboutwebsite.html'>About&nbsp;This&nbsp;Website</a><br>" 
	+  "<a class='smenu' href='/faqs.html'>Frequently&nbsp;Asked&nbsp;Questions</a>" 

// ---Coverage---
menu3=  "<a class='smenu' href='/coverage.html'>Areas&nbsp&&nbspPoints&nbspServed</a><br>"
//	+  "<a class='smenu' href='/quality.html'>Case&nbsp;Studies</a><br>" 
//	+  "<a class='smenu' href='/links.html'>Links</a>"
		
// ---Partners---
menu4=  "<a class='smenu' href='/partner.html'>Reasons&nbsp;to&nbsp;Do&nbsp;Business&nbsp;With&nbsp;Us</a><BR>" 
        +  "<a class='smenu' href='/testimonials.html'>What&nbsp;Our&nbsp;Clients&nbsp;Are&nbsp;Saying</a>" 

// --News--
menu5= "<a class='smenu' href='/news.html'>Company&nbsp;News</a><BR>" 
//       +   "<a class='smenu' href='\co_newsletter.htm'>Employee&nbsp;Newsletter</a><BR>" 
//       +   "<a class='smenu' href='/eNewsletters.html'>CALCARGO&nbsp;eNews&nbsp;Archive<BR></a>"
       +   "<a class='smenu' href='/favLinks.html'>Industry&nbsp;Links</a>"  
//       +   "<a class='smenu' href='/partners/details.htm'>Reseller&nbsp;Programs</a><BR>" 

// ---About Us---
//menu6= "<a class='smenu' href='\company.htm'>Company&nbsp;Overview</a><br>"
//	+  "<a class='smenu' href='\company.htm'>Executive&nbsp;Team</a><br>"
//	+  "<a class='smenu' href='\careers.htm'>Employment&nbsp;Opportunities</a><br>"
//	+  "<a class='smenu' href='\careers.htm'>Careers</a><br>"
//	+  "<a class='smenu' href='\awards.htm'>Product&nbsp;Awards</a><br>"
//	+  "<a class='smenu' href='\quality.htm'>What&nbsp;People&nbsp;Say!</a>"

// ---Contact---
//menu7 = "<a class='smenu' href='\contact.htm'>Contact&nbsp;CALCARGO</a><br>"
//	+  "<a class='smenu' href='/directions.htm'>Directions&nbsp;to&nbsp;CALCARGO</a>"


//This section provides the definition for the menutop and menu bottom. Colors are set in layer.
menutop = "<table width=80 cellspacing=7 cellpadding=2 border=0 ><tr><td>"
//menutop = "<table width=180 cellspacing=7 cellpadding=0 border=0 ><tr><td>"
menubottom = "</td></tr></table>"

//Section below lets you adjust position of each pulldown menu on the screen. 
//Lets you create the actual layers. Layer X must be matched with menuX. The coordinates 
//provide the left, top point of the submenu box referenced from the top/left corner of 
//the browser window
// --Submenu pulldown menu selections--
createSubmenu("company", 353, 98, hidden, menutop+menu1+menubottom); 
createSubmenu("services", 434,98, hidden, menutop+menu2+menubottom); 
createSubmenu("coverage", 515, 98, hidden, menutop+menu3+menubottom); 
createSubmenu("partners", 596, 98, hidden, menutop+menu4+menubottom);
createSubmenu("news", 672, 98, hidden, menutop+menu5+menubottom); 
//createSubmenu("contact", 630, 98, hidden, menutop+menu5+menubottom); 
//createSubmenu("pcw", 426, 98, hidden, menutop+menu6+menubottom); 
//createSubmenu("contact", 505, 110, hidden, menutop+menu7+menubottom); 

