var LowBgColor = '#FFFFFF';			// Background color when mouse is not over
var HighBgColor = '#FFFFFF';			// Background color when mouse is over
var FontLowColor = '#336699';			// Font color when mouse is not over
var FontHighColor = '#000000';			// Font color when mouse is over

var LowSubBgColor = '#FFFFFF';			// Background color when mouse is not over on subs
var HighSubBgColor = '#FFFFFF';			// Background color when mouse is over on subs
var FontSubLowColor = '#336699';			// Font color subs when mouse is not over
var FontSubHighColor = '#000000';			// Font color subs when mouse is over

var BorderColor = '';			// Border color
var BorderSubColor = '';			// Border color for subs
var BorderWidth = 1;				// Border width
var BorderBtwnElmnts = 0;			// Border between elements 1 or 0

var FontFamily = "Verdana,Arial";	// Font family menu items
var FontSize = (document.layers)?navigator.appVersion.indexOf("Mac") == -1?7:9:10;				// Font size menu items
var FontBold = 1;				// Bold menu items 1 or 0
var FontSubBold = 0;				// Bold Sub 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 'left', 'center' or 'right'
var MenuVerticalCentered = 'top';		// Menu vertical position 'top', 'middle','bottom' or static
var ChildOverlap = 0;				// horizontal overlap child/ parent
var ChildVerticalOverlap = 0;			// vertical overlap child/ parent
var StartTop = 253;				// Menu offset x coordinate
if (navigator.userAgent.indexOf("Windows") != -1) {
	if (document.all) {
		var StartLeft = -27;				// Menu offset y coordinate
	} else {
		var StartLeft = -36;				// Menu offset y coordinate
	}
}
if (navigator.userAgent.indexOf("Mac") != -1) {
	if (document.all) {
		var StartLeft = -28;				// Menu offset y coordinate
	} else {
		var StartLeft = -27;				// Menu offset y coordinate
	}
}
var VerCorrect = 0;				// Multiple frames y correction
var HorCorrect = 0;				// Multiple frames x correction
var LeftPaddng = 0;				// Left padding
var TopPaddng = 0;				// Top padding
var FirstLineHorizontal = 1;			// SET TO 1 FOR HORIZONTAL MENU, 0 FOR VERTICAL
var MenuFramesVertical = 1;			// Frames in cols or rows 1 or 0
var DissapearDelay = 300;			// delay before menu folds in
var TakeOverBgColor = 0;			// 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 = '';				// 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
var KeepHilite = 1;				// Keep selected path highligthed
var Arrws=['images/trans.gif',6,6,'',0,0,'',0,0];	// Arrow source, width and height

function BeforeStart() {return}
function AfterBuild() 
	{
	if (NavYes)
		{
		if (Nav4)
			{
			parent.captureEvents(Event.LOAD);
			parent.onload = NSloaded;
			}
		}
	}
function BeforeFirstOpen(){return}
function AfterCloseAll(){return}

function NSloaded(e){
  if (e.target.name == DocTargetFrame) 
	Go();
  
}

//IE RELOAD METHOD
function onMenuClick(){
	setTimeout("keepTrack()",50);
	
}

function keepTrack() {
	if (ScLoc.document.readyState)
		{
		if (ScLoc.document.readyState == "complete" || ScLoc.document.readyState == "interactive")
			Go();
		else
			setTimeout("keepTrack()",50);
		}
}
