<!--
/*
User Friendly Drop-Down Menus 1.5
By Derron Fairbanks
Copyright (c) 2002 Candesa Interactive Corp
Customized for PowerQuest by Derron Fairbanks
Customized for Ariolic by Dmitry Vergel
Re-use permitted with copyright notice intact
*/

//************************************* Begin Do Not Edit *************************************

var tO = null				// time-out variable, must be declared for Netscape 6
var currentlyOn = ""		// set to menu number when menu is turned on, used to ensure visibility of one menu at a time.

//************************************* End Do Not Edit *************************************

//##################################### Begin Customizeable Parameters #####################################

//Site Specific parameters
var menuDelay = 500			// Represents menu visibility lag time in milliseconds
var blLeftPosnMod = 20		// Sets left margin for highlight and backdrop layers
var menuItemWidth = 150		// Sets width of backdrop, Should match width of navHighLight as specified in the style sheet
var menuItemHeight = 15		// Sets height increment of backdrop
var startingTop = 48		// Sets the distance from the top to begin drawing the navigation layers
var startingLeft = 403		// Sets the distance from the left to begin drawing the navigation layers
var startingCatTop = 48		// Sets the distance from the top to begin drawing the navigation category layers

//Specify the number of menus under each category
var menuCat = new Array();
menuCat[0] = 8;
menuCat[1] = 1;
menuCat[2] = 12;
menuCat[3] = 3;
menuCat[4] = 4;
menuCat[5] = 5;

// Set actual number of pixels from the left to position each menu category caption
var menuCatPosnVals = new Array();
menuCatPosnVals[0] = 299;  
menuCatPosnVals[1] = 384;
menuCatPosnVals[2] = 479;
menuCatPosnVals[3] = 566;
menuCatPosnVals[4] = 646;
menuCatPosnVals[5] = 724;

// Set increments by which to space the menus from each other horizontally
var menuPosnVals = new Array(); 
menuPosnVals[0] = -89; 
menuPosnVals[1] = -801;
menuPosnVals[2] = 981;
menuPosnVals[3] = 87;
menuPosnVals[4] = 80;
menuPosnVals[5] = 78;

//Rollover image array
var pqNavOvers = new Array();
pqNavOvers[0] = "#677A85";	//"#9b521c";
pqNavOvers[1] = "#5C6E78";	// highlighted



//##################################### End Customizeable Parameters #####################################

//************************************* Begin Do Not Edit *************************************

//Rollover function
function navSwap(wMenu,imgNum)
{
	thsMenuCaptionHiLite = "navOpt" + wMenu;
	document.all[thsMenuCaptionHiLite].style.backgroundColor = pqNavOvers[imgNum];
}

//************************************* End Do Not Edit *************************************
//-->


