<!--
/*
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 = 85		// 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 = 80	// 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] = 6; // managment (0)
menuCat[1] = 12; // Trgovina (1)
menuCat[2] = 6; //Proizvodnja
menuCat[3] = 6; //Poljoprivreda
menuCat[4] = 3; // Javne sluzbe
menuCat[5] = 9; //racunovodstvo
menuCat[6] = 10; //Internet
menuCat[7] = 5; //skolovanje
menuCat[8] = 7; //infrastrutura

// Set actual number of pixels from the left to position each menu category caption
var menuCatPosnVals = new Array();
menuCatPosnVals[0] = 110; //Managment
menuCatPosnVals[1] = 200; //trgovina
menuCatPosnVals[2] = 265; //Proizvodnja
menuCatPosnVals[3] = 347; //javne sluzne 361
menuCatPosnVals[4] = 440; //shop (8)
menuCatPosnVals[5] = 530; //obrazovanje (7)
menuCatPosnVals[6] = 633; //partneri (2)
menuCatPosnVals[7] = 700; //uspjesi (3)
menuCatPosnVals[8] = 780; //tvrtka (6)

// Set increments by which to space the menus from each other horizontally
var menuPosnVals = new Array();
menuPosnVals[0] = -17; //rjesenja (0)
menuPosnVals[1] =  89; //produkti (1)
menuPosnVals[2] =  66; //podrska (5)
menuPosnVals[3] =  81; //hardware (4)
menuPosnVals[4] =  92; //shop (8)
menuPosnVals[5] =  90; //obrazovanje (7)
menuPosnVals[6] =  103; //partneri (2)
menuPosnVals[7] =  68; //uspjesi (3)
menuPosnVals[8] =  79; //tvrtka (6)

//Rollover image array
var pqNavOvers = new Array();
pqNavOvers[0] = "images/spacer.gif";
//pqNavOvers[1] = "images/spacer_445B94.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 *************************************


//-->
