//
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));
		};
// MiniCart ohne Anzahl Produkte		
//	prdString += "Produkte (cm):<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/bulletcat1st.gif" width="13" height="14" border="0" align="absmiddle" hspace="0" vspace="0" class="catnav">' + "Zum Warenkorb</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);
		};

//	Produktkatalog advanced		
//	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 TNavLinkList(start,end){
	var strHTML="";
		for(var i=start;i<Math.min(end+1,navigation.length);i++) if(navigation[i].parentId==null) strHTML+=printItem(navigation[i],0);
		return(strHTML);
		}
//	Produktkatalog advanced		
		
	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="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="13" height="14" border="0" align="bottom" hspace="0" vspace="0" class="catnav"></td>'
		else strHTML += '<td width=\"1%\"><img src="assets/images/bulletcat1st.gif" width="13" 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,"Modellgalerie/Eigenkreationen&nbsp(16)","pi-24819758.htm",null,"68");
navigation[1] = new navElem(1,"Zeitschriften/Originalstoffe/Modellübersicht","pi-8549950.htm",null,"579");
navigation[2] = new navElem(2,"Originalstoffe Pattern Company","pi-70328622.htm",1,"1196");
navigation[3] = new navElem(3,"Stoffe Pattern Company F/S 2012&nbsp(36)","pi-516253504.htm",2,"2228");
navigation[4] = new navElem(4,"Stoffe Pattern Company H/W 2011&nbsp(19)","pi-962140183.htm",2,"2021");
navigation[5] = new navElem(5,"Stoffe Pattern Company F/S 2011&nbsp(37)","pi-1157012590.htm",2,"1675");
navigation[6] = new navElem(6,"Stoffe Pattern Company Winter 2010&nbsp(26)","pi-181274682.htm",2,"1501");
navigation[7] = new navElem(7,"Stoffe Pattern Company Sommer 2010&nbsp(23)","pi-1798151124.htm",2,"1408");
navigation[8] = new navElem(8,"Stoffe Pattern Company Winter 2009&nbsp(18)","pi1245136246.htm",2,"1189");
navigation[9] = new navElem(9,"Stoffe Pattern Company Sommer 2009&nbsp(13)","pi1134508479.htm",2,"1190");
navigation[10] = new navElem(10,"Stoffe Pattern Company Winter 2008&nbsp(11)","pi-442580844.htm",2,"1191");
navigation[11] = new navElem(11,"Stoffe Pattern Company Sommer 2008&nbsp(14)","pi1055707653.htm",2,"1192");
navigation[12] = new navElem(12,"Stoffe Pattern Company Sommer + Winter 2006/07&nbsp(11)","pi-57579294.htm",2,"1193");
navigation[13] = new navElem(13,"Sabrina Woman","pi-368266886.htm",1,"1195");
navigation[14] = new navElem(14,"Modellübersicht Sabrina Woman Frühjahr 1/2012&nbsp(35)","pi-908382805.htm",13,"2330");
navigation[15] = new navElem(15,"Originalstoffe Sabrina Woman Frühjahr 01/2012&nbsp(19)","pi-304092925.htm",13,"2324");
navigation[16] = new navElem(16,"Modellübersicht Sabrina Woman Winter 4/2011&nbsp(39)","pi-1444882122.htm",13,"2266");
navigation[17] = new navElem(17,"Originalstoffe Sabrina Woman Winter 4/2011&nbsp(11)","pi1817178061.htm",13,"2124");
navigation[18] = new navElem(18,"Modellübersicht Sabrina Woman Herbst 3/2011&nbsp(40)","pi1745200603.htm",13,"2211");
navigation[19] = new navElem(19,"Originalstoffe Sabrina Woman Herbst 3/2011&nbsp(21)","pi-1965788194.htm",13,"2069");
navigation[20] = new navElem(20,"Modellübersicht Sabrina Woman Sommer 2/2011&nbsp(40)","pi-436725497.htm",13,"1965");
navigation[21] = new navElem(21,"Originalstoffe Sabrina Woman Sommer 2/2011&nbsp(24)","pi-655376681.htm",13,"1888");
navigation[22] = new navElem(22,"Modellübersicht Sabrina Woman Frühjahr 1/2011&nbsp(40)","pi-1226943014.htm",13,"1871");
navigation[23] = new navElem(23,"Originalstoffe Sabrina Woman Frühjahr 1/2011&nbsp(29)","pi-627331925.htm",13,"1676");
navigation[24] = new navElem(24,"Modellübersicht Sabrina Woman H/W 10 (S1659)&nbsp(42)","pi-1052104806.htm",13,"1664");
navigation[25] = new navElem(25,"Originalstoffe Sabrina Woman H/W 10&nbsp(9)","pi-20415016.htm",13,"1499");
navigation[26] = new navElem(26,"Modellübersicht Sabrina Woman F/S 2010 (S1593)&nbsp(39)","pi1083027117.htm",13,"1467");
navigation[27] = new navElem(27,"Originalstoffe Sabrina Woman F/S 2010&nbsp(15)","pi1576739773.htm",13,"1409");
navigation[28] = new navElem(28,"Originalstoffe Sabrina Woman F/S +H/W 09 (S1464)&nbsp(12)","pi-1877823311.htm",13,"1025");
navigation[29] = new navElem(29,"Originalstoffe Sabrina Woman F/S 08 + H/W 08 (S1329 + S1401)&nbsp(7)","pi1650773933.htm",13,"921");
navigation[30] = new navElem(30,"Originalstoffe Sabrina Woman F/S 07 + H/W 07 (S1183 + S1273)&nbsp(7)","pi1923280503.htm",13,"922");
navigation[31] = new navElem(31,"Knipmode deutsch special","pi460692536.htm",1,"1197");
navigation[32] = new navElem(32,"Originalstoffe Knipmode special F/S 2012&nbsp(35)","pi-1400284735.htm",31,"2229");
navigation[33] = new navElem(33,"Modellübersicht Knipmode Special H/W 2011&nbsp(13)","pi1130910347.htm",31,"2259");
navigation[34] = new navElem(34,"Originalstoffe Knipmode Special deutsch H/W 2011&nbsp(23)","pi-1776834284.htm",31,"2023");
navigation[35] = new navElem(35,"Modellübersicht Knipmode F/S Special deutsch 2011&nbsp(13)","pi1298026366.htm",31,"1937");
navigation[36] = new navElem(36,"Originalstoffe Knipmode Special deutsch F/S 2011&nbsp(26)","pi-611799343.htm",31,"1677");
navigation[37] = new navElem(37,"Modellübersicht Knipmode Special deutsch H/W 10&nbsp(14)","pi2028554624.htm",31,"1666");
navigation[38] = new navElem(38,"Originalstoffe Knipmode Special deutsch H/W 10&nbsp(17)","pi164289171.htm",31,"1498");
navigation[39] = new navElem(39,"Modellübersicht Knipmode Special deutsch F/S 10 &nbsp(17)","pi-2047432306.htm",31,"1488");
navigation[40] = new navElem(40,"Originalstoffe Knipmode Special deutsch F/S 2010&nbsp(17)","pi2116617267.htm",31,"1410");
navigation[41] = new navElem(41,"Modellübersicht Knipmode Special deutsch H/W 09&nbsp(19)","pi-1150248810.htm",31,"1158");
navigation[42] = new navElem(42,"Originalstoffe Knipmode Special deutsch H/W 2009&nbsp(7)","pi-748579233.htm",31,"1159");
navigation[43] = new navElem(43,"Modellübersicht Knipmode Special deutsch F/S 09&nbsp(14)","pi-1648678465.htm",31,"1074");
navigation[44] = new navElem(44,"Originalstoffe Knipmode Special deutsch F/S 09&nbsp(8)","pi-702025580.htm",31,"1075");
navigation[45] = new navElem(45,"Ottobre Woman + kids","pi2121711556.htm",1,"1199");
navigation[46] = new navElem(46,"Originalstoffe Ottobre Woman F/S 2012&nbsp(8)","pi638069998.htm",45,"2230");
navigation[47] = new navElem(47,"Originalstoffe Ottobre Woman H/W 2011&nbsp(1)","pi50102897.htm",45,"2068");
navigation[48] = new navElem(48,"Originalstoffe Ottobre Woman F/S 2011","pi-1017741122.htm",45,"1678");
navigation[49] = new navElem(49,"Originalstoffe Ottobre Woman H/W 10&nbsp(2)","pi676212473.htm",45,"1500");
navigation[50] = new navElem(50,"Originalstoffe Ottobre Woman + kids F/S 2010&nbsp(4)","pi1421577976.htm",45,"1411");
navigation[51] = new navElem(51,"Originalstoffe Ottobre Woman F/S + H/W 09&nbsp(7)","pi-1148573103.htm",45,"1218");
navigation[52] = new navElem(52,"Originalstoffe Ottobre Woman + kids 06/07/08&nbsp(1)","pi-1590850078.htm",45,"724");
navigation[53] = new navElem(53,"Lena/Lea - Modetrends für gr. Größen","pi1949416742.htm",1,"1198");
navigation[54] = new navElem(54,"Originalstoffe Lena -Modetrends für gr. Größen 2011 (L 1465)&nbsp(12)","pi123688295.htm",53,"1679");
navigation[55] = new navElem(55,"Originalstoffe Lea - Modetrends für gr. Größen 2010&nbsp(4)","pi-366643857.htm",53,"1412");
navigation[56] = new navElem(56,"Originalstoffe Lea - Modetrends für gr. Größen 09 (LH699)&nbsp(2)","pi-1790438114.htm",53,"1026");
navigation[57] = new navElem(57,"Burda + Young Fashion + Burda Plus","pi136957301.htm",1,"1200");
navigation[58] = new navElem(58,"Originalstoffe burdastyle + Burda Einzelschnitte 2011&nbsp(4)","pi-1992520420.htm",57,"1680");
navigation[59] = new navElem(59,"Originalstoffe aus Burda 07/08/09&nbsp(2)","pi80199216.htm",57,"723");
navigation[60] = new navElem(60,"Diana Moden","pi-896935025.htm",1,"858");
navigation[61] = new navElem(61,"Originalstoffe Diana Moden 2011&nbsp(2)","pi1097594349.htm",60,"1681");
navigation[62] = new navElem(62,"Originalstoffe Diana Moden 2010&nbsp(1)","pi-1746601902.htm",60,"1414");
navigation[63] = new navElem(63,"Originalstoffe Diana Moden 08&nbsp(1)","pi-522899395.htm",60,"1279");
navigation[64] = new navElem(64,"NEU: Schnitte Pattern Company Sommer 2012","pi-1640657785.htm",null,"2267");
navigation[65] = new navElem(65,"Neu lieferbar:&nbsp(11)","pi1623675423.htm",64,"2275");
navigation[66] = new navElem(66,"Jacken&nbsp(2)","pi612915693.htm",64,"2269");
navigation[67] = new navElem(67,"Hosen&nbsp(1)","pi-2029863766.htm",64,"2270");
navigation[68] = new navElem(68,"Rock/Kleider&nbsp(4)","pi-1988368925.htm",64,"2271");
navigation[69] = new navElem(69,"Blusen/Tuniken&nbsp(2)","pi-988718360.htm",64,"2272");
navigation[70] = new navElem(70,"Top/Shirts&nbsp(4)","pi1840868041.htm",64,"2273");
navigation[71] = new navElem(71,"NEU: Stoffe Frühjahr/Sommer 2012","pi1697305589.htm",null,"1321");
navigation[72] = new navElem(72,"Neu am 2. Februar 2012&nbsp(8)","pi107962349.htm",71,"2331");
navigation[73] = new navElem(73,"Neu am 21.+26. Januar 2012&nbsp(23)","pi-1289643819.htm",71,"2337");
navigation[74] = new navElem(74,"Neu am 15. Januar 2012&nbsp(50)","pi1688051513.htm",71,"2335");
navigation[75] = new navElem(75,"Sortiert nach Modethemen","pi1167491001.htm",71,"2234");
navigation[76] = new navElem(76,"Weiß&nbsp(10)","pi1774445592.htm",75,"2283");
navigation[77] = new navElem(77,"Neutrals/off-white/beige/helles grau&nbsp(11)","pi1484127086.htm",75,"2277");
navigation[78] = new navElem(78,"Gelb/vanille/ocker&nbsp(4)","pi-1037957545.htm",75,"2278");
navigation[79] = new navElem(79,"Rot/koralle&nbsp(7)","pi-599535523.htm",75,"2280");
navigation[80] = new navElem(80,"Aqua-Töne&nbsp(5)","pi2098852417.htm",75,"2276");
navigation[81] = new navElem(81,"Bunt&nbsp(14)","pi793784463.htm",75,"2236");
navigation[82] = new navElem(82,"Transparenz&nbsp(1)","pi-731035828.htm",75,"2279");
navigation[83] = new navElem(83,"Aquarell-Muster/Batik&nbsp(3)","pi-136314413.htm",75,"2282");
navigation[84] = new navElem(84,"Schmetterlinge&nbsp(5)","pi-2089506426.htm",75,"2235");
navigation[85] = new navElem(85,"Sortiert nach Qualität","pi-751694037.htm",71,"1322");
navigation[86] = new navElem(86,"Ausbrenner","pi1254380999.htm",85,"1326");
navigation[87] = new navElem(87,"Bambus-Jersey","pi-1480341308.htm",85,"2321");
navigation[88] = new navElem(88,"Baumwolle/Batist&nbsp(15)","pi1481891324.htm",85,"1327");
navigation[89] = new navElem(89,"Baumwoll-Jersey&nbsp(1)","pi1965727574.htm",85,"2317");
navigation[90] = new navElem(90,"Baumwoll-Leinen","pi-2019793782.htm",85,"1329");
navigation[91] = new navElem(91,"Baumwollmischung&nbsp(14)","pi-1419706020.htm",85,"1351");
navigation[92] = new navElem(92,"Bestickter Stoff/Stickereistoff&nbsp(2)","pi-767171283.htm",85,"1352");
navigation[93] = new navElem(93,"Bordürenstoff&nbsp(2)","pi-601366744.htm",85,"1354");
navigation[94] = new navElem(94,"Boucle/Strickstoff&nbsp(3)","pi-2021643767.htm",85,"1355");
navigation[95] = new navElem(95,"Chiffon/Georgette&nbsp(6)","pi804476069.htm",85,"1357");
navigation[96] = new navElem(96,"Crash/Cloqué/Plissee/Krepp&nbsp(8)","pi649201985.htm",85,"1359");
navigation[97] = new navElem(97,"Doppelgewebe&nbsp(1)","pi-49395124.htm",85,"1361");
navigation[98] = new navElem(98,"Doubleface&nbsp(1)","pi1766020957.htm",85,"1362");
navigation[99] = new navElem(99,"Futter&nbsp(13)","pi1489594410.htm",85,"2332");
navigation[100] = new navElem(100,"Georgette/Chiffon&nbsp(5)","pi648798365.htm",85,"1477");
navigation[101] = new navElem(101,"Inkjet/Digitalprint&nbsp(7)","pi-1630001578.htm",85,"2293");
navigation[102] = new navElem(102,"Jacquard&nbsp(1)","pi-1819076840.htm",85,"1365");
navigation[103] = new navElem(103,"Jeans + Köper&nbsp(7)","pi947598086.htm",85,"1366");
navigation[104] = new navElem(104,"Jersey/Strickjersey/Spitzenjersey gemustert alle&nbsp(17)","pi1381542052.htm",85,"1367");
navigation[105] = new navElem(105,"Jersey uni + Melange&nbsp(43)","pi-1974907855.htm",85,"1381");
navigation[106] = new navElem(106,"Jersey floral gemustert&nbsp(6)","pi370736341.htm",85,"1368");
navigation[107] = new navElem(107,"Jersey mit Phantasie-Muster&nbsp(10)","pi800318219.htm",85,"1369");
navigation[108] = new navElem(108,"Jersey Retro Blumen, Wellen + grafisch gemustert&nbsp(3)","pi-866465040.htm",85,"1370");
navigation[109] = new navElem(109,"Jersey Bambus","pi-1060478347.htm",85,"2322");
navigation[110] = new navElem(110,"Jersey Inkjet Digitaldruck&nbsp(7)","pi-1324873220.htm",85,"2312");
navigation[111] = new navElem(111,"Jersey Strick&nbsp(6)","pi9857694.htm",85,"1382");
navigation[112] = new navElem(112,"Jersey Tüll/Mesh/Spitzenjersey&nbsp(2)","pi-1886382710.htm",85,"1483");
navigation[113] = new navElem(113,"Jersey Viskosejersey uni&nbsp(35)","pi-157519734.htm",85,"2313");
navigation[114] = new navElem(114,"Jersey mit Volants/Pailletten&nbsp(1)","pi-1658040088.htm",85,"2327");
navigation[115] = new navElem(115,"Köper + Jeans&nbsp(7)","pi-1907750404.htm",85,"1384");
navigation[116] = new navElem(116,"Kombinationsstoffe","pi-597033064.htm",85,"1471");
navigation[117] = new navElem(117,"Leinen/-mischungen&nbsp(20)","pi452733261.htm",85,"1385");
navigation[118] = new navElem(118,"Leichtleinen&nbsp(17)","pi-199161273.htm",85,"2318");
navigation[119] = new navElem(119,"Mesh/Tüll/Spitzenjersey&nbsp(1)","pi-575770486.htm",85,"1386");
navigation[120] = new navElem(120,"Pailletten","pi222874982.htm",85,"2328");
navigation[121] = new navElem(121,"Plissee/Crash/Cloqué/Krepp&nbsp(6)","pi-131862487.htm",85,"1387");
navigation[122] = new navElem(122,"Polyamid/Polycarbonat/-mischung&nbsp(5)","pi-447345354.htm",85,"1388");
navigation[123] = new navElem(123,"Polyester/Polyethylen/-mischung&nbsp(9)","pi1602147967.htm",85,"1389");
navigation[124] = new navElem(124,"Popeline&nbsp(1)","pi745585861.htm",85,"1390");
navigation[125] = new navElem(125,"Ramie","pi1159301458.htm",85,"2314");
navigation[126] = new navElem(126,"Seide/-mischungen&nbsp(2)","pi874458016.htm",85,"1393");
navigation[127] = new navElem(127,"Spitze/Spitzenjersey&nbsp(1)","pi-223581407.htm",85,"1394");
navigation[128] = new navElem(128,"Stickerei-Stoff/bestickter Stoff&nbsp(2)","pi-120154307.htm",85,"1396");
navigation[129] = new navElem(129,"Stretch&nbsp(18)","pi-581983309.htm",85,"1397");
navigation[130] = new navElem(130,"Stretchbaumwolle/Stretchsatin&nbsp(9)","pi-318726887.htm",85,"1398");
navigation[131] = new navElem(131,"Stretchjeans/-köper&nbsp(4)","pi-1082125466.htm",85,"1399");
navigation[132] = new navElem(132,"Strickstoff/Boucle&nbsp(3)","pi1413349380.htm",85,"1401");
navigation[133] = new navElem(133,"Strickstoff fein&nbsp(5)","pi1877579957.htm",85,"1402");
navigation[134] = new navElem(134,"Tressen-Chiffon&nbsp(1)","pi-879996952.htm",85,"2316");
navigation[135] = new navElem(135,"Tüll/Mesh/Spitzenjersey&nbsp(2)","pi1230661137.htm",85,"1404");
navigation[136] = new navElem(136,"Viskose/-mischungen&nbsp(7)","pi2051121453.htm",85,"1406");
navigation[137] = new navElem(137,"Wirkfutter&nbsp(5)","pi-20020935.htm",85,"2334");
navigation[138] = new navElem(138,"Sortiert nach Farbe","pi1294814352.htm",71,"1323");
navigation[139] = new navElem(139,"Uni Weiß/Cremetöne&nbsp(11)","pi-2047868641.htm",138,"2294");
navigation[140] = new navElem(140,"Uni Beige/Taupe/Ecru/Sandtöne&nbsp(10)","pi418516084.htm",138,"2295");
navigation[141] = new navElem(141,"Uni Gelbtöne/Ocker&nbsp(2)","pi-1296275355.htm",138,"2296");
navigation[142] = new navElem(142,"Uni Orange/Apricot/Terratöne&nbsp(3)","pi-1859577918.htm",138,"2297");
navigation[143] = new navElem(143,"Uni Rot/Koralletöne&nbsp(6)","pi1623658689.htm",138,"2299");
navigation[144] = new navElem(144,"Uni Rosa/Pudertöne/Rosenholz&nbsp(3)","pi370243867.htm",138,"2298");
navigation[145] = new navElem(145,"Uni Lila/Fuchsia/Cyclam/Brombeertöne&nbsp(12)","pi-2022451491.htm",138,"2303");
navigation[146] = new navElem(146,"Uni Blau/Aquatöne&nbsp(14)","pi-833000365.htm",138,"2305");
navigation[147] = new navElem(147,"Uni Grün/Khaki/Olivtöne&nbsp(9)","pi1389010072.htm",138,"2306");
navigation[148] = new navElem(148,"Uni Petrol/Türkistöne&nbsp(7)","pi-1001515335.htm",138,"2307");
navigation[149] = new navElem(149,"Uni Brauntöne&nbsp(5)","pi2070164614.htm",138,"2308");
navigation[150] = new navElem(150,"Uni Grau/Silbertöne&nbsp(5)","pi46106148.htm",138,"2310");
navigation[151] = new navElem(151,"Uni Schwarz&nbsp(6)","pi-1152540785.htm",138,"2309");
navigation[152] = new navElem(152,"Bunt&nbsp(14)","pi1111934408.htm",138,"1330");
navigation[153] = new navElem(153,"Weiß/Wollweiß/Champagner/Elfenbein&nbsp(20)","pi-970820567.htm",138,"1331");
navigation[154] = new navElem(154,"Beige/Natur/Camel/Sand/Schlamm&nbsp(2)","pi-978632394.htm",138,"1332");
navigation[155] = new navElem(155,"Gold/Gelb/Ocker/Vanille/Apricot&nbsp(6)","pi1529936511.htm",138,"1333");
navigation[156] = new navElem(156,"Orange/Rot/Weinrot/Lachs/Koralle&nbsp(4)","pi1835672148.htm",138,"1334");
navigation[157] = new navElem(157,"Rosatöne/Pink/Rosé/Rosenholz&nbsp(3)","pi-2021687099.htm",138,"1335");
navigation[158] = new navElem(158,"Lilatöne/Brombeer/Aubergine/Fuchsia&nbsp(4)","pi-440416133.htm",138,"1336");
navigation[159] = new navElem(159,"Blautöne&nbsp(7)","pi-1466646624.htm",138,"1337");
navigation[160] = new navElem(160,"Grüntöne/Khaki/Oliv/Kiwi&nbsp(7)","pi-988926258.htm",138,"1338");
navigation[161] = new navElem(161,"Petrol/Türkis/Aqua/Mint&nbsp(4)","pi-1895084489.htm",138,"1339");
navigation[162] = new navElem(162,"Brauntöne/Rost/Terra/Kupfer/Fango&nbsp(4)","pi1444698042.htm",138,"1340");
navigation[163] = new navElem(163,"Grautöne/Silber/Kitt&nbsp(4)","pi1716291507.htm",138,"1341");
navigation[164] = new navElem(164,"Schwarz&nbsp(12)","pi1797172344.htm",138,"1342");
navigation[165] = new navElem(165,"gold/silber/kupfer schimmernd","pi693641497.htm",138,"1343");
navigation[166] = new navElem(166,"Kombinationsstoffe","pi-398164551.htm",138,"1472");
navigation[167] = new navElem(167,"Stoff ist geeignet für:","pi-1749035695.htm",71,"1324");
navigation[168] = new navElem(168,"Blazer/Jacken/Blusenjacken&nbsp(43)","pi-1730061131.htm",167,"1345");
navigation[169] = new navElem(169,"Blusen/Tuniken/Oberteile/Weste&nbsp(34)","pi-1121457710.htm",167,"1346");
navigation[170] = new navElem(170,"Shirt/Jerseybluse/Bolero/Shrug&nbsp(55)","pi-233706416.htm",167,"1347");
navigation[171] = new navElem(171,"Strickjacken/Twinset/Pulli&nbsp(7)","pi729180689.htm",167,"1348");
navigation[172] = new navElem(172,"Hosen&nbsp(35)","pi-161748226.htm",167,"1349");
navigation[173] = new navElem(173,"Jersey-Röcke und -kleider&nbsp(59)","pi-36805142.htm",167,"2315");
navigation[174] = new navElem(174,"Röcke/Kleider&nbsp(45)","pi751338151.htm",167,"1350");
navigation[175] = new navElem(175,"Futter&nbsp(13)","pi1199377251.htm",167,"2333");
navigation[176] = new navElem(176,"Stoffe komplett","pi-247953855.htm",null,"240");
navigation[177] = new navElem(177,"Sortiert nach Qualität","pi-1597816387.htm",176,"127");
navigation[178] = new navElem(178,"Angora-Jersey&nbsp(1)","pi1803906117.htm",177,"2220");
navigation[179] = new navElem(179,"Ausbrenner Ton-in-Ton&nbsp(2)","pi-773106544.htm",177,"1887");
navigation[180] = new navElem(180,"Ausbrenner farbig&nbsp(6)","pi1936008260.htm",177,"50");
navigation[181] = new navElem(181,"Ausbrenner-Jersey&nbsp(3)","pi-1936867630.htm",177,"1895");
navigation[182] = new navElem(182,"Bänder (Rips)&nbsp(2)","pi2114740066.htm",177,"375");
navigation[183] = new navElem(183,"Bambus&nbsp(1)","pi995099149.htm",177,"1056");
navigation[184] = new navElem(184,"Baumwolle/Batist/Voile uni&nbsp(21)","pi-1665334306.htm",177,"1881");
navigation[185] = new navElem(185,"leichte Baumwolle/Batist/Voile farbig&nbsp(15)","pi202068879.htm",177,"2010");
navigation[186] = new navElem(186,"Baumwolle farbig&nbsp(19)","pi218066529.htm",177,"43");
navigation[187] = new navElem(187,"Baumwoll-Jersey&nbsp(4)","pi1824830347.htm",177,"1046");
navigation[188] = new navElem(188,"Baumwoll-Leinen&nbsp(1)","pi-583648899.htm",177,"365");
navigation[189] = new navElem(189,"Baumwollmischung uni/meliert&nbsp(44)","pi-66967565.htm",177,"1882");
navigation[190] = new navElem(190,"Baumwollmischung farbig&nbsp(43)","pi1120696660.htm",177,"366");
navigation[191] = new navElem(191,"Beflockte/beschichtete Stoffe&nbsp(16)","pi522367498.htm",177,"1444");
navigation[192] = new navElem(192,"Bestickter Stoff/Stickerei-Stoff&nbsp(31)","pi-1259146103.htm",177,"671");
navigation[193] = new navElem(193,"Bio-Leinen&nbsp(12)","pi1388245995.htm",177,"888");
navigation[194] = new navElem(194,"Bordürenstoffe&nbsp(11)","pi353255891.htm",177,"23");
navigation[195] = new navElem(195,"Boucle/Strickstoff&nbsp(57)","pi719937026.htm",177,"5");
navigation[196] = new navElem(196,"Bouclé/Tweed/Sommertweed&nbsp(10)","pi-1800415674.htm",177,"26");
navigation[197] = new navElem(197,"Chiffon uni&nbsp(10)","pi-1281783663.htm",177,"1879");
navigation[198] = new navElem(198,"Chiffon/Georgette farbig/Polyesterdrucke&nbsp(20)","pi-466302934.htm",177,"367");
navigation[199] = new navElem(199,"Cord/Cordstruktur&nbsp(3)","pi-1919177779.htm",177,"4");
navigation[200] = new navElem(200,"Crash + Cloqué uni/meliert&nbsp(13)","pi-1297962041.htm",177,"1883");
navigation[201] = new navElem(201,"Crash + Cloqué farbig/bedruckt&nbsp(32)","pi1080775112.htm",177,"368");
navigation[202] = new navElem(202,"Crepe&nbsp(1)","pi1818253466.htm",177,"797");
navigation[203] = new navElem(203,"Crinkle&nbsp(3)","pi-1087410994.htm",177,"714");
navigation[204] = new navElem(204,"Cupro&nbsp(3)","pi-1420529249.htm",177,"2170");
navigation[205] = new navElem(205,"Doppelgewebe&nbsp(22)","pi1155926762.htm",177,"1225");
navigation[206] = new navElem(206,"Doubleface&nbsp(18)","pi1059049723.htm",177,"854");
navigation[207] = new navElem(207,"Einlagen/Formband/Soluvlies/Vliesofix&nbsp(13)","pi807771897.htm",177,"1912");
navigation[208] = new navElem(208,"Fell-/Pelzimitat/Plüsch/Fake Fur&nbsp(8)","pi1190708681.htm",177,"585");
navigation[209] = new navElem(209,"Fotodruck/Inkjet-Stoffe/Digitalprint&nbsp(22)","pi1577029423.htm",177,"1773");
navigation[210] = new navElem(210,"Futterstoffe&nbsp(23)","pi-1188329109.htm",177,"1811");
navigation[211] = new navElem(211,"Gabardine/Woll- u. Fein-/feine Hosenstoffe&nbsp(11)","pi496941896.htm",177,"572");
navigation[212] = new navElem(212,"Georgette/Chiffon&nbsp(27)","pi1847278288.htm",177,"1461");
navigation[213] = new navElem(213,"Glencheck&nbsp(3)","pi-450985637.htm",177,"568");
navigation[214] = new navElem(214,"Jackenstoff fest&nbsp(10)","pi1330149145.htm",177,"1227");
navigation[215] = new navElem(215,"Jacquard uni in sich gemustert&nbsp(2)","pi-2144275098.htm",177,"1884");
navigation[216] = new navElem(216,"Jacquard farbig/Jacquardoptik&nbsp(22)","pi1140876192.htm",177,"108");
navigation[217] = new navElem(217,"Jeans/Köper uni + meliert&nbsp(17)","pi-542719045.htm",177,"32");
navigation[218] = new navElem(218,"Jeans/Köper bedruckt&nbsp(8)","pi-1965564108.htm",177,"1662");
navigation[219] = new navElem(219,"Jersey/Strickjersey gemustert alle&nbsp(92)","pi182825452.htm",177,"45");
navigation[220] = new navElem(220,"Jersey gemustert Tüll/Mesh/Spitze&nbsp(11)","pi-1923515319.htm",177,"2320");
navigation[221] = new navElem(221,"Jersey/Strick uni + Melange, Tüll/Meshjersey uni&nbsp(77)","pi725445156.htm",177,"836");
navigation[222] = new navElem(222,"Jersey Musterung floral&nbsp(17)","pi-395767387.htm",177,"1208");
navigation[223] = new navElem(223,"Jersey Musterung Phantasie&nbsp(53)","pi-1470833932.htm",177,"1210");
navigation[224] = new navElem(224,"Jersey Musterung Retro, grafisch  &nbsp(17)","pi814897154.htm",177,"1209");
navigation[225] = new navElem(225,"Jersey Ausbrenner&nbsp(3)","pi-2053125808.htm",177,"1896");
navigation[226] = new navElem(226,"Jersey mit Angora&nbsp(1)","pi1039795746.htm",177,"2221");
navigation[227] = new navElem(227,"Jersey Bambus","pi1465317352.htm",177,"2323");
navigation[228] = new navElem(228,"Jersey Baumwolle mit+ohne Elasthan&nbsp(4)","pi24678577.htm",177,"1047");
navigation[229] = new navElem(229,"Jersey beflockt&nbsp(7)","pi-1852941016.htm",177,"1630");
navigation[230] = new navElem(230,"Jersey Crash + Cloqué&nbsp(7)","pi1378689197.htm",177,"1898");
navigation[231] = new navElem(231,"Jersey Fotodruck/Inkjet-Druck&nbsp(16)","pi1032237989.htm",177,"1820");
navigation[232] = new navElem(232,"Jersey Micromodal&nbsp(1)","pi1307709630.htm",177,"1868");
navigation[233] = new navElem(233,"Jersey/Mesh/Stretch Pailletten&nbsp(4)","pi730259201.htm",177,"2329");
navigation[234] = new navElem(234,"Jersey Ripp&nbsp(2)","pi-1449062333.htm",177,"1906");
navigation[235] = new navElem(235,"Jersey Romanit bzw. ähnlich Romanit, schwer, stabil&nbsp(18)","pi-1686973152.htm",177,"2118");
navigation[236] = new navElem(236,"Jersey Slinky&nbsp(4)","pi799784003.htm",177,"1670");
navigation[237] = new navElem(237,"Jersey Strick uni/meliert&nbsp(24)","pi1642904555.htm",177,"1885");
navigation[238] = new navElem(238,"Jersey Strick farbig&nbsp(19)","pi279428654.htm",177,"1257");
navigation[239] = new navElem(239,"Jersey Tüll/Mesh/Spitze&nbsp(12)","pi-533871293.htm",177,"1484");
navigation[240] = new navElem(240,"Jersey mit Volants/mit Applikationen/Biesen/Doppelgewebe&nbsp(8)","pi1773473926.htm",177,"1640");
navigation[241] = new navElem(241,"Jersey Viskose/Elasthan uni&nbsp(36)","pi1364724133.htm",177,"1009");
navigation[242] = new navElem(242,"Jersey Winterjersey&nbsp(7)","pi1821369627.htm",177,"1639");
navigation[243] = new navElem(243,"Köper/Jeans uni + meliert&nbsp(17)","pi240269999.htm",177,"577");
navigation[244] = new navElem(244,"Köper/Jeans bedruckt&nbsp(8)","pi2133055617.htm",177,"1663");
navigation[245] = new navElem(245,"Kombinationsstoffe&nbsp(2)","pi-297906298.htm",177,"1473");
navigation[246] = new navElem(246,"Kurzhaar-Zottel&nbsp(3)","pi1491874430.htm",177,"1222");
navigation[247] = new navElem(247,"Lederimitat/Tierhaut-Print&nbsp(9)","pi-589405114.htm",177,"1051");
navigation[248] = new navElem(248,"Leinen uni + meliert&nbsp(34)","pi-717145220.htm",177,"1660");
navigation[249] = new navElem(249,"Leinen bedruckt/bestickt/farbig&nbsp(17)","pi-1964450611.htm",177,"1661");
navigation[250] = new navElem(250,"Leichtleinen&nbsp(18)","pi323528090.htm",177,"1421");
navigation[251] = new navElem(251,"Leinenmischungen/-strick&nbsp(21)","pi-515800096.htm",177,"42");
navigation[252] = new navElem(252,"Leinen und -mischung beschichtet&nbsp(3)","pi-1356388908.htm",177,"1938");
navigation[253] = new navElem(253,"Leinenmischung Crash&nbsp(5)","pi-1493443878.htm",177,"1809");
navigation[254] = new navElem(254,"Leinen/Stretch&nbsp(4)","pi1127383109.htm",177,"1490");
navigation[255] = new navElem(255,"Mesh/Tüll/Spitzenjersey&nbsp(18)","pi-981230639.htm",177,"369");
navigation[256] = new navElem(256,"Metall-Stoffe&nbsp(6)","pi1048295107.htm",177,"370");
navigation[257] = new navElem(257,"Microfaser&nbsp(3)","pi-400579036.htm",177,"1041");
navigation[258] = new navElem(258,"Nicki&nbsp(1)","pi-2012567849.htm",177,"90");
navigation[259] = new navElem(259,"Nylon/Nylonmischung&nbsp(13)","pi-1361177122.htm",177,"1926");
navigation[260] = new navElem(260,"Paillettenstoff&nbsp(9)","pi225163820.htm",177,"1876");
navigation[261] = new navElem(261,"Pelz-/Fellimitat/Plüsch/Fake Fur&nbsp(5)","pi-1903509019.htm",177,"203");
navigation[262] = new navElem(262,"Pfirsichhaut/Kunstfasermischung&nbsp(6)","pi-656336862.htm",177,"1822");
navigation[263] = new navElem(263,"Pizzatechnik, aufgefilzte Fäden/Spitze&nbsp(8)","pi2576025.htm",177,"35");
navigation[264] = new navElem(264,"Plissee/Crash/Cloqué&nbsp(40)","pi1449487732.htm",177,"1202");
navigation[265] = new navElem(265,"Plüsch/Microplüsch&nbsp(3)","pi-733884252.htm",177,"559");
navigation[266] = new navElem(266,"Polyamid/Polycarbonat/-mischung&nbsp(26)","pi-1463383009.htm",177,"1040");
navigation[267] = new navElem(267,"Polyester/Polyethylen/-mischung&nbsp(113)","pi507650298.htm",177,"372");
navigation[268] = new navElem(268,"Popeline&nbsp(8)","pi-601179565.htm",177,"163");
navigation[269] = new navElem(269,"Ramie&nbsp(5)","pi-603920466.htm",177,"931");
navigation[270] = new navElem(270,"Rapportstoff&nbsp(6)","pi-524573922.htm",177,"712");
navigation[271] = new navElem(271,"Rippenstrickstoff&nbsp(5)","pi1031305543.htm",177,"2263");
navigation[272] = new navElem(272,"Rips&nbsp(1)","pi16791345.htm",177,"92");
navigation[273] = new navElem(273,"Romanit-Jersey bzw. ähnlich Romanit&nbsp(13)","pi-62898098.htm",177,"2119");
navigation[274] = new navElem(274,"Satin uni&nbsp(7)","pi2127117896.htm",177,"1874");
navigation[275] = new navElem(275,"Satin bedruckt&nbsp(10)","pi-525403537.htm",177,"711");
navigation[276] = new navElem(276,"Seide/-mischungen&nbsp(26)","pi529283611.htm",177,"226");
navigation[277] = new navElem(277,"Seiden-Chiffon&nbsp(4)","pi-1003075587.htm",177,"1936");
navigation[278] = new navElem(278,"Slinky-Jersey&nbsp(4)","pi-1497547795.htm",177,"697");
navigation[279] = new navElem(279,"Smok&nbsp(2)","pi563941073.htm",177,"570 ");
navigation[280] = new navElem(280,"Soft-Shell/Technostoff&nbsp(2)","pi633788013.htm",177,"2304");
navigation[281] = new navElem(281,"Spitze/Spitzenjersey&nbsp(3)","pi-378242359.htm",177,"556");
navigation[282] = new navElem(282,"Stepper/Taftstepper&nbsp(11)","pi-2090110756.htm",177,"193");
navigation[283] = new navElem(283,"Stickerei-Stoff/bestickter Stoff&nbsp(29)","pi-93503614.htm",177,"674");
navigation[284] = new navElem(284,"Stretch&nbsp(82)","pi1192799898.htm",177,"113");
navigation[285] = new navElem(285,"Stretchbaumwolle/Stretchsatin&nbsp(39)","pi961645838.htm",177,"44");
navigation[286] = new navElem(286,"Stretchcord&nbsp(1)","pi1461923686.htm",177,"1638");
navigation[287] = new navElem(287,"Stretchjeans/-köper&nbsp(18)","pi1244055445.htm",177,"131");
navigation[288] = new navElem(288,"Stretchleinen&nbsp(4)","pi1250897139.htm",177,"47");
navigation[289] = new navElem(289,"Strickstoff/Boucle uni/meliert&nbsp(17)","pi287323615.htm",177,"1880");
navigation[290] = new navElem(290,"Strickstoff/Boucle bunt&nbsp(36)","pi1094804860.htm",177,"381");
navigation[291] = new navElem(291,"Strickstoff fein&nbsp(25)","pi-2082197885.htm",177,"930");
navigation[292] = new navElem(292,"Sweat&nbsp(3)","pi-818201581.htm",177,"1900");
navigation[293] = new navElem(293,"Taft uni&nbsp(8)","pi12424166.htm",177,"1877");
navigation[294] = new navElem(294,"Taft/taftartige Stoffe bedruckt&nbsp(3)","pi1120946276.htm",177,"198");
navigation[295] = new navElem(295,"Technostoff/Soft-Shell dünn&nbsp(3)","pi277157689.htm",177,"800");
navigation[296] = new navElem(296,"Tencel/-Leinen&nbsp(2)","pi2123669482.htm",177,"117");
navigation[297] = new navElem(297,"Tressen-Stoffe&nbsp(5)","pi-977038046.htm",177,"1875");
navigation[298] = new navElem(298,"Tüll/Mesh/Spitzenjersey&nbsp(18)","pi25382503.htm",177,"916");
navigation[299] = new navElem(299,"Tweed/Bouclé/Sommertweed&nbsp(10)","pi334518982.htm",177,"130");
navigation[300] = new navElem(300,"Velvet/Baumwollsamt mit und ohne Stretch&nbsp(1)","pi-1727646381.htm",177,"64");
navigation[301] = new navElem(301,"Viskose/-mischungen&nbsp(48)","pi1801484095.htm",177,"373");
navigation[302] = new navElem(302,"Viskoseleinen&nbsp(4)","pi-1467089630.htm",177,"374");
navigation[303] = new navElem(303,"Vlieseline/Formband/Soluvlies/Vliesofix&nbsp(13)","pi259050131.htm",177,"1911");
navigation[304] = new navElem(304,"komplett Walk u. walkartig. Stoffe&nbsp(82)","pi-160072574.htm",177,"225");
navigation[305] = new navElem(305,"Walk und walkartige Stoffe uni&nbsp(56)","pi333659937.htm",177,"1596");
navigation[306] = new navElem(306,"Walk und walkartige Stoffe bedruckt/bunt&nbsp(18)","pi-273723514.htm",177,"849");
navigation[307] = new navElem(307,"Walk mit Jacquard-Musterung&nbsp(5)","pi-491801029.htm",177,"1213");
navigation[308] = new navElem(308,"walkartg. Mischung, Pizzatechnik&nbsp(7)","pi-146766201.htm",177,"1642");
navigation[309] = new navElem(309,"Walk gefilzte Wollmischung, gekochte Wolle, Lana Cotta, Strickloden&nbsp(15)","pi1475774816.htm",177,"845");
navigation[310] = new navElem(310,"Walk ganz leichte Ware, Tuchloden, Schurwolle /Wollmischung (320-420 g/lfm)&nbsp(8)","pi193373366.htm",177,"1216");
navigation[311] = new navElem(311,"Walk Leichtwalker ohne Fransenkante (420 g/lfm)&nbsp(14)","pi1841456609.htm",177,"846");
navigation[312] = new navElem(312,"Walk Sommerwalk m. Fransenkante (460-480 g/lfm)&nbsp(20)","pi-1606452601.htm",177,"844");
navigation[313] = new navElem(313,"Walk mittelschwere + Winterqualität (500-600 g/lfm)&nbsp(10)","pi-787400573.htm",177,"1174");
navigation[314] = new navElem(314,"Walk Edelstepper/Doubleface&nbsp(7)","pi-558195254.htm",177,"1173");
navigation[315] = new navElem(315,"Winterjersey&nbsp(11)","pi1682332369.htm",177,"63");
navigation[316] = new navElem(316,"Wirkfutter&nbsp(4)","pi-2134018165.htm",177,"2223");
navigation[317] = new navElem(317,"Wolle/Wollmischung&nbsp(100)","pi-1732880518.htm",177,"150");
navigation[318] = new navElem(318,"Woll-Spitze&nbsp(2)","pi-777246107.htm",177,"1180");
navigation[319] = new navElem(319,"Zottelfell kurz + lang&nbsp(4)","pi407422928.htm",177,"1220");
navigation[320] = new navElem(320,"Sortiert nach Farbe + Musterung","pi765615162.htm",176,"128");
navigation[321] = new navElem(321,"Uni Weiß/Cremetöne&nbsp(37)","pi368373063.htm",320,"1982");
navigation[322] = new navElem(322,"Uni Beige/Taupe/Ecru/Sandtöne&nbsp(28)","pi-1147827071.htm",320,"1983");
navigation[323] = new navElem(323,"Uni Gelbtöne/Ocker&nbsp(5)","pi1654653588.htm",320,"1984");
navigation[324] = new navElem(324,"Uni Orange/Apricot/Terratöne&nbsp(10)","pi-646878203.htm",320,"1985");
navigation[325] = new navElem(325,"Uni Rot/Koralletöne&nbsp(18)","pi-935560478.htm",320,"1986");
navigation[326] = new navElem(326,"Uni Rosa/Pudertöne/Rosenholz&nbsp(16)","pi-1379336698.htm",320,"1987");
navigation[327] = new navElem(327,"Uni Lila/Fuchsia/Cyclam/Brombeertöne&nbsp(38)","pi-990687.htm",320,"1988");
navigation[328] = new navElem(328,"Uni Blau/Aquatöne&nbsp(45)","pi-1364860423.htm",320,"1989");
navigation[329] = new navElem(329,"Uni Grün/Khaki/Olivtöne&nbsp(30)","pi1879233194.htm",320,"1990 ");
navigation[330] = new navElem(330,"Uni Petrol/Türkistöne&nbsp(16)","pi371956150.htm",320,"1992");
navigation[331] = new navElem(331,"Uni Brauntöne&nbsp(30)","pi-869540757.htm",320,"1993");
navigation[332] = new navElem(332,"Uni Grau/Silbertöne&nbsp(40)","pi-716092667.htm",320,"1994");
navigation[333] = new navElem(333,"Uni Schwarz&nbsp(46)","pi-479988456.htm",320,"1995");
navigation[334] = new navElem(334,"Bunt&nbsp(59)","pi-891645930.htm",320,"14");
navigation[335] = new navElem(335,"Weiß/Wollweiß/Champagner/Elfenbein&nbsp(125)","pi-54860438.htm",320,"11");
navigation[336] = new navElem(336,"Beige/Ecru/Natur/Camel/Sand/Schlamm/Taupe&nbsp(59)","pi1773832012.htm",320,"22");
navigation[337] = new navElem(337,"Gold/Gelb/Ocker/Vanille/Apricot/Melone&nbsp(35)","pi-1200993736.htm",320,"160");
navigation[338] = new navElem(338,"Orange/Rot/Weinrot/Lachs/Koralle&nbsp(51)","pi1978240052.htm",320,"16");
navigation[339] = new navElem(339,"Rosatöne/Pink/Rosé/Rosenholz/Puder&nbsp(31)","pi-414349440.htm",320,"18");
navigation[340] = new navElem(340,"Lilatöne/Magenta/Brombeer/Aubergine/Fuchsia&nbsp(58)","pi-944530046.htm",320,"17");
navigation[341] = new navElem(341,"Blautöne&nbsp(56)","pi492771295.htm",320,"15");
navigation[342] = new navElem(342,"Grüntöne/Khaki/Oliv/Kiwi&nbsp(60)","pi-742080414.htm",320,"154");
navigation[343] = new navElem(343,"Petrol/Türkis/Aqua/Mint&nbsp(27)","pi872091001.htm",320,"19");
navigation[344] = new navElem(344,"Brauntöne/Rost/Terra/Kupfer/Fango&nbsp(104)","pi-321867352.htm",320,"13");
navigation[345] = new navElem(345,"Grautöne/Silber/Kitt&nbsp(82)","pi888769766.htm",320,"25");
navigation[346] = new navElem(346,"Schwarz&nbsp(139)","pi-656056915.htm",320,"10");
navigation[347] = new navElem(347,"gold/silber/kupfer schimmernd&nbsp(10)","pi-1246823371.htm",320,"716");
navigation[348] = new navElem(348,"Kombinationsstoffe&nbsp(4)","pi-1612292465.htm",320,"1474");
navigation[349] = new navElem(349,"Stoffe mit Autos, Fahrrädern, sonst. Motiven&nbsp(8)","pi-1931176060.htm",320,"2198");
navigation[350] = new navElem(350,"Stoffe mit Batik/Farbverlauf&nbsp(7)","pi1743812147.htm",320,"2202");
navigation[351] = new navElem(351,"Stoffe mit Blättermusterung&nbsp(9)","pi-1598346077.htm",320,"2200");
navigation[352] = new navElem(352,"Stoffe mit Blumen&nbsp(70)","pi-773498080.htm",320,"2196");
navigation[353] = new navElem(353,"Stoffe mit Blumen groß&nbsp(25)","pi490117368.htm",320,"2203");
navigation[354] = new navElem(354,"Stoffe mit Blumen stilisiert&nbsp(28)","pi-1777880167.htm",320,"2204");
navigation[355] = new navElem(355,"Stoffe mit Ethnomuster/Tribal/Folklore&nbsp(8)","pi-1424080768.htm",320,"2201");
navigation[356] = new navElem(356,"Stoffe mit Gesichtern&nbsp(9)","pi-522091052.htm",320,"2193");
navigation[357] = new navElem(357,"Stoffe mit Karo-/Glencheck&nbsp(22)","pi-1559586391.htm",320,"2190");
navigation[358] = new navElem(358,"Stoffe mit Norwegermuster&nbsp(3)","pi-1745461838.htm",320,"2265");
navigation[359] = new navElem(359,"Stoffe mit Paisley-/Tapisserie-Musterung&nbsp(3)","pi1204116470.htm",320,"2208");
navigation[360] = new navElem(360,"Stoffe mit Punkten&nbsp(5)","pi-1044669441.htm",320,"2192");
navigation[361] = new navElem(361,"Stoffe mit Retromustern&nbsp(7)","pi-1782349317.htm",320,"2195");
navigation[362] = new navElem(362,"Stoffe mit Rosen&nbsp(11)","pi1991818982.htm",320,"2197");
navigation[363] = new navElem(363,"Stoffe mit Schrift/Zahlen&nbsp(26)","pi1994456645.htm",320,"2194");
navigation[364] = new navElem(364,"Stoffe mit Schmetterlingen/Vögel&nbsp(6)","pi1664019541.htm",320,"2311");
navigation[365] = new navElem(365,"Stoffe mit Streifen&nbsp(20)","pi204134582.htm",320,"2191");
navigation[366] = new navElem(366,"Stoffe mit Tierfell-/Tierhaut-/Reptilienmusterung&nbsp(19)","pi1568201042.htm",320,"2199");
navigation[367] = new navElem(367,"Stoff ist geeignet für:","pi841197525.htm",176,"173");
navigation[368] = new navElem(368,"Outdoorjacken/Mäntel&nbsp(87)","pi1549351374.htm",367,"180");
navigation[369] = new navElem(369,"Blazer/Jacken/Blusenjacken&nbsp(256)","pi1560769008.htm",367,"175");
navigation[370] = new navElem(370,"Westen aus Strick/Walk/Stepp/Fellimitat&nbsp(19)","pi1524471416.htm",367,"1181");
navigation[371] = new navElem(371,"Blusen/Tuniken/Oberteile/leichte Westen&nbsp(153)","pi1680028749.htm",367,"178");
navigation[372] = new navElem(372,"Shirt/Jerseybluse/Rolli/Bolero/Wickeljacke/shrug&nbsp(176)","pi-693328079.htm",367,"176");
navigation[373] = new navElem(373,"Strickjacken/Twinset/Pulli/Pullunder&nbsp(76)","pi-795883709.htm",367,"179");
navigation[374] = new navElem(374,"Hosen&nbsp(115)","pi-1492482549.htm",367,"277");
navigation[375] = new navElem(375,"Röcke/Kleider&nbsp(291)","pi735675591.htm",367,"177");
navigation[376] = new navElem(376,"Jersey-/Strick-Kleider und -Röcke&nbsp(128)","pi-1722210946.htm",367,"2286");
navigation[377] = new navElem(377,"Sportbekleidung, Sweater&nbsp(3)","pi806055033.htm",367,"1902");
navigation[378] = new navElem(378,"Cacheur/Kragen/Verzierungen/Bänder/Stola/Schal&nbsp(23)","pi702834355.htm",367,"181");
navigation[379] = new navElem(379,"Einlagen/Formband/Soluvlies/Vliesofix&nbsp(13)","pi2133332018.htm",367,"1916");
navigation[380] = new navElem(380,"Futter&nbsp(26)","pi-1805876098.htm",367,"1815");
navigation[381] = new navElem(381,"Designerstoffe + Made in Italy&nbsp(4)","pi714083756.htm",176,"110");
navigation[382] = new navElem(382,"Originalstoffe Pattern Company","pi369024073.htm",176,"334");
navigation[383] = new navElem(383,"Pattern Company F/S 2012&nbsp(36)","pi2120275148.htm",382,"2231");
navigation[384] = new navElem(384,"Pattern Company H/W 2011&nbsp(19)","pi-111045569.htm",382,"2022");
navigation[385] = new navElem(385,"Pattern Company F/S 2011&nbsp(37)","pi422389930.htm",382,"1682");
navigation[386] = new navElem(386,"Pattern Company Winter 10&nbsp(26)","pi-520622770.htm",382,"1539");
navigation[387] = new navElem(387,"Pattern Company Sommer 2010&nbsp(24)","pi1752411620.htm",382,"228");
navigation[388] = new navElem(388,"Pattern Company Winter 2009&nbsp(18)","pi1404148737.htm",382,"1163");
navigation[389] = new navElem(389,"Pattern Company Sommer 2009&nbsp(14)","pi-223332397.htm",382,"912");
navigation[390] = new navElem(390,"Pattern Company Winter 2008&nbsp(12)","pi-893725213.htm",382,"784");
navigation[391] = new navElem(391,"Pattern Company Sommer 2008&nbsp(15)","pi2043171669.htm",382,"650");
navigation[392] = new navElem(392,"Pattern Company Winter 2007&nbsp(2)","pi-541803807.htm",382,"544");
navigation[393] = new navElem(393,"Pattern Company Sommer 2007&nbsp(9)","pi-1706137356.htm",382,"336");
navigation[394] = new navElem(394,"Originalstoffe Sabrina Woman","pi247212024.htm",176,"686");
navigation[395] = new navElem(395,"Sabrina Woman Frühjahr 1/2012&nbsp(19)","pi1378364310.htm",394,"796");
navigation[396] = new navElem(396,"Sabrina Woman Winter 4/2011&nbsp(11)","pi1297427016.htm",394,"2126");
navigation[397] = new navElem(397,"Sabrina Woman Herbst 3/2011&nbsp(21)","pi1636363971.htm",394,"2125");
navigation[398] = new navElem(398,"Sabrina Woman Sommer 2/2011&nbsp(24)","pi-1608716882.htm",394,"1889");
navigation[399] = new navElem(399,"Sabrina Woman Frühjahr 1/2011&nbsp(29)","pi1475928547.htm",394,"1683");
navigation[400] = new navElem(400,"Sabrina Woman H/W 10&nbsp(9)","pi-1740059977.htm",394,"1540");
navigation[401] = new navElem(401,"Sabrina Woman F/S 2010 (S1593)&nbsp(15)","pi1691964011.htm",394,"1415");
navigation[402] = new navElem(402,"Sabrina Woman H/W 2009 (S1536)&nbsp(4)","pi1764811355.htm",394,"1162");
navigation[403] = new navElem(403,"Sabrina Woman F/S 2009 (S1464)&nbsp(9)","pi1155319195.htm",394,"919");
navigation[404] = new navElem(404,"Sabrina Woman F/S+H/W 2008 (S1329)&nbsp(8)","pi1330971634.htm",394,"651");
navigation[405] = new navElem(405,"Sabrina Woman F/S+H/W 2007 (S1273)&nbsp(7)","pi-490918027.htm",394,"542");
navigation[406] = new navElem(406,"Sabrina Woman Big Size 2006&nbsp(1)","pi-1454306518.htm",394,"379");
navigation[407] = new navElem(407,"Originalstoffe Knipmode special in deutsch","pi-2084581831.htm",176,"913");
navigation[408] = new navElem(408,"Knipmode special F/S 2012&nbsp(35)","pi1832169437.htm",407,"2232");
navigation[409] = new navElem(409,"Knipmode special H/W 2011&nbsp(23)","pi-2062503803.htm",407,"2024");
navigation[410] = new navElem(410,"Knipmode special F/S 2011&nbsp(26)","pi1534174952.htm",407,"1684");
navigation[411] = new navElem(411,"Knipmode special H/W 10&nbsp(17)","pi-2052322260.htm",407,"1541");
navigation[412] = new navElem(412,"Knipmode special F/S 2010&nbsp(17)","pi1412486951.htm",407,"1418");
navigation[413] = new navElem(413,"Knipmode special H/W 09&nbsp(7)","pi494874114.htm",407,"1161");
navigation[414] = new navElem(414,"Knipmode special F/S 09&nbsp(8)","pi1198849957.htm",407,"1160");
navigation[415] = new navElem(415,"Originalstoffe Ottobre Woman + kids  ","pi380958720.htm",176,"340");
navigation[416] = new navElem(416,"Ottobre Woman F/S 2012&nbsp(8)","pi-293373990.htm",415,"2233");
navigation[417] = new navElem(417,"Ottobre Woman F/S 2011","pi1995330932.htm",415,"1687");
navigation[418] = new navElem(418,"Ottobre Woman H/W 10&nbsp(2)","pi1093512125.htm",415,"1542");
navigation[419] = new navElem(419,"Ottobre Woman + kids F/S 2010&nbsp(5)","pi4202769.htm",415,"229");
navigation[420] = new navElem(420,"Ottobre Woman H/W 09&nbsp(7)","pi-931292117.htm",415,"1217");
navigation[421] = new navElem(421,"Ottobre Woman F/S 09 + kids 09&nbsp(1)","pi-2145265744.htm",415,"914");
navigation[422] = new navElem(422,"Ottobre Woman 07/08 + kids 07/08&nbsp(1)","pi252266834.htm",415,"688");
navigation[423] = new navElem(423,"Originalstoffe Lena/Lea Modetrends für große Größen","pi-291127586.htm",176,"1919");
navigation[424] = new navElem(424,"Lena Modetrends für gr. Größen 2011&nbsp(12)","pi-1641985923.htm",423,"1922");
navigation[425] = new navElem(425,"Lea für gr. Größen 07/08/09/10&nbsp(7)","pi557452282.htm",423,"1923");
navigation[426] = new navElem(426,"Originalstoffe Diana Moden","pi99932529.htm",176,"1918");
navigation[427] = new navElem(427,"Diana Moden 2011&nbsp(2)","pi-1105329913.htm",426,"1920");
navigation[428] = new navElem(428,"Diana Moden 08/09/10&nbsp(2)","pi-1091405764.htm",426,"1921");
navigation[429] = new navElem(429,"Originalstoffe Burda/Young Fashion/Plus Fashion","pi-474177229.htm",176,"685");
navigation[430] = new navElem(430,"burdastyle + Burda Einzelschnittmuster 2011&nbsp(4)","pi-461207358.htm",429,"1688");
navigation[431] = new navElem(431,"Burda Modemagazin 09/08/07 + Einzelschnitte&nbsp(2)","pi-1909661583.htm",429,"564");
navigation[432] = new navElem(432,"Burda Plus Fashion F/S 08 + H/W 07&nbsp(1)","pi332335793.htm",429,"654");
navigation[433] = new navElem(433,"Futterstoffe&nbsp(22)","pi-298730619.htm",176,"204");
navigation[434] = new navElem(434,"Reststücke/Ballenreste stark reduziert!&nbsp(101)","pi1055510062.htm",176,"232");
navigation[435] = new navElem(435,"Einlagen/Formband/Soluvlies/Vliesofix&nbsp(13)","pi-458184762.htm",null,"1914");
navigation[436] = new navElem(436,"Verschlüsse/Steckschnallen/Schließen&nbsp(9)","pi-1735320439.htm",null,"1426");
navigation[437] = new navElem(437,"Reduzierte Sommer-Stoffe","pi-326540052.htm",null,"611");
navigation[438] = new navElem(438,"Sortiert nach Qualität","pi-1546467971.htm",437,"612");
navigation[439] = new navElem(439,"Ausbrenner&nbsp(4)","pi-1924014228.htm",438,"615");
navigation[440] = new navElem(440,"Ausbrenner-Jersey","pi-864178702.htm",438,"2237");
navigation[441] = new navElem(441,"Bambus&nbsp(1)","pi968648105.htm",438,"1597");
navigation[442] = new navElem(442,"Baumwolle/Batist uni&nbsp(14)","pi99918075.htm",438,"2238");
navigation[443] = new navElem(443,"Baumwolle/Batist bunt&nbsp(16)","pi622808573.htm",438,"616");
navigation[444] = new navElem(444,"Baumwoll-Jersey&nbsp(1)","pi-1141016524.htm",438,"2239");
navigation[445] = new navElem(445,"Baumwollmischung&nbsp(51)","pi147013176.htm",438,"618");
navigation[446] = new navElem(446,"Beschichteter/Gewachster Stoff&nbsp(7)","pi1588038213.htm",438,"1598");
navigation[447] = new navElem(447,"Bestickter Stoff&nbsp(11)","pi-2011037401.htm",438,"668");
navigation[448] = new navElem(448,"Bordürenstoffe&nbsp(5)","pi-1367331034.htm",438,"619");
navigation[449] = new navElem(449,"Boucle/Strickstoff&nbsp(3)","pi1983309685.htm",438,"620");
navigation[450] = new navElem(450,"Boucle/Tweed/Sommertweed&nbsp(3)","pi255721112.htm",438,"1080");
navigation[451] = new navElem(451,"Chiffon/Georgette/leichte Polyesterdrucke&nbsp(15)","pi1876544914.htm",438,"621");
navigation[452] = new navElem(452,"Crash/Cloqué&nbsp(24)","pi1652182699.htm",438,"622");
navigation[453] = new navElem(453,"Crinkle&nbsp(1)","pi1481270561.htm",438,"713");
navigation[454] = new navElem(454,"Doppelgewebe&nbsp(5)","pi-933141499.htm",438,"2129");
navigation[455] = new navElem(455,"Doubleface&nbsp(4)","pi1742592004.htm",438,"2240");
navigation[456] = new navElem(456,"Fotodruck/Inkjet-Stoffe/Digital-Print&nbsp(9)","pi553930494.htm",438,"2241");
navigation[457] = new navElem(457,"Gabardine&nbsp(5)","pi271285216.htm",438,"2130");
navigation[458] = new navElem(458,"Glencheck&nbsp(1)","pi-713136730.htm",438,"2132");
navigation[459] = new navElem(459,"Häkelspitze","pi-255914349.htm",438,"2242");
navigation[460] = new navElem(460,"Jackenstoff fest&nbsp(3)","pi-1020508914.htm",438,"2131");
navigation[461] = new navElem(461,"Jacquard&nbsp(7)","pi-974293488.htm",438,"623");
navigation[462] = new navElem(462,"Jacquardstretch&nbsp(1)","pi1456480465.htm",438,"624");
navigation[463] = new navElem(463,"Jeans/Köper&nbsp(10)","pi-754959537.htm",438,"1083");
navigation[464] = new navElem(464,"Jersey gemustert alle&nbsp(35)","pi1031542631.htm",438,"627");
navigation[465] = new navElem(465,"Jersey/Strickjersey uni + meliert alle&nbsp(8)","pi829872585.htm",438,"3343");
navigation[466] = new navElem(466,"Jersey Strick&nbsp(4)","pi1478028422.htm",438,"2243");
navigation[467] = new navElem(467,"Jersey Tüll/Mesh&nbsp(3)","pi1048743804.htm",438,"2244");
navigation[468] = new navElem(468,"Lederimitat/Tierhaut-Print&nbsp(3)","pi24727624.htm",438,"1599");
navigation[469] = new navElem(469,"Leinen/-strick uni/meliert&nbsp(5)","pi-930241467.htm",438,"2245");
navigation[470] = new navElem(470,"Leinen/-strick, gemustert&nbsp(14)","pi-375486483.htm",438,"629");
navigation[471] = new navElem(471,"Leinenmischungen und -strick, + Tencel, uni und meliert&nbsp(9)","pi-865155632.htm",438,"2246");
navigation[472] = new navElem(472,"Leinenmischungen und -strick, farbig&nbsp(10)","pi-651057775.htm",438,"2247");
navigation[473] = new navElem(473,"Mesh/Tüll&nbsp(9)","pi-1953155702.htm",438,"1084");
navigation[474] = new navElem(474,"Metallstoffe&nbsp(5)","pi1836434403.htm",438,"631");
navigation[475] = new navElem(475,"Microfaser&nbsp(3)","pi360137520.htm",438,"2248");
navigation[476] = new navElem(476,"Paillettenstoff&nbsp(1)","pi-1851750852.htm",438,"2249");
navigation[477] = new navElem(477,"Panneaux f. Rock/Kleid&nbsp(1)","pi1103314396.htm",438,"669");
navigation[478] = new navElem(478,"Pfirsichhaut Kunstfasermischung&nbsp(3)","pi-1533917494.htm",438,"2250");
navigation[479] = new navElem(479,"Plissee/Crash/Cloqué/Krepp&nbsp(16)","pi-1902786698.htm",438,"2251");
navigation[480] = new navElem(480,"Polyester/Polyamid/-mischungen&nbsp(63)","pi1767812510.htm",438,"2133");
navigation[481] = new navElem(481,"Popeline&nbsp(5)","pi1949151092.htm",438,"635");
navigation[482] = new navElem(482,"Ramie&nbsp(1)","pi1212665379.htm",438,"2252");
navigation[483] = new navElem(483,"Rapportstoff&nbsp(4)","pi1817108630.htm",438,"2253");
navigation[484] = new navElem(484,"Satin&nbsp(13)","pi100378342.htm",438,"710");
navigation[485] = new navElem(485,"Seide/-mischungen&nbsp(15)","pi279580517.htm",438,"636");
navigation[486] = new navElem(486,"Smok&nbsp(1)","pi1475965634.htm",438,"637");
navigation[487] = new navElem(487,"Spitze&nbsp(1)","pi-93095909.htm",438,"638");
navigation[488] = new navElem(488,"Stickerei-Stoff&nbsp(11)","pi-1224412290.htm",438,"667");
navigation[489] = new navElem(489,"Stretch&nbsp(41)","pi-2081136960.htm",438,"639");
navigation[490] = new navElem(490,"Stretchbaumwolle/Stretchsatin&nbsp(21)","pi-1357568063.htm",438,"640");
navigation[491] = new navElem(491,"Stretchjeans/-köper&nbsp(6)","pi-1090129170.htm",438,"2254");
navigation[492] = new navElem(492,"Strickstoff/Boucle&nbsp(3)","pi749677871.htm",438,"683");
navigation[493] = new navElem(493,"Sweat&nbsp(3)","pi-1006296208.htm",438,"2255");
navigation[494] = new navElem(494,"Taft&nbsp(8)","pi191940747.htm",438,"1082");
navigation[495] = new navElem(495,"Tüll/Mesh&nbsp(7)","pi-772319721.htm",438,"2134");
navigation[496] = new navElem(496,"Tweed/Boucle&nbsp(3)","pi245518521.htm",438,"1081");
navigation[497] = new navElem(497,"Viskose/-mischungen&nbsp(20)","pi-553927834.htm",438,"695");
navigation[498] = new navElem(498,"Viskoseleinen&nbsp(4)","pi-846705665.htm",438,"684");
navigation[499] = new navElem(499,"Sortiert nach Farbe","pi-675609350.htm",437,"613");
navigation[500] = new navElem(500,"Uni Weiß/Cremetöne&nbsp(19)","pi-756463547.htm",499,"2155");
navigation[501] = new navElem(501,"Uni Beige/Taupe/Ecru/Sandtöne&nbsp(7)","pi988601339.htm",499,"2156");
navigation[502] = new navElem(502,"Uni Gold/Gelbtöne&nbsp(4)","pi-492786015.htm",499,"2157");
navigation[503] = new navElem(503,"Uni Orangetöne/Apricot/Terratöne&nbsp(1)","pi1986222158.htm",499,"2158");
navigation[504] = new navElem(504,"Uni Rot/Koralletöne&nbsp(2)","pi508336567.htm",499,"2159");
navigation[505] = new navElem(505,"Uni Rosa/Pudertöne/Pink&nbsp(9)","pi1079078700.htm",499,"2160");
navigation[506] = new navElem(506,"Uni Lila/Fuchsia/Cyclam/Brombeer&nbsp(6)","pi-555542214.htm",499,"2161");
navigation[507] = new navElem(507,"Uni Blautöne/Aquatöne&nbsp(13)","pi-485127373.htm",499,"2162");
navigation[508] = new navElem(508,"Uni Grüntöne/Khaki/Oliv/Kiwi&nbsp(6)","pi1402554872.htm",499,"2163");
navigation[509] = new navElem(509,"Uni Petrol/Türkistöne&nbsp(2)","pi716972262.htm",499,"2164");
navigation[510] = new navElem(510,"Uni Brauntöne&nbsp(9)","pi-1004508049.htm",499,"2165");
navigation[511] = new navElem(511,"Uni Grautöne&nbsp(12)","pi-874591868.htm",499,"2166");
navigation[512] = new navElem(512,"Uni Schwarz&nbsp(11)","pi-868875211.htm",499,"2167");
navigation[513] = new navElem(513,"Bunt&nbsp(33)","pi1992083873.htm",499,"655");
navigation[514] = new navElem(514,"Weiß/Wollweiß/Champagner/Eierschale&nbsp(69)","pi2140542798.htm",499,"656");
navigation[515] = new navElem(515,"Beige/Natur/Camel/Sand/Schlamm&nbsp(20)","pi332541111.htm",499,"657");
navigation[516] = new navElem(516,"Gold/Gelb/Ocker/Vanille&nbsp(19)","pi719210028.htm",499,"658");
navigation[517] = new navElem(517,"Orange/Rot/Weinrot&nbsp(21)","pi-350364227.htm",499,"659");
navigation[518] = new navElem(518,"Rosatöne/Pink/Rosé&nbsp(13)","pi-1481127878.htm",499,"660");
navigation[519] = new navElem(519,"Lilatöne/Brombeer/Aubergine&nbsp(19)","pi95571507.htm",499,"661");
navigation[520] = new navElem(520,"Blautöne&nbsp(26)","pi5869816.htm",499,"662");
navigation[521] = new navElem(521,"Grüntöne/Khaki/Oliv&nbsp(36)","pi280084454.htm",499,"663");
navigation[522] = new navElem(522,"Petrol/Türkis/Aqua/Mint&nbsp(12)","pi-1658364049.htm",499,"664");
navigation[523] = new navElem(523,"Brauntöne/Terra/Rost/Kupfer/Fango&nbsp(45)","pi-261521276.htm",499,"665");
navigation[524] = new navElem(524,"Grautöne/Silber/Kitt&nbsp(29)","pi1611393618.htm",499,"666");
navigation[525] = new navElem(525,"Schwarz&nbsp(42)","pi678623948.htm",499,"643");
navigation[526] = new navElem(526,"gold/silber/kupfer schimmernd&nbsp(8)","pi1695457668.htm",499,"715");
navigation[527] = new navElem(527,"Stoff ist geeignet für:","pi-824673293.htm",437,"614");
navigation[528] = new navElem(528,"Outdoorjacken/Mäntel&nbsp(10)","pi545873373.htm",527,"644");
navigation[529] = new navElem(529,"Blazer/Jacken&nbsp(81)","pi1705397075.htm",527,"645");
navigation[530] = new navElem(530,"Blusen/Oberteile/Hemden&nbsp(80)","pi602245037.htm",527,"670");
navigation[531] = new navElem(531,"Shirt/Bolero/Wickeljacke/shrug&nbsp(48)","pi-1358819911.htm",527,"647");
navigation[532] = new navElem(532,"Strickjacken/Pullis/Westen&nbsp(7)","pi1994205422.htm",527,"682");
navigation[533] = new navElem(533,"Hosen&nbsp(42)","pi-652317041.htm",527,"648");
navigation[534] = new navElem(534,"Röcke/Kleider&nbsp(131)","pi-1146630248.htm",527,"646");
navigation[535] = new navElem(535,"Jerseykleider und -röcke&nbsp(35)","pi1642529986.htm",527,"2285");
navigation[536] = new navElem(536,"Stola/Überwurf&nbsp(2)","pi90494652.htm",527,"2135");
navigation[537] = new navElem(537,"Reduzierte Winter-Stoffe","pi-279963587.htm",null,"192");
navigation[538] = new navElem(538,"Sortiert nach Qualität","pi1184575878.htm",537,"502");
navigation[539] = new navElem(539,"Angora-Jersey&nbsp(1)","pi1174904646.htm",538,"2287");
navigation[540] = new navElem(540,"Ausbrenner&nbsp(4)","pi1852204209.htm",538,"508");
navigation[541] = new navElem(541,"Baumwolle/Batist&nbsp(2)","pi-1867395411.htm",538,"1011");
navigation[542] = new navElem(542,"Baumwoll-Jersey&nbsp(1)","pi703136545.htm",538,"1823");
navigation[543] = new navElem(543,"Baumwollmischung&nbsp(19)","pi1424981575.htm",538,"510");
navigation[544] = new navElem(544,"Beschichteter/Beflockter Stoff&nbsp(9)","pi-5911706.htm",538,"1824");
navigation[545] = new navElem(545,"Bestickter Stoff/Stickerei-Stoff&nbsp(18)","pi-180533276.htm",538,"680");
navigation[546] = new navElem(546,"Bordürenstoffe&nbsp(4)","pi-1823383545.htm",538,"566");
navigation[547] = new navElem(547,"Boucle/Strickstoff&nbsp(50)","pi-2008220548.htm",538,"511");
navigation[548] = new navElem(548,"Bouclé/Tweed&nbsp(6)","pi1768204042.htm",538,"512");
navigation[549] = new navElem(549,"Chiffon&nbsp(5)","pi-260934041.htm",538,"2136");
navigation[550] = new navElem(550,"Cord&nbsp(2)","pi-159200184.htm",538,"513");
navigation[551] = new navElem(551,"Cord mit Fell&nbsp(1)","pi1559795199.htm",538,"1013");
navigation[552] = new navElem(552,"Crash/Cloqué/Crinkle/Plissee&nbsp(13)","pi-1978899558.htm",538,"548");
navigation[553] = new navElem(553,"Crepe&nbsp(1)","pi-1676112560.htm",538,"2288");
navigation[554] = new navElem(554,"Cupro&nbsp(3)","pi1906677671.htm",538,"2289");
navigation[555] = new navElem(555,"Doppelgewebe&nbsp(16)","pi-385944372.htm",538,"1434");
navigation[556] = new navElem(556,"Doubleface&nbsp(13)","pi1932883924.htm",538,"1014");
navigation[557] = new navElem(557,"Fellimitat/Zottel&nbsp(5)","pi928814971.htm",538,"1016");
navigation[558] = new navElem(558,"Fotodruck/Digitaldruck/Inkjet-Stoffe&nbsp(5)","pi-1236408291.htm",538,"2290");
navigation[559] = new navElem(559,"Gabardine/feine Hosenstoffe&nbsp(6)","pi2064353382.htm",538,"1428");
navigation[560] = new navElem(560,"Glencheck&nbsp(2)","pi-605181694.htm",538,"567");
navigation[561] = new navElem(561,"Jackenstoff fest, Kunstfaser&nbsp(3)","pi766604396.htm",538,"1825");
navigation[562] = new navElem(562,"Jacquard/Jacquardoptik&nbsp(11)","pi-2105108311.htm",538,"514");
navigation[563] = new navElem(563,"Jeans/Köper&nbsp(4)","pi387116357.htm",538,"516");
navigation[564] = new navElem(564,"Jersey/Strickjersey gemustert alle&nbsp(47)","pi-943738078.htm",538,"517");
navigation[565] = new navElem(565,"Jersey/Strickjersey uni/Melange&nbsp(25)","pi1401797165.htm",538,"1432");
navigation[566] = new navElem(566,"Köper/Jeans&nbsp(3)","pi817399001.htm",538,"576");
navigation[567] = new navElem(567,"Kurzhaar-Zottel&nbsp(3)","pi1040983156.htm",538,"1826");
navigation[568] = new navElem(568,"Lederimitat/Kunstleder&nbsp(5)","pi-285344083.htm",538,"2138");
navigation[569] = new navElem(569,"Mesh/Tüll&nbsp(6)","pi-1118320273.htm",538,"2291");
navigation[570] = new navElem(570,"Metallstoff&nbsp(1)","pi-1858757478.htm",538,"563");
navigation[571] = new navElem(571,"Nicki&nbsp(1)","pi2001478592.htm",538,"1827");
navigation[572] = new navElem(572,"Paillettenstoff&nbsp(5)","pi-1080972505.htm",538,"2292");
navigation[573] = new navElem(573,"Pizzatechnik, aufgefilzte Fäden&nbsp(8)","pi1290715351.htm",538,"1828");
navigation[574] = new navElem(574,"Plissee/Crash/Cloqué/Krepp&nbsp(5)","pi474047571.htm",538,"1829");
navigation[575] = new navElem(575,"Plüsch/Microplüsch&nbsp(3)","pi992879631.htm",538,"558");
navigation[576] = new navElem(576,"Polyester/Polyamid&nbsp(7)","pi1465203441.htm",538,"552");
navigation[577] = new navElem(577,"Popeline&nbsp(2)","pi-1797071239.htm",538,"550");
navigation[578] = new navElem(578,"Satin&nbsp(3)","pi-1293255420.htm",538,"1429");
navigation[579] = new navElem(579,"Seide/-mischung&nbsp(5)","pi-304816559.htm",538,"562");
navigation[580] = new navElem(580,"Slinky-Jersey&nbsp(4)","pi-1610998279.htm",538,"2284");
navigation[581] = new navElem(581,"Smok/Crash/Plisseé&nbsp(1)","pi355536043.htm",538,"569");
navigation[582] = new navElem(582,"Stepper&nbsp(11)","pi-267989009.htm",538,"1017");
navigation[583] = new navElem(583,"Stickerei-Stoff/Bestickter Stoff&nbsp(17)","pi-1352893675.htm",538,"681");
navigation[584] = new navElem(584,"Stretch&nbsp(19)","pi-974454898.htm",538,"545");
navigation[585] = new navElem(585,"Stretchbaumwolle&nbsp(5)","pi1745769145.htm",538,"1012");
navigation[586] = new navElem(586,"Stretchvelvet&nbsp(1)","pi1598747605.htm",538,"1422");
navigation[587] = new navElem(587,"Strickstoff/Boucle&nbsp(50)","pi1384965173.htm",538,"547");
navigation[588] = new navElem(588,"Taft/taftartig&nbsp(4)","pi-709023356.htm",538,"546");
navigation[589] = new navElem(589,"Technostoff/Softshell&nbsp(3)","pi-1534391873.htm",538,"2140");
navigation[590] = new navElem(590,"Tweed/Bouclé&nbsp(6)","pi-165476101.htm",538,"518");
navigation[591] = new navElem(591,"Velvet/Stretchvelvet/Baumwollsamt&nbsp(1)","pi-1552008590.htm",538,"1423");
navigation[592] = new navElem(592,"Viskose/-mischung&nbsp(21)","pi-1486831249.htm",538,"1435");
navigation[593] = new navElem(593,"Walk/Lana Cotta/walkartige Stoffe&nbsp(36)","pi1186125728.htm",538,"543");
navigation[594] = new navElem(594,"Wolle/Wollmischung&nbsp(59)","pi-1935598760.htm",538,"549");
navigation[595] = new navElem(595,"Zottel lang+kurz&nbsp(4)","pi1133194395.htm",538,"1832");
navigation[596] = new navElem(596,"Sortiert nach Farbe","pi457578639.htm",537,"503");
navigation[597] = new navElem(597,"Uni Weiß/Cremetöne&nbsp(1)","pi1187252332.htm",596,"2142");
navigation[598] = new navElem(598,"Uni Beige/Taupe/Ecru/Sandtöne&nbsp(6)","pi-1944824710.htm",596,"2143");
navigation[599] = new navElem(599,"Uni Orange/Apricot/Terratöne&nbsp(2)","pi-1784363815.htm",596,"2145");
navigation[600] = new navElem(600,"Uni Rot/Koralletöne&nbsp(3)","pi269586470.htm",596,"2146");
navigation[601] = new navElem(601,"Uni Rosa/Pudertöne/Pink&nbsp(1)","pi1900464836.htm",596,"2147");
navigation[602] = new navElem(602,"Uni Lila/Fuchsia/Cyclam/Brombeertöne&nbsp(12)","pi1827744683.htm",596,"2148");
navigation[603] = new navElem(603,"Uni Blau/Aquatöne&nbsp(6)","pi-1486860528.htm",596,"2149");
navigation[604] = new navElem(604,"Uni Grüntöne/Khaki/Oliv/Kiwi&nbsp(3)","pi1727415761.htm",596,"2150");
navigation[605] = new navElem(605,"Uni Petrol/Türkistöne&nbsp(5)","pi2068057022.htm",596,"2151");
navigation[606] = new navElem(606,"Uni Brauntöne&nbsp(8)","pi-2029861785.htm",596,"2152");
navigation[607] = new navElem(607,"Uni Grautöne&nbsp(15)","pi1134459531.htm",596,"2154");
navigation[608] = new navElem(608,"Uni Schwarz&nbsp(24)","pi-1533477651.htm",596,"2153");
navigation[609] = new navElem(609,"Bunt&nbsp(13)","pi-1261001823.htm",596,"519");
navigation[610] = new navElem(610,"Weiß/Wollweiß/Champagner/Eierschale&nbsp(31)","pi603810126.htm",596,"520");
navigation[611] = new navElem(611,"Beige/Natur/Camel/Sand/Schlamm&nbsp(33)","pi1302828727.htm",596,"521");
navigation[612] = new navElem(612,"Gold/Gelb/Ocker/Vanille&nbsp(7)","pi-1835145172.htm",596,"522");
navigation[613] = new navElem(613,"Orange/Rot/Weinrot&nbsp(24)","pi-749119555.htm",596,"523");
navigation[614] = new navElem(614,"Rosatöne/Pink/Rosé&nbsp(10)","pi1774729786.htm",596,"524");
navigation[615] = new navElem(615,"Lilatöne/Brombeer/Aubergine/Fuchsia&nbsp(29)","pi1761761331.htm",596,"525");
navigation[616] = new navElem(616,"Blautöne&nbsp(22)","pi-563653896.htm",596,"526");
navigation[617] = new navElem(617,"Grüntöne/Khaki/Oliv&nbsp(17)","pi1178423782.htm",596,"527");
navigation[618] = new navElem(618,"Petrol/Türkis/Aqua/Mint&nbsp(10)","pi-337901201.htm",596,"528");
navigation[619] = new navElem(619,"Brauntöne/Rost/Terra/Kupfer&nbsp(54)","pi-1763220860.htm",596,"529");
navigation[620] = new navElem(620,"Grautöne/Silber/Kitt&nbsp(54)","pi1982785845.htm",596,"530");
navigation[621] = new navElem(621,"Schwarz&nbsp(76)","pi-268133294.htm",596,"531");
navigation[622] = new navElem(622,"gold/silber/kupfer schimmernd&nbsp(2)","pi-1687070814.htm",596,"1424");
navigation[623] = new navElem(623,"Stoff ist geeignet für:","pi2141197680.htm",537,"507");
navigation[624] = new navElem(624,"Outdoorjacken/Mäntel/Outdoorweste&nbsp(35)","pi1338058347.htm",623,"532");
navigation[625] = new navElem(625,"Blazer/Jacken&nbsp(75)","pi1362617040.htm",623,"533");
navigation[626] = new navElem(626,"Weste &nbsp(8)","pi831343678.htm",623,"1833");
navigation[627] = new navElem(627,"Blusen/Tuniken/Oberteile&nbsp(24)","pi546946705.htm",623,"534");
navigation[628] = new navElem(628,"Shirt/Jerseybluse/Rolli/Bolero/Wickeljacke&nbsp(71)","pi1742596903.htm",623,"535");
navigation[629] = new navElem(629,"Strickjacken/Pullis&nbsp(54)","pi-368615460.htm",623,"536");
navigation[630] = new navElem(630,"Hosen&nbsp(17)","pi1852539309.htm",623,"537");
navigation[631] = new navElem(631,"Röcke/Kleider&nbsp(58)","pi-911787670.htm",623,"538");
navigation[632] = new navElem(632,"Jersey-/Strick-Kleider und -röcke&nbsp(28)","pi473938395.htm",623,"2262");
navigation[633] = new navElem(633,"Kragen/Verzierungen/Schals&nbsp(9)","pi2021282723.htm",623,"539");
navigation[634] = new navElem(634,"Futter&nbsp(3)","pi772106516.htm",623,"2141");
navigation[635] = new navElem(635,"Reststücke/Ballenreste sortiert","pi1930649792.htm",null,"948");
navigation[636] = new navElem(636,"Sortiert nach Qualität","pi324305345.htm",635,"949");
navigation[637] = new navElem(637,"Ausbrenner&nbsp(1)","pi1459713452.htm",636,"989");
navigation[638] = new navElem(638,"Baumwolle/Batist&nbsp(7)","pi-2008918051.htm",636,"951");
navigation[639] = new navElem(639,"Baumwollmischung&nbsp(21)","pi-175053647.htm",636,"961");
navigation[640] = new navElem(640,"Beschichteter Stoff&nbsp(4)","pi-553773580.htm",636,"1933");
navigation[641] = new navElem(641,"Bestickter Stoff&nbsp(2)","pi-1879573609.htm",636,"977");
navigation[642] = new navElem(642,"Bio-Leinen&nbsp(5)","pi-187039782.htm",636,"952");
navigation[643] = new navElem(643,"Bordürenstoff&nbsp(2)","pi-355029084.htm",636,"1819");
navigation[644] = new navElem(644,"Boucle/Strickstoff&nbsp(10)","pi1216590214.htm",636,"955");
navigation[645] = new navElem(645,"Bouclé/Tweed&nbsp(1)","pi1716491965.htm",636,"999");
navigation[646] = new navElem(646,"Chiffon/Polyesterdrucke&nbsp(2)","pi-576673308.htm",636,"986");
navigation[647] = new navElem(647,"Cord&nbsp(1)","pi-577826086.htm",636,"992");
navigation[648] = new navElem(648,"Crash/Crinkle&nbsp(9)","pi1686410608.htm",636,"960");
navigation[649] = new navElem(649,"Cupro&nbsp(1)","pi-2147276207.htm",636,"2213");
navigation[650] = new navElem(650,"Gabardine&nbsp(2)","pi1364703743.htm",636,"996");
navigation[651] = new navElem(651,"Jackenstoff fest Kunstfaser&nbsp(2)","pi921681446.htm",636,"1482");
navigation[652] = new navElem(652,"Jacquard&nbsp(1)","pi-183900277.htm",636,"959");
navigation[653] = new navElem(653,"Jeans/Köper&nbsp(7)","pi-1388801159.htm",636,"983");
navigation[654] = new navElem(654,"Jersey/Strickjersey uni und meliert&nbsp(4)","pi-818988770.htm",636,"962");
navigation[655] = new navElem(655,"Jersey/Mesh-/Strickjersey gemustert&nbsp(11)","pi679050364.htm",636,"963");
navigation[656] = new navElem(656,"Köper/Jeans&nbsp(7)","pi499893336.htm",636,"982");
navigation[657] = new navElem(657,"Lederimitat&nbsp(1)","pi1796861843.htm",636,"1671");
navigation[658] = new navElem(658,"Leinen/-mischungen&nbsp(16)","pi447731027.htm",636,"953");
navigation[659] = new navElem(659,"Leinen-Tencel-Mischung&nbsp(1)","pi2006618336.htm",636,"987");
navigation[660] = new navElem(660,"Mesh/Tüll&nbsp(3)","pi752790089.htm",636,"1273");
navigation[661] = new navElem(661,"Metall-Stoffe&nbsp(1)","pi1567214355.htm",636,"981");
navigation[662] = new navElem(662,"Polyester/Polyamid/Polyethylen/-mischungen&nbsp(5)","pi1254381826.htm",636,"1078");
navigation[663] = new navElem(663,"Popeline&nbsp(1)","pi931111571.htm",636,"1183");
navigation[664] = new navElem(664,"Ramie&nbsp(1)","pi-1285694745.htm",636,"1043");
navigation[665] = new navElem(665,"Satin&nbsp(8)","pi735713001.htm",636,"1029");
navigation[666] = new navElem(666,"Seide&nbsp(4)","pi1064241367.htm",636,"990");
navigation[667] = new navElem(667,"Seidenmischungen","pi724940748.htm",636,"991");
navigation[668] = new navElem(668,"Stretch&nbsp(16)","pi-2001690042.htm",636,"984");
navigation[669] = new navElem(669,"Stretchbaumwolle&nbsp(2)","pi-241005227.htm",636,"957");
navigation[670] = new navElem(670,"Stretchleinen&nbsp(1)","pi-1723532682.htm",636,"1604");
navigation[671] = new navElem(671,"Stretchsatin&nbsp(8)","pi1817668175.htm",636,"985");
navigation[672] = new navElem(672,"Strickstoff/Boucle&nbsp(9)","pi-1605299816.htm",636,"954");
navigation[673] = new navElem(673,"Strick fein&nbsp(4)","pi1740515197.htm",636,"988");
navigation[674] = new navElem(674,"Stickerei-Stoff&nbsp(2)","pi1298195340.htm",636,"978");
navigation[675] = new navElem(675,"Taft/taftartige Stoffe&nbsp(2)","pi-921673639.htm",636,"1005");
navigation[676] = new navElem(676,"Tüll/Mesh&nbsp(3)","pi-715029290.htm",636,"1274");
navigation[677] = new navElem(677,"Tweed/Bouclé&nbsp(1)","pi1001082170.htm",636,"1000");
navigation[678] = new navElem(678,"Velvet&nbsp(1)","pi665904550.htm",636,"1006");
navigation[679] = new navElem(679,"Viskose/-mischungen&nbsp(5)","pi1369777306.htm",636,"980");
navigation[680] = new navElem(680,"Walk und walkartige Stoffe&nbsp(11)","pi285126451.htm",636,"1001");
navigation[681] = new navElem(681,"Wolle/-mischungen&nbsp(18)","pi886625977.htm",636,"995");
navigation[682] = new navElem(682,"Sortiert nach Farbe","pi-1112656658.htm",635,"950");
navigation[683] = new navElem(683,"Bunt&nbsp(9)","pi1411684495.htm",682,"956");
navigation[684] = new navElem(684,"Weiß/Wollweiß/Champagner/Eierschale&nbsp(31)","pi1583012035.htm",682,"965");
navigation[685] = new navElem(685,"Beige/Natur/Camel/Sand/Schlamm&nbsp(22)","pi-1628915142.htm",682,"976");
navigation[686] = new navElem(686,"Gold/Gelb/Ocker/Vanille&nbsp(6)","pi-696824760.htm",682,"966");
navigation[687] = new navElem(687,"Orange/Rot/Weinrot/Lachs/Koralle&nbsp(10)","pi-164476467.htm",682,"964");
navigation[688] = new navElem(688,"Rosatöne/Pink/Rosé&nbsp(10)","pi521743286.htm",682,"967");
navigation[689] = new navElem(689,"Lilatöne/Brombeer/Aubergine&nbsp(15)","pi-198036737.htm",682,"968");
navigation[690] = new navElem(690,"Blautöne&nbsp(6)","pi191107284.htm",682,"969");
navigation[691] = new navElem(691,"Grüntöne/Khaki/Oliv/Kiwi&nbsp(8)","pi-122327739.htm",682,"970");
navigation[692] = new navElem(692,"Petrol/Türkis/Aqua/Mint&nbsp(1)","pi1884304162.htm",682,"971");
navigation[693] = new navElem(693,"Brauntöne/Rost/Terra/Kupfer/Fango&nbsp(19)","pi-486631904.htm",682,"972");
navigation[694] = new navElem(694,"Grautöne/Silber/Kitt&nbsp(23)","pi-1985928287.htm",682,"973");
navigation[695] = new navElem(695,"Schwarz&nbsp(24)","pi2056644942.htm",682,"974");
navigation[696] = new navElem(696,"gold/silber/kupfer schimmernd&nbsp(1)","pi-1988749641.htm",682,"975");
navigation[697] = new navElem(697,"Alle Schnittmuster Pattern Company","pi986578798.htm",null,"241");
navigation[698] = new navElem(698,"Schnitte Sommer 2012","pi1500477721.htm",697,"1231");
navigation[699] = new navElem(699,"Jacken&nbsp(2)","pi-999601937.htm",698,"1233");
navigation[700] = new navElem(700,"Hosen&nbsp(1)","pi-606194507.htm",698,"1235");
navigation[701] = new navElem(701,"Rock/Kleider&nbsp(4)","pi-1381375534.htm",698,"1236");
navigation[702] = new navElem(702,"Blusen/Tuniken&nbsp(2)","pi37707243.htm",698,"1237");
navigation[703] = new navElem(703,"Tops/Shirts&nbsp(4)","pi2000987216.htm",698,"1238");
navigation[704] = new navElem(704,"Schnitte Winter 2011","pi543042788.htm",697,"2088");
navigation[705] = new navElem(705,"Walkschnittmuster&nbsp(8)","pi-796911754.htm",704,"2098");
navigation[706] = new navElem(706,"Outdoorjacken/Mäntel&nbsp(11)","pi907406770.htm",704,"2089");
navigation[707] = new navElem(707,"Jacken&nbsp(10)","pi-1477921717.htm",704,"2090");
navigation[708] = new navElem(708,"Tunika/Weste&nbsp(2)","pi74509534.htm",704,"2092");
navigation[709] = new navElem(709,"Shirts/Top&nbsp(7)","pi357498243.htm",704,"2095");
navigation[710] = new navElem(710,"Strickjacke/Pulli/Oberteile&nbsp(5)","pi-932822520.htm",704,"2096");
navigation[711] = new navElem(711,"Hosen&nbsp(1)","pi1242011338.htm",704,"2094");
navigation[712] = new navElem(712,"Rock/Kleid&nbsp(2)","pi-1767287236.htm",704,"2093");
navigation[713] = new navElem(713,"Cacheur/Überwurf&nbsp(2)","pi1934412649.htm",704,"2097");
navigation[714] = new navElem(714,"Alle Pattern Company Mehrgrößenschnitte Gr. 34/36-44/46/48, KH 168 cm","pi1399643036.htm",697,"200");
navigation[715] = new navElem(715,"Mäntel/Outdoorjacken/-weste&nbsp(59)","pi1383121517.htm",714,"283");
navigation[716] = new navElem(716,"Jacken/Blazer/Strickjacken&nbsp(87)","pi113253162.htm",714,"281");
navigation[717] = new navElem(717,"Hosen/Leggin&nbsp(39)","pi974895323.htm",714,"583");
navigation[718] = new navElem(718,"Röcke&nbsp(38)","pi1085047395.htm",714,"278");
navigation[719] = new navElem(719,"Kleider&nbsp(62)","pi1161289064.htm",714,"279");
navigation[720] = new navElem(720,"Blusen/Tuniken&nbsp(72)","pi-323423244.htm",714,"224");
navigation[721] = new navElem(721,"Tops/Shirts/Jerseytunika/Ärmelschal (shrug)&nbsp(92)","pi-1380099255.htm",714,"210");
navigation[722] = new navElem(722,"Oberteile/Pulli/Rolli/Twinset/Pullunder&nbsp(50)","pi77549078.htm",714,"832");
navigation[723] = new navElem(723,"Cape/Stola/Weste/Corsage/Cacheur/Sonstiges&nbsp(20)","pi-1667320161.htm",714,"223");
navigation[724] = new navElem(724,"Schnittkombinationen&nbsp(6)","pi-436057620.htm",714,"1932");
navigation[725] = new navElem(725,"WALK-Modelle&nbsp(48)","pi-1568975718.htm",714,"803");
navigation[726] = new navElem(726,"Modelle für Leder/-imitate&nbsp(2)","pi-1060908213.htm",714,"1657");
navigation[727] = new navElem(727,"Modelle für Steppstoffe&nbsp(5)","pi1356052081.htm",714,"1658");
navigation[728] = new navElem(728,"Modelle für Strickjersey/feinen Strick&nbsp(35)","pi415761429.htm",714,"1260");
navigation[729] = new navElem(729,"Modelle für festeren Jersey/ähnlich Romanitjersey&nbsp(2)","pi-1842096892.htm",714,"2224");
navigation[730] = new navElem(730,"Modelle für dickeren Strickstoff/Boucle&nbsp(18)","pi1796445618.htm",714,"1261");
navigation[731] = new navElem(731,"Modelle für Viskosejersey&nbsp(43)","pi2124227015.htm",714,"1178");
navigation[732] = new navElem(732,"Modelle für beflockten Jersey&nbsp(3)","pi-2110933897.htm",714,"2110");
navigation[733] = new navElem(733,"Modelle für Leinen und/oder Ramie&nbsp(55)","pi-1305807057.htm",714,"1058");
navigation[734] = new navElem(734,"Sondermodelle&nbsp(37)","pi562090614.htm",714,"1497");
navigation[735] = new navElem(735,"Mutter-Tochter-Modelle&nbsp(4)","pi-581048133.htm",714,"833");
navigation[736] = new navElem(736,"Schnittkombinationen + Sondermodelle","pi-204975511.htm",697,"1496");
navigation[737] = new navElem(737,"Schnittkombinationen&nbsp(6)","pi-1228872259.htm",736,"1656");
navigation[738] = new navElem(738,"Sondermodelle Sommer 09+10&nbsp(23)","pi2065362805.htm",736,"1652");
navigation[739] = new navElem(739,"Sondermodelle Winter 09&nbsp(20)","pi723465618.htm",736,"1653");
navigation[740] = new navElem(740,"Schnitte sortiert für Leder/-imitate","pi173777142.htm",697,"1651");
navigation[741] = new navElem(741,"Jacke&nbsp(1)","pi-122143712.htm",740,"1655");
navigation[742] = new navElem(742,"Hose&nbsp(1)","pi-114104030.htm",740,"1654");
navigation[743] = new navElem(743,"Schnitte sortiert für Steppstoffe","pi1519186179.htm",697,"1648");
navigation[744] = new navElem(744,"Jacken&nbsp(2)","pi-49344632.htm",743,"1649");
navigation[745] = new navElem(745,"Schlupfblouson&nbsp(1)","pi-1081697777.htm",743,"1659");
navigation[746] = new navElem(746,"Westen&nbsp(2)","pi1033497321.htm",743,"1650");
navigation[747] = new navElem(747,"Schnitte sortiert für Walk","pi1641580262.htm",697,"1059");
navigation[748] = new navElem(748,"Materialfavorit Sommerwalk mit Fransenkante&nbsp(5)","pi-361491783.htm",747,"1251");
navigation[749] = new navElem(749,"Materialfavorit Leichtwalker ohne Fransenkante&nbsp(33)","pi1381235599.htm",747,"1253");
navigation[750] = new navElem(750,"Materialfavorit verpresste Wolle, ganz leichter Walk&nbsp(11)","pi859174130.htm",747,"1255");
navigation[751] = new navElem(751,"Materialfavorit mittelschwerer + schwerer Walk&nbsp(4)","pi1166389796.htm",747,"1254");
navigation[752] = new navElem(752,"Mäntel/Outdoorjacken&nbsp(28)","pi1156935411.htm",747,"1067");
navigation[753] = new navElem(753,"Jacken/Blazer&nbsp(27)","pi-560803144.htm",747,"1068");
navigation[754] = new navElem(754,"Kleid/Rock&nbsp(4)","pi589027238.htm",747,"1069");
navigation[755] = new navElem(755,"Shirt/Pulli/Weste&nbsp(9)","pi1529089071.htm",747,"1070");
navigation[756] = new navElem(756,"Schnitte sortiert für Strickjersey/Ausbrennerjersey/feinen Strick","pi1153062214.htm",697,"1258");
navigation[757] = new navElem(757,"Strick- oder Jerseyjacken&nbsp(10)","pi-1735217793.htm",756,"1262");
navigation[758] = new navElem(758,"Hosen&nbsp(1)","pi-1100441260.htm",756,"1263");
navigation[759] = new navElem(759,"Tops/Shirts Kurzarm&nbsp(12)","pi-1099305054.htm",756,"1265");
navigation[760] = new navElem(760,"Shirts Langarm&nbsp(9)","pi1195027323.htm",756,"1266");
navigation[761] = new navElem(761,"Kleid&nbsp(1)","pi589589445.htm",756,"1264");
navigation[762] = new navElem(762,"Pulli/Rolli/Overshirt&nbsp(11)","pi-215964000.htm",756,"1267");
navigation[763] = new navElem(763,"Überwurf/Weste/Ärmelschal/Stola&nbsp(3)","pi-1703867871.htm",756,"1268");
navigation[764] = new navElem(764,"Schnitte sortiert für festeren Jersey/ähnlich Romanitjersey","pi-1427557843.htm",697,"2225");
navigation[765] = new navElem(765,"Jacke&nbsp(1)","pi-128827414.htm",764,"2226");
navigation[766] = new navElem(766,"Hose&nbsp(1)","pi1952544803.htm",764,"2227");
navigation[767] = new navElem(767,"Schnitte sortiert für dickeren Strickstoff/Boucle","pi-253894321.htm",697,"1259");
navigation[768] = new navElem(768,"Jacken&nbsp(5)","pi-824744408.htm",767,"1269");
navigation[769] = new navElem(769,"Pullis&nbsp(14)","pi-1549474551.htm",767,"1270");
navigation[770] = new navElem(770,"Sonstige Oberteile&nbsp(2)","pi-1090365290.htm",767,"1271");
navigation[771] = new navElem(771,"Schnitte sortiert für Viskose-Jersey","pi690367434.htm",697,"804");
navigation[772] = new navElem(772,"Leggin&nbsp(1)","pi-1906705290.htm",771,"807");
navigation[773] = new navElem(773,"Röcke/Kleider/Tunika&nbsp(8)","pi774071487.htm",771,"808");
navigation[774] = new navElem(774,"Shirts Langarm&nbsp(21)","pi-1652797548.htm",771,"809");
navigation[775] = new navElem(775,"Tops/Shirts Kurzam&nbsp(16)","pi1599665413.htm",771,"810");
navigation[776] = new navElem(776,"Jäckchen/Pulli/Rolli&nbsp(5)","pi216973224.htm",771,"831");
navigation[777] = new navElem(777,"Schnitte sortiert für beflockten Jersey","pi1221307261.htm",697,"2012");
navigation[778] = new navElem(778,"Longshirt&nbsp(1)","pi-165711110.htm",777,"2112");
navigation[779] = new navElem(779,"Wickel-Oberteile/Shirts&nbsp(1)","pi-514600461.htm",777,"2113");
navigation[780] = new navElem(780,"Schnitte sortiert für Leinen und/oder Leichtleinen und/oder Ramie","pi2009225839.htm",697,"1060");
navigation[781] = new navElem(781,"Mäntel/Outdoorjacken/Westen&nbsp(5)","pi-876939383.htm",780,"1061");
navigation[782] = new navElem(782,"Jacken/Blazer&nbsp(9)","pi-1081960170.htm",780,"1062");
navigation[783] = new navElem(783,"Hosen&nbsp(10)","pi1459530975.htm",780,"1063");
navigation[784] = new navElem(784,"Röcke&nbsp(7)","pi919911732.htm",780,"1064");
navigation[785] = new navElem(785,"Kleider&nbsp(13)","pi241302053.htm",780,"1065");
navigation[786] = new navElem(786,"Blusen/Tuniken/Tops&nbsp(14)","pi506869378.htm",780,"1066");
navigation[787] = new navElem(787,"Pattern Company Mehrgrößenschnitte in Kurzgrößen 17-23&nbsp(14)","pi-301519273.htm",697,"251");
navigation[788] = new navElem(788,"Pattern Company Mehrgrößenschnitte in Langgrößen 68/72-92&nbsp(6)","pi1839550284.htm",697,"252");
navigation[789] = new navElem(789,"Pattern Company Mehrgrößenschnitte in Komfortgrößen Gr. 46-54/56, KH 168 cm&nbsp(16)","pi222463643.htm",697,"250");

// 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"));


