 /***********************************************
*	(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=16;			// 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="black";			// Background color when mouse is not over
	var HighBgColor="black";			// Background color when mouse is over
	var FontLowColor="#FF0000";			// Font color when mouse is not over
	var FontHighColor="#C0C0C0";			// Font color when mouse is over
	var BorderColor="black";			// Border color
	var BorderWidthMain=0;			// Border width main items
	var BorderWidthSub=0;			// Border width sub items
 	var BorderBtwnMain=0;			// Border width between elements main items
	var BorderBtwnSub=0;			// Border width between elements sub items
	var FontFamily="times new roman,arial,comic sans ms,technical";	// Font family menu items
	var FontSize=14;				// Font size menu items
	var FontBold=1;				// 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="left";			// Menu horizontal position can be: left, center, right
	var MenuVerticalCentered="top";		// Menu vertical position top, middle,bottom or static
	var ChildOverlap=0;			// horizontal overlap child/ parent
	var ChildVerticalOverlap=0;			// vertical overlap child/ parent
	var StartTop=95;				// Menu offset x coordinate
	var StartLeft=1;				// Menu offset y coordinate
	var VerCorrect=0;				// Multiple frames y correction
	var HorCorrect=0;				// Multiple frames x correction
	var DistFrmFrameBrdr=0;			// 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=0;			// Number defines to which level the menu must unfold horizontal; 0 is all vertical
	var MenuFramesVertical=1;			// Frames in cols or rows 1 or 0
	var DissapearDelay=500;			// delay before menu folds in
	var UnfoldDelay=100;			// delay before sub unfolds	
	var TakeOverBgColor=0;			// Menu frame takes over background color subitem frame
	var FirstLineFrame="contents";			// Frame where first level appears
	var SecLineFrame="main";			// Frame where sub levels appear
	var DocTargetFrame="main";		// 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.portsdown-tunnels.org.uk/";		
//var BaseHref="file:///D:/aaad/ORG%20Portsdown_Tunnel_Web/";				// 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/MyFile.htm",
						// the script renders to: "http://www.MyDomain/subdir/MyFile.htm"
						// 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:///D:/aaad/ORG%20Portsdown_Tunnel_Web/" 

	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=0;			// 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=3)";

	var MenuOpacity="";
	//var MenuOpacity="progid:DXImageTransform.Microsoft.Alpha(opacity=100)";

	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("Home","home_page.html","",0,20,175,"","","","","","",-1,-1,-1,"","");
	
Menu2=new Array("All About This Website","","",6,20,175,"","","","","","",-1,-1,-1,"","");
	Menu2_1=new Array("TheAuthor","website/author.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	
	Menu2_2=new Array("The Website","website/website.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	
	Menu2_3=new Array("MinorUpdates","website/minor_updates.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	
	Menu2_4=new Array("Site Index","website/site_index.html","",0,20,150,"","","","","","",-1,-1,-1,"","");
	Menu2_5=new Array("FAQs","website/faq.html","",0,20,150,"","","","","","",-1,-1,-1,"","");
	Menu2_6=new Array("2006 April Fool","website/russian_silo.html","",0,20,150,"","","","","","",-1,-1,-1,"","");		

Menu3=new Array("All About Portsdown","","",5,20,165,"","","","","","",-1,-1,-1,"","");
	Menu3_1=new Array("About Portsdown","portsdown/about_portsdown.html","",0,20,150,"","","","","","",-1,-1,-1,"","");
	Menu3_2=new Array("Aerial Photographs","portsdown/aerial_photos.html","",0,20,150,"","","","","","",-1,-1,-1,"","");
	Menu3_3=new Array("Aerial Locations","portsdown/aerial_locations.html","",0,20,150,"","","","","","",-1,-1,-1,"","");
	Menu3_4=new Array("Panoramic Locations","portsdown/panorama.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	
	Menu3_5=new Array("Portsdown Location","portsdown/uk_location.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	
		
		
Menu3_5=new Array("Portsdown Walks","","",3,20,150,"","","","","","",-1,-1,-1,"","");
	Menu3_5_1=new Array("Walk 1","portsdown/walk01.html","",0,20,80,"","","","","","",-1,-1,-1,"","");	
	Menu3_5_2=new Array("Walk 2","portsdown/walk02.html","",0,20,80,"","","","","","",-1,-1,-1,"","");	
	Menu3_5_3=new Array("Walk 3","portsdown/walk03.html","",0,20,80,"","","","","","",-1,-1,-1,"","");	

Menu4=new Array("Caves & Pits","","",3,20,165,"","","","","","",-1,-1,-1,"","");
	Menu4_1=new Array("Caves & Caverns","caves_pits/caves.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	
	Menu4_2=new Array("Fort Southwick midden","caves_pits/fort_southwick_cesspits.html","",0,20,150,"","","","","","",-1,-1,-1,"","");		
	Menu4_3=new Array("Fort Widley midden","caves_pits/fort_widley_cesspits.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	

Menu5=new Array("Cold War Sites","","",5,20,165,"","","","","","",-1,-1,-1,"","");
	Menu5_1=new Array("General information","cold_war/cold_war_info.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	
	Menu5_2=new Array("Civil defence bunker","cold_war/widley_bunker_p1.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	
	Menu5_3=new Array("Fort Southwick","cold_war/fort_southwick.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	
	Menu5_4=new Array("GPO repeater station","cold_war/repeater_station.html","",0,20,150,"","","","","","",-1,-1,-1,"","");
	Menu5_5=new Array("ROC monitoring post","cold_war/roc_monitoring_post.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	

Menu6=new Array("Historic Events","","",3,20,165,"","","","","","",-1,-1,-1,"","");
	Menu6_1=new Array("Cosham war diaries","events/cosham_war_diaries.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	
	Menu6_2=new Array("Grenade accident","events/grenade_accident.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	
	Menu6_3=new Array("WWII photos","events/portsdown_ww2_photos_p1.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	

Menu7=new Array("Invasion Defences","","",4,20,165,"","","","","","",-1,-1,-1,"","");
	Menu7_1=new Array("Interdiction Battery","invasion_defences/interdiction_site_p1.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	
Menu7_2=new Array("Pillboxes","","",2,20,150,"","","","","","",-1,-1,-1,"","");	
		Menu7_2_1=new Array("Pinks Hill","invasion_defences/pinks_pill_box.html","",0,20,150,"","","","","","",-1,-1,-1,"","");
		Menu7_2_2=new Array("Racecourse Lane","invasion_defences/racecourse_lane_pillbox.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	
	Menu7_3=new Array("Spigot Mortar","invasion_defences/spigot_mortar.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	
	Menu7_4=new Array("WWI Redoubt","invasion_defences/langstone_redoubt.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	

Menu8=new Array("Legends & Mysteries","","",4,20,165,"","","","","","",-1,-1,-1,"","");
	Menu8_1=new Array("Farlington Aqueducts","legends_mysteries/farlington_aqueduct_p1.html","",0,20,150,"","","","","","",-1,-1,-1,"","");
	Menu8_2=new Array("Fort Purbrook","","",1,20,150,"","","","","","",-1,-1,-1,"","");	
		Menu8_2_1=new Array("Tunnel No1","legends_mysteries/palmerston_forts_p1.html","",0,20,150,"","","","","","",-1,-1,-1,"","");
	Menu8_3=new Array("Hillsley Road","legends_mysteries/hillsley_road_p1.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	
	Menu8_4=new Array("Various","legends_mysteries/legends_mysteries.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	

Menu9=new Array("Naval Fuel Bunkers","","",2,20,170,"","","","","","",-1,-1,-1,"","");
	Menu9_1=new Array("The Bunkers","fuel_bunkers/fuel_bunkers_p1.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	
	Menu9_2=new Array("The Pipeline","fuel_bunkers/fuel_pipeline_p1.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	
	
Menu10=new Array("Palmerston Forts","","",4,20,165,"","","","","","",-1,-1,-1,"","");
	Menu10_1=new Array("Fort Nelson","surface_sites/haa_guns_p2.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	
	Menu10_2=new Array("Fort Southwick","","",2,20,150,"","","","","","",-1,-1,-1,"","");	
		Menu10_2_1=new Array("UGHQ","palmerston_forts/fort_southwick/1_overview_p1.html","",0,20,150,"","","","","","",-1,-1,-1,"","");
		Menu10_2_2=new Array("COMMCEN","cold_war/fort_southwick.html","",0,20,150,"","","","","","",-1,-1,-1,"","");
	Menu10_3=new Array("Fort Widley","cold_war/widley_bunker_p1.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	
	Menu10_4=new Array("Fort Purbrook","","",3,20,150,"","","","","","",-1,-1,-1,"","");	
		Menu10_4_1=new Array("Tunnel No1","legends_mysteries/palmerston_forts_p1.html","",0,20,150,"","","","","","",-1,-1,-1,"","");
		Menu10_4_2=new Array("Tunnel No2","palmerston_forts/fort_purbrook/tunnel_no2_p1.html","",0,20,150,"","","","","","",-1,-1,-1,"","");
		Menu10_4_3=new Array("Tunnel No3","palmerston_forts/fort_purbrook/tunnel_no3_p1.html","",0,20,150,"","","","","","",-1,-1,-1,"","");

Menu11=new Array("Paulsgrove","","",3,20,165,"","","","","","",-1,-1,-1,"","");
	Menu11_1=new Array("Chalk Pit","","",3,20,150,"","","","","","",-1,-1,-1,"","");	
		Menu11_1_1=new Array("The chalk pit","paulsgrove/chalkpit/paulsgrove_chalkpit_info.html","",0,20,150,"","","","","","",-1,-1,-1,"","");
		Menu11_1_2=new Array("Cooper shelter","paulsgrove/chalkpit/cooper_shelter.html","",0,20,150,"","","","","","",-1,-1,-1,"","");
		Menu11_1_3=new Array("D-day radio station","paulsgrove/chalkpit/radio_station_p1.html","",0,20,150,"","","","","","",-1,-1,-1,"","");
	Menu11_2=new Array("Estate","paulsgrove/estate/paulsgrove_p1.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	
	Menu11_3=new Array("Racecourse","paulsgrove/racecourse/racecourse_p1.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	
		
Menu12=new Array("Pre 1850 sites","","",5,20,165,"","","","","","",-1,-1,-1,"","");
	Menu12_1=new Array("Bevis long barrow","ancient_sites/bevis_long_barrow.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	
	Menu12_2=new Array("Burial Ground","ancient_sites/southwick_burial_p1.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	
	Menu12_3=new Array("Gob's long barrow","ancient_sites/gobs_long_barrow.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	
	Menu12_4=new Array("Mediaeval Church","ancient_sites/widley_church.html","",0,20,150,"","","","","","",-1,-1,-1,"","");
	Menu12_5=new Array("Portsdown Telegraph","ancient_sites/telegraph_p1.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	

Menu13=new Array("Surface Sites","","",5,20,165,"","","","","","",-1,-1,-1,"","");
Menu13_1=new Array("Memorials","","",7,20,150,"","","","","","",-1,-1,-1,"","");
	
	Menu13_1_1=new Array("Dead Mans Copse","surface_sites/memorials/crookhorn_p1.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	
	Menu13_1_2=new Array("Falklands Plantation","surface_sites/memorials/falklands_plantation.html","",0,20,150,"","","","","","",-1,-1,-1,"","");
	Menu13_1_3=new Array("F/O J Tillett","surface_sites/memorials/tillett.html","",0,20,150,"","","","","","",-1,-1,-1,"","");			
	Menu13_1_4=new Array("Fort Widley","surface_sites/memorials/widley_tunnel.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	
	Menu13_1_5=new Array("Sgt HH Adair","surface_sites/memorials/hurricane_crash_p1.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	
        Menu13_1_6=new Array("Sgt Gallagher","surface_sites/christ_church_p2.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	
	Menu13_1_7=new Array("Sgt Lake","surface_sites/christ_church_p3.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	

	Menu13_2=new Array("Christ Church","surface_sites/christ_church_p1.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	
	Menu13_3=new Array("Portsdown Main","surface_sites/portsdown_main_p1.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	
	Menu13_4=new Array("'Q' decoy site","surface_sites/qsite_p1.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	
	Menu13_5=new Array("WWII heavy AA guns","surface_sites/haa_guns_p1.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	

Menu14=new Array("Tunnel Shelters","","",3,20,165,"","","","","","",-1,-1,-1,"","");
	Menu14_1=new Array("General Information","tunnel_shelters/tunnel_shelter_info_p1.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	
	Menu14_2=new Array("London Road","tunnel_shelters/london_road_shelter_p1.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	
	Menu14_3=new Array("Wymering","tunnel_shelters/wymering_shelter_p1.html","",0,20,150,"","","","","","",-1,-1,-1,"","");	

Menu15=new Array("Links","links.html","",0,20,165,"","","","","","",-1,-1,-1,"","");

Menu16=new Array("E-mail Bob Hunt","email.html","",0,20,165,"","","","","","",-1,-1,-1,"","");
