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