<!--
/*
User Friendly Drop-Down Menus 1.5
By Derron Fairbanks
Copyright (c) 2002 Candesa Interactive Corp
*/

//************************************* 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.
if(document.getElementById("flashticker")){
	flticker = document.getElementById("flashticker");
	flLeft = flticker.style.left;
}


//************************************* 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 = 160		// 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 = 20		// Sets the distance from the top to begin drawing the navigation layers
var startingLeft = 25		// Sets the distance from the left to begin drawing the navigation layers
var startingCatTop = 16		// 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] = 5;
menuCat[1] = 10;
menuCat[2] = 11;
menuCat[3] = 4;
menuCat[4] = 4;
menuCat[5] = 4;

// Set actual number of pixels from the left to position each menu category caption
var menuCatPosnVals = new Array();
menuCatPosnVals[0] = 20;
menuCatPosnVals[1] = 117;
menuCatPosnVals[2] = 175;
menuCatPosnVals[3] = 285;
menuCatPosnVals[4] = 395;
menuCatPosnVals[5] = 490;


// Set increments by which to space the menus from each other horizontally
var menuPosnVals = new Array(); 
menuPosnVals[0] = -7;
menuPosnVals[1] = 99;
menuPosnVals[2] = 99;
menuPosnVals[3] = 100;
menuPosnVals[4] = 93;
menuPosnVals[5] = 78;

/*

//Rollover image array
var pqNavOvers = new Array();
pqNavOvers[0] = "/images/spacer.gif";
pqNavOvers[1] = "/images/spacer_445B94.gif";


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

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

//pre-caches rollover images
pqImg = new Array();
for (i = 0; i < pqNavOvers.length; i++){
	pqImg[i] = new Image();
    pqImg[i].src = pqNavOvers[i];
}

//Rollover function
function navSwap(wMenu,imgNum){
	if(document.images){
		thsMenuCaptionHiLite = "navOpt" + wMenu;
		document[thsMenuCaptionHiLite].src = pqImg[imgNum].src;
	}
}

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

*/

//-->
