 /***********************************************
*	(c) Ger Versluis 2000 version 9.50 24 July 2003	          *
*	You may use this script on non commercial sites.	          *
*	www.burmees.nl/menu			          *
*	You may remove all comments for faster loading	          *		
************************************************/
	var NoOffFirstLineMenus=4;			// 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="";			// Background color when mouse is not over
	var HighBgColor="";			// Background color when mouse is over
	var FontLowColor="black";			// Font color when mouse is not over
	var FontHighColor="black";			// Font color when mouse is over
	var BorderColor="black";			// Border color
	var BorderWidthMain=0;			// Border width main items
	var BorderWidthSub=1;			// Border width sub items
 	var BorderBtwnMain=0;			// Border between elements main items 1 or 0
	var BorderBtwnSub=0;			// Border between elements sub items 1 or 0
	var FontFamily="arial";	// Font family menu items
	var FontSize=9;				// 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="left";			// Menu horizontal position can be: left, center, right, justify,
						//  leftjustify, centerjustify or rightjustify. PartOfWindow determines part of window to use
	var MenuVerticalCentered="top";		// Menu vertical position top, middle,bottom or static
	var ChildOverlap=.1;			// horizontal overlap child/ parent
	var ChildVerticalOverlap=.3;			// vertical overlap child/ parent
	var StartTop=0;				// Menu offset x coordinate. If StartTop is between 0 and 1 StartTop is calculated as part of windowheight
	var StartLeft=7;				// Menu offset y coordinate. If StartLeft is between 0 and 1 StartLeft is calculated as part of windowheight
	var VerCorrect=0;				// Multiple frames y correction
	var HorCorrect=0;				// Multiple frames x correction
	var LeftPaddng=3;				// Left padding
	var TopPaddng=2;				// Top padding
	var FirstLineHorizontal=1;			// First level items layout horizontal 1 or 0
	var MenuFramesVertical=1;			// Frames in cols or rows 1 or 0
	var DissapearDelay=200;			// delay before menu folds in
	var UnfoldDelay=10;			// delay before sub unfolds	
	var TakeOverBgColor=1;			// Menu frame takes over background color subitem frame
	var FirstLineFrame="";			// Frame where first level appears
	var SecLineFrame="";			// Frame where sub levels appear
	var DocTargetFrame="";			// Frame where target documents appear
	var TargetLoc="menu";				// 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="./";	
var BaseHref2="http://";				
//var BaseHref="http://www.digitalelixir.com/clients/feri/";				
// 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=["tri.gif",5,10,"spacer.gif",10,5,"trileft.gif",5,10,"triup.gif",10,5];
//	var Arrws=[BaseHref+"",5,10,BaseHref+"",10,5,BaseHref+"",5,10,BaseHref+"",10,5];

						// Arrow source, width and height.
						// If arrow images are not needed keep source ""

	var MenuUsesFrames=0;			// 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 PartOfWindow=.8;			// PartOfWindow: When MenuCentered is justify, sets part of window width to stretch to

						// 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;

	var MenuSlide="";
	var MenuSlide="progid:DXImageTransform.Microsoft.RevealTrans(duration=.2, transition=19)";
	var MenuSlide="progid:DXImageTransform.Microsoft.GradientWipe(duration=.2, 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 format is:  "rollover?"+BaseHref+"Image1.jpg?"+BaseHref+"Image2.jpg" 
<!--editted dec9,2004 sd-->
Menu1=new Array("rollover?"+"about.gif?"+"about-over.gif","about_index.html","",5,58,96,"","","","","","",-1,-1,-1,"","About FERI");
	Menu1_1=new Array("About Us","about_index.html","",0,18,100,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","About Us");
	Menu1_2=new Array("Community Work","community_index.html","",0,18,100,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","About Us > Community Work");
	Menu1_3=new Array("Facilities","facilities_index.html","",1,18,100,"#CBCBCB","#90A5B2","","white","","",-1,-1,-1,"","About Us > Facilities");
		Menu1_3_1=new Array("Calibrations","calib.html","",0,18,100,"#CBCBCB","#90A5B2","","white","","",-1,-1,-1,"","About Us > Facilities");
		//Menu1_3_1=new Array("Computer Infrastructure","about/facilities","",0,18,100,"#CBCBCB","#90A5B2","","white","","",-1,-1,-1,"","About Us > Facilities");
		//Menu1_3_1=new Array("Labratory and Teaching Facilities","about/facilities","",0,18,100,"#CBCBCB","#90A5B2","","white","","",-1,-1,-1,"","About Us > Facilities");
	Menu1_4=new Array("Funding Sources","about_index.html#Funding","",0,18,100,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","About Us >  Funding Sources");
	Menu1_5=new Array("Collaborators","about_index.html#Partners","",0,18,100,"#CBCBCB","#90A5B2","","white","","",-1,-1,-1,"","About Us > Collaborators");
//Menu2=new Array("rollover?"+"projects.gif?"+"projects-over.gif","projects","",4,58,89,"","","","","","",-1,-1,-1,"","Projects");
Menu2=new Array("rollover?"+"projects.gif?"+"projects-over.gif","","",7,58,89,"","","","","","",-1,-1,-1,"","Projects");
	Menu2_1=new Array("CICORE","projects_ci-core_index.html","",3,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > CI-CORE");	
		Menu2_1_1=new Array("About","projects_ci-core_index.html","",0,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > CI-CORE > Info");	
		//Menu2_1_2=new Array("ArcIMS","projects/ci-core/arcims","",0,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > CI-CORE > ArcIMS");
		Menu2_1_2=new Array("WeoGeo","projects_ci-core_weogeo_index.html","",0,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > CI-CORE > WeoGeo");
		Menu2_1_3=new Array("Flight logs","data_flightlogs_index.html#CICORE","",0,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > CI-CORE > Flight logs");
<!--editted dec9,2004 sd-->	
	Menu2_2=new Array("HyCODE","projects_hycode_index.html","",5,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > HyCODE");
		Menu2_2_1=new Array("About","projects_hycode_index.html","",0,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > HyCODE > About");
		Menu2_2_2=new Array("WFS","projects_hycode_WFS_index.html","",0,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > HyCODE > WFS");
		Menu2_2_3=new Array("LEO-15","projects_hycode_LEO_15_index.html","",0,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > HyCODE > LEO_15");
		Menu2_2_4=new Array("WeoGeo","projects_ci-core_WeoGeo_index.html","",0,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > HyCODE > WeoGeo");
		Menu2_2_5=new Array("Flight Logs","data_flightlogs_index.html#HyCODE","",0,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > HyCODE > Flight Logs");
	Menu2_3=new Array("Looe Key","projects_looekey_index.html","",3,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > Looe Key");	
		Menu2_3_1=new Array("About","projects_looekey_index.html","",0,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > Looe Key > About");
		//Menu2_3_2=new Array("ArcIMS","projects/looekey/arcims","",0,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > Looe Key > ArcIMS");
		Menu2_3_2=new Array("WeoGeo","projects_ci-core_WeoGeo_index.html","",0,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > Looe Key > WeoGeo");
		Menu2_3_3=new Array("Flight logs","data_flightlogs_index.html#Looe Key","",0,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > Looe Key > Flight logs");
    //Menu2_4=new Array("Experiments","projects/experiments","",3,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > Experiments");	

    Menu2_4=new Array("Florida","","",1,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > Looe Key");	
		//Menu2_4_1=new Array("Pinellas Pt","http://feri.s3.amazonaws.com/tampa_bay/St_Pete_20041022_am/fl_20041022_am_ssp/2004Oct22_am_Metadata.htm","",0,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > FL 2004 > Pinellas Point Flt Log");
		//Menu2_4_2=new Array("Fort Desoto","http://feri.s3.amazonaws.com/tampa_bay/fort_desoto_20041022_am/fl_20041022_am_ftd/2004October22_am_Metadata.htm","",0,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > FL 2004 > Ft Desoto Flt Log");
		Menu2_4_1=new Array("Flightlogs","data_flightlogs_index.html#florida","",0,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > Experiments");

	Menu2_5=new Array("Experiments","","",2,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > Experiments");	
		//Menu2_4_1=new Array("Mobile","projects/experiments/mobile","",0,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > Experiments > Mobile");
		//Menu2_4_2=new Array("San Diego","projects/experiments/sandiego","",0,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > Experiments > San Diego");
		Menu2_5_1=new Array("WFS","projects_experiments_wfs_index.html","",0,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > Experiments > WFS");
		//Menu2_4_4=new Array("Ft. Lauderdale","projects/experiments/ftlauderdale","",0,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > Experiments > Ft. Lauderdale");
		Menu2_5_2=new Array("Eco Sim","projects_experiments_ecosim_index.html","",0,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > Experiments > Eco Sim");
	//	Menu2_5_3=new Array("Data Distribition","data","",0,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > Experiments > Data Distrubition");

	Menu2_6=new Array("GOESR","","",1,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > GOESR");	
		Menu2_6_1=new Array("Flightlogs","data_flightlogs_index.html#GOESR","",0,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > Experiments");


	Menu2_7=new Array("NRL","","",1,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > NRL");	
		Menu2_7_1=new Array("Flightlogs","data_flightlogs_index.html#NRL","",0,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > Experiments");


Menu3=new Array("rollover?"+"data.gif?"+"data-over.gif","","",2,58,111,"","#90A5B2","","","","",-1,-1,-1,"","Data Distribution");
	Menu3_1=new Array("WeoGeo","projects_ci-core_WeoGeo_index.html","",0,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","WeoGeo");	
	Menu3_2=new Array("Flight Logs","data_flightlogs_index.html","",7,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > Looe Key");		
		Menu3_2_1=new Array("CICORE","data_flightlogs_index.html#CICORE","",0,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > Looe Key");		
		Menu3_2_2=new Array("HyCODE","data_flightlogs_index.html#HyCODE","",0,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > Looe Key");		
		Menu3_2_3=new Array("Looe Key","data_flightlogs_index.html#looekey","",0,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > Looe Key");	
		Menu3_2_4=new Array("Florida","data_flightlogs_index.html#florida","",0,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > Looe Key");		
		Menu3_2_5=new Array("GOESR","data_flightlogs_index.html#GOESR","",0,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > Looe Key");	
		Menu3_2_6=new Array("NRL","data_flightlogs_index.html#NRL","",0,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > Looe Key");		
		Menu3_2_7=new Array("HyCODE","data_flightlogs_index.html#HyCODE","",0,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > Looe Key");	
Menu3_2_6=new Array("NRL","data_flightlogs_index.html#NRL","",0,18,91,"#CBCBCB","#90A5B2","","","","",-1,-1,-1,"","Projects > Looe Key");	
Menu4=new Array("rollover?"+"news.gif?"+"news-over.gif","news_index.html","",0,58,62,"","#90A5B2","","","","",-1,-1,-1,"","Flightlogs");