/***********************************************
*	(c) Ger Versluis 2000 version 13.10 August 1, 2004       *
*	You may use this script on non commercial sites.	          *
*	www.burmees.nl/menu			          *
*	You may remove all comments for faster loading	          *		
************************************************/
	var NoOffFirstLineMenus=9;			// Number of main menu  items
						// Colorvariables:
						// Color variables take HTML predefined color names or "#rrggbb" strings
						//For transparency make colors and border color ""
	var LowBgColor="#DFC8B8";			// Background color when mouse is not over
	var HighBgColor="#401F0F";			// Background color when mouse is over
	var FontLowColor="black";			// Font color when mouse is not over
	var FontHighColor="white";			// Font color when mouse is over
	var BorderColor="#DFC8B8";			// Border color
	var BorderWidthMain=1;			// Border width main items
	var BorderWidthSub=1;			// Border width sub items
 	var BorderBtwnMain=1;			// Border width between elements main items
	var BorderBtwnSub=1;			// Border width between elements sub items
	var FontFamily="Arial";	// Font family menu items
	var FontSize=10;				// Font size menu items
	var FontBold=0;				// Bold menu items 1 or 0
	var FontItalic=0;				// Italic menu items 1 or 0
	var MenuTextCentered="left";		// Item text position left, center or right
	var MenuCentered="center";			// Menu horizontal position can be: left, center, right
	var MenuVerticalCentered="center";		// Menu vertical position top, middle,bottom or static
	var ChildOverlap=.2;			// horizontal overlap child/ parent
	var ChildVerticalOverlap=.2;			// vertical overlap child/ parent
	var StartTop=0;				// Menu offset x coordinate
	var StartLeft=0;				// Menu offset y coordinate
	var VerCorrect=0;				// Multiple frames y correction
	var HorCorrect=0;				// Multiple frames x correction
	var DistFrmFrameBrdr=2;			// Distance between main menu and frame border
	var LeftPaddng=3;				// Left padding
	var TopPaddng=-1;				// Top padding. If set to -1 text is vertically centered
	var FirstLineHorizontal=1;			// Number defines to which level the menu must unfold horizontal; 0 is all vertical
	var MenuFramesVertical=0;			// Frames in cols or rows 1 or 0
	var DissapearDelay=1000;			// delay before menu folds in
	var UnfoldDelay=100;			// delay before sub unfolds	
	var TakeOverBgColor=1;			// Menu frame takes over background color subitem frame
	var FirstLineFrame="navig";			// Frame where first level appears
	var SecLineFrame="space";			// Frame where sub levels appear
	var DocTargetFrame="space";		// Frame where target documents appear
	var TargetLoc="";				// span id for relative positioning
	var MenuWrap=1;				// enables/ disables menu wrap 1 or 0
	var RightToLeft=0;				// enables/ disables right to left unfold 1 or 0
	var BottomUp=0;				// enables/ disables Bottom up unfold 1 or 0
	var UnfoldsOnClick=0;			// Level 1 unfolds onclick/ onmouseover
	var BaseHref="http://www.tkgeast.com/";				// BaseHref lets you specify the root directory for relative links. 
						// The script precedes your relative links with BaseHref
						// For instance: 
						// when your BaseHref= "http://www.MyDomain/" and a link in the menu is "subdir/My#",
						// the script renders to: "http://www.MyDomain/subdir/My#"
						// Can also be used when you use images in the textfields of the menu
						// "MenuX=new Array("<img src=\""+BaseHref+"MyImage\">"
						// For testing on your harddisk use syntax like: BaseHref="file:///C|/MyFiles/Homepage/"

	var Arrws=[BaseHref+"tri.gif",5,10,BaseHref+"tridown.gif",10,5,BaseHref+"trileft.gif",5,10,BaseHref+"triup.gif",10,5];

						// Arrow source, width and height.
						// If arrow images are not needed keep source ""

	var MenuUsesFrames=1;			// MenuUsesFrames is only 0 when Main menu, submenus,
						// document targets and script are in the same frame.
						// In all other cases it must be 1

	var RememberStatus=0;			// RememberStatus: When set to 1, menu unfolds to the presetted menu item. 
						// When set to 2 only the relevant main item stays highligthed
						// The preset is done by setting a variable in the head section of the target document.
						// <head>
						//	<script type="text/javascript">var SetMenu="2_2_1";</script>
						// </head>
						// 2_2_1 represents the menu item Menu2_2_1=new Array(.......

						// Below some pretty useless effects, since only IE6+ supports them
						// I provided 3 effects: MenuSlide, MenuShadow and MenuOpacity
						// If you don't need MenuSlide just leave in the line var MenuSlide="";
						// delete the other MenuSlide statements
						// In general leave the MenuSlide you need in and delete the others.
						// Above is also valid for MenuShadow and MenuOpacity
						// You can also use other effects by specifying another filter for MenuShadow and MenuOpacity.
						// You can add more filters by concanating the strings
	var BuildOnDemand=0;			// 1/0 When set to 1 the sub menus are build when the parent is moused over
	var BgImgLeftOffset=5;			// Only relevant when bg image is used as rollover
	var ScaleMenu=0;				// 1/0 When set to 0 Menu scales with browser text size setting

	var HooverBold=0;				// 1 or 0
	var HooverItalic=0;				// 1 or 0
	var HooverUnderLine=0;			// 1 or 0
	var HooverTextSize=0;			// 0=off, number is font size difference on hoover
	var HooverVariant=0;			// 1 or 0

	var MenuSlide="";
	var MenuSlide="progid:DXImageTransform.Microsoft.RevealTrans(duration=.5, transition=19)";
	var MenuSlide="progid:DXImageTransform.Microsoft.GradientWipe(duration=.5, wipeStyle=1)";

	var MenuShadow="";
	var MenuShadow="progid:DXImageTransform.Microsoft.DropShadow(color=#888888, offX=2, offY=2, positive=1)";
	var MenuShadow="progid:DXImageTransform.Microsoft.Shadow(color=#888888, direction=135, strength=1)";

	var MenuOpacity="";
	var MenuOpacity="progid:DXImageTransform.Microsoft.Alpha(opacity=85)";

	function BeforeStart(){return}
	function AfterBuild(){return}
	function BeforeFirstOpen(){return}
	function AfterCloseAll(){return}

// Menu tree:
// MenuX=new Array("ItemText","Link","background image",number of sub elements,height,width,"bgcolor","bghighcolor",
//	"fontcolor","fonthighcolor","bordercolor","fontfamily",fontsize,fontbold,fontitalic,"textalign","statustext");
// Color and font variables defined in the menu tree take precedence over the global variables
// Fontsize, fontbold and fontitalic are ignored when set to -1.
// For rollover images ItemText or background image format is:  "rollover?"+BaseHref+"Image1.jpg?"+BaseHref+"Image2.jpg" 

/*Menu1=new Array("rollover?"+BaseHref+"aliesmll.jpg?"+BaseHref+"appies.jpg","#","",1,20,20,"","","","","","",-1,-1,-1,"","Own text entered");
	Menu1_1=new Array("Example 1_1","#","",0,20,100,"black","white","yellow","blue","yellow","",-1,-1,-1,"","");
Menu2=new Array("rollover?"+BaseHref+"busts.jpg?"+BaseHref+"adamosmll.jpg","#","",2,100,200,"","","","","","",-1,-1,-1,"","");
	Menu2_1=new Array("Example 2.1","#","",3,20,190,"red","white","yellow","blue","yellow","",-1,-1,-1,"","");	
		Menu2_1_1=new Array("Example 2.1.1","","",1,20,200,"blue","white","yellow","blue","yellow","",-1,-1,-1,"","");
			Menu2_1_1_1=new Array("<img src="+BaseHref+"\"busts.jpg\">","#","",0,128,128,"black","white","yellow","blue","yellow","",-1,-1,-1,"","");
		Menu2_1_2=new Array("Example 2.1.2","#","",0,0,0,"purple","white","yellow","blue","yellow","",-1,-1,-1,"","");
		Menu2_1_3=new Array("Example 2.1.3","#","",0,0,0,"red","white","yellow","blue","yellow","",-1,-1,-1,"","");
	Menu2_2=new Array("Example 2.2","#","",8,20,190,"black","white","yellow","blue","yellow","",-1,-1,-1,"","");
		Menu2_2_1=new Array("Example 2.2.1","file221.htm","",0,20,200,"black","white","yellow","black","yellow","",-1,-1,-1,"","");
		Menu2_2_2=new Array("Example 2.2.2","#","",0,0,0,"maroon","white","white","blue","yellow","",-1,-1,-1,"","");
		Menu2_2_3=new Array("Example 2.2.3","#","",0,0,0,"black","white","green","blue","yellow","",-1,-1,-1,"","");
		Menu2_2_4=new Array("Example 2.2.4","#","",0,0,0,"green","white","yellow","blue","yellow","",-1,-1,-1,"","");
		Menu2_2_5=new Array("Example 2.2.5","#","",1,0,0,"black","white","red","blue","yellow","",-1,-1,-1,"","");
			Menu2_2_5_1=new Array("Example 2.2.5.1","#","",1,32,150,"black","white","yellow","blue","yellow","",-1,-1,-1,"","");
				Menu2_2_5_1_1=new Array("Example 2.2.5.1.1","#","",1,20,90,"black","white","yellow","blue","yellow","",-1,-1,-1,"","");
					Menu2_2_5_1_1_1=new Array("Example 2.2.5.1.1.1","#","",0,22,400,"black","white","yellow","blue","yellow","",-1,-1,-1,"","");
		Menu2_2_6=new Array("Example 2.2.6","#","",0,0,0,"yellow","black","red","blue","yellow","",-1,-1,-1,"","");
		Menu2_2_7=new Array("Example 2.2.7","#","",0,0,0,"white","black","black","blue","yellow","",-1,-1,-1,"","");
		Menu2_2_8=new Array("Example 2.2.8","#","",0,0,0,"black","white","lightblue","blue","yellow","",-1,-1,-1,"","");*/
Menu1=new Array("Residential","","",2,15,70,"","","","","","",-1,-1,-1,"","");
	Menu1_1=new Array("Single Family","","",2,15,100,"","","","","","",-1,-1,-1,"","");
		Menu1_1_1=new Array("Kaplan Residence","projects/Residential/SingleFamily/kaplan.html","",1,15,100,"","","","","","",-1,-1,-1,"","");
			Menu1_1_1_1=new Array("<img src="+BaseHref+"projects/Residential/SingleFamily/KaplanSmall.jpg>","projects/Residential/SingleFamily/kaplan.html","",0,64,64,"","","","","","",-1,-1,-1,"","");
		Menu1_1_2=new Array("West House","projects/Residential/SingleFamily/west.html","",1,15,100,"","","","","","",-1,-1,-1,"","");
			Menu1_1_2_1=new Array("<img src="+BaseHref+"projects/Residential/SingleFamily/WestSmall.jpg>","projects/Residential/SingleFamily/west.html","",0,64,64,"","","","","","",-1,-1,-1,"","");
	Menu1_2=new Array("Multi Family","","",3,15,100,"","","","","","",-1,-1,-1,"","");
		Menu1_2_1=new Array("Apartments","","",3,15,100,"","","","","","",-1,-1,-1,"","");
			Menu1_2_1_1=new Array("Concord Arms Apartments","projects/Residential/MultiFamily/Apartments/concord.html","",1,15,150,"","","","","","",-1,-1,-1,"","");
						Menu1_2_1_1_1=new Array("<img src="+BaseHref+"projects/Residential/MultiFamily/Apartments/ConcordSmall.jpg>","projects/Residential/MultiFamily/Apartments/concord.html","",0,64,64,"","","","","","",-1,-1,-1,"","");
			Menu1_2_1_2=new Array("Ferncroft Village Apartments","projects/Residential/MultiFamily/Apartments/ferncroft.html","",1,15,150,"","","","","","",-1,-1,-1,"","");
						Menu1_2_1_2_1=new Array("<img src="+BaseHref+"projects/Residential/MultiFamily/Apartments/FerncroftSmall.jpg>","projects/Residential/MultiFamily/Apartments/ferncroft.html","",0,64,64,"","","","","","",-1,-1,-1,"","");
			Menu1_2_1_3=new Array("Kent Court Apartments","projects/Residential/MultiFamily/Apartments/kent.html","",1,15,150,"","","","","","",-1,-1,-1,"","");
						Menu1_2_1_3_1=new Array("<img src="+BaseHref+"projects/Residential/MultiFamily/Apartments/KentSmall.jpg>","projects/Residential/MultiFamily/Apartments/kent.html","",0,64,64,"","","","","","",-1,-1,-1,"","");
		Menu1_2_2=new Array("Condominiums","","",11,15,100,"","","","","","",-1,-1,-1,"","");
			Menu1_2_2_1=new Array("20 Western Avenue Housing","c","",1,15,170,"","","","","","",-1,-1,-1,"","");
						Menu1_2_2_1_1=new Array("<img src="+BaseHref+"projects/Residential/MultiFamily/Condominiums/20Small.jpg>","projects/Residential/MultiFamily/Condominiums/20west.html","",0,64,64,"","","","","","",-1,-1,-1,"","");
			Menu1_2_2_2=new Array("Back River Condominiums","projects/Residential/MultiFamily/Condominiums/back.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu1_2_2_2_1=new Array("<img src="+BaseHref+"projects/Residential/MultiFamily/Condominiums/BackSmall.jpg>","projects/Residential/MultiFamily/Condominiums/back.html","",0,64,64,"","","","","","",-1,-1,-1,"","");
			Menu1_2_2_3=new Array("Damon Place Condominiums","projects/Residential/MultiFamily/Condominiums/damon.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu1_2_2_3_1=new Array("<img src="+BaseHref+"projects/Residential/MultiFamily/Condominiums/DamonSmall.jpg>","projects/Residential/MultiFamily/Condominiums/damon.html","",0,64,64,"","","","","","",-1,-1,-1,"","");			
			Menu1_2_2_4=new Array("Davenport Court Condominiums","projects/Residential/MultiFamily/Condominiums/davenport.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu1_2_2_4_1=new Array("<img src="+BaseHref+"projects/Residential/MultiFamily/Condominiums/DavenportSmall.jpg>","projects/Residential/MultiFamily/Condominiums/davenport.html","",0,64,64,"","","","","","",-1,-1,-1,"","");			
			Menu1_2_2_5=new Array("Gateway Condominiums","projects/Residential/MultiFamily/Condominiums/gateway.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu1_2_2_5_1=new Array("<img src="+BaseHref+"projects/Residential/MultiFamily/Condominiums/GatewaySmall.jpg>","projects/Residential/MultiFamily/Condominiums/gateway.html","",0,64,64,"","","","","","",-1,-1,-1,"","");			
			Menu1_2_2_6=new Array("Glen at Swampscott","projects/Residential/MultiFamily/Condominiums/glen.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu1_2_2_6_1=new Array("<img src="+BaseHref+"projects/Residential/MultiFamily/Condominiums/GlenSmall.jpg>","projects/Residential/MultiFamily/Condominiums/glen.html","",0,64,64,"","","","","","",-1,-1,-1,"","");			
			Menu1_2_2_7=new Array("Hammond Court Condominiums","projects/Residential/MultiFamily/Condominiums/hammond.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu1_2_2_7_1=new Array("<img src="+BaseHref+"projects/Residential/MultiFamily/Condominiums/HammondSmall.jpg>","projects/Residential/MultiFamily/Condominiums/hammond.html","",0,64,64,"","","","","","",-1,-1,-1,"","");			
			Menu1_2_2_8=new Array("Logan Street Condominiums","projects/Residential/MultiFamily/Condominiums/logan.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu1_2_2_8_1=new Array("<img src="+BaseHref+"projects/Residential/MultiFamily/Condominiums/LoganSmall.jpg>","projects/Residential/MultiFamily/Condominiums/logan.html","",0,64,64,"","","","","","",-1,-1,-1,"","");
			Menu1_2_2_9=new Array("Ocean View Condominiums","projects/Residential/MultiFamily/Condominiums/ocean.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu1_2_2_9_1=new Array("<img src="+BaseHref+">","projects/Residential/MultiFamily/Condominiums/ocean.html","",0,0,0,"","","","","","",-1,-1,-1,"","");			
			Menu1_2_2_10=new Array("Short Beach Condominiums","projects/Residential/MultiFamily/Condominiums/short.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu1_2_2_10_1=new Array("<img src="+BaseHref+"projects/Residential/MultiFamily/Condominiums/ShortSmall.jpg>","projects/Residential/MultiFamily/Condominiums/short.html","",0,64,64,"","","","","","",-1,-1,-1,"","");			
			Menu1_2_2_11=new Array("Water Street Condominiums","projects/Residential/MultiFamily/Condominiums/water.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu1_2_2_11_1=new Array("<img src="+BaseHref+"projects/Residential/MultiFamily/Condominiums/WaterSmall.jpg>","projects/Residential/MultiFamily/Condominiums/water.html","",0,64,64,"","","","","","",-1,-1,-1,"","");			
		Menu1_2_3=new Array("Townhouses","","",3,15,100,"","","","","","",-1,-1,-1,"","");
			Menu1_2_3_1=new Array("Manning Street Townhouses","projects/Residential/MultiFamily/Townhouses/manning.html","",1,15,160,"","","","","","",-1,-1,-1,"","");
						Menu1_2_3_1_1=new Array("<img src="+BaseHref+"projects/Residential/MultiFamily/Townhouses/ManningSmall.jpg>","projects/Residential/MultiFamily/Townhouses/manning.html","",0,64,64,"","","","","","",-1,-1,-1,"","");			
			Menu1_2_3_2=new Array("Sumner Court Townhouses","projects/Residential/MultiFamily/Townhouses/sumner.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu1_2_3_2_1=new Array("<img src="+BaseHref+"projects/Residential/MultiFamily/Townhouses/SumnerSmall.jpg>","projects/Residential/MultiFamily/Townhouses/sumner.html","",0,64,64,"","","","","","",-1,-1,-1,"","");						
			Menu1_2_3_3=new Array("Tannery Village","projects/Residential/MultiFamily/Townhouses/tannery.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu1_2_3_3_1=new Array("<img src="+BaseHref+"projects/Residential/MultiFamily/Townhouses/TannerySmall.jpg>","projects/Residential/MultiFamily/Townhouses/tannery.html","",0,64,64,"","","","","","",-1,-1,-1,"","");						
Menu2=new Array("Commercial Retails","","",9,15,110,"","","","","","",-1,-1,-1,"","");
		Menu2_1=new Array("Arlington Commercial Center","projects/CommercialRetail/arlington.html","",1,15,160,"","","","","","",-1,-1,-1,"","");
						Menu2_1_1=new Array("<img src="+BaseHref+"projects/CommercialRetail/ArlingtonSmall.jpg>","projects/CommercialRetail/arlington.html","",0,64,64,"","","","","","",-1,-1,-1,"","");
		Menu2_2=new Array("Bank of New England","projects/CommercialRetail/bank.html","",1,15,100,"","","","","","",-1,-1,-1,"","");
						Menu2_2_1=new Array("<img src="+BaseHref+"projects/CommercialRetail/BankSmall.jpg>","projects/CommercialRetail/bank.html","",0,64,64,"","","","","","",-1,-1,-1,"","");		
		Menu2_3=new Array("Broadway Plaza","projects/CommercialRetail/broadway.html","",1,15,100,"","","","","","",-1,-1,-1,"","");
						Menu2_3_1=new Array("<img src="+BaseHref+"projects/CommercialRetail/BroadwaySmall.jpg>","projects/CommercialRetail/broadway.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu2_4=new Array("Brook's Drive R&D Addition","projects/CommercialRetail/brooks.html","",1,15,100,"","","","","","",-1,-1,-1,"","");
						Menu2_4_1=new Array("<img src="+BaseHref+"projects/CommercialRetail/BrooksSmall.jpg>","projects/CommercialRetail/brooks.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu2_5=new Array("Commercial Retail Mall","projects/CommercialRetail/commercial.html","",1,15,100,"","","","","","",-1,-1,-1,"","");
						Menu2_5_1=new Array("<img src="+BaseHref+"projects/CommercialRetail/CommercialSmall.jpg>","projects/CommercialRetail/commercial.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu2_6=new Array("Franklin Commercial Mall","projects/CommercialRetail/franklin.html","",1,15,100,"","","","","","",-1,-1,-1,"","");
						Menu2_6_1=new Array("<img src="+BaseHref+"projects/CommercialRetail/FranklinSmall.jpg>","projects/CommercialRetail/franklin.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu2_7=new Array("Garden City Plaza","projects/CommercialRetail/garden.html","",1,15,100,"","","","","","",-1,-1,-1,"","");
						Menu2_7_1=new Array("<img src="+BaseHref+"projects/CommercialRetail/GardenSmall.jpg>","projects/CommercialRetail/garden.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu2_8=new Array("Marston Street Commercial Mall","projects/CommercialRetail/marston.html","",1,15,100,"","","","","","",-1,-1,-1,"","");
						Menu2_8_1=new Array("<img src="+BaseHref+"projects/CommercialRetail/MarstonSmall.jpg>","projects/CommercialRetail/marston.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu2_9=new Array("West Central Mall","projects/CommercialRetail/west.html","",1,15,100,"","","","","","",-1,-1,-1,"","");
						Menu2_9_1=new Array("<img src="+BaseHref+"projects/CommercialRetail/WestSmall.jpg>","projects/CommercialRetail/west.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
Menu3=new Array("Historic Renovation","","",9,15,100,"","","","","","",-1,-1,-1,"","");
		Menu3_1=new Array("Church Court Condominiums","projects/HistoricRenovation/church.html","",1,15,170,"","","","","","",-1,-1,-1,"","");
						Menu3_1_1=new Array("<img src="+BaseHref+"projects/HistoricRenovation/ChurchSmall.jpg>","projects/HistoricRenovation/church.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu3_2=new Array("Coyne Professional Building","projects/HistoricRenovation/coyne.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu3_2_1=new Array("<img src="+BaseHref+"projects/HistoricRenovation/CoyneSmall.jpg>","projects/HistoricRenovation/coyne.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu3_3=new Array("Israel Putnam School","projects/HistoricRenovation/israel.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu3_3_1=new Array("<img src="+BaseHref+"projects/HistoricRenovation/IsraelSmall.jpg>","projects/HistoricRenovation/israel.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu3_4=new Array("Keith Academy Condominiums II","projects/HistoricRenovation/keith.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu3_4_1=new Array("<img src="+BaseHref+"projects/HistoricRenovation/KeithSmall.jpg>","projects/HistoricRenovation/keith.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu3_5=new Array("Lewis School Office Park","projects/HistoricRenovation/lewis.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu3_5_1=new Array("<img src="+BaseHref+"projects/HistoricRenovation/LewisSmall.jpg>","projects/HistoricRenovation/lewis.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu3_6=new Array("Marston Manor","projects/HistoricRenovation/marston.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu3_6_1=new Array("<img src="+BaseHref+"projects/HistoricRenovation/MarstonSmall.jpg>","projects/HistoricRenovation/marston.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu3_7=new Array("Olde Railroad Square","projects/HistoricRenovation/olde.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu3_7_1=new Array("<img src="+BaseHref+"projects/HistoricRenovation/OldeSmall.jpg>","projects/HistoricRenovation/olde.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu3_8=new Array("Owens Corning Mill Conversion","projects/HistoricRenovation/owens.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu3_8_1=new Array("<img src="+BaseHref+"projects/HistoricRenovation/OwensSmall.jpg>","projects/HistoricRenovation/owens.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu3_9=new Array("Peabody School Condominiums","projects/HistoricRenovation/peabody.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu3_9_1=new Array("<img src="+BaseHref+"projects/HistoricRenovation/PeabodySmall.jpg>","projects/HistoricRenovation/peabody.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
Menu4=new Array("Institutional","","",4,15,70,"","","","","","",-1,-1,-1,"","");
		Menu4_1=new Array("Sikh Dharma Gurudwara","projects/Institutional/gurudwara.html","",1,15,180,"","","","","","",-1,-1,-1,"","");
						Menu4_1_1=new Array("<img src="+BaseHref+"projects/Institutional/GurudwaraSmall.jpg>","projects/Institutional/gurudwara.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu4_2=new Array("Sikh Dharma Master Plan","projects/Institutional/master.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu4_2_1=new Array("<img src="+BaseHref+"projects/Institutional/MasterSmall.jpg>","projects/Institutional/master.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu4_3=new Array("Sikh Dharma Residential Eight Unit","projects/Institutional/r8.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu4_3_1=new Array("<img src="+BaseHref+"projects/Institutional/r8Small.jpg>","projects/Institutional/r8.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu4_4=new Array("Sikh Dharma Residential Four Unit","projects/Institutional/r4.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu4_4_1=new Array("<img src="+BaseHref+"projects/Institutional/r4Small.jpg>","projects/Institutional/r4.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
Menu5=new Array("Office","","",13,15,50,"","","","","","",-1,-1,-1,"","");
		Menu5_1=new Array("456 Medford Street, Charlestown, MA","projects/Office/456.html","",1,15,200,"","","","","","",-1,-1,-1,"","");
						Menu5_1_1=new Array("<img src="+BaseHref+"projects/Office/456Small.jpg>","projects/Office/456.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu5_2=new Array("Baldwin Park Office Building No. Two","projects/Office/baldwintwo.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu5_2_1=new Array("<img src="+BaseHref+"projects/Office/BaldwintwoSmall.jpg>","projects/Office/baldwintwo.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu5_3=new Array("Baldwin Park Office Building No. One","projects/Office/baldwinone.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu5_3_1=new Array("<img src="+BaseHref+"projects/Office/BaldwinoneSmall.jpg>","baldwinone.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu5_4=new Array("Beacon Court Office Building","projects/Office/beacon.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu5_4_1=new Array("<img src="+BaseHref+"projects/Office/BeaconSmall.jpg>","projects/Office/beacon.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu5_5=new Array("Building No. 4, Corporate Office","projects/Office/building4.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu5_5_1=new Array("<img src="+BaseHref+"projects/Office/Building4Small.jpg>","projects/Office/building4.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu5_6=new Array("Building No. 2, Corporate Office Building","projects/Office/building2.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu5_6_1=new Array("<img src="+BaseHref+"projects/Office/Building2Small.jpg>","projects/Office/building2.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu5_7=new Array("Damon Proffesional Building","projects/Office/damon.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu5_7_1=new Array("<img src="+BaseHref+"projects/Office/DamonSmall.jpg>","projects/Office/damon.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu5_8=new Array("Marr Office Building","projects/Office/marr.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu5_8_1=new Array("<img src="+BaseHref+"projects/Office/MarrSmall.jpg>","projects/Office/marr.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu5_9=new Array("Patriot Bank Park 2 and 4","projects/Office/patriot.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu5_9_1=new Array("<img src="+BaseHref+"projects/Office/PatriotSmall.jpg>","projects/Office/patriot.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu5_10=new Array("The Broadway Office Building","projects/Office/broadway.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu5_10_1=new Array("<img src="+BaseHref+"projects/Office/BroadwaySmall.jpg>","projects/Office/broadway.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu5_11=new Array("The Winchester Office Building","projects/Office/winchester.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu5_11_1=new Array("<img src="+BaseHref+"projects/Office/WinchesterSmall.jpg>","projects/Office/winchester.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu5_12=new Array("Washington Allston Office Building","projects/Office/washington.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu5_12_1=new Array("<img src="+BaseHref+"projects/Office/WashingtonSmall.jpg>","projects/Office/washington.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu5_13=new Array("Waverly Oaks Office Building No. One","projects/Office/waverly.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu5_13_1=new Array("<img src="+BaseHref+"projects/Office/WaverlySmall.jpg>","projects/Office/waverly.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
Menu6=new Array("Planning","","",9,15,60,"","","","","","",-1,-1,-1,"","");
		Menu6_1=new Array("Carysfort Yacht Club","projects/Planning/carysfort.html","",1,15,200,"","","","","","",-1,-1,-1,"","");
						Menu6_1_1=new Array("<img src="+BaseHref+"projects/Planning/CarysfortSmall.jpg>","projects/Planning/carysfort.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu6_2=new Array("Economic Development Program","projects/Planning/economic.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu6_2_1=new Array("<img src="+BaseHref+"projects/Planning/EconomicSmall.jpg>","projects/Planning/economic.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu6_3=new Array("Gould Office Park","projects/Planning/gould.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu6_3_1=new Array("<img src="+BaseHref+"projects/Planning/GouldSmall.jpg>","projects/Planning/gould.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu6_4=new Array("Island Street Mill","projects/Planning/island.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu6_4_1=new Array("<img src="+BaseHref+"projects/Planning/IslandSmall.jpg>","projects/Planning/island.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu6_5=new Array("Northampton State Hospital Re-Use Plan","projects/Planning/northampton.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu6_5_1=new Array("<img src="+BaseHref+"projects/Planning/NorthamptonSmall.jpg>","projects/Planning/northampton.html","",0,64,64,"","","","","","",-1,-1,-1,"","")								
		Menu6_6=new Array("Royal Palm Plaza","projects/Planning/royal.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu6_6_1=new Array("<img src="+BaseHref+"projects/Planning/RoyalSmall.jpg>","projects/Planning/royal.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu6_7=new Array("Urban Design Study","projects/Planning/urban.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu6_7_1=new Array("<img src="+BaseHref+"projects/Planning/UrbanSmall.jpg>","projects/Planning/urban.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu6_8=new Array("Urban Design Study II","projects/Planning/urban2.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu6_8_1=new Array("<img src="+BaseHref+"projects/Planning/Urban2Small.jpg>","projects/Planning/urban2.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu6_9=new Array("Urban Design Study III","projects/Planning/urban3.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu6_9_1=new Array("<img src="+BaseHref+"projects/Planning/Urban3Small.jpg>","projects/Planning/urban3.html","",0,64,64,"","","","","","",-1,-1,-1,"","")								
Menu7=new Array("Public Govt.","","",9,15,70,"","","","","","",-1,-1,-1,"","");
		Menu7_1=new Array("Boyden Hall","projects/PublicGovt/boyden.html","",1,15,170,"","","","","","",-1,-1,-1,"","");
						Menu7_1_1=new Array("<img src="+BaseHref+"projects/PublicGovt/BoydenSmall.jpg>","projects/PublicGovt/boyden.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu7_2=new Array("Cape Cod Commuter Rail","projects/PublicGovt/cape.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu7_2_1=new Array("<img src="+BaseHref+"projects/PublicGovt/CapeSmall.jpg>","projects/PublicGovt/cape.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu7_3=new Array("Essex Station","projects/PublicGovt/essex.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu7_3_1=new Array("<img src="+BaseHref+"projects/PublicGovt/EssexSmall.jpg>","projects/PublicGovt/essex.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu7_4=new Array("Lower Mill Library","projects/PublicGovt/lower.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu7_4_1=new Array("<img src="+BaseHref+"projects/PublicGovt/LowerSmall.jpg>","projects/PublicGovt/lower.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu7_5=new Array("Mass Correctional Facility Norfolk II","projects/PublicGovt/massnorfolk2.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu7_5_1=new Array("<img src="+BaseHref+"projects/PublicGovt/Massnorfolk2Small.jpg>","projects/PublicGovt/massnorfolk2.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu7_6=new Array("Mass Correctional Inst. Shirley","projects/PublicGovt/massshirley.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu7_6_1=new Array("<img src="+BaseHref+"projects/PublicGovt/MassshirleySmall.jpg>","projects/PublicGovt/massshirley.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu7_7=new Array("Massachusetts Corr.Facility Norfolk","projects/PublicGovt/massnorfolk.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu7_7_1=new Array("<img src="+BaseHref+"projects/PublicGovt/MassnorfolkSmall.jpg>","projects/PublicGovt/massnorfolk.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu7_8=new Array("MBTA Vent Shafts","projects/PublicGovt/mbta.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu7_8_1=new Array("<img src="+BaseHref+"projects/PublicGovt/MbtaSmall.jpg>","projects/PublicGovt/mbta.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu7_9=new Array("Suffolk Downs Station","projects/PublicGovt/suffolk.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu7_9_1=new Array("<img src="+BaseHref+"projects/PublicGovt/SuffolkSmall.jpg>","projects/PublicGovt/suffolk.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
Menu8=new Array("Rehabilitation","","",9,15,80,"","","","","","",-1,-1,-1,"","");
		Menu8_1=new Array("Charlwell House","projects/Rehabilitation/charlwell.html","",1,15,150,"","","","","","",-1,-1,-1,"","");
						Menu8_1_1=new Array("<img src="+BaseHref+"projects/Rehabilitation/CharlwellSmall.jpg>","projects/Rehabilitation/charlwell.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu8_2=new Array("Children's Village School","projects/Rehabilitation/children.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu8_2_1=new Array("<img src="+BaseHref+"projects/Rehabilitation/ChildrenSmall.jpg>","projects/Rehabilitation/children.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu8_3=new Array("Coate Leather Building","projects/Rehabilitation/coate.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu8_3_1=new Array("<img src="+BaseHref+"projects/Rehabilitation/CoateSmall.jpg>","projects/Rehabilitation/coate.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu8_4=new Array("Hollywell","projects/Rehabilitation/hollywell.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu8_4_1=new Array("<img src="+BaseHref+"projects/Rehabilitation/HollywellSmall.jpg>","projects/Rehabilitation/hollywell.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu8_5=new Array("Lahey Clinic Medical Center","projects/Rehabilitation/lahey.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu8_5_1=new Array("<img src="+BaseHref+"projects/Rehabilitation/LaheySmall.jpg>","projects/Rehabilitation/lahey.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu8_6=new Array("Milton Health Care","projects/Rehabilitation/milton.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu8_6_1=new Array("<img src="+BaseHref+"projects/Rehabilitation/MiltonSmall.jpg>","projects/Rehabilitation/milton.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu8_7=new Array("Residential  Care Units","","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu8_7_1=new Array("<img src="+BaseHref+"projects/Rehabilitation/ResidentialSmall.jpg>","","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu8_8=new Array("Resthaven Congregate Care Facility","projects/Rehabilitation/resthaven.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu8_8_1=new Array("<img src="+BaseHref+"projects/Rehabilitation/ResthavenSmall.jpg>","projects/Rehabilitation/resthaven.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu8_9=new Array("Vna","projects/Rehabilitation/vna.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu8_9_1=new Array("<img src="+BaseHref+"projects/Rehabilitation/VnaSmall.jpg>","projects/Rehabilitation/Vna.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
Menu9=new Array("Ongoing Projects","","",12,15,100,"","","","","","",-1,-1,-1,"","");
		Menu9_1=new Array("Atlantis Marina","projects/Ongoing/atlantis.html","",1,15,121,"","","","","","",-1,-1,-1,"","");
						Menu9_1_1=new Array("<img src="+BaseHref+"projects/Ongoing/AtlantisSmall.jpg>","projects/Ongoing/atlantis.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu9_2=new Array("Brickworks","projects/Ongoing/bricworks.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu9_2_1=new Array("<img src="+BaseHref+"projects/Ongoing/BrickworksSmall.jpg>","projects/Ongoing/brickworks.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu9_3=new Array("Crystal Cove","projects/Ongoing/crystal.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu9_3_1=new Array("<img src="+BaseHref+"projects/Ongoing/CrystalSmall.jpg>","projects/Ongoing/crystal.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu9_4=new Array("Cypress","projects/Ongoing/cypress.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu9_4_1=new Array("<img src="+BaseHref+"projects/Ongoing/CypressSmall.jpg>","projects/Ongoing/cypress.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu9_5=new Array("Dunkin Donuts","projects/Ongoing/dunkin.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu9_5_1=new Array("<img src="+BaseHref+"projects/Ongoing/DunkinSmall.jpg>","projects/Ongoing/dunkin.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu9_6=new Array("Everett","projects/Ongoing/everett.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu9_6_1=new Array("<img src="+BaseHref+"projects/Ongoing/EverettSmall.jpg>","projects/Ongoing/everett.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu9_7=new Array("Green Street","projects/Ongoing/green.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu9_7_1=new Array("<img src="+BaseHref+"projects/Ongoing/GreenSmall.jpg>","projects/Ongoing/green.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu9_8=new Array("McKinley Lofts","projects/Ongoing/mckinley.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu9_8_1=new Array("<img src="+BaseHref+"projects/Ongoing/MckinleySmall.jpg>","projects/Ongoing/mckinley.html","",0,64,64,"","","","","","",-1,-1,-1,"","")
		Menu9_9=new Array("Mystic Valley School","projects/Ongoing/mystic.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu9_9_1=new Array("<img src="+BaseHref+"projects/Ongoing/MysticSmall.jpg>","projects/Ongoing/mystic.html","",0,64,64,"","","","","","",-1,-1,-1,"","")						
		Menu9_10=new Array("Newton Church","projects/Ongoing/newton.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu9_10_1=new Array("<img src="+BaseHref+"projects/Ongoing/NewtonSmall.jpg>","projects/Ongoing/newton.html","",0,64,64,"","","","","","",-1,-1,-1,"","")						
		Menu9_11=new Array("Purchase Street","projects/Ongoing/purchase.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu9_11_1=new Array("<img src="+BaseHref+"projects/Ongoing/PurchaseSmall.jpg>","projects/Ongoing/purchase.html","",0,64,64,"","","","","","",-1,-1,-1,"","")						
		Menu9_12=new Array("Shaws Landing","projects/Ongoing/shaws.html","",1,15,0,"","","","","","",-1,-1,-1,"","");
						Menu9_12_1=new Array("<img src="+BaseHref+"projects/Ongoing/ShawsSmall.jpg>","projects/Ongoing/shaws.html","",0,64,64,"","","","","","",-1,-1,-1,"","")																								
