//
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="14" height="14" 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\">Gesamtkatalog</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="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="14" height="1" height="1" alt="" border="0"></td>';
			};
		if(navItem.active) strHTML += '<td width="1%" class="ACTIVECATEGORY"><img src="assets/images/bulletcatact.gif" width="14" height="14" 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="14" height="14" border="0" align="bottom" hspace="0" vspace="0" class="catnav"></td>'
		else strHTML += '<td width=\"1%\"><img src="assets/images/bulletcat1stcls.gif" width="14" height="14" 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,"Flexipan","pi848077110.htm",null,"100135");
navigation[1] = new navElem(1,"Flexipan-Backmatten 60x40 cm","pi1095928645.htm",0,"100136");
navigation[2] = new navElem(2,"Reliefmatten&nbsp(9)","pi1797510907.htm",1,"100138");
navigation[3] = new navElem(3,"Halbkugel Formen&nbsp(8)","pi1486857113.htm",1,"100139");
navigation[4] = new navElem(4,"Rechteckige Formen","pi-526029954.htm",1,"100140");
navigation[5] = new navElem(5,"für Mandelsandkuchen&nbsp(2)","pi86448423.htm",4,"100141");
navigation[6] = new navElem(6,"für Cakes, Pasteten, Aspik&nbsp(2)","pi-818383396.htm",4,"100142");
navigation[7] = new navElem(7,"Runde Formen&nbsp(4)","pi-1778692983.htm",1,"100143");
navigation[8] = new navElem(8,"Zylinder-Formen&nbsp(4)","pi857487234.htm",1,"100144");
navigation[9] = new navElem(9,"Margerite Formen &nbsp(3)","pi524429719.htm",1,"100145");
navigation[10] = new navElem(10,"Muffins, Cookies&nbsp(6)","pi-1075365288.htm",1,"100146");
navigation[11] = new navElem(11,"Ovale Formen&nbsp(6)","pi1163666251.htm",1,"100147");
navigation[12] = new navElem(12,"Herz Formen&nbsp(3)","pi1490911690.htm",1,"100148");
navigation[13] = new navElem(13,"Savarin Formen&nbsp(5)","pi-1576317821.htm",1,"100149");
navigation[14] = new navElem(14,"Weihnachtskuchen&nbsp(3)","pi1954161928.htm",1,"100150");
navigation[15] = new navElem(15,"Brioches&nbsp(6)","pi1354609257.htm",1,"100151");
navigation[16] = new navElem(16,"Pyramiden&nbsp(3)","pi-320687498.htm",1,"100152");
navigation[17] = new navElem(17,"Biskuit-Formen&nbsp(4)","pi531587775.htm",1,"100153");
navigation[18] = new navElem(18,"Quichettes-Törtchen&nbsp(4)","pi1498150292.htm",1,"100154");
navigation[19] = new navElem(19,"Kleine Formen (Petit Fours)&nbsp(6)","pi-387806506.htm",1,"100155");
navigation[20] = new navElem(20,"Bärentatzen&nbsp(1)","pi-1145329855.htm",1,"100156");
navigation[21] = new navElem(21,"Teddy-Bären&nbsp(2)","pi-478098322.htm",1,"100157");
navigation[22] = new navElem(22,"Champagner Biskuits&nbsp(1)","pi718193495.htm",1,"100158");
navigation[23] = new navElem(23,"Stern&nbsp(1)","pi-1399291828.htm",1,"100159");
navigation[24] = new navElem(24,"Muschel&nbsp(1)","pi-250423971.htm",1,"100160");
navigation[25] = new navElem(25,"Obsttörtchen - Süsspeisen - Quiches&nbsp(4)","pi-1841229990.htm",1,"100161");
navigation[26] = new navElem(26,"Diverse Formen&nbsp(3)","pi-1754115461.htm",1,"100162");
navigation[27] = new navElem(27,"Flexipat&nbsp(1)","pi1176296124.htm",1,"100201");
navigation[28] = new navElem(28,"Edelkastanien&nbsp(1)","pi1182267100.htm",1,"100221");
navigation[29] = new navElem(29,"Charlotten&nbsp(1)","pi772122730.htm",1,"100222");
navigation[30] = new navElem(30,"Flexipan-Einzelformen&nbsp(17)","pi-589137630.htm",0,"100137");
navigation[31] = new navElem(31,"Flexipan-Rezeptbuch&nbsp(1)","pi1182775256.htm",0,"100245");
navigation[32] = new navElem(32,"Handwerkzeuge","pi1095965251.htm",null,"100163");
navigation[33] = new navElem(33,"Rührspatel / Stielschaber","pi-1225820755.htm",32,"100214");
navigation[34] = new navElem(34,"Rührspatel&nbsp(7)","pi1976888125.htm",33,"10089");
navigation[35] = new navElem(35,"Stielschaber&nbsp(4)","pi1611016122.htm",33,"10090");
navigation[36] = new navElem(36,"Modellierstäbe&nbsp(2)","pi-1613024897.htm",32,"100241");
navigation[37] = new navElem(37,"Brotanstreichbürste&nbsp(2)","pi-1633153357.htm",32,"100244");
navigation[38] = new navElem(38,"Scheren&nbsp(2)","pi1708624730.htm",32,"6336");
navigation[39] = new navElem(39,"Eierteiler&nbsp(3)","pi1011366564.htm",32,"6338");
navigation[40] = new navElem(40,"Dressiersäcke / Aufhängegestell&nbsp(21)","pi1095495536.htm",32,"7000");
navigation[41] = new navElem(41,"Ausstecher","pi1414260624.htm",32,"7030");
navigation[42] = new navElem(42,"Ausstecher aus Chromstahl&nbsp(3)","pi1095839802.htm",41,"10023");
navigation[43] = new navElem(43,"Sujet-Ausstecher aus Chromstahl&nbsp(15)","pi546407222.htm",42,"10033");
navigation[44] = new navElem(44,"Ausstecher aus Weissblech&nbsp(1)","pi-1948920935.htm",41,"10024");
navigation[45] = new navElem(45,"Rund, glatt&nbsp(21)","pi1509009382.htm",44,"10025");
navigation[46] = new navElem(46,"Rund, gerippt&nbsp(13)","pi-405592209.htm",44,"10026");
navigation[47] = new navElem(47,"Herzform&nbsp(9)","pi1716234372.htm",44,"10027");
navigation[48] = new navElem(48,"Sternform&nbsp(7)","pi-2118961355.htm",44,"10028");
navigation[49] = new navElem(49,"Oval, glatt&nbsp(10)","pi1415205458.htm",44,"10029");
navigation[50] = new navElem(50,"Oval, gerippt&nbsp(7)","pi1951802475.htm",44,"10030");
navigation[51] = new navElem(51,"Sujet-Ausstecher aus Weissblech&nbsp(28)","pi8371356.htm",44,"10031");
navigation[52] = new navElem(52,"Decorausstecher&nbsp(1)","pi-917698202.htm",44,"10034");
navigation[53] = new navElem(53,"Ausstecher &#0034;Buchstaben&#0034;&nbsp(2)","pi1954302703.htm",44,"10035");
navigation[54] = new navElem(54,"Ausstecher &#0034;Zahlen&#0034;&nbsp(2)","pi1978394116.htm",44,"10036");
navigation[55] = new navElem(55,"Pastetchenausstecher&nbsp(5)","pi1047651370.htm",41,"10032");
navigation[56] = new navElem(56,"Konfekt-Ausstechmatten aus polystyrol&nbsp(15)","pi-116535000.htm",41,"10037");
navigation[57] = new navElem(57,"Schneidewalzen&nbsp(8)","pi-271466430.htm",32,"7038");
navigation[58] = new navElem(58,"Teigschneider/-rädchen/-stupfer&nbsp(16)","pi2114560736.htm",32,"7040");
navigation[59] = new navElem(59,"Teigschneider&nbsp(4)","pi517264177.htm",58,"10081");
navigation[60] = new navElem(60,"Messer ","pi588256032.htm",32,"7095");
navigation[61] = new navElem(61,"Brotsägemesser&nbsp(2)","pi370220394.htm",60,"100215");
navigation[62] = new navElem(62,"Käse- oder Tortenmesser&nbsp(1)","pi-840449399.htm",60,"100216");
navigation[63] = new navElem(63,"Rüstmesser / Teigmesser&nbsp(4)","pi96759775.htm",60,"100217");
navigation[64] = new navElem(64,"Spatelmesser","pi-482487909.htm",60,"10085");
navigation[65] = new navElem(65,"abgewinkelt&nbsp(7)","pi-877060766.htm",64,"10093");
navigation[66] = new navElem(66,"Kunststoffgriff&nbsp(6)","pi242234939.htm",64,"10094");
navigation[67] = new navElem(67,"Holzgriff&nbsp(6)","pi36866656.htm",64,"10095");
navigation[68] = new navElem(68,"Tranchiermesser","pi468654656.htm",60,"10086");
navigation[69] = new navElem(69,"Kunststoffgriff&nbsp(6)","pi227476465.htm",68,"10091");
navigation[70] = new navElem(70,"Holzgriff&nbsp(6)","pi-420595874.htm",68,"10092");
navigation[71] = new navElem(71,"Diverse Messer / Magnetleisten&nbsp(6)","pi178068801.htm",60,"10087");
navigation[72] = new navElem(72,"Tortensägemesser / Abstreifbehälter&nbsp(6)","pi-786003346.htm",60,"10088");
navigation[73] = new navElem(73,"Tempiergabeln&nbsp(7)","pi1225608814.htm",32,"7175");
navigation[74] = new navElem(74,"Teigschaber/-spachtel und -abstecher&nbsp(14)","pi-1424841453.htm",32,"7184");
navigation[75] = new navElem(75,"Mehl- und Sackschaufeln&nbsp(14)","pi625182614.htm",32,"7310");
navigation[76] = new navElem(76,"Pinsel&nbsp(23)","pi-2071331195.htm",32,"7760");
navigation[77] = new navElem(77,"Horn&nbsp(6)","pi1598269082.htm",32,"7866");
navigation[78] = new navElem(78,"Apfelteiler/Apfelschälmaschine&nbsp(6)","pi1537374139.htm",32,"7885");
navigation[79] = new navElem(79,"Rollholz&nbsp(9)","pi1729978279.htm",32,"7892");
navigation[80] = new navElem(80,"Siebe&nbsp(21)","pi-577891079.htm",32,"8564");
navigation[81] = new navElem(81,"Tüllen&nbsp(1)","pi-280332391.htm",32,"8800");
navigation[82] = new navElem(82,"Lochtüllen aus Chromstahl ohne Falz&nbsp(21)","pi1095784046.htm",81,"10015");
navigation[83] = new navElem(83,"Lochtüllen aus Kunststoff&nbsp(11)","pi-1639578281.htm",81,"10016");
navigation[84] = new navElem(84,"Sterntüllen aus Chromstahl ohne Falz&nbsp(18)","pi-1646585268.htm",81,"10017");
navigation[85] = new navElem(85,"Sterntüllensatz aus Kunststoff&nbsp(1)","pi-1339824291.htm",81,"10018");
navigation[86] = new navElem(86,"Garniertüllen aus Kunststoff&nbsp(9)","pi-26396326.htm",81,"10019");
navigation[87] = new navElem(87,"Decortüllen-Satz&nbsp(2)","pi-281415469.htm",81,"10020");
navigation[88] = new navElem(88,"Berliner-Tülle&nbsp(1)","pi1900865304.htm",81,"10021");
navigation[89] = new navElem(89,"Margeritentülle&nbsp(1)","pi1344548665.htm",81,"10022");
navigation[90] = new navElem(90,"KEG-Trennmittel","pi-2088997018.htm",null,"100194");
navigation[91] = new navElem(91,"Schneideöl&nbsp(3)","pi-525141580.htm",90,"100195");
navigation[92] = new navElem(92,"KEG-System + Kompressor&nbsp(2)","pi638502747.htm",90,"100196");
navigation[93] = new navElem(93,"KEG-Trennmittel im Fass 30 lt.&nbsp(2)","pi1499396887.htm",90,"100197");
navigation[94] = new navElem(94,"Trennspray 500 ml&nbsp(1)","pi-1643590388.htm",90,"100198");
navigation[95] = new navElem(95,"KEG-Trennmittel 10 lt.&nbsp(2)","pi1347240804.htm",90,"100199");
navigation[96] = new navElem(96,"Gerätschaften","pi2130162021.htm",null,"10084");
navigation[97] = new navElem(97,"Schneidebrett&nbsp(1)","pi1113306096.htm",96,"100187");
navigation[98] = new navElem(98,"Wirkteller rot zu Wirkmaschine&nbsp(1)","pi-834399115.htm",96,"100207");
navigation[99] = new navElem(99,"Tonpfeiffen/Niklauspfeiffen&nbsp(1)","pi-754798201.htm",96,"100209");
navigation[100] = new navElem(100,"Sonstiges&nbsp(17)","pi-554106844.htm",96,"11000000");
navigation[101] = new navElem(101,"Bekleidung","pi-1095783460.htm",100,"10258");
navigation[102] = new navElem(102,"Bäckerhosen&nbsp(15)","pi-1209909714.htm",101,"100224");
navigation[103] = new navElem(103,"Bäckerschürzen&nbsp(1)","pi1456948342.htm",101,"9020");
navigation[104] = new navElem(104,"Bleche","pi740050563.htm",96,"212121");
navigation[105] = new navElem(105,"Florentinerbleche&nbsp(2)","pi-827888095.htm",104,"100243");
navigation[106] = new navElem(106,"Bisquitkapsel&nbsp(1)","pi-112338825.htm",104,"7192");
navigation[107] = new navElem(107,"Pâtisseriebleche&nbsp(4)","pi-840304916.htm",104,"7520");
navigation[108] = new navElem(108,"Pariserbrotbleche&nbsp(9)","pi-2064093315.htm",104,"7945");
navigation[109] = new navElem(109,"Leicht- und Lochbleche&nbsp(8)","pi2048005896.htm",104,"8250");
navigation[110] = new navElem(110,"Dreikönigsfiguren&nbsp(2)","pi675053373.htm",96,"3552");
navigation[111] = new navElem(111,"Tortenringe/-ständer/-formen und Zubehör","pi-575379695.htm",96,"6000");
navigation[112] = new navElem(112,"Torten-Atrappenform&nbsp(1)","pi565230956.htm",111,"100212");
navigation[113] = new navElem(113,"Tortenformen aus Weissblech&nbsp(12)","pi-1606246195.htm",111,"10070");
navigation[114] = new navElem(114,"Tortenunterlagen&nbsp(10)","pi1892723560.htm",111,"10079");
navigation[115] = new navElem(115,"Hochzeitstortenständer&nbsp(2)","pi2050901561.htm",111,"10080");
navigation[116] = new navElem(116,"Tortengitterstanzen&nbsp(1)","pi390995355.htm",111,"54546");
navigation[117] = new navElem(117,"Tortenringe","pi-1399754536.htm",111,"6001");
navigation[118] = new navElem(118,"Dessertringe&nbsp(7)","pi-50838450.htm",117,"10071");
navigation[119] = new navElem(119,"Aluminium 2 mm&nbsp(43)","pi977964262.htm",117,"10072");
navigation[120] = new navElem(120,"Chromstahl 1.5 mm&nbsp(10)","pi1966172271.htm",117,"10073");
navigation[121] = new navElem(121,"Tortenringe verstellbar&nbsp(3)","pi776148356.htm",117,"10074");
navigation[122] = new navElem(122,"Herzform-Tortenringe&nbsp(6)","pi874471477.htm",117,"10075");
navigation[123] = new navElem(123,"Sternform-Tortenring&nbsp(3)","pi506693458.htm",117,"10076");
navigation[124] = new navElem(124,"Glockenform-Tortenring&nbsp(2)","pi1428321643.htm",117,"10077");
navigation[125] = new navElem(125,"Tortenschaufeln, div. Zangen&nbsp(7)","pi1821385414.htm",111,"6332");
navigation[126] = new navElem(126,"Tortenplatten / Tortengitter&nbsp(10)","pi-17635847.htm",111,"7058");
navigation[127] = new navElem(127,"Tortensägeapparat und Ersatzsägeblätter&nbsp(4)","pi-1860057386.htm",111,"7980");
navigation[128] = new navElem(128,"Torteneinteiler&nbsp(8)","pi-1157593797.htm",111,"7985");
navigation[129] = new navElem(129,"Tortenringhalter/-ständer&nbsp(4)","pi-337634515.htm",111,"8467");
navigation[130] = new navElem(130,"Dosenöffner&nbsp(5)","pi-2102300297.htm",96,"6421");
navigation[131] = new navElem(131,"Teigbretter&nbsp(5)","pi-1434877982.htm",96,"6440");
navigation[132] = new navElem(132,"Ausstellkörbe&nbsp(8)","pi-1512766183.htm",96,"6707");
navigation[133] = new navElem(133,"Massbecher/Litermasse&nbsp(6)","pi1354268648.htm",96,"7075");
navigation[134] = new navElem(134,"Likörtrichter&nbsp(3)","pi-487205307.htm",96,"7089");
navigation[135] = new navElem(135,"Backmeter&nbsp(4)","pi-362689959.htm",96,"7115");
navigation[136] = new navElem(136,"Kuchenbleche/-bretter","pi1387462749.htm",96,"7127");
navigation[137] = new navElem(137,"Kuchenbleche&nbsp(1)","pi-1545121676.htm",136,"10097");
navigation[138] = new navElem(138,"aus Weissblech gerippt","pi-761295589.htm",137,"100100");
navigation[139] = new navElem(139,"Boden lose, fein gerippt&nbsp(5)","pi1400058706.htm",138,"100102");
navigation[140] = new navElem(140,"Boden fest, grob gerippt&nbsp(4)","pi-438587029.htm",138,"100103");
navigation[141] = new navElem(141,"Aluminium&nbsp(17)","pi1586630592.htm",137,"100101");
navigation[142] = new navElem(142,"aus Aluminium gelocht 4 mm&nbsp(9)","pi1437596610.htm",137,"10099");
navigation[143] = new navElem(143,"Kuchenbretter&nbsp(8)","pi2062638181.htm",136,"10098");
navigation[144] = new navElem(144,"Auslegeplatten","pi938439414.htm",96,"7145");
navigation[145] = new navElem(145,"Auslegeplatten aus Kunststoff&nbsp(14)","pi-877301367.htm",144,"100104");
navigation[146] = new navElem(146,"Ausstellbleche&nbsp(2)","pi892490584.htm",144,"100105");
navigation[147] = new navElem(147,"Auslegeplatten aus Chromnickelstahl poliert&nbsp(9)","pi686376271.htm",144,"100106");
navigation[148] = new navElem(148,"Snackwelle&nbsp(2)","pi250889122.htm",144,"100242");
navigation[149] = new navElem(149,"Zuckerkasserollen, Pfannen, Schüsseln, Kessel und Teigkörbchen","pi85349859.htm",96,"7197");
navigation[150] = new navElem(150,"Zuckerkasserollen&nbsp(3)","pi872206908.htm",149,"100107");
navigation[151] = new navElem(151,"Teigschüsseln&nbsp(7)","pi-1420632947.htm",149,"100108");
navigation[152] = new navElem(152,"Crèmeschüsseln&nbsp(12)","pi-1309183286.htm",149,"100109");
navigation[153] = new navElem(153,"Schneekessel&nbsp(8)","pi-635393661.htm",149,"100110");
navigation[154] = new navElem(154,"Fondantpfannen&nbsp(3)","pi-1043759608.htm",149,"100111");
navigation[155] = new navElem(155,"Teigkörbchen&nbsp(13)","pi1266316794.htm",149,"100112");
navigation[156] = new navElem(156,"Maschinenbesen/Handschneebesen","pi-351638370.htm",96,"7447");
navigation[157] = new navElem(157,"Maschinenbesen&nbsp(24)","pi1095859313.htm",156,"10082");
navigation[158] = new navElem(158,"Handschneebesen&nbsp(13)","pi1482712542.htm",156,"10083");
navigation[159] = new navElem(159,"Maikäfer-Füsse&nbsp(8)","pi901622487.htm",96,"7643");
navigation[160] = new navElem(160,"GN-Schalen&nbsp(30)","pi1892375705.htm",96,"78954");
navigation[161] = new navElem(161,"GN-Deckel&nbsp(14)","pi1095923652.htm",160,"100113");
navigation[162] = new navElem(162,"Formen/Rahmen","pi1747787915.htm",96,"7899");
navigation[163] = new navElem(163,"Schnittenformen/-rahmen&nbsp(6)","pi10797701.htm",162,"10042");
navigation[164] = new navElem(164,"Schnittenkuchenblech &nbsp(3)","pi-335958174.htm",162,"10043");
navigation[165] = new navElem(165,"Pâtisserierahmen&nbsp(1)","pi-965907360.htm",162,"10044");
navigation[166] = new navElem(166,"Brot- und Cakesform","pi1754942689.htm",162,"10045");
navigation[167] = new navElem(167,"aus Blaublech&nbsp(11)","pi808921965.htm",166,"10065");
navigation[168] = new navElem(168,"Alusteel, verstärkt mit Drahteinlage&nbsp(11)","pi-2064216022.htm",166,"10066");
navigation[169] = new navElem(169,"Englisch-Brotformen&nbsp(7)","pi-1754158706.htm",162,"10046");
navigation[170] = new navElem(170,"Toastbrotform Blaublech&nbsp(3)","pi-623877641.htm",162,"10047");
navigation[171] = new navElem(171,"Baumstammform Alusteel&nbsp(1)","pi-1721425300.htm",162,"10048");
navigation[172] = new navElem(172,"Christstollen-Formenverband&nbsp(4)","pi1387533565.htm",162,"10049");
navigation[173] = new navElem(173,"Backförmchen aus Weissblech","pi1656946298.htm",162,"10050");
navigation[174] = new navElem(174,"Rund, glatt&nbsp(11)","pi-73891739.htm",173,"10067");
navigation[175] = new navElem(175,"Rund, glatt, hoch&nbsp(8)","pi493440962.htm",173,"10068");
navigation[176] = new navElem(176,"Tartelette-Form&nbsp(1)","pi1231574899.htm",162,"10051");
navigation[177] = new navElem(177,"Käs-Chüechli-Formen aus Weissblech&nbsp(11)","pi-2086096584.htm",162,"10052");
navigation[178] = new navElem(178,"Brioche-Form aus Weissblech&nbsp(15)","pi-371231015.htm",162,"10053");
navigation[179] = new navElem(179,"Schiffchen-Förmchen aus Weissblech&nbsp(2)","pi441375270.htm",162,"10054");
navigation[180] = new navElem(180,"Petits Fours Förmchen-Satz&nbsp(1)","pi-1017480017.htm",162,"10055");
navigation[181] = new navElem(181,"Gugelhopfform silikonisiert&nbsp(7)","pi1095845920.htm",162,"10056");
navigation[182] = new navElem(182,"Mini-Gugelhopfform&nbsp(1)","pi-367628895.htm",162,"10057");
navigation[183] = new navElem(183,"Mini-Gugelhopf-Formenverband, 24-teilig&nbsp(1)","pi1336929102.htm",162,"10058");
navigation[184] = new navElem(184,"Hefering-Form","pi-590057289.htm",162,"10059");
navigation[185] = new navElem(185,"glatt&nbsp(3)","pi-1990444500.htm",184,"10060");
navigation[186] = new navElem(186,"gerippt&nbsp(3)","pi-1334197827.htm",184,"10061");
navigation[187] = new navElem(187,"Igelform&nbsp(4)","pi-407446470.htm",162,"10062");
navigation[188] = new navElem(188,"Rehrückenform&nbsp(2)","pi1904267827.htm",162,"10063");
navigation[189] = new navElem(189,"Fischformen&nbsp(1)","pi2118042872.htm",162,"10064");
navigation[190] = new navElem(190,"Margeriten-Formen&nbsp(2)","pi1058067486.htm",162,"10069");
navigation[191] = new navElem(191,"Backrahmen&nbsp(2)","pi-891631204.htm",162,"10078");
navigation[192] = new navElem(192,"Gitter&nbsp(9)","pi-1346536698.htm",96,"8012");
navigation[193] = new navElem(193,"Eisbombenformen/-portionierer&nbsp(20)","pi40525248.htm",96,"8120");
navigation[194] = new navElem(194,"Gummi-Schablonen&nbsp(18)","pi908291454.htm",96,"8155");
navigation[195] = new navElem(195,"Backschüssel&nbsp(23)","pi875123475.htm",96,"8175");
navigation[196] = new navElem(196,"Backtrennmatten&nbsp(12)","pi-600353279.htm",96,"8263");
navigation[197] = new navElem(197,"Teigbehälter","pi1540932690.htm",96,"8358");
navigation[198] = new navElem(198,"Backmulde / Teigwannen&nbsp(3)","pi586529331.htm",197,"100210");
navigation[199] = new navElem(199,"Habkübel und Zubehör&nbsp(8)","pi-1204056840.htm",197,"100211");
navigation[200] = new navElem(200,"Thermometer/Zuckerwaagen&nbsp(13)","pi916945745.htm",96,"8509");
navigation[201] = new navElem(201,"Backtrennpapier&nbsp(12)","pi1677246923.htm",96,"8720");
navigation[202] = new navElem(202,"Teigtücher&nbsp(14)","pi-450075205.htm",96,"8728");
navigation[203] = new navElem(203,"Lebkuchenbilder","pi1806326737.htm",96,"9056");
navigation[204] = new navElem(204,"St. Nikolaus, rot&nbsp(7)","pi-340013096.htm",203,"10038");
navigation[205] = new navElem(205,"Klauskopf&nbsp(2)","pi-356542215.htm",203,"10039");
navigation[206] = new navElem(206,"Zwerg&nbsp(4)","pi-2007131706.htm",203,"10040");
navigation[207] = new navElem(207,"Herz/Stern&nbsp(3)","pi605809615.htm",203,"10041");
navigation[208] = new navElem(208,"Apparate","pi1518995074.htm",null,"10191");
navigation[209] = new navElem(209,"Waagen","pi-765222032.htm",208,"11334");
navigation[210] = new navElem(210,"OHAUS &#0034;Ranger&#0034;&nbsp(1)","pi877336169.htm",209,"10012");
navigation[211] = new navElem(211,"Mettler-Toledo GastroLine-Waagen&nbsp(10)","pi938570535.htm",209,"100173");
navigation[212] = new navElem(212,"preisgünstige Kleinwaagen&nbsp(4)","pi1182318857.htm",209,"100223");
navigation[213] = new navElem(213,"Elektronische Preisberechnungs Ladenwaage&nbsp(3)","pi1784854635.htm",209,"1007");
navigation[214] = new navElem(214,"Fettbackgeräte&nbsp(10)","pi-687619378.htm",208,"546546");
navigation[215] = new navElem(215,"Digital-Timer&nbsp(1)","pi1867359049.htm",208,"6418");
navigation[216] = new navElem(216,"Rahmautomaten&nbsp(4)","pi210508050.htm",208,"6645");
navigation[217] = new navElem(217,"Vermicelles-Pressen/-Spritzen&nbsp(2)","pi-215219316.htm",208,"6738");
navigation[218] = new navElem(218,"Mixer&nbsp(14)","pi254261566.htm",208,"6840");
navigation[219] = new navElem(219,"Gebäckfüllmaschinen&nbsp(4)","pi128873379.htm",208,"7112");
navigation[220] = new navElem(220,"Sprühgeräte&nbsp(4)","pi1489518239.htm",208,"7172");
navigation[221] = new navElem(221,"Trempierapparate&nbsp(5)","pi-653205452.htm",208,"7220");
navigation[222] = new navElem(222,"Brelzellaugenapparate&nbsp(1)","pi190235670.htm",208,"7405");
navigation[223] = new navElem(223,"Gasrechaud&nbsp(8)","pi-922564739.htm",208,"7424");
navigation[224] = new navElem(224,"Praliné-Schneideapparat&nbsp(8)","pi208628499.htm",208,"8065");
navigation[225] = new navElem(225,"Backofensauger","pi2086719220.htm",208,"8238");
navigation[226] = new navElem(226,"CFM Typ 118 A&nbsp(1)","pi1095767098.htm",225,"1005");
navigation[227] = new navElem(227,"B25KW&nbsp(5)","pi1197128952.htm",225,"1006");
navigation[228] = new navElem(228,"Transportgeräte/Blechrechen","pi2103113743.htm",null,"10362");
navigation[229] = new navElem(229,"Ausbackwagen&nbsp(4)","pi-220948094.htm",228,"100174");
navigation[230] = new navElem(230,"Sackrolli&nbsp(3)","pi1317171974.htm",228,"6474");
navigation[231] = new navElem(231,"Transipatrechen und - Apparate&nbsp(5)","pi876206261.htm",228,"6497");
navigation[232] = new navElem(232,"Tragrahmen für Bleche&nbsp(2)","pi-1784445546.htm",228,"7515");
navigation[233] = new navElem(233,"Backwagen/Stickenwagen&nbsp(6)","pi-1017833857.htm",228,"7518");
navigation[234] = new navElem(234,"Hitzebeständige Stikkenwagenrollen&nbsp(2)","pi1761073272.htm",233,"7599");
navigation[235] = new navElem(235,"Teigbehälterrechen&nbsp(7)","pi-1834279257.htm",228,"7519");
navigation[236] = new navElem(236,"Behälter-Rolli&nbsp(1)","pi-1800220507.htm",228,"8240");
navigation[237] = new navElem(237,"Blechrechen&nbsp(7)","pi-1635192377.htm",228,"8280");
navigation[238] = new navElem(238,"Lenkroller&nbsp(9)","pi-358904258.htm",228,"8305");
navigation[239] = new navElem(239,"Blechwagen&nbsp(3)","pi-1276977362.htm",228,"8453");
navigation[240] = new navElem(240,"Kleingerätewagen&nbsp(2)","pi-2024566528.htm",228,"8559");
navigation[241] = new navElem(241,"Behälter/Boxen","pi993519768.htm",null,"10416");
navigation[242] = new navElem(242,"Behälter Kunststoff 60x40cm, farbig","pi-734490786.htm",241,"100200");
navigation[243] = new navElem(243,"Höhe 15 cm&nbsp(7)","pi-1048138041.htm",242,"100188");
navigation[244] = new navElem(244,"Höhe 9 cm&nbsp(2)","pi343114492.htm",242,"100189");
navigation[245] = new navElem(245,"Höhe 41 cm&nbsp(7)","pi855404109.htm",242,"100190");
navigation[246] = new navElem(246,"Höhe 32 cm&nbsp(7)","pi-1816620662.htm",242,"100191");
navigation[247] = new navElem(247,"Höhe 22 cm&nbsp(7)","pi-88895165.htm",242,"100192");
navigation[248] = new navElem(248,"Behälter Kunststoff klappbar","pi692508242.htm",242,"100203");
navigation[249] = new navElem(249,"Behälter klappbar&nbsp(1)","pi-1872701602.htm",241,"100205");
navigation[250] = new navElem(250,"Kunststoff-Behälter&nbsp(17)","pi-357804624.htm",241,"22507");
navigation[251] = new navElem(251,"Drehstapelbehälter&nbsp(13)","pi-1698554325.htm",241,"34013");
navigation[252] = new navElem(252,"Thermo-Dosen&nbsp(4)","pi192663820.htm",241,"39402");
navigation[253] = new navElem(253,"Thermo-Boxen und Zubehör&nbsp(34)","pi-921103643.htm",241,"8520");
navigation[254] = new navElem(254,"Lagergestelle","pi-1707840485.htm",null,"10526");
navigation[255] = new navElem(255,"Grossfachregal&nbsp(1)","pi2144329822.htm",254,"100218");
navigation[256] = new navElem(256,"Wandregale&nbsp(10)","pi1580499084.htm",254,"7630");
navigation[257] = new navElem(257,"Wandschrank&nbsp(3)","pi778516402.htm",254,"7640");
navigation[258] = new navElem(258,"Lagersysteme REA&nbsp(4)","pi970291116.htm",254,"8910");
navigation[259] = new navElem(259,"Tische/Zutatendepots","pi895354808.htm",null,"10626");
navigation[260] = new navElem(260,"HIT-Tische&nbsp(2)","pi107239840.htm",259,"100220");
navigation[261] = new navElem(261,"Zutatendepots&nbsp(7)","pi-1015407462.htm",259,"6503");
navigation[262] = new navElem(262,"Maschinen","pi977361189.htm",null,"10781");
navigation[263] = new navElem(263,"Wassermess-, Misch- und Dosiergeräte&nbsp(3)","pi-1288036317.htm",262,"009710");
navigation[264] = new navElem(264,"Knetmaschine&nbsp(3)","pi1513641228.htm",262,"100204");
navigation[265] = new navElem(265,"Aufschnittmaschinen&nbsp(9)","pi94345376.htm",262,"6862");
navigation[266] = new navElem(266,"Geléesprühmaschinen&nbsp(3)","pi-223789568.htm",262,"7437");
navigation[267] = new navElem(267,"Brotschneidemaschinen&nbsp(3)","pi-26234785.htm",262,"8076");
navigation[268] = new navElem(268,"Gerätespülmaschine&nbsp(2)","pi673076677.htm",262,"9300");
navigation[269] = new navElem(269,"Reinigung/Hygiene/Schutz","pi-1427940919.htm",null,"11224");
navigation[270] = new navElem(270,"Backofenstaubsauger&nbsp(6)","pi-88411782.htm",269,"10014");
navigation[271] = new navElem(271,"Wischer/Schaber/Bürsten&nbsp(10)","pi-1608791931.htm",269,"100206");
navigation[272] = new navElem(272,"VIKAN Reinigungs - System","pi1427638907.htm",269,"100219");
navigation[273] = new navElem(273,"Stiele aus Aluminium&nbsp(9)","pi-672978059.htm",272,"100225");
navigation[274] = new navElem(274,"Bodenschrupper 27 cm&nbsp(5)","pi1614397842.htm",272,"100226");
navigation[275] = new navElem(275,"Wasserschieber&nbsp(9)","pi-661638485.htm",272,"100227");
navigation[276] = new navElem(276,"Bodenwischer mit weichen Borsten&nbsp(8)","pi-1981242159.htm",272,"100229");
navigation[277] = new navElem(277,"Bodenwischer, vorne harte - hinten weiche Borsten&nbsp(9)","pi557366974.htm",272,"100230");
navigation[278] = new navElem(278,"Mehlwischer&nbsp(4)","pi1272462183.htm",272,"100231");
navigation[279] = new navElem(279,"Handwischer&nbsp(5)","pi-1323238628.htm",272,"100232");
navigation[280] = new navElem(280,"Wandhängeschiene&nbsp(5)","pi-10007571.htm",272,"100233");
navigation[281] = new navElem(281,"Kehrschaufel&nbsp(5)","pi-845199702.htm",272,"100234");
navigation[282] = new navElem(282,"Bodenschaber&nbsp(4)","pi385624035.htm",272,"100235");
navigation[283] = new navElem(283,"Handbürste&nbsp(5)","pi1609102568.htm",272,"100236");
navigation[284] = new navElem(284,"Waschbürste&nbsp(4)","pi-637829943.htm",272,"100237");
navigation[285] = new navElem(285,"Spülbürste&nbsp(5)","pi1217496406.htm",272,"100238");
navigation[286] = new navElem(286,"Abwaschbürste&nbsp(5)","pi-1495288801.htm",272,"100239");
navigation[287] = new navElem(287,"Schaber&nbsp(4)","pi-35224716.htm",272,"100240");
navigation[288] = new navElem(288,"Reinigungsmittel&nbsp(10)","pi769987666.htm",269,"1231555");
navigation[289] = new navElem(289,"Abdeckhauben für Blechrechen&nbsp(4)","pi-2135623628.htm",269,"213213213");
navigation[290] = new navElem(290,"Ofenhandschuhe / Handschuhe&nbsp(7)","pi-1284591254.htm",269,"6451");
navigation[291] = new navElem(291,"Abfallbehälter&nbsp(2)","pi-748387545.htm",269,"8901");
navigation[292] = new navElem(292,"Spülmittel &nbsp(7)","pi-407359817.htm",269,"9552");

// 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"));

