 /*************************************************************
*	(c) Ger Versluis 2000 version 13.21 April 28, 2008    *
*	You may use this script on non commercial site        *
*	www.burmees.nl/menu			              *
*	You may remove all comments for faster loading	      *		
**************************************************************/
	var NoOffFirstLineMenus=6;			// 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="white";			// Background color when mouse is not over
	var HighBgColor="lightgreen";			// 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=1;			// Border width main items
	var BorderWidthSub=0;			// Border width sub items
 	var BorderBtwnMain=1;			// Border width between elements main items
	var BorderBtwnSub=1;			// Border width between elements sub items
	var FontFamily="Verdana";	// Font family menu items
	var FontSize=9;				// 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="center";			// Menu horizontal position can be: left, center, right
	var MenuVerticalCentered="top";		// Menu vertical position top, middle, bottom or static
	var ChildOverlap=.2;			// horizontal overlap child/ parent
	var ChildVerticalOverlap=.2;			// vertical overlap child/ parent
	var StartTop=80;				// 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=5;				// Left padding
	var TopPaddng=0;				// 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=0;			// Menu frame takes over background color subitem frame
	var FirstLineFrame="header";			// Frame where first level appears
	var SecLineFrame="main";			// Frame where sub levels appear
	var DocTargetFrame="main";		// Frame where target documents appear
	var TargetLoc="inlineFrame";				// 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="";		// 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=["http://biotour.org/Fall08/MENU/images/tri.gif",5,10,"images/tridown.gif",10,5,"images/trileft.gif",5,10,"images/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(.......

	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=1;	//WAS 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 MenuShadow="";


	var MenuOpacity="";


	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("About BioTour","http://BioTour.org/Fall08/AboutBioTour/OurMission/index.htm","",6,20,176);
	Menu1_1=new Array("Our Mission","http://BioTour.org/Fall08/AboutBioTour/OurMission/index.htm","",0,20,150);
	Menu1_2=new Array("Journey History","http://BioTour.org/Fall08/AboutBioTour/JourneyHistory/index.htm","",0);
	/*Menu1_3=new Array("Our Principles","http://BioTour.org/Fall08/AboutBioTour/OurPrinciples/index.htm","",0);
	*/Menu1_3=new Array("The Bus","http://BioTour.org/Fall08/AboutBioTour/TheBus/index.htm","",0);
	Menu1_4=new Array("The Crew","http://BioTour.org/Fall08/AboutBioTour/TheCrew/index.htm","",0);
	Menu1_5=new Array("Press Kit","http://BioTour.org/Fall08/AboutBioTour/PressKit/index.htm","",0);
	Menu1_6=new Array("FAQ","http://BioTour.org/Fall08/AboutBioTour/FAQ/index.htm","",0);

Menu2=new Array("Tour Schedule","http://BioTour.org/Fall08/TourSchedule/Fall08/index.htm","",2,20,176);
	Menu2_1=new Array("Fall '08 (Campaign Trail)","http://BioTour.org/Fall08/TourSchedule/Fall08/index.htm","",0,20,225);
	Menu2_2=new Array("RIDE THE BUS W/ US!","http://BioTour.org/Fall08/LetsWorkTogether/HonoraryCrew/index.htm","",0,20,150);
	/*Menu2_3=new Array("Past Tour Routes","http://BioTour.org/Fall08/TourSchedule/PastTourRoutes/Spring08/index.htm","",4,20,150);	
		Menu2_3_1=new Array("Spring '08","http://BioTour.org/Fall08/TourSchedule/PastTourRoutes/Spring08/index.htm","",0,20,125);
		Menu2_3_2=new Array("Fall '07","http://BioTour.org/Fall08/TourSchedule/PastTourRoutes/Fall07/index.htm","",0);
		Menu2_3_3=new Array("Spring '07","http://BioTour.org/Fall08/TourSchedule/PastTourRoutes/Spring07/index.htm","",0);
		Menu2_3_4=new Array("Fall '06","http://BioTour.org/Fall08/TourSchedule/PastTourRoutes/Fall06/index.htm","",0);*/
    

Menu3=new Array("The BioBlog!","http://BioTour.org/Fall08/TheBlogs/OnTheCampaignTrailINDEX.htm","",1,20,146);
	Menu3_1=new Array("On The Campaign Trail","http://BioTour.org/Fall08/TheBlogs/OnTheCampaignTrailINDEX.htm","",0,20,210);

/*
Menu3_2=new Array("The Vagabond Journal","http://BioTour.org/Fall08/TheBlogs/VagabondJournalINDEX.htm","",0);
*/


/*
Menu4=new Array("The Issues","http://BioTour.org/Fall08/TheIssues/Democracy/Election08INDEX.htm","",3,20,134);
	Menu4_1=new Array("Sustainability","http://BioTour.org/Fall08/TheIssues/Sustainability/index.htm","",0,20,150);
	Menu4_2=new Array("Democracy","http://BioTour.org/Fall08/TheIssues/Democracy/Election08INDEX.htm","",3,20,150);
		Menu4_2_1=new Array("Election '08","http://BioTour.org/Fall08/TheIssues/Democracy/Election08INDEX.htm","",0,20,150);
		Menu4_2_2=new Array("Bills","http://BioTour.org/Fall08/TheIssues/Democracy/Bills/BillsINDEX.htm","",0,20,150);
		Menu4_2_3=new Array("Media Reform","http://BioTour.org/Fall08/TheIssues/Democracy/MediaReformINDEX.htm","",0,20,150);
	Menu4_3=new Array("Take Action!","http://BioTour.org/Fall08/LetsWorkTogether/WhatCanIDo/WhatCanIDoINDEX.htm","",0);
*/


Menu4=new Array("Media","http://BioTour.org/Fall08/Media/Photos/index.htm","",7,20,106);
	Menu4_1=new Array("Photos","http://BioTour.org/Fall08/Media/Photos/index.htm","",0,20,200);
	Menu4_2=new Array("Videos","http://BioTour.org/Fall08/Media/Videos/index.htm","",0,20,140);
	Menu4_3=new Array("The Blogs!","http://BioTour.org/Fall08/TheBlogs/OnTheCampaignTrailINDEX.htm","",0,20,140);
	Menu4_4=new Array("Our Social Networks","http://BioTour.org/Fall08/Media/OurSocialNetworks/index.htm","",5,20,140);
		Menu4_4_1=new Array("Facebook","http://www.new.facebook.com/home.php#/group.php?sid=81200bc5f0875e4c36e5db1886d6c7d4&refurl=http://www.new.facebook.com/s.php?ref=search&init=q&q=biotour&sid=81200bc5f0875e4c36e5db1886d6c7d4&gid=2232379780","",0,20,140);
		Menu4_4_4=new Array("MySpace","http://myspace.com/BioTourProject/","",0,20,140);
		Menu4_4_3=new Array("YouTube","http://youtube.com/BioTourDOTorg","",0,20,140);
		Menu4_4_2=new Array("Current TV","http://www.current.com/users/BioTourDOTorg/all/0.htm","",0,20,140);
		Menu4_4_5=new Array("Ning!","http://www.ning.com/BioTour","",0,20,140);
	Menu4_5=new Array("Press Coverage","http://BioTour.org/Fall08/Media/PressCoverage/index.htm","",0,20,140);
	Menu4_6=new Array("Press Kit","http://BioTour.org/Fall08/AboutBioTour/PressKit/index.htm","",0,20,140);
	Menu4_7=new Array("Newsletter Archive","http://BioTour.org/Fall08/Media/NewsletterArchive/index.htm","",0,20,140);

Menu5=new Array("Let's Work Together","http://BioTour.org/Fall08/LetsWorkTogether/ContactUs/index.htm","",6,20,229);
	Menu5_1=new Array("Contact Us / Booking","http://BioTour.org/Fall08/LetsWorkTogether/ContactUs/index.htm","",0,20,220);
	Menu5_2=new Array("RIDE THE BUS W/ US!","http://BioTour.org/Fall08/LetsWorkTogether/HonoraryCrew/index.htm","",0,20,140);	
	Menu5_3=new Array("What Can I Do?","http://BioTour.org/Fall08/LetsWorkTogether/WhatCanIDo/WhatCanIDoINDEX.htm","",0,20,140);
	Menu5_4=new Array("Newsletter (Subscribe)","http://BioTour.org/Fall08/LetsWorkTogether/Newsletter/index.htm","",0,20,140);
	Menu5_5=new Array("Collaborators","http://BioTour.org/Fall08/LetsWorkTogether/Support/SponsorsINDEX.htm","",0,20,140);
	Menu5_6=new Array("Allies & their Links","http://BioTour.org/Fall08/LetsWorkTogether/Support/LinksINDEX.htm","",0,20,140);

Menu6=new Array("Please DONATE!","http://BioTour.org/Fall08/Donate/index.htm","",0,20,188);

