//UDMv3.4.1.1b
//**DO NOT EDIT THIS *****
if (!exclude) { //********
//************************



///////////////////////////////////////////////////////////////////////////
//
//  ULTIMATE DROPDOWN MENU VERSION 3.4.1b 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/
//
//  This script featured on Dynamic Drive (http://www.dynamicdrive.com)
//
///////////////////////////////////////////////////////////////////////////



// *** POSITIONING AND STYLES *********************************************



var menuALIGN = "free";		// alignment
var absLEFT = 	0;		// absolute left or right position (if menu is left or right aligned)
var absTOP = 	0; 		// absolute top position

var staticMENU = false;		// static positioning mode (ie5,ie6 and ns4 only)

var stretchMENU = true;		// show empty cells
var showBORDERS = true;		// show empty cell borders

var baseHREF = "";	// base path to .js files for the script (ie: resources/)
var zORDER = 	1000;		// base z-order of nav structure (not ns4)

var mCOLOR = 	"B81C0B";	// main nav cell color
var rCOLOR = 	"white";	// main nav cell rollover color
var bSIZE = 	1;		// main nav border size
var bCOLOR = 	"B81C0B"	// main nav border color
var aLINK = 	"white";	// main nav link color
var aHOVER = 	"B81C0B";		// main nav link hover-color (dual purpose)
var aDEC = 	"none";		// main nav link decoration
var fFONT = 	"arial";	// main nav font face
var fSIZE = 	13;		// main nav font size (pixels)
var fWEIGHT = 	"bold"		// main nav font weight
var tINDENT = 	7;		// main nav text indent (if text is left or right aligned)
var vPADDING = 	11;		// main nav vertical cell padding
var vtOFFSET = 	0;		// main nav vertical text offset (+/- pixels from middle)

var keepLIT =	true;		// keep rollover color when browsing menu
var vOFFSET = 	9;		// shift the submenus vertically
var hOFFSET = 	-7;		// shift the submenus horizontally

var smCOLOR = 	"white";	// submenu cell color

var srCOLOR = 	"B81C0B";	// submenu cell rollover color
var sbSIZE = 	1;		// submenu border size
var sbCOLOR = 	""	// submenu border color
var saLINK = 	"B81C0B";	// submenu link color
var saHOVER = 	"white";		// submenu link hover-color (dual purpose)
var saDEC = 	"none";		// submenu link decoration
var sfFONT = 	"comic sans ms,arial";// submenu font face
var sfSIZE = 	13;		// 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 =	2;		// submenu drop shadow size
var shCOLOR =	"C0BEBE";	// submenu drop shadow color
var shOPACITY = 75;		// submenu drop shadow opacity (not ie4,ns4 or opera)

var keepSubLIT = true;		// keep submenu rollover color when browsing child menu
var chvOFFSET = 13;		// shift the child menus vertically
var chhOFFSET = 7;		// shift the child menus horizontally

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 opera)

var altDISPLAY = "title";		// 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 (ie only)
var allowForSCALING = false;	// allow for text scaling in mozilla 5


//** LINKS ***********************************************************


// add main link item ("url","Link name",width,"text-alignment","_target","alt text",top position,left position,"key trigger")

var yPos = new Array; 
var xPos = new Array; 
var yp = 0; 
var xp = 0; 
for(i=0;i<7;i++){ 
   yPos[i]=yp; 
   xPos[i]=xp; 
   yp+=30; 
   xp+=105; 
   } 

addMainItem("","Our City",104,"center","","",0,0,"");

	// define submenu properties (width,"align to edge","text-alignment",v offset,h offset,"filter")
	defineSubmenuProperties(140,"left","center",-4,0,"");

	// add submenu link items ("url","Link name","_target","alt text")
	addSubmenuItem("http://tourstcatharines.com","Take a tour","_blank","");
	addSubmenuItem("http://www.theweathernetwork.com/weather/cities/can/pages/CAON0638.htm","Our Current Weather","_blank","");

// *** change these to absolutes

// add main link item ("url","Link name",width,"text-alignment","_target","alt text",top position,left position,"key trigger")
	
addMainItem("","Home",104,"center","","",yPos[0],xPos[1],"","","","","");
    defineSubmenuProperties(137,"left","center",0,0,"");

	addSubmenuItem("http://www.23rdstcatharines.com/group/index.shtml","Group Committee","",""); 
addMainItem("","Information",104,"center","","",yPos[0],xPos[2],"","","","","");

    defineSubmenuProperties(137,"right","center",-4,0,"");

	addSubmenuItem("http://www.23rdstcatharines.com/about.shtml","About Us","_blank","");
	addSubmenuItem("mailto:info@23rdstcatharines.com?subject=More information please","Contact Us","_blank","");
	addSubmenuItem("http://www.23rdstcatharines.com/23rd_charter.html","Our Charter","");
		
addMainItem("","Sections",104,"center","","",yPos[0],xPos[3],"","","","","");

    defineSubmenuProperties(120,"left","center",-4,0,"");

	addSubmenuItem("http://www.23rdstcatharines.com/beavers.shtml","Beavers","_blank","");
	addSubmenuItem("http://www.23rdstcatharines.com/cubs.shtml","Cubs","_blank","");
	addSubmenuItem("http://www.23rdstcatharines.com/scouts.shtml","Scouts","_blank","");
	 
addMainItem("http://www.23rdstcatharines.com/23rdcal/webcal.pl","Events",104,"center","_blank","",yPos[0],xPos[4],"","","","",""); 
addMainItem("","Photos",104,"center","","12/04/03",yPos[0],xPos[5],"","","","","");

	defineSubmenuProperties(155,"right","center",0,0,"");
	
	addSubmenuItem("http://www.23rdstcatharines.com/Onlinephotoarchive.htm","2003/2004 Archive","_blank","");
	addSubmenuItem("http://www.23rdstcatharines.com/2004-2005%20photo%20archive.html","2004/2005 Archive","_blank","");
	addSubmenuItem("http://www.23rdstcatharines.com/2005-2006%20photo%20archive.html","2005/2006 Archive","_blank","");
	addSubmenuItem("","Misc Photos & Video Clips","","");
	// define child menu properties (width,"align to edge","text-alignment",v offset,h offset,"filter")
		defineChildmenuProperties(245,"right","center",0,-20,"filter:progid:DXImageTransform.Microsoft.Wheel(duration=0.3,spokes=20)");

		// add child menu link items ("url","Link name","_target","alt text")
		addChildmenuItem("http://www.23rdstcatharines.com/kubkarvideo.html","Our Cubs on TV","_blank","");
		addChildmenuItem("http://www.23rdstcatharines.com/trailer-side.jpg","Our Trailer Side View","_blank","");
		addChildmenuItem("http://www.23rdstcatharines.com/rear-sponsors.jpg","Our Trailer Rear View","_blank","");
		addChildmenuItem("","coming soon","_blank","");
		addChildmenuItem("","coming soon","_blank","");
        addChildmenuItem("","coming soon","_blank","");
        addChildmenuItem("","coming soon","_blank","");
		
addMainItem("","Camp Info",104,"center","","",yPos[0],xPos[6],"","","","","");

	defineSubmenuProperties(210,"right","center",-4,0,"");

	addSubmenuItem("http://www.23rdstcatharines.com/CampWetaskiwin/","Camp Wetaskiwin","_blank","");
	addSubmenuItem("http://www.23rdstcatharines.com/docs/Personal-Gear-Required-for-Camp-CUBS.pdf","Camp Packing List <b>Cubs</b>","_blank","");
	addSubmenuItem("http://www.23rdstcatharines.com/docs/Personal-Gear-Required-for-Camp-SCOUTS.pdf","Camp Packing List <b>Scouts</b>","_blank","");
	addSubmenuItem("http://www.23rdstcatharines.com/docs/first_aid-survival_kit.pdf","First Aid/Survival Kit","_blank","");
	addSubmenuItem("http://www.23rdstcatharines.com/docs/trail_tips.pdf","Some Great Trail Tips<br>for use anytime!","_blank","");
	addSubmenuItem("http://www.23rdstcatharines.com/stepstobuildcampfire.html","16 Steps to build a campfire","_blank","");
	addSubmenuItem("http://www.23rdstcatharines.com/docs/winter%20camping%20do's%20and%20don'ts.pdf","Winter Camp Do's & Don'ts","_blank","");
	addSubmenuItem("","Coming Soon!","_blank","");
	
addMainItem("","Badges",104,"center","","",yPos[1],xPos[0],"","","","","");

    defineSubmenuProperties(210,"right","center",-4,-95,"");
	
	addSubmenuItem("http://www.23rdstcatharines.com/docs/beaveruniform.pdf","Badge placement on Beaver Uniform","_blank","");
    addSubmenuItem("http://www.23rdstcatharines.com/23rd-Cub-Badge-Placement.jpg","Badge placement on Cub Uniform","_blank","");
	addSubmenuItem("http://www.23rdstcatharines.com/docs/scouts_badge_placement.pdf","Badge placement on Scout Uniform","_blank","");
	addSubmenuItem("http://www.23rdstcatharines.com/docs/badge_work_form.pdf","Cub Badge Work Form","_blank","");
    addSubmenuItem("http://www.23rdstcatharines.com/docs/ScoutBadgeTestingRequestForm.pdf","Scout Badge Work Form","_blank","");
	addSubmenuItem("","Revisions to the 2003 Cub Book &gt","","");
	
	// define child menu properties (width,"align to edge","text-alignment",v offset,h offset,"filter")
		defineChildmenuProperties(245,"left","center",0,0,"filter:progid:DXImageTransform.Microsoft.Wheel(duration=0.3,spokes=20)");

		// add child menu link items ("url","Link name","_target","alt text")
		addChildmenuItem("http://www.23rdstcatharines.com/docs/watercraft_badge_03_REV.pdf","Cub 2003 Watercraft Revision","_blank","");
		addChildmenuItem("http://www.23rdstcatharines.com/docs/CUB_Trade_badge_03_REV.pdf","Cub 2003 Trade badge revision","_blank","");
		addChildmenuItem("http://www.23rdstcatharines.com/docs/CUB_Computer_badge_03_REV.pdf","Cub 2003 Computer Badge revision","_blank","");   
        
 
addMainItem("https://www.canadahelps.org/DonationDetails.aspx","Donate Now!",104,"center","","",yPos[1],xPos[1],"","","","",""); 
addMainItem("","Register with us",104,"center","","",yPos[1],xPos[2],"","","","","");
    
	defineSubmenuProperties(200,"right","center",-4,0,"");
	
	addSubmenuItem("http://www.23rdstcatharines.com/docs/where_does_it_go_letter_to_parents.pdf","Where does the money go?","_blank","");
	addSubmenuItem("http://www.23rdstcatharines.com/docs/Parent_Survey.pdf","Parent Survey","_blank","");
	addSubmenuItem("http://www.23rdstcatharines.com/docs/EnglishYouth0607RegistrationForms.pdf","Youth Registration Form","_blank","");
	addSubmenuItem("http://www.23rdstcatharines.com/docs/EngAdultRegistrationForms0607.pdf","Adult Registration Form","_blank","");
	

addMainItem("","Resources",104,"center","","",yPos[1],xPos[3],"","","","","");

    defineSubmenuProperties(200,"right","center",-4,0,"");

	addSubmenuItem("http://www.23rdstcatharines.com/docs/beaverparentsguide03.pdf","Beaver Parents Guide","_blank","");
	addSubmenuItem("http://www.23rdstcatharines.com/docs/grown-ups_guide_to_the_wolfcub_program.pdf","Grown-up Guide to<br>the Wolf Cub Program","_blank","");
	addSubmenuItem("","&lt; Scout Shop","","");
	

		// define child menu properties (width,"align to edge","text-alignment",v offset,h offset,"filter")
		defineChildmenuProperties(245,"right","center",0,-20,"filter:progid:DXImageTransform.Microsoft.Wheel(duration=0.3,spokes=20)");

		// add child menu link items ("url","Link name","_target","alt text")
		addChildmenuItem("","<b><u>Hours</u></b><br>Saturdays only: 9am - 1pm","","");
		addChildmenuItem("","<b><u>Address</u></b><br>32 Cherry Street<br>St. Catharines, ON  L2R 5M6","","");
		addChildmenuItem("","<b>Phone:</b> 905-685-8600<br><b>Fax:</b> 905-685-1357","","");
		addChildmenuItem("","<b>E-mail:</b> scouting@niagara.com","","");
		
	addSubmenuItem("","&lt; Local Counsel","","");
	
	    // define child menu properties (width,"align to edge","text-alignment",v offset,h offset,"filter")
		defineChildmenuProperties(310,"right","center",0,-20,"filter:progid:DXImageTransform.Microsoft.Wheel(duration=0.3,spokes=20)");

		// add child menu link items ("url","Link name","_target","alt text")
		addChildmenuItem("mailto:rats@cogeco.ca","AC Dick Thomas","","");
		addChildmenuItem("mailto:vince.goldsworthy@regional.niagara.on.ca","Area Administrator-Vince Goldsworthly","","");
		addChildmenuItem("mailto:sburrows@vftinc.com","Program Development-DAC Steve Burrows","","");
		addChildmenuItem("mailto:","Program-Beavers - Pending","","");
		addChildmenuItem("mailto:bgreen10@cogeco.ca","Program-Cubs - A/DAC Brad Green","","");
		addChildmenuItem("mailto:jchatterton@cogeco.ca","Program-Senior Sections - A/DAC Joel Chatterton","","");
		addChildmenuItem("mailto:scowtr@iaw.on.ca","Adult Development & Training - A/DAC Kevin Cosby","","");
		addChildmenuItem("mailto:rats@cogeco.ca","Honours & Awards - Dick Thomas","","");
	
	addSubmenuItem("","&lt; The 23rd's Favorite Recipes","_blank","");
	
	    // define child menu properties (width,"align to edge","text-alignment",v offset,h offset,"filter")
		defineChildmenuProperties(245,"right","center",0,-20,"filter:progid:DXImageTransform.Microsoft.Wheel(duration=0.3,spokes=20)");

		// add child menu link items ("url","Link name","_target","alt text")
		addChildmenuItem("http://www.23rdstcatharines.com/recipes/kingstreat.shtml","Skor Candy","_blank","This is SO good!");
		addChildmenuItem("","Got a favorite we can put here?","","");
		addChildmenuItem("","Got a favorite we can put here?","","");
		   
        
		
addMainItem("","Links",104,"center","","",yPos[1],xPos[4],"","","","","");

    defineSubmenuProperties(180,"left","center",-4,0,"");

	addSubmenuItem("http://www.firstgrantham.org/","1st Grantham United Church","_blank","");
	addSubmenuItem("http://scouts.ca","Scouts Canada","_blank","");
	addSubmenuItem("http://www.niagara.com/~scouting/scoutab.htm","Scouting About News","_blank","");
	addSubmenuItem("http://www.niagara.com/~scouting/","St.Catharines District","_blank","");
	addSubmenuItem("http://www.scoutscan.com/scoutscan.shtml","Scouting in Canada","_blank","");
	addSubmenuItem("http://www.trishores-scouts.on.ca","Tri-Shores Region","_blank","");
	addSubmenuItem("","&lt; World Scouting","","");
		
		// define child menu properties (width,"align to edge","text-alignment",v offset,h offset,"filter")
		defineChildmenuProperties(260,"right","center",0,-20,"filter:progid:DXImageTransform.Microsoft.Wheel(duration=0.3,spokes=20)");

		// add child menu link items ("url","Link name","_target","alt text")
		addChildmenuItem("http://www.scoutlink.net/","Scoutlink (Global)","_blank","");
		addChildmenuItem("http://spider.scout.net/","World wide Scouting database","_blank","");
		addChildmenuItem("http://inter.scoutnet.org/","World Scouting Organization","_blank","");
		addChildmenuItem("http://worldscouts.net/scoutingwebring/","World Scouting Webring","_blank","");
		addChildmenuItem("http://www.thaiscouting.com/scouting.html","Scouting in Thailand","_blank","");
		addChildmenuItem("http://www.scout.org/front/index.shtml","World Organization of the Scout Movement","_blank","");
		
	addSubmenuItem("","&lt; Scouting in the USA","_blank","");
	
		// define child menu properties (width,"align to edge","text-alignment",v offset,h offset,"filter")
		defineChildmenuProperties(200,"right","center",0,-20,"filter:progid:DXImageTransform.Microsoft.Wheel(duration=0.3,spokes=20)");

		// add child menu link items ("url","Link name","_target","alt text")
		addChildmenuItem("http://www.macscouter.com/","Scouting resources in the U.S.","_blank","");
		addChildmenuItem("http://www.us.orienteering.org/OYoung/","Orienteering for the Young","_blank","");
		addChildmenuItem("","Coming Soon","_blank","");
		addChildmenuItem("","Coming Soon","_blank","");
		 
	addSubmenuItem("","&lt; Scouting in the U.K.","_blank","");
	
	// define child menu properties (width,"align to edge","text-alignment",v offset,h offset,"filter")
		defineChildmenuProperties(200,"right","center",0,-20,"filter:progid:DXImageTransform.Microsoft.Wheel(duration=0.3,spokes=20)");

		// add child menu link items ("url","Link name","_target","alt text")
		addChildmenuItem("http://www.mistral.co.uk/42brghtn/knots/","Get Knotted! Animated<br>Knots for Scouts","_blank","");
		addChildmenuItem("http://www.scoutbase.org.uk/activity/games/index.shtml","Scouting in the U.K.<br>(Games, Crafts, & More)","_blank","");
		addChildmenuItem("","Coming Soon","","");
		addChildmenuItem("","Coming Soon","",""); 
		
	addSubmenuItem("","&lt; Coming Soon","","");

		// define child menu properties (width,"align to edge","text-alignment",v offset,h offset,"filter")
		defineChildmenuProperties(102,"right","center",0,-20,"filter:progid:DXImageTransform.Microsoft.Wheel(duration=0.3,spokes=20)");

		// add child menu link items ("url","Link name","_target","alt text")
		addChildmenuItem("","Coming Soon","","");
		addChildmenuItem("","Coming Soon","","");
		addChildmenuItem("","Coming Soon","","");
		addChildmenuItem("","Coming Soon","",""); 

addMainItem("http://www.23rdstcatharines.com/awards_etc.html","Awards",104,"center","","",yPos[1],xPos[5],"","","","","");

addMainItem("http://www.scouts.ca/cj07/","CJ'07",104,"center","_blank","",yPos[1],xPos[6],"","","","","");


//**DO NOT EDIT THIS *****
}//***********************
//************************
