//
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 += "Produkte:<strong>&nbsp;" + prdCount + "</strong><br>";
	prdString += "Summe:<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="12" height="12" border="0" align="absmiddle" hspace="0" vspace="0" class="catnav">' + "Zum Bestellschein</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\">Produktkatalog</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="1" cellspacing="1" >';
		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="13" height="1" height="1" alt="" border="0"></td>';
			};
		if(navItem.active) strHTML += '<td width="1%" class="ACTIVECATEGORY"><img src="assets/images/bulletcatact.gif" width="13" height="13" 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="13" height="13" border="0" align="bottom" hspace="0" vspace="0" class="catnav"></td>'
		else strHTML += '<td width=\"1%\"><img src="assets/images/bulletcat1st.gif" width="12" height="12" 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,"DRUCKER","pi-47371391.htm",null,"030");
navigation[1] = new navElem(1,"Laserdrucker","pi1434662045.htm",0,"030110");
navigation[2] = new navElem(2,"Thermodrucker","pi1665300143.htm",0,"030220");
navigation[3] = new navElem(3,"InkJet Drucker","pi-591594458.htm",0,"03080");
navigation[4] = new navElem(4,"FOLIEN","pi-693615317.htm",null,"050");
navigation[5] = new navElem(5,"Flexfolien","pi-1653028208.htm",4,"1-110");
navigation[6] = new navElem(6,"Flockfolien","pi-1559301314.htm",4,"30-05");
navigation[7] = new navElem(7,"Schneidefolien","pi833254887.htm",4,"3-113");
navigation[8] = new navElem(8,"MULTI FIX","pi1103219902.htm",7,"1-100");
navigation[9] = new navElem(9,"KOMPRESSOREN","pi1030565945.htm",null,"100");
navigation[10] = new navElem(10,"Sil-Air","pi-1016885773.htm",9,"100-00");
navigation[11] = new navElem(11,"LAMINIERGERÄTE","pi49026981.htm",null,"110");
navigation[12] = new navElem(12,"SCHNEIDEPLOTTER","pi1085508632.htm",null,"210");
navigation[13] = new navElem(13,"Summa Systeme","pi734957244.htm",12,"30-10");
navigation[14] = new navElem(14,"Summa Zubehör","pi1101561955.htm",13,"30-10-05");
navigation[15] = new navElem(15,"Graphtec Serie","pi-830080340.htm",12,"30-20");
navigation[16] = new navElem(16,"Graphtec Zubehör","pi1471644520.htm",15,"30-20-10");
navigation[17] = new navElem(17,"Mimaki Serie","pi1162977913.htm",12,"30-30");
navigation[18] = new navElem(18,"Mimaki Zubehör","pi-2003679930.htm",17,"30-30-05");
navigation[19] = new navElem(19,"TRANSFERDRUCK","pi681319914.htm",null,"220");
navigation[20] = new navElem(20,"TRANSFERPAPIERE","pi1450038748.htm",19,"225");
navigation[21] = new navElem(21,"Laserdruck","pi-1947815565.htm",20,"121");
navigation[22] = new navElem(22,"Sublimationsdruck","pi1085104345.htm",20,"123");
navigation[23] = new navElem(23,"Ink-Jetdruck","pi951747384.htm",20,"225080");
navigation[24] = new navElem(24,"Toner-Transfer","pi1103524590.htm",19,"36221");
navigation[25] = new navElem(25,"Alles von A-Z","pi-113229448.htm",24,"9605-000");
navigation[26] = new navElem(26,"Aluminium","pi-453557841.htm",24,"9605-001");
navigation[27] = new navElem(27,"Bierkrüge","pi479644510.htm",24,"9605-005");
navigation[28] = new navElem(28,"Babylätzchen","pi780721.htm",24,"9605-010");
navigation[29] = new navElem(29,"Grillhandschuhe","pi1763119107.htm",24,"9605-066");
navigation[30] = new navElem(30,"Grillschürzen","pi1936327498.htm",24,"9605-067");
navigation[31] = new navElem(31,"Handtücher","pi-1152979221.htm",24,"9605-080");
navigation[32] = new navElem(32,"Keramik","pi-1860349415.htm",24,"9605-091");
navigation[33] = new navElem(33,"Kerzen","pi-825398425.htm",24,"9605-100");
navigation[34] = new navElem(34,"Krawatten","pi-159210357.htm",24,"9605-102");
navigation[35] = new navElem(35,"Kissenbezüge","pi-848920819.htm",24,"9605-104");
navigation[36] = new navElem(36,"Krüge","pi-317666833.htm",24,"9605-105");
navigation[37] = new navElem(37,"Lexan","pi-1073565294.htm",24,"9605-110");
navigation[38] = new navElem(38,"Magnetfolie","pi-1947839279.htm",24,"9605-150");
navigation[39] = new navElem(39,"Mousepads","pi1291404770.htm",24,"9605-152");
navigation[40] = new navElem(40,"Puzzles","pi-769640188.htm",24,"9605-200");
navigation[41] = new navElem(41,"Regenschirme","pi1394006984.htm",24,"9605-201");
navigation[42] = new navElem(42,"Tassen","pi-1557535642.htm",24,"9605-220");
navigation[43] = new navElem(43,"Textilien","pi266575285.htm",24,"9605-221");
navigation[44] = new navElem(44,"Transferpapiere","pi-286042414.htm",24,"9605-222");
navigation[45] = new navElem(45,"Teddys","pi601787013.htm",24,"9605-224");
navigation[46] = new navElem(46,"Wimpel","pi-760181145.htm",24,"9605-255");
navigation[47] = new navElem(47,"Uhren","pi1409391197.htm",24,"9605-260");
navigation[48] = new navElem(48,"Verpackungen","pi-686770028.htm",24,"9605-270");
navigation[49] = new navElem(49,"InkJet-Transfer","pi1889798103.htm",19,"96-10");
navigation[50] = new navElem(50,"Transferpapiere","pi550305493.htm",49,"9610220");
navigation[51] = new navElem(51,"Sublimation","pi782273228.htm",19,"96-15");
navigation[52] = new navElem(52,"Alles von A-Z","pi636202461.htm",51,"9615-000");
navigation[53] = new navElem(53,"Aluminium","pi2034421734.htm",51,"9615-001");
navigation[54] = new navElem(54,"Babylätzchen","pi887249556.htm",51,"9615-011");
navigation[55] = new navElem(55,"Basketball-Korb","pi-537168270.htm",51,"9615-012");
navigation[56] = new navElem(56,"Bierkrüge","pi-1802571805.htm",51,"9615-013");
navigation[57] = new navElem(57,"Caps","pi1377582060.htm",51,"9615-020");
navigation[58] = new navElem(58,"Drucker","pi-1308822468.htm",51,"9615-032");
navigation[59] = new navElem(59,"Flexfolien","pi89282410.htm",51,"9615-051");
navigation[60] = new navElem(60,"Fliesen","pi1392979823.htm",51,"9615-053");
navigation[61] = new navElem(61,"Fussmatten","pi2089837726.htm",51,"9615-057");
navigation[62] = new navElem(62,"Glasprodukte","pi-39776124.htm",51,"9615-060");
navigation[63] = new navElem(63,"Handtücher","pi-685342923.htm",51,"9615-070");
navigation[64] = new navElem(64,"Holz und MDF","pi-330433966.htm",51,"9615-071");
navigation[65] = new navElem(65,"Keramik","pi1702805983.htm",51,"9615-101");
navigation[66] = new navElem(66,"Kofferanhänger","pi1457842843.htm",51,"9615-102");
navigation[67] = new navElem(67,"Krawatten","pi1839927285.htm",51,"9615-103");
navigation[68] = new navElem(68,"Krüge","pi372665908.htm",51,"9615-104");
navigation[69] = new navElem(69,"Kunststoffe","pi275046807.htm",51,"9615-105");
navigation[70] = new navElem(70,"Lanyards","pi115782801.htm",51,"9615-110");
navigation[71] = new navElem(71,"Mousepads","pi-1365520047.htm",51,"9615-150");
navigation[72] = new navElem(72,"Metall","pi-1945631874.htm",51,"9615-152");
navigation[73] = new navElem(73,"Namensschilder","pi1260306465.htm",51,"9615-160");
navigation[74] = new navElem(74,"Papiere","pi-850147877.htm",51,"9615-182");
navigation[75] = new navElem(75,"Patchmaterialien","pi-1173630681.htm",51,"9615-183");
navigation[76] = new navElem(76,"Plotterfolien","pi623105965.htm",51,"9615-185");
navigation[77] = new navElem(77,"Puzzles","pi824497539.htm",51,"9615-187");
navigation[78] = new navElem(78,"Polyesterflock","pi847419811.htm",51,"9615-190");
navigation[79] = new navElem(79,"Regenschirme","pi826778567.htm",51,"9615-200");
navigation[80] = new navElem(80,"Schlauchsysteme","pi1374463275.htm",51,"9615-215");
navigation[81] = new navElem(81,"Tassen","pi-382319479.htm",51,"9615-220");
navigation[82] = new navElem(82,"Tabletts","pi1501162640.htm",51,"9615-221");
navigation[83] = new navElem(83,"Taschenanhänger","pi-1000291322.htm",51,"9615-222");
navigation[84] = new navElem(84,"Textilien","pi-822977892.htm",51,"9615-223");
navigation[85] = new navElem(85,"Babylätzchen","pi944359767.htm",84,"9615230011");
navigation[86] = new navElem(86,"Cup´s","pi1774383519.htm",84,"9615230020");
navigation[87] = new navElem(87,"Fussmatten","pi1887255104.htm",84,"9615230050");
navigation[88] = new navElem(88,"Handtücher","pi-1946652261.htm",84,"9615230070");
navigation[89] = new navElem(89,"Polos","pi1591587370.htm",84,"9615230180");
navigation[90] = new navElem(90,"Sweat-Shirts","pi-1435916074.htm",84,"9615230210");
navigation[91] = new navElem(91,"T-Shirts","pi128048713.htm",84,"9615230220");
navigation[92] = new navElem(92,"Tinte","pi1108561794.htm",51,"9615-225");
navigation[93] = new navElem(93,"EPSON 800/850/1520","pi1122784969.htm",92,"9615235-03");
navigation[94] = new navElem(94,"EPSON 900/980","pi183465704.htm",92,"9615235-05");
navigation[95] = new navElem(95,"EPSON 1200/1290","pi652830235.htm",92,"9615235-15");
navigation[96] = new navElem(96,"EPSON 3000","pi-1631332522.htm",92,"9615235-20");
navigation[97] = new navElem(97,"BULK-SYSTEM (Flaschen)","pi-2090590689.htm",92,"9615235-50");
navigation[98] = new navElem(98,"Reinigungs-Kits","pi-1855983133.htm",92,"9615235-70");
navigation[99] = new navElem(99,"Transferpapiere","pi-885225088.htm",51,"9615-228");
navigation[100] = new navElem(100,"Uhren","pi1761245516.htm",51,"9615-230");
navigation[101] = new navElem(101,"Untersetzer","pi328543309.htm",51,"9615-233");
navigation[102] = new navElem(102,"Türanhänger","pi-792428736.htm",51,"9615-240");
navigation[103] = new navElem(103,"Verpackungen","pi-1045004938.htm",51,"9615-241");
navigation[104] = new navElem(104,"Wimpel","pi1563868889.htm",51,"9615-255");
navigation[105] = new navElem(105,"TRANSFERPRESSEN","pi345426170.htm",null,"226");
navigation[106] = new navElem(106,"Alles von A-Z","pi1323441626.htm",105,"10-01");
navigation[107] = new navElem(107,"PRODUKTKONFIGURATOR","pi211737474.htm",106,"CONFIG");
navigation[108] = new navElem(108,"PKTPGFCLME","pi385230721.htm",107,"PKTPGFCLME");
navigation[109] = new navElem(109,"PKTPGFCLPE","pi1075072666.htm",107,"PKTPGFCLPE");
navigation[110] = new navElem(110,"PKTPSTPOW","pi-202474100.htm",107,"PKTPSTPOW");
navigation[111] = new navElem(111,"nach Marken","pi-1612662093.htm",105,"10-10");
navigation[112] = new navElem(112,"S.E.F.A.","pi-562350216.htm",111,"025-1-1");
navigation[113] = new navElem(113,"Zubehör","pi1105367386.htm",112,"025112-005");
navigation[114] = new navElem(114,"Hotronix","pi948196899.htm",111,"025-1-10");
navigation[115] = new navElem(115,"Zubehör Hotronix","pi-786203003.htm",114,"025-1-10-9");
navigation[116] = new navElem(116,"THERMOPRESS","pi1100263803.htm",111,"025-1-12");
navigation[117] = new navElem(117,"Zubehör TP","pi1367188902.htm",116,"25-1-35-1");
navigation[118] = new navElem(118,"EuroDuke","pi-1994142719.htm",111,"025-1-15");
navigation[119] = new navElem(119,"Zubehör ED","pi-1279657445.htm",118,"25-1-15-1");
navigation[120] = new navElem(120,"HOTONE","pi1878893432.htm",111,"025-1-2");
navigation[121] = new navElem(121,"DuPlex","pi-2899410.htm",111,"025-1-20");
navigation[122] = new navElem(122,"Zubehör","pi-1398859.htm",121,"025-1-20-1");
navigation[123] = new navElem(123,"Century","pi1580103191.htm",111,"025-1-25");
navigation[124] = new navElem(124,"MugVario","pi1021911891.htm",111,"025-1-30");
navigation[125] = new navElem(125,"Zubehör MugVario","pi-513195473.htm",124,"025-1-30-1");
navigation[126] = new navElem(126,"MBR-Ungarn","pi432731582.htm",111,"025-1-35");
navigation[127] = new navElem(127,"Pagotto","pi56876010.htm",111,"025-1-49");
navigation[128] = new navElem(128,"","pi-562230411.htm",111,"9999999999");
navigation[129] = new navElem(129,"0","pi870875069.htm",128,"999999000");
navigation[130] = new navElem(130,"ihr Ersparniss in %","pi402956395.htm",128,"999999-000");
navigation[131] = new navElem(131,"5","pi-1151883606.htm",128,"999999-005");
navigation[132] = new navElem(132,"10","pi-2036004893.htm",128,"999999-010");
navigation[133] = new navElem(133,"13","pi1527978855.htm",128,"999999-013");
navigation[134] = new navElem(134,"15","pi-1177004824.htm",128,"999999-015");
navigation[135] = new navElem(135,"20","pi-1185981239.htm",128,"999999-020");
navigation[136] = new navElem(136,"25","pi-443554474.htm",128,"999999-025");
navigation[137] = new navElem(137,"27","pi-760144604.htm",128,"999999-027");
navigation[138] = new navElem(138,"30","pi-908684257.htm",128,"999999-030");
navigation[139] = new navElem(139,"33","pi2123387093.htm",128,"999999-033");
navigation[140] = new navElem(140,"35","pi-259267724.htm",128,"999999-035");
navigation[141] = new navElem(141,"40","pi-1880018075.htm",128,"999999-040");
navigation[142] = new navElem(142,"45","pi-1580022078.htm",128,"999999-045");
navigation[143] = new navElem(143,"50","pi924793883.htm",128,"999999-05");
navigation[144] = new navElem(144,"Swinger-Serie","pi1100731603.htm",105,"10-15");
navigation[145] = new navElem(145,"Clam-Serie","pi-1707584241.htm",105,"10-25");
navigation[146] = new navElem(146,"Halbautomatisch","pi-1295403487.htm",105,"10-29");
navigation[147] = new navElem(147,"Air-Serie","pi-250450524.htm",105,"10-30");
navigation[148] = new navElem(148,"Vollautomatisch","pi1247193550.htm",105,"10-32");
navigation[149] = new navElem(149,"Twin-Serie","pi599694805.htm",105,"10-35");
navigation[150] = new navElem(150,"Hochdruck","pi1832283147.htm",105,"10-37");
navigation[151] = new navElem(151,"Kleinformat","pi-280133974.htm",105,"10-40");
navigation[152] = new navElem(152,"Grossformat","pi2023477517.htm",105,"10-41");
navigation[153] = new navElem(153,"Canyon-Serie","pi593682416.htm",105,"10-45");
navigation[154] = new navElem(154,"Tassenpressen","pi-443512930.htm",105,"10-50");
navigation[155] = new navElem(155,"Tellerpressen","pi441159695.htm",105,"10-52");
navigation[156] = new navElem(156,"Mützenpressen","pi-2051028281.htm",105,"10-55");
navigation[157] = new navElem(157,"Industriemaschinen","pi-1692080893.htm",105,"10-60");
navigation[158] = new navElem(158,"Sonderbaumaschinen","pi1141478815.htm",105,"10-62");
navigation[159] = new navElem(159,"Gebrauchtgeräte","pi1411257144.htm",105,"999");
navigation[160] = new navElem(160,"Zubehör-TP","pi1710570146.htm",105,"99999");
navigation[161] = new navElem(161,"Unterschränke","pi326276443.htm",160,"999999-02");
navigation[162] = new navElem(162,"Bodenplatten","pi-497795800.htm",160,"999999-03");
navigation[163] = new navElem(163,"Heizmodule","pi-104812535.htm",160,"999999-04");
navigation[164] = new navElem(164,"WERBETECHNIK","pi1059647071.htm",null,"250");
navigation[165] = new navElem(165,"Schneidefolien","pi917618092.htm",164,"97-05-05");
navigation[166] = new navElem(166,"Flexfolien","pi1554439997.htm",164,"97-10");
navigation[167] = new navElem(167,"Flockfolien","pi-1809445958.htm",164,"97-15");
navigation[168] = new navElem(168,"Applikationstape","pi96021427.htm",164,"97-20");
navigation[169] = new navElem(169,"Werkzeuge-Tools","pi210731128.htm",164,"97-25");
navigation[170] = new navElem(170,"ZUBEHÖR","pi-136926578.htm",null,"280");
navigation[171] = new navElem(171,"Werbetechnik","pi-2037026824.htm",170,"90-90-05");
navigation[172] = new navElem(172,"Transferpressen","pi282951321.htm",170,"90-90-10");
navigation[173] = new navElem(173,"Bodenplatten","pi994699145.htm",172,"90-90-1005");
navigation[174] = new navElem(174,"Heizmodule","pi-951924458.htm",172,"90-90-1010");
navigation[175] = new navElem(175,"Unterschränke","pi1592204511.htm",172,"90-90-1015");
navigation[176] = new navElem(176,"Schneideplotter","pi1609348838.htm",170,"90-90-15");
navigation[177] = new navElem(177,"Kompressor","pi1148111471.htm",170,"90-90-20");
navigation[178] = new navElem(178,"STICKMASCHINEN","pi-2099398053.htm",null,"39");
navigation[179] = new navElem(179,"SUBLIMATION","pi925454732.htm",null,"41");
navigation[180] = new navElem(180,"Alles von A-Z","pi-909200880.htm",179,"3715-000");
navigation[181] = new navElem(181,"Aluminium","pi2022120861.htm",179,"3715-001");
navigation[182] = new navElem(182,"Babylätzchen","pi-1497662529.htm",179,"3715-010");
navigation[183] = new navElem(183,"Basketball-Korb","pi1843306453.htm",179,"3715-011");
navigation[184] = new navElem(184,"Bierkrüge","pi-1199441237.htm",179,"3715-013");
navigation[185] = new navElem(185,"Caps","pi-961575154.htm",179,"3715-020");
navigation[186] = new navElem(186,"Drucker","pi-1432665446.htm",179,"3715-030");
navigation[187] = new navElem(187,"Flexfolien","pi-1616834285.htm",179,"3715-050");
navigation[188] = new navElem(188,"Fliesen","pi-362343848.htm",179,"3715-052");
navigation[189] = new navElem(189,"Fussmatten","pi1716612657.htm",179,"3715-057");
navigation[190] = new navElem(190,"Glasprodukte","pi-801857466.htm",179,"3715-060");
navigation[191] = new navElem(191,"Handtücher","pi348065871.htm",179,"3715-070");
navigation[192] = new navElem(192,"Holz und MDF","pi385669092.htm",179,"3715-073");
navigation[193] = new navElem(193,"Kunststoffe","pi-868656309.htm",179,"3715-095");
navigation[194] = new navElem(194,"Keramik","pi-1184314603.htm",179,"3715-104");
navigation[195] = new navElem(195,"Kofferanhänger","pi-1338712603.htm",179,"3715-105");
navigation[196] = new navElem(196,"Krawatten","pi-410832545.htm",179,"3715-106");
navigation[197] = new navElem(197,"Krüge","pi-635400014.htm",179,"3715-107");
navigation[198] = new navElem(198,"Lanyards","pi-1771798927.htm",179,"3715-110");
navigation[199] = new navElem(199,"Mousepads","pi-1953318768.htm",179,"3715-150");
navigation[200] = new navElem(200,"Metall","pi-528236578.htm",179,"3715-152");
navigation[201] = new navElem(201,"Namensschilder","pi-883100512.htm",179,"3715-160");
navigation[202] = new navElem(202,"Plotterfolien","pi820273468.htm",179,"3715-180");
navigation[203] = new navElem(203,"Papiere","pi-1399240327.htm",179,"3715-181");
navigation[204] = new navElem(204,"Patchmaterialien","pi-150327801.htm",179,"3715-183");
navigation[205] = new navElem(205,"Polyesterflock","pi-360644723.htm",179,"3715-184");
navigation[206] = new navElem(206,"Puzzles","pi8755658.htm",179,"3715-185");
navigation[207] = new navElem(207,"Regenschirme","pi114977613.htm",179,"3715-201");
navigation[208] = new navElem(208,"Schlauchsysteme","pi539460739.htm",179,"3715-210");
navigation[209] = new navElem(209,"Tassen","pi-104858360.htm",179,"3715-22");
navigation[210] = new navElem(210,"Tabletts","pi607465259.htm",179,"3715-221");
navigation[211] = new navElem(211,"Taschenanhänger","pi-1107684295.htm",179,"3715-222");
navigation[212] = new navElem(212,"Textilien","pi2115283561.htm",179,"3715-224");
navigation[213] = new navElem(213,"Babylätzchen","pi312249932.htm",212,"3715230010");
navigation[214] = new navElem(214,"Cup´s","pi1226396404.htm",212,"3715230021");
navigation[215] = new navElem(215,"Fussmatten","pi-1435778494.htm",212,"3715230050");
navigation[216] = new navElem(216,"Handtücher","pi-1829057307.htm",212,"3715230070");
navigation[217] = new navElem(217,"Polo-Shirts","pi1030630929.htm",212,"3715230180");
navigation[218] = new navElem(218,"Sweat-Shirts","pi554388584.htm",212,"3715230210");
navigation[219] = new navElem(219,"T-Shirts","pi327814499.htm",212,"3715230220");
navigation[220] = new navElem(220,"Tinte (Sublimation) für:","pi133974646.htm",179,"3715-225");
navigation[221] = new navElem(221,"EPSON 800/850/1520","pi-596836105.htm",220,"3715235-03");
navigation[222] = new navElem(222,"EPSON 900/980","pi1454056590.htm",220,"3715235-05");
navigation[223] = new navElem(223,"EPSON 1200/1290","pi-1220686851.htm",220,"3715235-15");
navigation[224] = new navElem(224,"EPSON 3000","pi1489442156.htm",220,"3715235-20");
navigation[225] = new navElem(225,"BULK-SYSTEM (Flaschen)","pi-1990055558.htm",220,"3715235-50");
navigation[226] = new navElem(226,"Reinigungs-Kits für:","pi-1632710466.htm",220,"3715235-70");
navigation[227] = new navElem(227,"Transferpapiere","pi-507569473.htm",179,"3715-228");
navigation[228] = new navElem(228,"Türanhänger","pi-857874879.htm",179,"3715-229");
navigation[229] = new navElem(229,"Uhren","pi864370775.htm",179,"3715-230");
navigation[230] = new navElem(230,"Untersetzer","pi1962146044.htm",179,"3715-231");
navigation[231] = new navElem(231,"Verpackungen","pi-1857285697.htm",179,"3715-240");
navigation[232] = new navElem(232,"Wimpel","pi-82618763.htm",179,"3715-255");
navigation[233] = new navElem(233,"TEXTILIEN","pi959510736.htm",null,"45");
navigation[234] = new navElem(234,"Sweat-Shirts","pi-1896495768.htm",233,"38-210");
navigation[235] = new navElem(235,"Sublimation","pi-1739014847.htm",233,"38-211");
navigation[236] = new navElem(236,"T-Shirts","pi-1751250323.htm",233,"38-220");
navigation[237] = new navElem(237,"AKTIONS-PAKETE","pi-241381553.htm",null,"999999999A");
navigation[238] = new navElem(238,"MIETKAUF-AKTION","pi1158242319.htm",null,"999999999B");
navigation[239] = new navElem(239,"FACHZEITSCHRIFTEN","pi1165848436.htm",null,"999999999C");

// 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"));


