//UDMv3.4.1//**DO NOT EDIT THIS *****if (!exclude) { //********//************************///////////////////////////////////////////////////////////////////////////////  ULTIMATE DROPDOWN MENU VERSION 3.5 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 = "left";		// 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 = false;		// show empty cellsvar showBORDERS = false;		// 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 = 	"../images/dot_clear.gif";	// main nav cell colorvar rCOLOR = 	"../images/dot_clear.gif";	// main nav cell rollover colorvar bSIZE = 	0;		// main nav border sizevar bCOLOR = 	""	// main nav border colorvar aLINK = 	"#ffffff";	// main nav link colorvar aHOVER = 	"#ffd558";		// main nav link hover-color (dual purpose)var aDEC = 	"none";		// main nav link decorationvar fFONT = 	"arial, helvetica, sans-serif";	// main nav font facevar fSIZE = 	14;		// main nav font size (pixels)var fWEIGHT = 	"400"		// main nav font weightvar tINDENT = 	0;		// main nav text indent (if text is left or right aligned)var vPADDING = 	5;		// 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 = 	0;		// shift the submenus verticallyvar hOFFSET = 	0;		// shift the submenus horizontallyvar smCOLOR = 	"#eee";	// submenu cell colorvar srCOLOR = 	"#ccc";	// submenu cell rollover colorvar sbSIZE = 	1;		// submenu border sizevar sbCOLOR = 	"#666"	// submenu border colorvar saLINK = 	"#333";	// submenu link colorvar saHOVER = 	"#222";		// submenu link hover-color (dual purpose)var saDEC = 	"none";		// submenu link decorationvar sfFONT = 	"arial, helvetica, sans-serif";// submenu font facevar sfSIZE = 	12;		// submenu font size (pixels)var sfWEIGHT = 	"400"	// submenu font weightvar stINDENT = 	10;		// submenu text indent (if text is left or right aligned)var svPADDING = 5;		// submenu vertical cell paddingvar svtOFFSET = 0;		// submenu vertical text offset (+/- pixels from middle)var shSIZE =	3;		// submenu drop shadow sizevar shCOLOR =	"cccccc";	// submenu drop shadow colorvar shOPACITY = 50;		// submenu drop shadow opacity (not ie4,ns4 or opera)var keepSubLIT = true;		// keep submenu rollover color when browsing child menuvar chvOFFSET = 0;		// shift the child menus verticallyvar chhOFFSET = 0;		// 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 = "";		// 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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")	// define submenu properties (width,"align to edge","text-alignment",v offset,h offset,"filter")	// add submenu link items ("url","Link name","_target","alt text")		// define child menu properties (width,"align to edge","text-alignment",v offset,h offset,"filter")		// add child menu link items ("url","Link name","_target","alt text")<!--addMainItem("../about/index.html","",78,"center","","",0,0,"");	defineSubmenuProperties(150,"left","left",0,0,"");	[[!~~addSubmenuItem("../news/index.html","The Instructors","","");~~]]	addSubmenuItem("../about/classes.html","Classes archive","","");	addSubmenuItem("../about/reminiscences.html","Workshops archive","","");	addSubmenuItem("../about/press.html","Press archive","","");-->//**DO NOT EDIT THIS *****}//***********************//************************