
 /***********************************************
*	(c) Ger Versluis 2000 version 13.20 October 12, 2005    *
*	You may use this script on non commercial sites.	          *
*	www.burmees.nl/menu			          *
*	You may remove all comments for faster loading	          *		
************************************************/
	var NoOffFirstLineMenus=7;			// 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="#800000";			// Background color when mouse is not over
	var HighBgColor="#FFCC66";			// Background color when mouse is over
	var FontLowColor="white";			// Font color when mouse is not over
	var FontHighColor="black";			// Font color when mouse is over
	var BorderColor="black";			// 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=0;			// Border width between elements sub items
	var FontFamily="arial,tahoma,times";	// Font family menu items
	var FontSize=12;				// Font size menu items
	var FontBold=0;					// Bold menu items 1 or 0
	var FontItalic=0;				// Italic menu items 1 or 0
	var MenuTextCentered="center";		// Item text position left, center or right
	var MenuCentered="center";			// Menu horizontal position can be: left, center, right
	var MenuVerticalCentered="top";		// Menu vertical position top, middle,bottom or static
	var ChildOverlap=.1;		  			// horizontal overlap child/ parent
	var ChildVerticalOverlap=.1;		// vertical overlap child/ parent
	var StartTop=10;				// 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=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=1;			// 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=50;			// delay before menu folds in
	var UnfoldDelay=50;			// 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.bihrmann.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/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:///C|/MyFiles/Homepage/"

	var Arrws="";
						// 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(.......

	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 OverFormElements=0;			// Set this to 0 when the menu does not need to cover form elements.

	var HooverBold=1;				// 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

						// 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 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=75)";

	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" 

// ------------------------- MENUEN STARTER HER ---------------------------

Menu1=new Array("This Site","/","",5,20,110,"","","","","","",-1,-1,-1,"","This Site");
		Menu1_1=new Array("Main Page","/","",0,20,110,"","","","","","",-1,-1,-1,"","Main Page");
		Menu1_2=new Array("Menu","caudiciforms/div/menu.asp","",0,20,110,"","","","","","",-1,-1,-1,"","Menu");
		Menu1_3=new Array("Grapich Site Map","caudiciforms/div/navi.asp","",0,20,110,"","","","","","",-1,-1,-1,"","Grapich Site Map");
		Menu1_4=new Array("Contact","mail.asp","",0,20,110,"","","","","","",-1,-1,-1,"","E-Mail");
		Menu1_5=new Array("Hit Counter","databaser/hit-count.asp","",0,20,110,"","","","","","",-1,-1,-1,"","Hit Counter");
		
Menu2=new Array("The Plants","caudiciforms/","",5,20,100,"","","","","","",-1,-1,-1,"","The Plants");
	Menu2_1=new Array("MainPage","caudiciforms/","",2,20,130,"","","","","","",-1,-1,-1,"","Main Page");	
		Menu2_1_1=new Array("Grapich Site Map","caudiciforms/div/navi.asp","",0,20,100,"","","","","","",-1,-1,-1,"","Grapich Map");
		Menu2_1_2=new Array("Colour Menu","caudiciforms/div/menu.asp","",0,20,1000,"","","","","","",-1,-1,-1,"","Colour Map");
	Menu2_2=new Array("Introduction","caudiciforms/div/intro.asp","",0,20,110,"","","","","","",-1,-1,-1,"","Introduction");	
	Menu2_3=new Array("Sort by Name","caudiciforms/div/a.asp","",13,20,120,"","","","","","",-1,-1,-1,"","Sort by Name");
		Menu2_3_1=new Array("Plants A","caudiciforms/div/a.asp","",0,20,100,"","","","","","",-1,-1,-1,"","Plants A");
		Menu2_3_2=new Array("Plants B","caudiciforms/div/b.asp","",0,20,100,"","","","","","",-1,-1,-1,"","Plants B");
		Menu2_3_3=new Array("Plants C","caudiciforms/div/C.asp","",0,20,100,"","","","","","",-1,-1,-1,"","Plants C");
		Menu2_3_4=new Array("Plants D","caudiciforms/div/D.asp","",0,20,100,"","","","","","",-1,-1,-1,"","Plants D");
		Menu2_3_5=new Array("Plants E","caudiciforms/div/E.asp","",0,20,100,"","","","","","",-1,-1,-1,"","Plants E");
		Menu2_3_6=new Array("Plants FGH","caudiciforms/div/FGH.asp","",0,20,100,"","","","","","",-1,-1,-1,"","Plants FGH");
		Menu2_3_7=new Array("Plants IJKL","caudiciforms/div/IJKL.asp","",0,20,100,"","","","","","",-1,-1,-1,"","Plants IJKL");
		Menu2_3_8=new Array("Plants M","caudiciforms/div/M.asp","",0,20,100,"","","","","","",-1,-1,-1,"","Plants M");
		Menu2_3_9=new Array("Plants NO","caudiciforms/div/NO.asp","",0,20,100,"","","","","","",-1,-1,-1,"","Plants NO");
		Menu2_3_10=new Array("Plants P","caudiciforms/div/P.asp","",0,20,100,"","","","","","",-1,-1,-1,"","Plants P");
		Menu2_3_11=new Array("Plants QRS","caudiciforms/div/QRS.asp","",0,20,100,"","","","","","",-1,-1,-1,"","Plants QRS");
		Menu2_3_12=new Array("Plants T","caudiciforms/div/T.asp","",0,20,100,"","","","","","",-1,-1,-1,"","Plants T");
		Menu2_3_13=new Array("Plants UVWXYZ","caudiciforms/div/UVWXYZ.asp","",0,20,100,"","","","","","",-1,-1,-1,"","Plants UVWXYZ");
	Menu2_4=new Array("Sort by Family","caudiciforms/div/sort.asp","",0,20,100,"","","","","","",-1,-1,-1,"","Sorted by Family");
	Menu2_5=new Array("Maintaining Plants","caudiciforms/div/vstt.asp","",2,20,100,"","","","","","",-1,-1,-1,"","Maintaining the Plants");
		Menu2_5_1=new Array("Water, Temp. Light","caudiciforms/div/vstt.asp","",0,20,160,"","","","","","",-1,-1,-1,"","Water, Temp. Light");
		Menu2_5_2=new Array("Dormantsy","caudiciforms/div/dorm.asp","",0,20,100,"","","","","","",-1,-1,-1,"","Dormantsy");
	
		Menu3=new Array("Photos","","",11,20,100,"","","","","","",-1,-1,-1,"","");
		Menu3_1=new Array("Photos","caudiciforms/foto/","",2,20,190,"","","","","","",-1,-1,-1,"","Photos");
			Menu3_1_1=new Array("All the Plants","caudiciforms/foto/","",0,20,100,"","","","","","",-1,-1,-1,"","All Plants");
			Menu3_1_2=new Array("Plant details","caudiciforms/difo/","",0,20,100,"","","","","","",-1,-1,-1,"","Plant details");
		Menu3_2=new Array("South Africa 05","travel/saf/","",8,20,100,"","","","","","",-1,-1,-1,"","South Africa 2005");
			Menu3_2_1=new Array("Eastern Caudiciforms","travel/saf/e-cau/","",0,20,170,"","","","","","",-1,-1,-1,"","Eastern Caudiciforms");
			Menu3_2_2=new Array("Eastern Succulents","travel/saf/e-suc/","",0,20,100,"","","","","","",-1,-1,-1,"","Eastern Succulents");
			Menu3_2_3=new Array("Other Eastern Plants","travel/saf/e-plants/","",0,20,100,"","","","","","",-1,-1,-1,"","Other Eastern Plants");
			Menu3_2_4=new Array("Western Caudiciforms","travel/saf/w-cau/","",0,20,100,"","","","","","",-1,-1,-1,"","Western Caudiciforms");
			Menu3_2_5=new Array("Western Succulents I","tavel/saf/w-suc/","",0,20,100,"","","","","","",-1,-1,-1,"","Western Succulents I");
			Menu3_2_6=new Array("Western Succulents II","travel/saf/w-suc2/","",0,20,100,"","","","","","",-1,-1,-1,"","Western Succulents II");
			Menu3_2_7=new Array("Other Western Plants","travel/saf/w-plants/","",0,20,100,"","","","","","",-1,-1,-1,"","Other Western Plants");
			Menu3_2_8=new Array("Unknown Plants","travel/saf/unknown/","",0,20,100,"","","","","","",-1,-1,-1,"","Unknown Plants");
		Menu3_3=new Array("Madagascar","travel/mad/","",3,20,120,"","","","","","",-1,-1,-1,"","Madagascar");
			Menu3_3_1=new Array("Caudiciforms","travel/mad/caudi/","",0,20,170,"","","","","","",-1,-1,-1,"","Caudiciforms");
			Menu3_3_2=new Array("Other Plants","travel/mad/plant/","",0,20,100,"","","","","","",-1,-1,-1,"","Other Plants");
			Menu3_3_3=new Array("Unknown plants","travel/mad/unkno/","",0,20,100,"","","","","","",-1,-1,-1,"","Unknown Plants");
		Menu3_4=new Array("Mexico","travel/foto/mex-cacti/","",1,20,120,"","","","","","",-1,-1,-1,"","Mexico");
			Menu3_4_1=new Array("Mexico Other Plants","travel/foto/mex-foto/","",0,20,170,"","","","","","",-1,-1,-1,"","Mexico Small");
		Menu3_5=new Array("Argentine","travel/arg/","",3,20,120,"","","","","","",-1,-1,-1,"","Argentine");
			Menu3_5_1=new Array("List of Names","travel/arg/cac.asp","",0,20,170,"","","","","","",-1,-1,-1,"","List of Names");
			Menu3_5_2=new Array("SlideShows","travel/arg/cac/","",0,20,100,"","","","","","",-1,-1,-1,"","SlideShows");
			Menu3_5_3=new Array("Other Plants","travel/arg/oth/","",0,20,100,"","","","","","",-1,-1,-1,"","Other Plants");		
		Menu3_6=new Array("Germany and Holland","travel/foto/kak-foto/","",2,20,120,"","","","","","",-1,-1,-1,"","Germany and Holland");
			Menu3_6_1=new Array("2003","travel/foto/kak-foto/","",0,20,100,"","","","","","",-1,-1,-1,"","2003");
			Menu3_6_2=new Array("2004","travel/foto/cau-foto/","",0,20,100,"","","","","","",-1,-1,-1,"","2004");		
		Menu3_7=new Array("Copenhagen Botanical Garden","caudiciforms/bota/foto/cph/","",0,20,120,"","","","","","",-1,-1,-1,"","Copenhagen Botanical Gardens");	
		Menu3_8=new Array("Database photos","caudiciforms/bota/foto/database/","",0,20,120,"","","","","","",-1,-1,-1,"","Copenhagen Botanical Gardens Database Photos");	
		Menu3_9=new Array("Rikkes Plants","rikke/","",4,20,120,"","","","","","",-1,-1,-1,"","Rikkes Plants");	
			Menu3_9_1=new Array("Rikkes Plants","rikke/foto/","",0,20,170,"","","","","","",-1,-1,-1,"","Rikkes Plants");
			Menu3_9_2=new Array("Cacti Flowers","rikke/difo/cac/","",0,20,100,"","","","","","",-1,-1,-1,"","Cacti Flowers");
			Menu3_9_3=new Array("Orchids","rikke/difo/orc/","",0,20,100,"","","","","","",-1,-1,-1,"","Orchids");
			Menu3_9_4=new Array("Passion","rikke/difo/pas/","",0,20,100,"","","","","","",-1,-1,-1,"","Passion");
		Menu3_10=new Array("Bonaire","caudiciforms/bota/foto/cph/","",2,20,120,"","","","","","",-1,-1,-1,"","Rikkes Plants");	
			Menu3_10_1=new Array("2006","travel/bon/","",0,20,100,"","","","","","",-1,-1,-1,"","Bonaire 2006");
			Menu3_10_2=new Array("2008","travel/bo2/","",0,20,100,"","","","","","",-1,-1,-1,"","Bonaire 2008");
		Menu3_11=new Array("Namibian Caudiciforms","travel/nam/cau-som/","",1,20,120,"","","","","","",-1,-1,-1,"","Namibian Caudiciforms");	
			Menu3_11_1=new Array("All Namibia","travel/nam/","",0,20,100,"","","","","","",-1,-1,-1,"","Namibian Photos");	
		
			
Menu4=new Array("Systematic","","",8,20,100,"","","","","","",-1,-1,-1,"","Systematic");
	Menu4_1=new Array("Taxonomy","","",14,20,140,"","","","","","",-1,-1,-1,"","Taxonomy");
		Menu4_1_1=new Array("Plantae","caudiciforms/div/TAX-MAX.ASP","",0,20,150,"","","","","","",-1,-1,-1,"","Plantae");
		Menu4_1_2=new Array("Equisetopsida","caudiciforms/div/tax-equ.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Equisetopsida");
		Menu4_1_3=new Array("Lycopodiopsida","caudiciforms/div/tax-lyc.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Lycopodiopsida");
		Menu4_1_4=new Array("Psilopsida ","caudiciforms/div/tax-psi.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Psilopsida ");
		Menu4_1_5=new Array("Filicopsida","caudiciforms/div/tax-fil.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Filicopsida");
		Menu4_1_6=new Array("Pinopsida","caudiciforms/div/tax-pin.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Pinopsida");
		Menu4_1_7=new Array("Cycadopsida","caudiciforms/div/tax-cyc.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Cycadopsida");
		Menu4_1_8=new Array("Ginkgoopsida","caudiciforms/div/tax-gin.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Ginkgoopsida");	
		Menu4_1_9=new Array("Ephedraceae","caudiciforms/div/tax-eph.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Ephedraceae");
		Menu4_1_10=new Array("Gnetaceae","caudiciforms/div/tax-gne.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Gnetaceae");	
		Menu4_1_11=new Array("Welwitschiopsida","caudiciforms/div/tax-wel.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Welwitschiopsida");
		Menu4_1_12=new Array("Liliopsida","caudiciforms/div/tax-lil.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Liliopsida");	
		Menu4_1_13=new Array("Magnoliopsida","caudiciforms/div/tax-mag.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Magnoliopsida");	
		Menu4_1_14=new Array("Taxonomy Explanation","caudiciforms/div/taxon.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Taxonomy Explanation");	
	Menu4_2=new Array("The History of Taxonomy","caudiciforms/div/default.asp","",8,20,120,"","","","","","",-1,-1,-1,"","The History of Taxonomy");
		Menu4_2_1=new Array("2650BC-1542","caudiciforms/div/","",0,20,150,"","","","","","",-1,-1,-1,"","2650BC-1542");
		Menu4_2_2=new Array("1583-1690","caudiciforms/div/hist1.asp","",0,20,120,"","","","","","",-1,-1,-1,"","1583-1690");
		Menu4_2_3=new Array("1694-1789","caudiciforms/div/hist2.asp","",0,20,120,"","","","","","",-1,-1,-1,"","1694-1789");
		Menu4_2_4=new Array("1812-1867","caudiciforms/div/hist3.asp","",0,20,120,"","","","","","",-1,-1,-1,"","1812-1867");
		Menu4_2_5=new Array("1875-1826","caudiciforms/div/hist4.asp","",0,20,120,"","","","","","",-1,-1,-1,"","1875-1826");
		Menu4_2_6=new Array("1966-1986","caudiciforms/div/hist5.asp","",0,20,120,"","","","","","",-1,-1,-1,"","1966-1986");
		Menu4_2_7=new Array("1988-2003","caudiciforms/div/hist5.asp","",0,20,120,"","","","","","",-1,-1,-1,"","1988-2003");
		Menu4_2_8=new Array("Carl von Linne","caudiciforms/div/Carl.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Carl von Linne");
	Menu4_3=new Array("From Where are They","caudiciforms/div/from.asp","",7,20,120,"","","","","","",-1,-1,-1,"","From Where are They");
		Menu4_3_1=new Array("Africa","caudiciforms/div/afri.asp","",0,20,150,"","","","","","",-1,-1,-1,"","Africa");
		Menu4_3_2=new Array("Asia","caudiciforms/div/asia.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Asia");
		Menu4_3_3=new Array("Australia","caudiciforms/div/aust.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Australia");
		Menu4_3_4=new Array("Europe","caudiciforms/div/euro.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Europe");
		Menu4_3_5=new Array("Madagascar","caudiciforms/div/mada.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Madagascar");
		Menu4_3_6=new Array("North America","caudiciforms/div/noam.asp","",0,20,120,"","","","","","",-1,-1,-1,"","North America");
		Menu4_3_7=new Array("South America","caudiciforms/div/soam.asp","",0,20,120,"","","","","","",-1,-1,-1,"","South America");
	Menu4_4=new Array("The Families","caudiciforms/fami/fami.asp","",0,20,130,"","","","","","",-1,-1,-1,"","The Families");
	Menu4_5=new Array("Synonymes","caudiciforms/div/syno.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Synonymes");
	Menu4_6=new Array("Other Systems","caudiciforms/div/syno.asp","",15,20,120,"","","","","","",-1,-1,-1,"","Other Systems");
		Menu4_6_1=new Array("Linne 1753","caudiciforms/div/TAX-lin.ASP","",0,20,150,"","","","","","",-1,-1,-1,"","Linne 1753");
		Menu4_6_2=new Array("Hooker 1862","caudiciforms/div/tax-b-h.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Hooker 1862");
		Menu4_6_3=new Array("Wettstein 1901","caudiciforms/div/tax-wet.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Wettstein 1901");
		Menu4_6_4=new Array("Bessey 1915","caudiciforms/div/tax-bes.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Bessey 1915");
		Menu4_6_5=new Array("Engler 1924","caudiciforms/div/tax-eng.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Engler 1924");
		Menu4_6_6=new Array("Hutchinson 1926","caudiciforms/div/tax-hut.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Hutchinson 1926");
		Menu4_6_7=new Array("Takhtajan 1966","caudiciforms/div/tax-tak.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Takhtajan 1966");
		Menu4_6_8=new Array("Dahlgren 1975","caudiciforms/div/tax-dah.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Dahlgren 1975");	
		Menu4_6_9=new Array("Conquist 1981","caudiciforms/div/tax-con.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Conquist 1981");
		Menu4_6_10=new Array("Goldberg 1986","caudiciforms/div/tax-gol.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Goldberg 1986");	
		Menu4_6_11=new Array("Kubitzki 1990","caudiciforms/div/tax-kub.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Kubitzki 1990");
		Menu4_6_12=new Array("Thorne 1992","caudiciforms/div/tax-tho.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Thorne 1992");	
		Menu4_6_13=new Array("Reveal 1996","caudiciforms/div/tax-rev.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Reveal 1996");	
		Menu4_6_14=new Array("APG I 1998","caudiciforms/div/tax-ap1.asp","",0,20,120,"","","","","","",-1,-1,-1,"","APG I 1998");	
		Menu4_6_15=new Array("APG II 2003","caudiciforms/div/tax-ap2.asp","",0,20,120,"","","","","","",-1,-1,-1,"","APG II 2003");
	Menu4_7=new Array("Technical Terms","caudiciforms/div/tech.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Technical terms");
	Menu4_8=new Array("Ideas for new caudiciforms","caudiciforms/div/idea.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Ideas for new caudiciforms");
		
Menu5=new Array("My Plants","","",7,20,100,"","","","","","",-1,-1,-1,"","");
	Menu5_1=new Array("My only Plants","caudiciforms/div/only.asp","",0,20,140,"#666633","#CCCC00","white","#808000","","",-1,-1,-1,"","My only Plants");
	Menu5_2=new Array("Taxonomy Collection","caudiciforms/div/tax-col.asp","",0,20,140,"#990000","#cc3300","white","","","",-1,-1,-1,"","Taxonomy Collection");
	Menu5_3=new Array("I Only Had Those","caudiciforms/div/mine.asp","",0,20,0,"","","","","","",-1,-1,-1,"","I Only Had Those");
	Menu5_4=new Array("Taxonomy of My Plants","caudiciforms/div/tax.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Taxonomy of My Plants");
	Menu5_5=new Array("Through the Year","caudiciforms/div/year.asp","",0,20,120,"","","","","","",-1,-1,-1,"","Through the Year");
	Menu5_6=new Array("Wanted Plants","caudiciforms/div/want.asp","",0,20,0,"","","","","","",-1,-1,-1,"","Wanted Plants");
	Menu5_7=new Array("My Story","caudiciforms/div/hist.asp","",1,20,120,"","","","","","",-1,-1,-1,"","My Story");
		Menu5_7_1=new Array("und Deutsch","caudiciforms/div/tysk.asp","",0,20,120,"","","","","","",-1,-1,-1,"","und Deutsch");
	
Menu6=new Array("Extern","","",7,20,100,"","","","","","",-1,-1,-1,"","Extern");
	Menu6_1=new Array("Rikkes Plants","Rikke/","",0,20,130,"","","","","","",-1,-1,-1,"","Rikkes Plants");
	Menu6_2=new Array("Links","caudiciforms/div/link.asp","",0,20,100,"","","","","","",-1,-1,-1,"","Links");
	Menu6_3=new Array("Make Pages","caudiciforms/div/lite.asp","",1,20,100,"","","","","","",-1,-1,-1,"","Make Pages");
		Menu6_3_1=new Array("Mail Form","mail.asp","",0,20,100,"","","","","","",-1,-1,-1,"","Mail Form");
	Menu6_4=new Array("Guest Pages","caudiciforms/div/gest.asp","",0,20,100,"","","","","","",-1,-1,-1,"","Guest Pages");
	Menu6_5=new Array("Borrowed Photos","caudiciforms/div/loan.asp","",0,20,100,"","","","","","",-1,-1,-1,"","Borrowed Photos");
	Menu6_6=new Array("Collections","caudiciforms/bota/","",0,20,100,"","","","","","",-1,-1,-1,"","Books");
	Menu6_7=new Array("Books","caudiciforms/div/book.asp","",1,20,100,"","","","","","",-1,-1,-1,"","Collections");
		Menu6_7_1=new Array("List of Errors","caudiciforms/div/error.asp","",0,20,100,"","","","","","",-1,-1,-1,"","List of Errors");
		
Menu7=new Array("Update, 1558 pages","caudiciforms/div/news.asp","",0,20,130,"","","","","","",-1,-1,-1,"","Update");