<!--
/*
User Friendly Drop-Down Menus 1.5
By Derron Fairbanks
Copyright (c) 2002 Candesa Interactive Corp
Customized for PowerQuest by Derron Fairbanks
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 = 13		// 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 = 76		// Sets the distance from the top to begin drawing the navigation lay1s
var startingLeft = 134		// Sets the distance from the left to begin drawing the navigation layers
var startingCatTop = 74	// 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] = 4; // tehnologija (0)
menuCat[1] = 10; // funkcionalnost (1)
menuCat[2] = 11; //sučelje
menuCat[3] = 7; //implementacija
menuCat[4] = 4; // licenciranje
menuCat[5] = 9; //reference
menuCat[6] = 3; //partnerstvo
menuCat[7] = 3; //help desk

// Set actual number of pixels from the left to position each menu category caption
var menuCatPosnVals = new Array();
menuCatPosnVals[0] = 173; //tehnologija
menuCatPosnVals[1] = 253; //funkcionalnost
menuCatPosnVals[2] = 358; //sučelje
menuCatPosnVals[3] = 418; //implementacija
menuCatPosnVals[4] = 527; //licenciranje
menuCatPosnVals[5] = 615; //reference
menuCatPosnVals[6] = 696; //partnerstvo
menuCatPosnVals[7] = 783; //help desk

// Set increments by which to space the menus from each other horizontally
var menuPosnVals = new Array();
menuPosnVals[0] =  45; //tehnologija (0)
menuPosnVals[1] =  79; //funkcionalnost (1)
menuPosnVals[2] =  103; //sučelje (5)
menuPosnVals[3] =  60; //implementacija (4)
menuPosnVals[4] =  108; //licenciranje (8)
menuPosnVals[5] =  89; //reference (7)
menuPosnVals[6] =  81; //partnerstvo (2)
menuPosnVals[7] =  87; //help desk (3)

//Rollover image array
var pqNavOvers = new Array();
pqNavOvers[0] = "images/spacer.gif";
pqNavOvers[1] = "images/spacer_445B94proba.gif";
//pqNavOvers[1] = "images/spacer_2B5782.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 *************************************


//-->
