//*****************************************************************************************
//  Menu Disclaimer (a necessary evil, sorry):
//
//  We nor any of our affiliates will not be held responsible for any damage to
//  hardware, software, commerce, etc due to the use of this menu. 
//  It has been provided to you as a learning tool. Should you choose to employ it - in part
//  or in it's entirety - any undesirable / negative consequences are your responsibility!
//  PiersonTech.com, 2004     http://www.piersontech.com
//*****************************************************************************************
		

		//***********************************************
		// SET ALL PARAMETERS OF THE UPPER MENU SET HERE
		//***********************************************

//*******************************************************************
//  MUST DEFINE THE TOTAL NUMBER OF MAIN MENU ITEMS IN THE NEXT LINE
//*******************************************************************
var NoOffFirstLineMenus=7;	// Number of first level items
var LowBgColor='000000';	// Background color when mouse is not over
var LowSubBgColor='000000';	// Background color when mouse is not over on subs
var HighBgColor='000000';	// Background color when mouse is over
var HighSubBgColor='000000';	// Background color when mouse is over on subs
var FontLowColor='FF7DAA';	// Font color when mouse is not over
var FontSubLowColor='C1C1C1';	// Font color subs when mouse is not over
var FontHighColor='FCC5E4';	// Font color when mouse is over
var FontSubHighColor='FFFFFF';	// Font color subs when mouse is over
var BorderColor='000000';	// Border color
var BorderSubColor='000000';	// Border color for subs
var BorderWidth=0;		// Border width
var BorderBtwnElmnts=2;		// Border between elements 1 or 0
//
//  FONT TYPE
//
var FontFamily="verdana,arial,comic sans ms,technical"	// Font family menu items
var FontSize=8;			// Font size menu items
var FontBold=1;			// Bold menu items 1 or 0
var FontItalic=0;		// Italic menu items 1 or 0
//
//  MENU BEHAVIOR
//
var MenuTextCentered='left';	// Item text position 'left', 'center' or 'right'
var MenuCentered='center';	// Menu horizontal position 'left', 'center' or 'right'
var MenuVerticalCentered='top';	// Menu vertical position 'top', 'middle','bottom' or static
var ChildOverlap=.01;		// horizontal overlap child/ parent
var ChildVerticalOverlap=.3;	// vertical overlap child/ parent
//
//  HOW FAR FROM THE TOP SHOULD THIS MENU BE? (Set the coordinate in the next line)
//
var StartTop=25;		// Menu offset x coordinate
//
//  HOW FAR FROM THE LEFT SHOULD THIS MENU BE? (Set the coordinate in the next line)
//
var StartLeft=200;		// Menu offset y coordinate
var VerCorrect=0;		// Multiple frames y correction
var HorCorrect=0;		// Multiple frames x correction
var LeftPaddng=4;		// Left padding
var TopPaddng=2;		// Top padding
var FirstLineHorizontal=1;	// SET TO 1 FOR HORIZONTAL MENU, 0 FOR VERTICAL
var MenuFramesVertical=0;	// Frames in cols or rows 1 or 0
var DissapearDelay=150;	// delay before menu folds in
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 HideTop=0;			// Hide first level when loading new document 1 or 0
var MenuWrap=1;			// enables/ disables menu wrap 1 or 0
var RightToLeft=0;		// enables/ disables right to left unfold 1 or 0
var UnfoldsOnClick=0;		// Level 1 unfolds onclick/ onmouseover
var WebMasterCheck=0;		// menu tree checking on or off 1 or 0
var ShowArrow=1;		// Uses arrow gifs when 1 - 0 for no arrows
var KeepHilite=1;		// Keep selected path highligthed
var Arrws=['images/image.gif',9,9,'none',10,5,'none',5,10];	// Arrow source, width and height

function BeforeStart(){return}
function AfterBuild(){return}
function BeforeFirstOpen(){return}
function AfterCloseAll(){return}


// ****************
// UPPER MENU TREE
// ****************
// -> EXAMPLE MENU SETUP
// Menu#=new Array("Text to show goes here", Link, background image (optional, see below), number of subs, height, width);
//
// For rollover images set "Text to show" to:  "rollover:Image1.jpg:Image2.jpg"
// This is Upper Page Margin Menu
//
// BE SURE TO number the menus and submenus properly or you will end up with errors on your page.
// Pay particular attention to submenu numbering scheme!

Menu1=new Array("Home |","index.html","",0,20,52);

Menu2=new Array("Services |","services.html","",4,20,72);
	Menu2_1=new Array("Graphics Production","ghome.html","",0,20,146);	
	Menu2_2=new Array("Document Production","dochome.html","",0);
	Menu2_3=new Array("Emergency Services*","emerg.html","",0);
	Menu2_4=new Array("Onsite Training","training.html","",0,20,146);
	
Menu3=new Array("Portfolio |","","",4,20,72);
	Menu3_1=new Array("Live Sites List","livelist.html","",0,20,130);	
	//Menu3_2=new Array("Static","static.html","",0);
	Menu3_2=new Array("Ads, Banners, Etc","ads.html","",0,20,130);
	Menu3_3=new Array("Fun Stuff","portone.html","",0,20,130);
	Menu3_4=new Array("Ani-Logos","porttwo.html","",0,20,130);

Menu4=new Array("Free Goods |","","",3,20,88);
	Menu4_1=new Array("Easy .JS Menu","jsmenu.html","",0,20,120);
	Menu4_2=new Array("Recommended","freestuff.html","",0,20,120);
	Menu4_3=new Array("Excel Samples","dwnlds1.html","",0,20,120);
	Menu4_4=new Array("Word Samples","dwnlds2.html","",0,20,120);
		
Menu5=new Array("Hot Spots |","","",2,20,78);
	Menu5_1=new Array("Graphics Sites","glinks.html","",0,20,110);	
	Menu5_2=new Array("Other Sites","genlinks.html","",0);

Menu6=new Array("About Us |","about.html","",0,20,72);
	//Menu2_1=new Array("Sub Menu One","hyperlink.html","",0,20,110);

Menu7=new Array("Make Contact","","",2,20,98);
	Menu7_1=new Array("Contact Us","contact.html","",0,20,110);
	Menu7_2=new Array("Make Payment","pymnt.html","",0,20,110);

	

// Scotts Notes:
//
// Can have links in main as well as subs...also note how to set up sub-sub menu
