
// Setup all the variable parameters available in the menu_com.js code

	var NoOffFirstLineMenus=4;			
	var LowBgColor='#99CCFF';			
	var LowSubBgColor='#99CCFF';			
	var HighBgColor='#99CCFF';			
	var HighSubBgColor='#99CCFF';			
	var FontLowColor='#0F1160';			
	var FontSubLowColor='#0F1160';			
	var FontHighColor='#FF0000';			
	var FontSubHighColor='#FF0000';			
	var BorderColor='#9293AF';			
	var BorderSubColor='#9293AF';
	var BorderWidth=1;				
	var BorderBtwnElmnts=1;				
	var FontFamily="arial,comic sans ms,technical";	
	var FontSize=8;					
	var FontBold=1;					
	var FontItalic=0;				
	var MenuTextCentered='left';			
	var MenuCentered='left';			
	var MenuVerticalCentered='top';			
	var ChildOverlap=.0;				
	var ChildVerticalOverlap=.2;			
	var StartTop=155;			// <<--- Pixels down from top of screen				
	var StartLeft=153;			// <<--- Pixels to right of left edge of screen				
	var VerCorrect=0;				
	var HorCorrect=0;				
	var LeftPaddng=3;				
	var TopPaddng=2;				
	var FirstLineHorizontal=1;		// <<-- Horizontal Menu 1=ON
	var MenuFramesVertical=0;			
	var DissapearDelay=500;				
	var TakeOverBgColor=0;				
	var FirstLineFrame='main';			
	var SecLineFrame='main';			
	var DocTargetFrame='main';			
	var TargetLoc='';				
	var HideTop=0;					
	var MenuWrap=1;					
	var RightToLeft=0;				
	var UnfoldsOnClick=0;				
	var WebMasterCheck=0;				
	var ShowArrow=1;				
	var KeepHilite=1;				
	var Arrws=['tri.gif',5,10,'tridown.gif',10,5,'trileft.gif',5,10];	
	var aw = screen.availWidth;			
   	var ah = screen.availHeight;			

function BeforeStart(){return}
function AfterBuild(){return}
function BeforeFirstOpen(){return}
function AfterCloseAll(){return}

// Each Menu is setup as a 'tree', and an array added for each.  Here are all the 'trees' used on Tagrel.com as an example 
// of the format needed.
//
// Parameters for a new Array:
// 1 - Text to be displayed in the Menu
// 2 - Link invoked when that menu item is selected.
// 3 - I don't know because it was always blank and I never looked it up!  :-)
// 4 - Number of Child Menus (zero if this is a 'leave' of the menu 'tree'
// 5 - Height of the Menu 'leaf'
// 6 - Width of the Menu 'leaf'
//
// Notes:  Menu names are very important: Follow the examples laid out below when setting up your own menus.

Menu1=new Array("Planning Strategy Tools","","",4,20,180);
  Menu1_1=new Array("PS FAQ","/psfaq.shtml","",0,20,180);
  Menu1_2=new Array("PS Calculator","/pscalc.php","",0,20,180);
  Menu1_3=new Array("PS Report","/pslist.php","",0,20,180);
  Menu1_4=new Array("PS Spotlight Reviews","/psspotlights.php","",0,20,180);
  
Menu2=new Array("Reservation Information","","",4,20,180);
  Menu2_1=new Array("Join Our Mailing List","/psinvite.shtml","",0,20,180);
  Menu2_2=new Array("Cinderella Breakfast","/pscrt.shtml","",0,20,180);
  Menu2_3=new Array("Credit Card Policies","/pscredit.shtml","",0,20,180);
  Menu2_4=new Array("News & Updates","/psnew.shtml","",0,20,180);

Menu3=new Array("Walt Disney World Planning","","",3,20,180);
  Menu3_1=new Array("Online Toolbox","/pswebtools.shtml","",0,20,180);
  Menu3_2=new Array("Popular Websites","/pslinks.shtml","",0,20,180);
  Menu3_3=new Array("WDW Park Maps","/psmaps.shtml","",0,20,180);

Menu4=new Array("Miscellaneous","","",4,20,99);
  Menu4_1=new Array("Home","/index.html","",0,20,99);
  Menu4_2=new Array("About","/pshistory.shtml","",0,20,99);
  Menu4_3=new Array("Advertisers","/psadvertisers.shtml","",0,20,99);
  Menu4_4=new Array("Feedback","/psfeedback.shtml","",0,20,99);