//
function miniCart(){
var prdCount = 0, prdString = "", subTotal = (xmlConfig.cartSubTotal > 0)?xmlConfig.cartSubTotal:0;
	if(xmlOHeader.childNodes.length==0) subTotal = 0;
	for(var i=0;i<xmlOHeader.childNodes.length;i++){
		prdCount = prdCount+(parseInt(xmlOHeader.childNodes[i].QuantityAmount));
		};
	prdString += "Broj na proizvodi:<strong>&nbsp;" + prdCount + "</strong><br>";
	prdString += "Vkupno ( so DDV):<strong>&nbsp;" + TFormatCurrency(subTotal, objPriCurrency) + "</strong><br><br>";
	prdString += "<a class=\"WAGRUNAV\" href=\"orderform." + xmlConfig.fileExtension + "\">";
	prdString += "<strong>" + '<img src="assets/images/bullet.gif" width="11" height="14" alt="Bullet.gif" border="0" align="absmiddle" hspace="0" vspace="0" class="catnav">' + "Formular za naracka</strong></a>";
	return(prdString);
	};
//
var TNavDropDownIndent = ".."
//
function NavLinkedDropDownList(){
	return(TNavDropDownList(true));
	};
//
function NavDropDownList(){
	return(TNavDropDownList(false));
	};
//
function storeSearchParameters(optionValueArray){
var xmlSearchEngine = xmlConfig.getFirstItem("SearchEngine");
	if(optionValueArray[0]!="null"&&optionValueArray[0]!="nada"){
		xmlSearchEngine.categoryIndex = optionValueArray[0];
		xmlSearchEngine.categoryId = optionValueArray[2];
		xmlSearchEngine.ByCategory = "1";
		}
	else{
		xmlSearchEngine.categoryIndex = "null";
		xmlSearchEngine.categoryId = "null";
		xmlSearchEngine.ByCategory = "0";
		};
	};
//
function TNavDropDownList(asLink){
var rString = "";
var myNavIndex = "";
	if(asLink) myNavIndex = xmlConfig.navIndex;
	else myNavIndex = xmlConfig.getFirstItem("SearchEngine").categoryIndex;
	if(!(myNavIndex=="null"||myNavIndex=="")){ navigation[parseInt(myNavIndex)].active = true; };
	if(asLink) rString += "<select name=\"navselect\" onChange=\"changeLoc(this[this.selectedIndex].value.split(';;')[0],this[this.selectedIndex].value.split(';;')[1])\">"
	else rString += "<select name=\"navselect\" onChange=\"storeSearchParameters(this[this.selectedIndex].value.split(';;'))\">";
	rString += "<option value=\"nada;;start.htm;;null\">Centralen Katalog</option>";
	for(var i=0; i<navigation.length; i++){
		if(navigation[i].parentId==null){
			rString += TNavDropDownItem(navigation[i], "");
			};
		};
	rString += "</select>";
	return(rString);
	};
//
function TNavDropDownItem(navItem, cptPreFix){
var rString = "";
	rString += "<option value=\"" + navItem.id + ";;" + navItem.linkUrl + ";;" + navItem.categoryId + "\"";
	if(navItem.active) rString += " selected";
	rString += ">" + cptPreFix + navItem.caption + "</option>";
	for(var i=0; i<navigation.length;i++) if(navigation[i].parentId==navItem.id) rString += TNavDropDownItem(navigation[i], cptPreFix + TNavDropDownIndent);
	return(rString);	
	};
//
	function openItem(itemId){
	var objActiveItem = null;
		if(itemId!=null){
			objActiveItem = navigation[itemId];
			if(objActiveItem!=null){
				objActiveItem.open = true;
				openItem(objActiveItem.parentId);
				};
			};
		};
		
	function activateItem(itemId){
	var objActiveItem = null;
		if(itemId!=null){
			objActiveItem = navigation[itemId];
			if(objActiveItem!=null){
				objActiveItem.active = true;
				openItem(objActiveItem.parentId);
				};
			};
		};
		
	function itemHasSubelems(itemId){
		for(var i=0; i<navigation.length;i++) if(navigation[i].parentId==itemId) return(true);
		return(false);
		};
	
	function TNavLinkList(){
	var strHTML = "";
		for(var i=0; i<navigation.length; i++) if(navigation[i].parentId==null) strHTML += printItem(navigation[i], 0);
		return(strHTML);
		};	
		
	function printItem(navItem, depth){
	var strHTML = "";
	var elemWidth = 1;
		strHTML += '<table width="100%" class="CATLINKS1STPARENT" border="0" cellpadding="2" cellspacing="0" >';
		strHTML += "<tr>"
		for(var i=0; i<depth; i++){
			strHTML += "<td";
			if(navItem.active) strHTML += " class=\"ACTIVECATEGORY\""
			else strHTML += " class=\"CATLINKS1STBULLET\"";
			strHTML += ' width="1%"><img src="assets/images/spacer.gif" width="11" height="1" height="1" alt="" border="0"></td>';
			};
		if(navItem.active) strHTML += '<td width="1%" class="ACTIVECATEGORY"><img src="assets/images/bulletcatact.gif" width="11" height="14" alt="BulletCatAct.gif" border="0" align="bottom" hspace="0" vspace="0" class="catnav"></td>'
		else if(navItem.open&&itemHasSubelems(navItem.id)) strHTML += '<td width="1%" class="CATLINKS1STBULLET"><img src="assets/images/bulletcat1stcls.gif" width="11" height="14" alt="BulletCat1stCls.gif" border="0" align="bottom" hspace="0" vspace="0" class="catnav"></td>'
		else strHTML += '<td width=\"1%\"><img src="assets/images/bulletcat1st.gif" width="11" height="14" alt="BulletCat1st.gif" border="0" align="bottom" hspace="0" vspace="0" class="catnav"></td>'
		strHTML += "<td";
		if(navItem.active) strHTML += " class=\"ACTIVECATEGORY\""
		else strHTML += " class=\"CATLINKS1STBULLET\"";
		strHTML += "width=\"" + ( 100 - ( depth + 1 ) ) + "%\">"
			+ "<a href=\"" + navItem.linkUrl + "?categoryId=" + escape(navItem.id) + "\" class=\"WAGRUNAV\">"
			+ navItem.caption
			+ "</a>"
			+ "</td>";
		strHTML += "</tr>"
		strHTML += "</table>"
		depth++;
		if(navItem.active||navItem.open){
			for(var i=0; i<navigation.length;i++) if(navigation[i].parentId==navItem.id) strHTML += printItem(navigation[i], depth);
			};
		return(strHTML);
		};


//

// navElem
	function navElem(id,caption,linkUrl,parentId,categoryId){
		this.id = id;
		this.caption = caption;
		this.linkUrl = linkUrl;
		this.parentId = parentId;
		this.active = false;
		this.open = false;
		this.categoryId = categoryId;
		};
// navigation
var navigation = new Array();
//
navigation[0] = new navElem(0,"Sredstva za cistenje","pi1858387213.htm",null,"cist note");
navigation[1] = new navElem(1,"Komunikacii","pi1043182570.htm",null,"komu");
navigation[2] = new navElem(2,"Kontroleri ","pi-1693064756.htm",1,"kont");
navigation[3] = new navElem(3,"Del od proizvodite koi mozat da se poracaat","pi1532240880.htm",2,"Nar. kontr");
navigation[4] = new navElem(4,"Lager Lista","pi-732217333.htm",2,"kontr lag");
navigation[5] = new navElem(5,"2 Way Radio ( Walkie Talkie )","pi-2023573810.htm",1,"2way");
navigation[6] = new navElem(6,"Lager Lista","pi-1441319369.htm",5,"lage 2way");
navigation[7] = new navElem(7,"Del od proizvodite koi mozat da se poracaat","pi2072637868.htm",5,"nara 2way");
navigation[8] = new navElem(8,"Acessories","pi-1473064614.htm",5,"dodat09870");
navigation[9] = new navElem(9,"ISDN","pi1124354288.htm",1,"isdn");
navigation[10] = new navElem(10,"VoIP","pi1145527071.htm",1,"Voip");
navigation[11] = new navElem(11,"TRENDnet","pi526832121.htm",10,"trend voip");
navigation[12] = new navElem(12,"Ostanati brendovi","pi-1362620834.htm",10,"voip ostan");
navigation[13] = new navElem(13,"Graficki Tabli","pi-1916257120.htm",null,"grap tabl");
navigation[14] = new navElem(14,"Lager Lista","pi1376698090.htm",13,"lager gra");
navigation[15] = new navElem(15,"Del od proizvodite koi mozat da se poracaat","pi1419627299.htm",13,"nara gras");
navigation[16] = new navElem(16,"Audio","pi872102043.htm",null,"A/V");
navigation[17] = new navElem(17,"Lager lista","pi1083671784.htm",16,"lager au");
navigation[18] = new navElem(18,"Slusalki/mikrofoni","pi1103090701.htm",17,"slisalki");
navigation[19] = new navElem(19,"Zvucnici","pi1769731146.htm",17,"zvucnici");
navigation[20] = new navElem(20,"Razni Audio proizvodi","pi51813559.htm",17,"Razno audi");
navigation[21] = new navElem(21,"Wireles Audio","pi-599218163.htm",17,"wifi slus");
navigation[22] = new navElem(22,"Micro System&#0039;s","pi1649516194.htm",17,"micro sys");
navigation[23] = new navElem(23,"Del od proizvodite koi mozat da se poracaat","pi-941788118.htm",16,"9989");
navigation[24] = new navElem(24,"Ostanati proizvoditeli","pi586774306.htm",23,"OStant au");
navigation[25] = new navElem(25,"Bose","pi1016783811.htm",23,"Bose  audi");
navigation[26] = new navElem(26,"Plantronics","pi66388053.htm",23,"plantro");
navigation[27] = new navElem(27,"Sony","pi-139491357.htm",23,"Sony audio");
navigation[28] = new navElem(28,"Wireless Audio","pi-1990881696.htm",23,"Wifi Audio");
navigation[29] = new navElem(29,"Creative","pi1326798326.htm",23,"creative a");
navigation[30] = new navElem(30,"Cyber Acoustics","pi1705802125.htm",23,"Cyber Acou");
navigation[31] = new navElem(31,"Sennheiser","pi-418778486.htm",23,"7879Sennhe");
navigation[32] = new navElem(32,"Video Nadzor","pi1128506180.htm",null,"nadzor");
navigation[33] = new navElem(33,"Lager lista","pi345164533.htm",32,"lag nadz");
navigation[34] = new navElem(34,"TRENDnet","pi233181499.htm",33,"voideo tre");
navigation[35] = new navElem(35,"Linksys","pi-1479208751.htm",33,"video link");
navigation[36] = new navElem(36,"Ostanati brendovi","pi466257767.htm",33,"video osta");
navigation[37] = new navElem(37,"Del od proizvodite koi mozat da se poracaat","pi-1873174245.htm",32,"nara.vide");
navigation[38] = new navElem(38,"4XEM","pi378410216.htm",37,"4xem");
navigation[39] = new navElem(39,"Q-SEE","pi-561562850.htm",37,"Q-SEE");
navigation[40] = new navElem(40,"PANASONIC","pi-24655840.htm",37,"D-LINK");
navigation[41] = new navElem(41,"HAWKING","pi-799653443.htm",37,"HAWKING");
navigation[42] = new navElem(42,"Avermedia","pi-1722683236.htm",37,"Aver nadz");
navigation[43] = new navElem(43,"TRENDnet","pi1651987671.htm",37,"nadz");
navigation[44] = new navElem(44,".","pi1134110179.htm",37,"963852741");
navigation[45] = new navElem(45,"Networking","pi1039384551.htm",null,"Network");
navigation[46] = new navElem(46,"Bezicni mrezi","pi779619645.htm",45,"9000929");
navigation[47] = new navElem(47,"LAGER LISTA","pi-1583728838.htm",46,"wire");
navigation[48] = new navElem(48,"Linksys","pi2098048817.htm",47,"link wirel");
navigation[49] = new navElem(49,"802.11n N DRAFT","pi-1513968375.htm",48,"N DRAFT LI");
navigation[50] = new navElem(50,"802.11a/b/g","pi-538017642.htm",48,"B/G LINKSY");
navigation[51] = new navElem(51,"Anteni","pi1400448001.htm",48,"anteni lin");
navigation[52] = new navElem(52,"TRENDnet","pi-569519714.htm",47,"trend wifi");
navigation[53] = new navElem(53,"Anteni","pi1202892999.htm",52,"antenna tr");
navigation[54] = new navElem(54,"802.11n  N DRAFT","pi-1275339524.htm",52,"n draft tr");
navigation[55] = new navElem(55,"802.11a/b/g and MIMO","pi1053835341.htm",52,"54G TREND");
navigation[56] = new navElem(56,"Belkin","pi1145162951.htm",47,"Belk wirel");
navigation[57] = new navElem(57,"LogiLink","pi-1404319492.htm",47,"D-Link wir");
navigation[58] = new navElem(58,"Ostantati proizvoditeli","pi1776544978.htm",47,"ostan wire");
navigation[59] = new navElem(59,"Level One","pi1208574444.htm",47,"Lag Haw");
navigation[60] = new navElem(60,"SMC","pi-275460647.htm",47,"SMC WIFI");
navigation[61] = new navElem(61,"802.11n  N DRAFT","pi1555544915.htm",60,"n draft");
navigation[62] = new navElem(62,"802.11a/b/g","pi-732397672.htm",60,"B/G SMC");
navigation[63] = new navElem(63,"Zyxel","pi1656151233.htm",47,"zyxel wifi");
navigation[64] = new navElem(64,"NETGEAR","pi1703538770.htm",47,"99090");
navigation[65] = new navElem(65,"Del od proizvodite koi mozat da se poracaat","pi574214451.htm",46,"wire2");
navigation[66] = new navElem(66,"Linksys","pi543996579.htm",65,"Linksys wi");
navigation[67] = new navElem(67,"Belkin","pi1163795986.htm",65,"belkin ord");
navigation[68] = new navElem(68,"Zyxel","pi-1700066992.htm",65,"9090909090");
navigation[69] = new navElem(69,"Zicani mrezi","pi-813538388.htm",45,"900909");
navigation[70] = new navElem(70,"Del od proizvodite koi mozat da se poracaat","pi432284271.htm",69,"nar net");
navigation[71] = new navElem(71,"LAGER LISTA","pi-611946778.htm",69,"lag net");
navigation[72] = new navElem(72,"Zyxel","pi386525672.htm",71,"zyxel net");
navigation[73] = new navElem(73,"TRENDnet","pi-421229111.htm",71,"trennet ");
navigation[74] = new navElem(74,"Ostanati brendovi","pi-988599009.htm",71,"OSTANTAI N");
navigation[75] = new navElem(75,"Netgear","pi1138386650.htm",71,"09999");
navigation[76] = new navElem(76,"DVD Player & Recorder","pi-1664667578.htm",null,"DVD&r");
navigation[77] = new navElem(77,"Lager Lista","pi-1209900977.htm",76,"lag dvd");
navigation[78] = new navElem(78,"Del od proizvodite koi mozat da se poracaat","pi2115102692.htm",76,"nar dvd");
navigation[79] = new navElem(79,"Digitalni Foto-aparati","pi1020540164.htm",null,"DIG.CAMERA");
navigation[80] = new navElem(80,"Tasni Za Fotoaparati","pi-576406345.htm",79,"case cam");
navigation[81] = new navElem(81,"Baterii i polnaci","pi1074260440.htm",79,"bat dig ap");
navigation[82] = new navElem(82,"Accesories","pi935605568.htm",79,"Accesor");
navigation[83] = new navElem(83,"LAGER LISTA","pi-1916541966.htm",79,"Lager Dig");
navigation[84] = new navElem(84,"Dvogledi","pi1613466031.htm",83,"DVOGLED");
navigation[85] = new navElem(85,"Fuji","pi-758374742.htm",83,"Fuji ap");
navigation[86] = new navElem(86,"Olympus","pi-259828709.htm",83,"Olympus ap");
navigation[87] = new navElem(87,"Sony","pi-1436364971.htm",83,"Sony ap");
navigation[88] = new navElem(88,"Nikon","pi-1466452408.htm",83,"Nikon AP");
navigation[89] = new navElem(89,"Panasonic","pi-75226841.htm",83,"564panason");
navigation[90] = new navElem(90,"Canon","pi-1706579405.htm",83,"Canon ap");
navigation[91] = new navElem(91,"Koristeni fotoaprati","pi-2138848547.htm",79,"Koristen f");
navigation[92] = new navElem(92,"Del od proizvodite koi mozat da se poracaat","pi-584620359.htm",79,"mod nar di");
navigation[93] = new navElem(93,"Kodak","pi1034271663.htm",92,"Kodak");
navigation[94] = new navElem(94,"Fuji","pi2105620420.htm",92,"fuji");
navigation[95] = new navElem(95,"Olympus","pi1154540917.htm",92,"Olimpus");
navigation[96] = new navElem(96,"Nikon","pi966795371.htm",92,"Nikon");
navigation[97] = new navElem(97,"Accesories","pi884559526.htm",96,"acces foto");
navigation[98] = new navElem(98,"Canon","pi1034273109.htm",92,"Canon");
navigation[99] = new navElem(99,"Sony","pi1034272338.htm",92,"Sony");
navigation[100] = new navElem(100,"Panasonic","pi2038505076.htm",92,"dIG PANAS");
navigation[101] = new navElem(101,"GPS Navigacija","pi-1637920945.htm",null,"GPS");
navigation[102] = new navElem(102,"LAGER Lista","pi417333475.htm",101,"Lager gps");
navigation[103] = new navElem(103,"Accessories for Garmin","pi-653700205.htm",102,"7998");
navigation[104] = new navElem(104,"Garmin","pi504128446.htm",102,"garm lag");
navigation[105] = new navElem(105,"Holux","pi-1250248974.htm",102,"999999978");
navigation[106] = new navElem(106,"Del od proizvodite koi mozat da se poracaat","pi1260975548.htm",101,"98-8");
navigation[107] = new navElem(107,"Holux","pi-2143949418.htm",106,"023320");
navigation[108] = new navElem(108,"GARMIN","pi-1065362417.htm",106,"700-g");
navigation[109] = new navElem(109,"Forerunner series","pi-2016179933.htm",108,"Forerun gp");
navigation[110] = new navElem(110,"GPSMAP series","pi1102686559.htm",108,"GPS map");
navigation[111] = new navElem(111,"Edge series","pi-964799744.htm",108,"edge gpsq");
navigation[112] = new navElem(112,"Zumo series","pi-1990575849.htm",108,"Zumogps");
navigation[113] = new navElem(113,"eTrex Series","pi1189524236.htm",108,"etrex gps");
navigation[114] = new navElem(114,"Street Pilot series","pi-1720877030.htm",108,"stree gps");
navigation[115] = new navElem(115,"Nuvi series","pi1574363283.htm",108,"nuvi gps");
navigation[116] = new navElem(116,"Ostanati modeli","pi1207588805.htm",108,"ostanati..");
navigation[117] = new navElem(117,"Dodatoci za Garmin","pi143797170.htm",108,"acces garm");
navigation[118] = new navElem(118,"Oregon series","pi1474223866.htm",108,"1000110101");
navigation[119] = new navElem(119,"Rino series","pi810305031.htm",108,"8889*9*9");
navigation[120] = new navElem(120,"Dakota series","pi-69361305.htm",108,"987dakota");
navigation[121] = new navElem(121,"Trucking GPS (kamionska navigacija)","pi1249986374.htm",108,"789truck");
navigation[122] = new navElem(122,"Fishfinder/Echo series","pi947938891.htm",108,"455FishFi");
navigation[123] = new navElem(123,"Desktops","pi426872737.htm",null,"DESKTOP");
navigation[124] = new navElem(124,"LAGER LISTA","pi1986912991.htm",123,"11111");
navigation[125] = new navElem(125,"BRAND Name desktopi","pi1227872731.htm",124,"6*6*6*6*6");
navigation[126] = new navElem(126,"Sony","pi746914655.htm",125,"ds sony");
navigation[127] = new navElem(127,"Fujitsu","pi425453325.htm",125,"FUJI desk");
navigation[128] = new navElem(128,"Hewlett Packard","pi1878452612.htm",125,"HP Desk la");
navigation[129] = new navElem(129,"Lenovo","pi-76269254.htm",125,"IBM desk l");
navigation[130] = new navElem(130,"Dell","pi-1181201120.htm",125,"Dell lag");
navigation[131] = new navElem(131,"Sostavuvani desktopi","pi1256459648.htm",124,"5*58*5*5");
navigation[132] = new navElem(132,"Del od proizvodite koi mozat da se poracaat","pi393692294.htm",123,"mod nar de");
navigation[133] = new navElem(133,"HP","pi-839007188.htm",132,"Desktop HP");
navigation[134] = new navElem(134,"Compaq","pi605779514.htm",132,"desk Cpq");
navigation[135] = new navElem(135,"Sony","pi-242490317.htm",132,"Desk Sony");
navigation[136] = new navElem(136,"Dell","pi579176439.htm",132,"Dell desk");
navigation[137] = new navElem(137,"Acer","pi2013725959.htm",132,"Acer desk");
navigation[138] = new navElem(138,"Viewsonic","pi141556954.htm",132,"7489");
navigation[139] = new navElem(139,"TFT Monitori","pi-2047940171.htm",null,"TFT MON.");
navigation[140] = new navElem(140,"LAGER LISTA","pi1044107714.htm",139,"tft lag");
navigation[141] = new navElem(141,"Acer","pi-1888334878.htm",140,"acer tft");
navigation[142] = new navElem(142,"Fujitsu","pi-1456095162.htm",140,"Fuji tft");
navigation[143] = new navElem(143,"Xerox","pi1301674827.htm",140,"xerox tft");
navigation[144] = new navElem(144,"HP","pi-1569972984.htm",140,"hp tft mon");
navigation[145] = new navElem(145,"Dell","pi387562175.htm",140,"Dell TFT");
navigation[146] = new navElem(146,"Lenovo","pi-842056955.htm",140,"IBM tft");
navigation[147] = new navElem(147,"Hyundai","pi-1323483424.htm",140,"hyundai tf");
navigation[148] = new navElem(148,"Philips","pi-218305696.htm",140,"tft philip");
navigation[149] = new navElem(149,"Samsung","pi-432568331.htm",140,"Sam tft");
navigation[150] = new navElem(150,"LG","pi2039056597.htm",140,"LG TFT Lag");
navigation[151] = new navElem(151,"Benq","pi815657073.htm",140,"Benq lag");
navigation[152] = new navElem(152,"ASUS","pi1556353726.htm",140,"tft asus l");
navigation[153] = new navElem(153,"ViewSonic","pi-232741397.htm",140,"lag view");
navigation[154] = new navElem(154,"Proview","pi-947072143.htm",140,"tft provie");
navigation[155] = new navElem(155,"Calibrator","pi1396821926.htm",139,"Cali moit");
navigation[156] = new navElem(156,"Dodatoci za Monitori","pi1207790204.htm",139,"doda tft");
navigation[157] = new navElem(157,"Del od proizvodite koi mozat da se poracaat","pi1258778511.htm",139,"mod nar tf");
navigation[158] = new navElem(158,"Acer","pi-763582080.htm",157,"Acer mon t");
navigation[159] = new navElem(159,"Benq","pi-1115570469.htm",157,"BENQ TFT");
navigation[160] = new navElem(160,"HP-COMPAQ","pi-950132288.htm",157,"HP TFT");
navigation[161] = new navElem(161,"Viewsonic","pi2032243906.htm",157,"view lcd");
navigation[162] = new navElem(162,"LG","pi1072267636.htm",157,"sony lcd");
navigation[163] = new navElem(163,"PDA Handhelds","pi1630247628.htm",null,"PDA");
navigation[164] = new navElem(164,"Tasni za PDA","pi-1878162576.htm",163,"case pda");
navigation[165] = new navElem(165,"MP3/MP4 Player","pi1274648154.htm",null,"dvd i mp3");
navigation[166] = new navElem(166,"LAGER LISTA","pi387767877.htm",165,"lager");
navigation[167] = new navElem(167,"Del od proizvodite koi mozat da se poracaat","pi918371413.htm",165,"mod nar mp");
navigation[168] = new navElem(168,"Creative MP3 players","pi-96891389.htm",167,"creativ mp");
navigation[169] = new navElem(169,"COBY","pi-1592725421.htm",167,"coby123");
navigation[170] = new navElem(170,"Microsoft","pi-160628054.htm",167,"Micro MP3");
navigation[171] = new navElem(171,"Galanterija","pi-327923245.htm",null,"Razni rab");
navigation[172] = new navElem(172,"Mouse","pi1366324930.htm",171,"mouse gal");
navigation[173] = new navElem(173,"Lager Lista","pi-1040765925.htm",172,"lager mous");
navigation[174] = new navElem(174,"Speed Link","pi-730435789.htm",173,"SPEED MOUS");
navigation[175] = new navElem(175,"Genius","pi-71150439.htm",173,"geniu mous");
navigation[176] = new navElem(176,"Kensington","pi-1033218842.htm",173,"Kensi mou");
navigation[177] = new navElem(177,"Delux","pi-260599697.htm",173,"delux mous");
navigation[178] = new navElem(178,"Fujitsu Simens","pi-517545453.htm",173,"fujit mous");
navigation[179] = new navElem(179,"Ostanati brendovi","pi263890246.htm",173,"ostant mou");
navigation[180] = new navElem(180,"Macally","pi119753371.htm",173,"Macally");
navigation[181] = new navElem(181,"HP","pi1239706547.htm",173,"963369");
navigation[182] = new navElem(182,"A4Tech","pi1270654954.htm",173,"903-003");
navigation[183] = new navElem(183,"Microsoft","pi768805230.htm",173,"901 micros");
navigation[184] = new navElem(184,"Del od proizvodite koi mozat da se poracaat","pi1069928843.htm",172,"nar mouse");
navigation[185] = new navElem(185,"Sony","pi-1189321386.htm",172,"sony mouse");
navigation[186] = new navElem(186,"Razni proizvodi","pi-1558782287.htm",171,"razni proi");
navigation[187] = new navElem(187,"Lager Lista","pi777530142.htm",186,"lag raz");
navigation[188] = new navElem(188,"Del od proizvodite koi mozat da se poracaat","pi230459463.htm",186,"nar razn");
navigation[189] = new navElem(189,"Tastaturi","pi-1064224502.htm",171,"keyb");
navigation[190] = new navElem(190,"Del od proizvodite koi mozat da se poracaat","pi-481951037.htm",189,"nar tast");
navigation[191] = new navElem(191,"Lager Lista","pi331895465.htm",189,"lager tas");
navigation[192] = new navElem(192,"Mouse Pad","pi-1527086730.htm",171,"78798798");
navigation[193] = new navElem(193,"Joystic&Game Pad","pi1039194205.htm",null,"Jostici");
navigation[194] = new navElem(194,"Lager lista","pi-436360290.htm",193,"9ad9");
navigation[195] = new navElem(195,"Del od proizvodite koi mozat da se poracaat","pi-1488511289.htm",193,"9dfs98");
navigation[196] = new navElem(196,"Bluetooth","pi-1727904356.htm",null,"Bluetooth");
navigation[197] = new navElem(197,"Bluetooth slusalki","pi916699599.htm",196,"head blue");
navigation[198] = new navElem(198,"Lager lista","pi1551344484.htm",197,"lag slus");
navigation[199] = new navElem(199,"Del od proizvodite koi mozat da se poracaat","pi-1563193195.htm",197,"nar slus");
navigation[200] = new navElem(200,"Razni bluetooth proizvodi ","pi-490737826.htm",196,"usb blue");
navigation[201] = new navElem(201,"LAGER LISTA","pi-405373001.htm",200,"lag blue");
navigation[202] = new navElem(202,"Del od proizvodite koi mozat da se poracaat","pi305323308.htm",200,"NAR");
navigation[203] = new navElem(203,"CD,DVD,CDRW...(Optical)","pi24966243.htm",null,"Cd,DVD");
navigation[204] = new navElem(204,"Del od proizvodite koi mozat da se poracaat","pi2051347055.htm",203,"nar 10");
navigation[205] = new navElem(205,"LAGER LISTA","pi34676454.htm",203,"lg10");
navigation[206] = new navElem(206,"Multimedia","pi1033336147.htm",null,"01");
navigation[207] = new navElem(207,"Video Splitter","pi-1132891819.htm",206,"video spli");
navigation[208] = new navElem(208,"Proizvodi po naracka","pi1858825099.htm",207,"nar v s");
navigation[209] = new navElem(209,"Del od proizvodite koi mozat da se poracaat","pi-1452586510.htm",207,"lag v s");
navigation[210] = new navElem(210,"Video","pi1080650148.htm",206,"Video");
navigation[211] = new navElem(211,"Lager Lista","pi485972814.htm",210,"lag vid");
navigation[212] = new navElem(212,"Del od proizvodite koi mozat da se poracaat","pi553853111.htm",210,"nar vid");
navigation[213] = new navElem(213,"TV TUNER","pi2118133104.htm",206,"tv tuner");
navigation[214] = new navElem(214,"Lager Lista","pi-18271055.htm",213,"LAG TV TUN");
navigation[215] = new navElem(215,"Del od proizvodite koi mozat da se poracaat","pi295043530.htm",213,"nara tv tu");
navigation[216] = new navElem(216,"Photo Frames","pi-1190773314.htm",206,"123456");
navigation[217] = new navElem(217,"Lager Lista","pi1230643350.htm",216,"9999999312");
navigation[218] = new navElem(218,"Del od proizvodite koi mozat da se poracaat","pi-1784775073.htm",216,"7879878979");
navigation[219] = new navElem(219,"Multimedia pleeri","pi-1131136550.htm",206,"9998899");
navigation[220] = new navElem(220,"Notebooks","pi1020460799.htm",null,"NOTEBOOKS");
navigation[221] = new navElem(221,"Del od modelite koi mozat da se poracaat","pi1135291544.htm",220,"nar note");
navigation[222] = new navElem(222,"Toshiba","pi836776480.htm",221,"Note Tosh");
navigation[223] = new navElem(223,"Sony","pi2033128699.htm",221,"Note Sony");
navigation[224] = new navElem(224,"HP-COMPAQ","pi1454337826.htm",221,"Note HP");
navigation[225] = new navElem(225,"Acer","pi323152912.htm",221,"acer lap");
navigation[226] = new navElem(226,"Panasonic Toughbooks","pi-106803607.htm",221,"panas lap");
navigation[227] = new navElem(227,"LAGER LISTA","pi-2095140011.htm",220,"Lager Note");
navigation[228] = new navElem(228,"Toshiba","pi-1014697405.htm",227,"Toshiba la");
navigation[229] = new navElem(229,"Dell","pi1033417964.htm",227,"Dell lap");
navigation[230] = new navElem(230,"Sony","pi-1231575231.htm",227,"Sony lag");
navigation[231] = new navElem(231,"HP-COMPAQ ","pi-1650280186.htm",227,"HP Lap");
navigation[232] = new navElem(232,"HP COMPAQ serija","pi1204122831.htm",231,"HP COMP");
navigation[233] = new navElem(233,"HP Pavilion/G serija","pi1835500132.htm",231,"pavilion s");
navigation[234] = new navElem(234,"Notebooks  so 12.1&#0034;/13&#0034;/ 14.1&#0034; Display ","pi-1579197570.htm",233,"14hp");
navigation[235] = new navElem(235,"Notebooks so 14.5&#0034;/15.6&#0034;/16&#0034; Display","pi167135527.htm",233,"154hp");
navigation[236] = new navElem(236,"Notebooks so 17&#0034; Display","pi-859576868.htm",233,"17hp");
navigation[237] = new navElem(237,"HP Mini-note","pi-826314858.htm",231,"9898989");
navigation[238] = new navElem(238,"HP Compaq Presario","pi1648973196.htm",231,"90909090");
navigation[239] = new navElem(239,"Lenovo","pi1164650317.htm",227,"IBM Lap");
navigation[240] = new navElem(240,"Acer","pi246290052.htm",227,"aler lag");
navigation[241] = new navElem(241,"Fujitsu ","pi921483174.htm",227,"Fuji-lap");
navigation[242] = new navElem(242,"Notebook Accesories","pi1020634974.htm",220,"accesories");
navigation[243] = new navElem(243,"Napojuvanje za notebooks","pi-350469220.htm",242,"power");
navigation[244] = new navElem(244,"Lager lista","pi1593418993.htm",243,"98989");
navigation[245] = new navElem(245,"Del od proizvodite koi mozat da se poracaat","pi1129481310.htm",243,"78901");
navigation[246] = new navElem(246,"Tasni za notebooks","pi814693371.htm",242,"tasni");
navigation[247] = new navElem(247,"Belkin","pi1345016.htm",246,"Belkin tas");
navigation[248] = new navElem(248,"Lager Lista","pi1160959668.htm",247,"LAG BELK");
navigation[249] = new navElem(249,"Kensington","pi435707033.htm",246,"Kensing ta");
navigation[250] = new navElem(250,"Razni tasni","pi-121841553.htm",246,"razni tasn");
navigation[251] = new navElem(251,"Case Logic","pi809608857.htm",246,"cl tasni");
navigation[252] = new navElem(252,"Lager lista","pi1236154349.htm",251,"7897");
navigation[253] = new navElem(253,"Del od proizvodite koi mozat da se poracaat","pi-1809923414.htm",251,"897456");
navigation[254] = new navElem(254,"Sony","pi-1995459181.htm",246,"Sony case");
navigation[255] = new navElem(255,"Hewlett Packard","pi-1069804525.htm",246,"hp case");
navigation[256] = new navElem(256,"Targus ","pi1221742335.htm",246,"Targ tas");
navigation[257] = new navElem(257,"Dell","pi1231492782.htm",246,"7047413245");
navigation[258] = new navElem(258,"Port replicator","pi-1096957142.htm",242,"port rep");
navigation[259] = new navElem(259,"Securrity za notebooks","pi906130919.htm",242,"sec noteq");
navigation[260] = new navElem(260,"PC & Express cards","pi130478910.htm",242,"pcmcia");
navigation[261] = new navElem(261,"Lager lista","pi1120956944.htm",260,"lag pcmcia");
navigation[262] = new navElem(262,"Del od proizvodite koi mozat da se poracaat","pi958295249.htm",260,"nar pcmcia");
navigation[263] = new navElem(263,"Memorija za notebooks","pi-355402927.htm",242,"mem note");
navigation[264] = new navElem(264,"Hard disk za notebooks","pi-2123314544.htm",242,"hard note");
navigation[265] = new navElem(265,"Exteren Floppy drive","pi1240319336.htm",242,"ext flopy");
navigation[266] = new navElem(266,"Pecatari za notebooks","pi-41925333.htm",242,"prin note");
navigation[267] = new navElem(267,"Razni dodatoci","pi1854756851.htm",242,"KABEL");
navigation[268] = new navElem(268,"Lager lista","pi1976713798.htm",267,"1000000");
navigation[269] = new navElem(269,"Del od proizvodite koi mozat da se poracaat","pi1358989903.htm",267,"10000001");
navigation[270] = new navElem(270,"DVDRW/COMBO internal drive","pi-1221351513.htm",242,"DVDRW lap");
navigation[271] = new navElem(271,"TV Tuner for notebook","pi-1957788297.htm",242,"tv tuner n");
navigation[272] = new navElem(272,"Scanner","pi1232651143.htm",null,"Scan ");
navigation[273] = new navElem(273,"Lager Lista","pi1817089693.htm",272,"Lager scan");
navigation[274] = new navElem(274,"Del od proizvodite koi mozat da se poracaat","pi-77494374.htm",272,"mod por sc");
navigation[275] = new navElem(275,"Epson","pi766895491.htm",274,"espon scan");
navigation[276] = new navElem(276,"Wolverine","pi1227860098.htm",274,"7*79*7*7");
navigation[277] = new navElem(277,"USB HUB","pi-59715756.htm",null,"usb hub");
navigation[278] = new navElem(278,"Del od proizvodite koi mozat da se poracaat","pi-204139102.htm",277,"por");
navigation[279] = new navElem(279,"LAGER LISTA","pi-350623291.htm",277,"LAG HUB");
navigation[280] = new navElem(280,"LACIE","pi323135455.htm",null,"monotrcrt");
navigation[281] = new navElem(281,"Monitori","pi-249262652.htm",280,"lac monito");
navigation[282] = new navElem(282,"Calibrators","pi-674561163.htm",280,"kalibr.lac");
navigation[283] = new navElem(283,"Razni Lacie proizvodi","pi129225929.htm",280,"ostanato l");
navigation[284] = new navElem(284,"Web camera","pi1030562608.htm",null,"web cam");
navigation[285] = new navElem(285,"Del od proizvodite koi mozat da se poracaat","pi1322936071.htm",284,"por web");
navigation[286] = new navElem(286,"LAGER LISTA","pi-1244901519.htm",284,"lag web");
navigation[287] = new navElem(287,"Genius","pi-268107347.htm",286,"genius web");
navigation[288] = new navElem(288,"Microsoft","pi-1546776951.htm",286,"Micro Web");
navigation[289] = new navElem(289,"Logitech","pi2139914533.htm",286,"logi web");
navigation[290] = new navElem(290,"Creative","pi-974434898.htm",286,"creati web");
navigation[291] = new navElem(291,"Ostanati brendovi","pi-704066797.htm",286,"ostanati w");
navigation[292] = new navElem(292,"Memoriski moduli  i citaci","pi-263723160.htm",null,"MEMORII");
navigation[293] = new navElem(293,"USB Flash Drive","pi-580582078.htm",292,"USB");
navigation[294] = new navElem(294,"2GB USB Flash Drive","pi-2002856358.htm",293,"2gb usb");
navigation[295] = new navElem(295,"4GB USB Flash Drive","pi218139091.htm",293,"4gb");
navigation[296] = new navElem(296,"8GB USB Flash Drive","pi-773931739.htm",293,"787878");
navigation[297] = new navElem(297,"16GB USB Flash Drive","pi-1710473530.htm",293,"8798798798");
navigation[298] = new navElem(298,"SD card","pi2133695988.htm",292,"SD");
navigation[299] = new navElem(299,"Memory Stick","pi-1467278007.htm",292,"Memory Sti");
navigation[300] = new navElem(300,"Memoriski Citaci","pi-697574612.htm",292,"337373");
navigation[301] = new navElem(301,"microSD","pi1183466209.htm",292,"microSD ca");
navigation[302] = new navElem(302,"USB & FW Ext. proizvodi","pi1040423606.htm",null,"USB Ext");
navigation[303] = new navElem(303,"USB/FW Eksterni kutii","pi207903099.htm",302,"EXT KUTII");
navigation[304] = new navElem(304,"Lager lista","pi578585781.htm",303,"lager usb");
navigation[305] = new navElem(305,"Del od proizvodite koi mozat da se poracaat","pi1398665682.htm",303,"nara usb");
navigation[306] = new navElem(306,"Kabli-USB i FW","pi-301711580.htm",302,"kabli");
navigation[307] = new navElem(307,"Lager lista","pi2053833110.htm",306,"lage kab");
navigation[308] = new navElem(308,"Del od proizvodite koi mozat da se poracaat","pi-1615066273.htm",306,"nar kab");
navigation[309] = new navElem(309,"Video kameri","pi1064667267.htm",null,"Video cam");
navigation[310] = new navElem(310,"Tasni za video kameri","pi-532349795.htm",309,"98989891");
navigation[311] = new navElem(311,"LAGER LISTA","pi1078760694.htm",309,"lag video");
navigation[312] = new navElem(312,"Del od proizvodite koi mozat da se poracaat","pi-813683061.htm",309,"mod nar vi");
navigation[313] = new navElem(313,"Panasonic","pi-1309765872.htm",312,"PANA CAM");
navigation[314] = new navElem(314,"JVC","pi-1844530936.htm",312,"jvc");
navigation[315] = new navElem(315,"CANON","pi1311048603.htm",312,"CANON CAM");
navigation[316] = new navElem(316,"SONY","pi1203929248.htm",312,"sony camc");
navigation[317] = new navElem(317,"JVC","pi-1935713164.htm",312,"JVC camcor");
navigation[318] = new navElem(318,"SANYO","pi-1560926226.htm",312,"Sanyo camc");
navigation[319] = new navElem(319,"APPLE STORE","pi1044733403.htm",null,"apple");
navigation[320] = new navElem(320,"Mac & Macbook&#0039;s Accesories","pi1133928470.htm",319,"apple acc");
navigation[321] = new navElem(321,"Tasni za Apple Macbook&#0039;s","pi-1038035420.htm",320,"tasni appl");
navigation[322] = new navElem(322,"Lager Lista","pi542656024.htm",320,"lag. mac a");
navigation[323] = new navElem(323,"Del od proizvodite koi mozat da se poracaat","pi209576505.htm",320,"nar mac ac");
navigation[324] = new navElem(324,"iPod&#0039;s","pi1086302546.htm",319,"ipod");
navigation[325] = new navElem(325,"Accesories for iPod&#0039;s","pi786504406.htm",324,"acces.");
navigation[326] = new navElem(326,"Lager Lista","pi-211546934.htm",325,"lag acc ip");
navigation[327] = new navElem(327,"Futroli za iPod","pi1967265351.htm",326,"fut ipod");
navigation[328] = new navElem(328,"iPod Classic","pi-1566123506.htm",327,"ipod class");
navigation[329] = new navElem(329,"iPod Touch","pi-285191377.htm",327,"ipod tosuc");
navigation[330] = new navElem(330,"iPod Video","pi714819829.htm",327,"ipod video");
navigation[331] = new navElem(331,"iPod nano 3rd Generation","pi-84523632.htm",327,"ipod nano3");
navigation[332] = new navElem(332,"Ostanati modeli na iPod","pi1757900444.htm",327,"ostanot ip");
navigation[333] = new navElem(333,"Power","pi-1575812024.htm",326,"power ipod");
navigation[334] = new navElem(334,"FM Transmitter","pi-959822523.htm",326,"Fm ipod");
navigation[335] = new navElem(335,"Kabli","pi-1321618886.htm",326,"kabli ipod");
navigation[336] = new navElem(336,"Dock","pi439139710.htm",326,"dock ipod");
navigation[337] = new navElem(337,"Razno","pi1570640791.htm",326,"razno ipod");
navigation[338] = new navElem(338,"Slusalki","pi-1135229524.htm",326,"898989");
navigation[339] = new navElem(339,"Del od proizvodite koi mozat da se poracaat","pi1821621123.htm",325,"nar ip acc");
navigation[340] = new navElem(340,"Apple","pi176072986.htm",339,"akc apple");
navigation[341] = new navElem(341,"Belkin","pi-391047789.htm",339,"belk akce");
navigation[342] = new navElem(342,"Griffin","pi-968696616.htm",339,"grif akc");
navigation[343] = new navElem(343,"Monster","pi-366288391.htm",339,"monst akc");
navigation[344] = new navElem(344,"Macally","pi-763601713.htm",339,"maca akc");
navigation[345] = new navElem(345,"Ostanati brendovi","pi-882398973.htm",339,"ostan akc");
navigation[346] = new navElem(346,"Kensington","pi-1047185293.htm",339,"kens akc");
navigation[347] = new navElem(347,"iSkin","pi-78272740.htm",339,"iskin akc");
navigation[348] = new navElem(348,"Lager Lista","pi1647290376.htm",324,"lag ipod");
navigation[349] = new navElem(349,"Del od proizvodite koi mozat da se poracaat","pi-313018007.htm",324,"nar ipod");
navigation[350] = new navElem(350,"Apple Displays","pi1061326566.htm",319,"appl displ");
navigation[351] = new navElem(351,"Lager lista","pi855888985.htm",350,"app tft la");
navigation[352] = new navElem(352,"Del od proizvodite koi mozat da se poracaat","pi-2118891098.htm",350,"nar tft ap");
navigation[353] = new navElem(353,"MAC PRO","pi-1259640105.htm",319,"powerg4");
navigation[354] = new navElem(354,"Lager Lista","pi-33456341.htm",353,"lag g5");
navigation[355] = new navElem(355,"Del od proizvodite koi mozat da se poracaat","pi843316368.htm",353,"nar g5");
navigation[356] = new navElem(356,"iMAC Desktops ","pi2114545379.htm",319,"imac");
navigation[357] = new navElem(357,"Lager lista","pi-686385764.htm",356,"lag imac");
navigation[358] = new navElem(358,"Del od proizvodite koi mozat da se poracaat","pi1952609389.htm",356,"nar imac");
navigation[359] = new navElem(359,"MacBook","pi2101127614.htm",319,"powbook");
navigation[360] = new navElem(360,"Lager Lista","pi-1403155498.htm",359,"lag power");
navigation[361] = new navElem(361,"Del od proizvodite koi mozat da se poracaat","pi-1617700705.htm",359,"nar power");
navigation[362] = new navElem(362,"Dodatoci za Macbook","pi841780112.htm",359,"dodatoc ma");
navigation[363] = new navElem(363,"Mac mini","pi25901902.htm",319,"mAC MINI");
navigation[364] = new navElem(364,"Lager lista","pi708935863.htm",363,"lag mini");
navigation[365] = new navElem(365,"Del od proizvodite koi mozat da se poracaat","pi568855084.htm",363,"ord mini");
navigation[366] = new navElem(366,"MacBook Pro","pi1137430511.htm",319,"MacBook ");
navigation[367] = new navElem(367,"Lager lista ","pi-1738258684.htm",366,"Lag macboo");
navigation[368] = new navElem(368,"Del od proizvodite koi mozat da se poracaat","pi-1905388619.htm",366,"nar macboo");
navigation[369] = new navElem(369,"Apple TV","pi-1001416972.htm",319,"atv");
navigation[370] = new navElem(370,"iPhone","pi1815903389.htm",319,"iPhone cat");
navigation[371] = new navElem(371,"Dodatoci za iPhone","pi-1283914618.htm",370,"ACC IPHONE");
navigation[372] = new navElem(372,"Futroli za iPhone","pi474754530.htm",371,"futroli ip");
navigation[373] = new navElem(373,"Lager lista","pi-115532613.htm",372,"lag futr");
navigation[374] = new navElem(374,"Del od proizvodite koi mozat da se poracaat","pi-1179775264.htm",372,"pora futr");
navigation[375] = new navElem(375,"Razni Dodatoci za iPhone","pi-863441684.htm",371,"razni doda");
navigation[376] = new navElem(376,"Lager Lista","pi1165794486.htm",375,"lager09");
navigation[377] = new navElem(377,"Del od proizvodite koi mozat da se poracaat","pi1261637631.htm",375,"naracka09");
navigation[378] = new navElem(378,"Macbook Air","pi1031695926.htm",319,"Macboo air");
navigation[379] = new navElem(379,"Akcesorii za Macbook Air","pi-2060759758.htm",378,"dod air");
navigation[380] = new navElem(380,"Lager lista","pi-1066357386.htm",379,"963");
navigation[381] = new navElem(381,"Del od proizvodite koi mozat da se poracaat","pi568678917.htm",379,"7894");
navigation[382] = new navElem(382,"iPad","pi-263300078.htm",319,"123-ipad");
navigation[383] = new navElem(383,"Lager lista","pi1274272162.htm",382,"987-lag");
navigation[384] = new navElem(384,"Del od proizvodite koi mozat da se poracaat","pi769969531.htm",382,"789-pora");
navigation[385] = new navElem(385,"Acessories","pi-827522248.htm",382,"456-acceso");
navigation[386] = new navElem(386,"Digitalni Proektori","pi1040501104.htm",null,"dig proek");
navigation[387] = new navElem(387,"LAGER LISTA","pi1835274400.htm",386,"lg dig pr");
navigation[388] = new navElem(388,"Benq","pi1222340998.htm",387,"800000");
navigation[389] = new navElem(389,"Epson","pi974215311.htm",387,"800001");
navigation[390] = new navElem(390,"Toshiba","pi-622560710.htm",387,"800002");
navigation[391] = new navElem(391,"Acer","pi1119232720.htm",387,"800003");
navigation[392] = new navElem(392,"ViewSonic","pi-1578524708.htm",387,"800004");
navigation[393] = new navElem(393,"Panasonic","pi112247213.htm",387,"800006");
navigation[394] = new navElem(394,"HP","pi448122505.htm",387,"800007");
navigation[395] = new navElem(395,"Sony","pi-1952230580.htm",387,"369258");
navigation[396] = new navElem(396,"SANYO","pi1979326120.htm",387,"98-30");
navigation[397] = new navElem(397,"Dodatoci za Pojektori","pi-1690718452.htm",386,"acce proj");
navigation[398] = new navElem(398,"Screen&#0039;s( PLatna ) ","pi636865087.htm",386,"platna");
navigation[399] = new navElem(399,"Del od proizvodite koi mozat da se poracaat","pi1136804948.htm",386,"por proek");
navigation[400] = new navElem(400,"View Sonic","pi2066004611.htm",399,"view proj");
navigation[401] = new navElem(401,"Benq","pi-1065737883.htm",399,"Benq proj");
navigation[402] = new navElem(402,"Toshiba","pi-1925054392.htm",399,"tosh dig p");
navigation[403] = new navElem(403,"Infocus","pi1607600305.htm",399,"infocus pr");
navigation[404] = new navElem(404,"NEC","pi1012100020.htm",399,"nec dig pr");
navigation[405] = new navElem(405,"Pecatari","pi-242496287.htm",null,"Pecatar");
navigation[406] = new navElem(406,"Minolta","pi-1562039922.htm",405,"minolta pe");
navigation[407] = new navElem(407,"Hewlett Packard","pi289283757.htm",405,"HP  pec");
navigation[408] = new navElem(408,"Multifunkciski","pi1202819997.htm",407,"multi HP");
navigation[409] = new navElem(409,"Laserski pecatari","pi1625300446.htm",407,"Laser HP");
navigation[410] = new navElem(410,"InkJet pecatari","pi1122762857.htm",407,"inkjet HP");
navigation[411] = new navElem(411,"Lexmark","pi-1256301446.htm",405,"Lexmark pr");
navigation[412] = new navElem(412,"Xerox","pi476501776.htm",405,"Xerox prin");
navigation[413] = new navElem(413,"Samsung","pi-1454999295.htm",405,"pec sams");
navigation[414] = new navElem(414,"Canon","pi-130890304.htm",405,"peca");
navigation[415] = new navElem(415,"Mulitfunkciski","pi-292076863.htm",414,"lag can");
navigation[416] = new navElem(416,"Ink Jet","pi-2117066258.htm",414,"ink can");
navigation[417] = new navElem(417,"Laserski ","pi630311639.htm",414,"Las can");
navigation[418] = new navElem(418,"Epson","pi-537146457.htm",405,"986Epson");
navigation[419] = new navElem(419,"Sony Play Station","pi-1821296321.htm",null,"Sony psp");
navigation[420] = new navElem(420,"Voice Recorders ( Dictaphones)","pi-1667819829.htm",null,"VOICE REC");
navigation[421] = new navElem(421,"Olympus","pi1086940080.htm",420,"voice oly");
navigation[422] = new navElem(422,"Lager Lista","pi1768407692.htm",420,"lager dikt");
navigation[423] = new navElem(423,"UPS","pi871788627.htm",null,"UPS");
navigation[424] = new navElem(424,"Servers","pi-457147869.htm",null,"Server");
navigation[425] = new navElem(425,"Ventilatori","pi857111409.htm",null,"coolers");
navigation[426] = new navElem(426,"Rasurbo","pi-1793378082.htm",425,"Rasurbo co");
navigation[427] = new navElem(427,"Coolink","pi207647495.htm",425,"Coolink co");
navigation[428] = new navElem(428,"Napojuvanje ","pi-546811836.htm",null,"Napojuvanj");
navigation[429] = new navElem(429,"Rasurbo","pi-1166855179.htm",428,"rasurbo na");
navigation[430] = new navElem(430,"SPORT&#0039;s Outdoor","pi237531876.htm",null,"Sports");
navigation[431] = new navElem(431,"Lager lista","pi-994361647.htm",430,"sportcamla");
navigation[432] = new navElem(432,"Del od proizvodite koi mozat da se poracaat","pi781832382.htm",430,"sporcampor");
navigation[433] = new navElem(433,"Protection","pi1247658977.htm",null,"protec");
navigation[434] = new navElem(434,"GAMING PROIZVODI","pi176364496.htm",null,"9393933939");
navigation[435] = new navElem(435,"TN GAMES","pi2134911196.htm",434,"9*9*99*9");
navigation[436] = new navElem(436,"RAZER","pi143731306.htm",434,"8*8*8*8");
navigation[437] = new navElem(437,"Lager lista","pi-165695325.htm",436,"7*7*7");
navigation[438] = new navElem(438,"Mouse pad","pi-687760846.htm",437,"0101012012");
navigation[439] = new navElem(439,"Mouse","pi532769429.htm",437,"02020202");
navigation[440] = new navElem(440,"Keyboard","pi1313933003.htm",437,"0303030330");
navigation[441] = new navElem(441,"Del od proizvodite koi mozat da se poracaat","pi-167477592.htm",436,"7*7*7*7*7");
navigation[442] = new navElem(442,"Mouse","pi305577179.htm",441,"9*8*98");
navigation[443] = new navElem(443,"Mouse Pad","pi-1861487488.htm",441,"7*8*9*");
navigation[444] = new navElem(444,"Keyboard","pi-591070591.htm",441,"9*98*8*8");
navigation[445] = new navElem(445,"Slusalki","pi-43030013.htm",441,"98-9");
navigation[446] = new navElem(446,"Zvucnici","pi1469338760.htm",441,"98-7");
navigation[447] = new navElem(447,"LOGITECH","pi348879718.htm",434,"789987");
navigation[448] = new navElem(448,"MICROSOFT","pi1257165930.htm",434,"987-01");
navigation[449] = new navElem(449,"NVIDIA","pi1271317380.htm",434,"907-NV");
navigation[450] = new navElem(450,"MadCatz CYBORG","pi1284641205.htm",434,"00123CYbor");
navigation[451] = new navElem(451,"Lager lista","pi1310039361.htm",450,"787lag89");
navigation[452] = new navElem(452,"Del od proizvodite koi mozat da se poracaat","pi-262862226.htm",450,"78971041na");
navigation[453] = new navElem(453,"CD/DVD Medii","pi2000826548.htm",null,"cddvd medi");
navigation[454] = new navElem(454,"CD medii","pi392447909.htm",453,"cd media");
navigation[455] = new navElem(455,"DVD Medii","pi-1522608638.htm",453,"DVD medii");
navigation[456] = new navElem(456,"Fax Machines","pi2073312902.htm",null,"Fax");
navigation[457] = new navElem(457,"Canon","pi1824219535.htm",456,"can fax");
navigation[458] = new navElem(458,"Multimedia Players","pi1301913942.htm",null,"987Mmplaye");
navigation[459] = new navElem(459,"Lager Lista","pi-764108769.htm",458,"89-Lager");
navigation[460] = new navElem(460,"Del od proizvodite koi mozat da se poracaat","pi1931214708.htm",458,"987-porack");
navigation[461] = new navElem(461,"LaCie","pi-59891867.htm",460,"LaCie21");
navigation[462] = new navElem(462,"ViewSonic","pi-271564094.htm",460,"32ViewSo");
navigation[463] = new navElem(463,"Western Digital","pi-1441396709.htm",460,"658Widig");
navigation[464] = new navElem(464,"Seagate","pi1894231744.htm",460,"321Sea");
navigation[465] = new navElem(465,"Transcend","pi-273008703.htm",460,"567lkj");
navigation[466] = new navElem(466,"Iomega","pi1561539310.htm",460,"0987IOm");
navigation[467] = new navElem(467,"Casovnici","pi-1653727496.htm",null,"sat090534");
navigation[468] = new navElem(468,"Men&#0039;s Watches","pi-2110897767.htm",467,"01123men");
navigation[469] = new navElem(469,"Women&#0039;s Watches","pi-1705968154.htm",467,"wom789456");
navigation[470] = new navElem(470,"Tablet&#0039;s","pi1307095693.htm",null,"5467Tab");
navigation[471] = new navElem(471,"Lager lista","pi1687294154.htm",470,"456Lager");
navigation[472] = new navElem(472,"Del od proizvodite koi mozat da se poracaat","pi-1455263869.htm",470,"7891porac");
navigation[473] = new navElem(473,"External Hard Drives","pi-1157974009.htm",null,"2053Ekster");
navigation[474] = new navElem(474,"Lager lista","pi1042850620.htm",473,"650Lag");
navigation[475] = new navElem(475,"Del od proizvodite koi mozat da se poracaat","pi315398541.htm",473,"0100porac");
navigation[476] = new navElem(476,"Car DVR","pi1358344358.htm",null,"5989cardvr");
navigation[477] = new navElem(477,"Lager lista","pi1234317615.htm",476,"7981Llista");
navigation[478] = new navElem(478,"Del od proizvodite koi mozat da se poracaat","pi-408756412.htm",476,"09803narac");

// getNavElementByCatID
function getNavElementByCatID(categoryId){
	for(var i=0; i<navigation.length; i++){
		if(navigation[i].categoryId==categoryId){
			return(navigation[i]);
			break;
			};
		};
		return(null);
	};
// changeLoc
function changeLoc(id,linkUrl){
	if(id!="nada"){
		xmlConfig.navIndex = id.toString();
		if(xmlConfig.getFirstItem("SearchEngine").ByCategory == "1"){
			if(id=="null") xmlConfig.getFirstItem("SearchEngine").categoryId = "null"
			else xmlConfig.getFirstItem("SearchEngine").categoryId = navigation[id].categoryId;
			xmlConfig.getFirstItem("SearchEngine").categoryIndex = id;
			}
		else{
			xmlConfig.getFirstItem("SearchEngine").categoryId = "null";
			xmlConfig.getFirstItem("SearchEngine").categoryIndex = "null";
			};
		safeData();
		location.href = linkUrl + "?categoryId=" + id.toString();
		};
	};
// searchOnEnterNavi
function searchOnEnterNavi(){
	if(window.event.keyCode==13){
		xmlConfig.getFirstItem('SearchEngine').term=document.searchEngine.searchTerm.value;
		location.href = "search.htm";
		};
	};
// activates entries for categories
activateItem(getParameterFromURL("categoryId"));


