//UDMv3.1.2
//**DO NOT EDIT THIS *****
if (!exclude) { //********
//************************

///////////////////////////////////////////////////////////////////////////
//
//  ULTIMATE DROPDOWN MENU VERSION 3.1.2 by Brothercake
//  http://www.brothercake.com/dropdown/ 
//
//  Link-wrapping routine by Brendan Armstrong
//
//  KDE modifications by David Joham
//
//  Opera reload/resize routine by Michael Wallner
//  http://www.wallner-software.com/
//
///////////////////////////////////////////////////////////////////////////

// *** POSITIONING AND STYLES *********************************************

var menuALIGN = "center";		// alignment
var absLEFT = 	"center";		// absolute left or right position (if not center)
var absTOP = 	75; 		// absolute top position

var staticMENU = false;		// static positioning mode (ie5/6 and ns4 only)

var stretchMENU = false;		// show empty cells
var showBORDERS = false;		// show empty cell borders

var baseHREF = "menu3/";	// base path
var zORDER = 	1000;		// base z-order of nav structure (not ns4)

var mCOLOR = 	"#c9cfb8";	// main nav cell color
var rCOLOR = 	"#c9cfb8";	// main nav cell rollover color
var bSIZE = 	0;		// main nav border size
var bCOLOR = 	""		// main nav border color
var aLINK = 	"#666666";	// main nav link color
var aHOVER = 	"#850f0f";		// main nav link hover-color (dual purpose)
var aDEC = 	"none";		// main nav link decoration
var fFONT = 	"verdana,arial";	// main nav font face		
var fSIZE = 	9;		// main nav font size (pixels)	
var fWEIGHT = 	"bold"		// main nav font weight
var tINDENT = 	5;		// main nav text indent (if text is left or right aligned)
var vPADDING = 	1;		// main nav vertical cell padding
var vtOFFSET = 	0;		// main nav vertical text offset (+/- pixels from middle)

var keepLIT =	false;		// keep rollover color when browsing menu
var vOFFSET = 	0;		// shift the submenus vertically
var hOFFSET = 	-10;		// shift the submenus horizontally

var smCOLOR = 	"#edf0e4";	// submenu cell color
var srCOLOR = 	"#edf0e4";	// submenu cell rollover color
var sbSIZE = 	1;		// submenu border size
var sbCOLOR = 	"#666666"		// submenu border color
var saLINK = 	"#808997";	// submenu link color
var saHOVER = 	"#850f0f";		// submenu link hover-color (dual purpose)
var saDEC = 	"none";		// submenu link decoration
var sfFONT = 	"verdana,arial";	 // submenu font face		
var sfSIZE = 	9;		// submenu font size (pixels)	
var sfWEIGHT = 	"normal"	// submenu font weight
var stINDENT = 	5;		// submenu text indent (if text is left or right aligned)
var svPADDING =1;		// submenu vertical cell padding
var svtOFFSET =0;		// submenu vertical text offset (+/- pixels from middle)

var shSIZE =	0;		// menu drop shadow size 
var shCOLOR =	"";		// menu drop shadow color
var shOPACITY = 100;		// menu drop shadow opacity (not ie4/ns4/op5)

var keepSubLIT = false;		// keep submenu rollover color when browsing child menu	
var chvOFFSET = -1;		// shift the child menus vertically 			
var chhOFFSET = 1;		// shift the child menus horizontally 		

var openTIMER = 0;
var closeTIMER = 330;		// menu closing delay time

var cellCLICK = true;		// links activate on TD click
var aCURSOR = "hand";		// cursor for active links (not ns4 or op5)

var altDISPLAY = "none";	// where to display alt text
var allowRESIZE = true;		// allow resize/reload

var redGRID = false;		// show a red grid
var gridWIDTH = 0;		// override grid width
var gridHEIGHT = 0;		// override grid height
var documentWIDTH = 0;		// override document width 
var hideSELECT = true;    // auto-hide select boxes when menus open (ie5+ only) 
var allowForSCALING = false;    // allow for text scaling in mozilla 5 
var allowPRINTING = false;    // allow the navbar and menus to print (not ns4)

//** LINKS ***********************************************************

// add main link item ("url","Link name",width,"text-alignment","_target","alt text",top position,left position,"key trigger")
		
addMainItem("http://snowandnealley.com/am.htm","Axes & Mauls",85,"center","","",0,0,""); 

	defineSubmenuProperties(150,"left","left",0,0);
	
	addSubmenuItem("http://www.snowandnealley.com/products/axes.htm","Axes","","");
	addSubmenuItem("http://www.snowandnealley.com/products/mauls.htm","Mauls","","");
	addSubmenuItem("http://www.snowandnealley.com/products/giftsets.htm","Gift Sets","","");
	addSubmenuItem("http://www.snowandnealley.com/products/handles.htm","Axe & Maul Handles","","");
	addSubmenuItem("http://www.snowandnealley.com/products/sheaths.htm","Axe & Maul Sheaths","","");		

addMainItem("","|",20,"center","")

// addMainItem("http://www.snowandnealley.com/products/other.htm","Other Products",95,"center","","",0,0,""); 
	
// addMainItem("","|",20,"center","")

addMainItem("http://www.snowandnealley.com/products","Product List",85,"center","","",0,0,"");

addMainItem("","|",20,"center","")

addMainItem("http://www.snowandnealley.com/retailer.htm","Visit a Retailer",100,"center","","",0,0,""); 

	defineSubmenuProperties(175,"left","left",0,0);

	addSubmenuItem("http://snowandnealley.com/locator/axeretail1.asp","Axe Retailers Only","","");
	addSubmenuItem("http://snowandnealley.com/locator/retailweb.htm","Online Retailers","","");


//**DO NOT EDIT THIS *****
}//***********************
//************************