//
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,"bereits lieferbare Stoffe Pattern Company Sommer 2010&nbsp(52)","pi-1798151124.htm",2,"1408");
navigation[4] = new navElem(4,"Stoffe Pattern Company Winter 2009&nbsp(32)","pi1245136246.htm",2,"1189");
navigation[5] = new navElem(5,"Stoffe Pattern Company Sommer 2009&nbsp(30)","pi1134508479.htm",2,"1190");
navigation[6] = new navElem(6,"Stoffe Pattern Company Winter 2008&nbsp(28)","pi-442580844.htm",2,"1191");
navigation[7] = new navElem(7,"Stoffe Pattern Company Sommer 2008&nbsp(20)","pi1055707653.htm",2,"1192");
navigation[8] = new navElem(8,"Stoffe Pattern Company Sommer + Winter 2006/07&nbsp(19)","pi-57579294.htm",2,"1193");
navigation[9] = new navElem(9,"Sabrina Woman","pi-368266886.htm",1,"1195");
navigation[10] = new navElem(10,"Modellübersicht Sabrina Woman F/S 2010 (S1593)&nbsp(39)","pi1083027117.htm",9,"1467");
navigation[11] = new navElem(11,"bereits lieferbare Originalstoffe Sabrina Woman F/S 2010&nbsp(29)","pi1576739773.htm",9,"1409");
navigation[12] = new navElem(12,"Modellübersicht Sabrina Woman H/W 09 (S1536)&nbsp(41)","pi1142194192.htm",9,"1175");
navigation[13] = new navElem(13,"Originalstoffe Sabrina Woman H/W 09 (S1536)&nbsp(20)","pi380166865.htm",9,"1176");
navigation[14] = new navElem(14,"Modellübersicht Sabrina Woman F/S 09 (S1464)&nbsp(42)","pi67445513.htm",9,"1023");
navigation[15] = new navElem(15,"Originalstoffe Sabrina Woman F/S 09 (S1464)&nbsp(16)","pi-1877823311.htm",9,"1025");
navigation[16] = new navElem(16,"Originalstoffe Sabrina Woman F/S 08 + H/W 08 (S1329 + S1401)&nbsp(26)","pi1650773933.htm",9,"921");
navigation[17] = new navElem(17,"Originalstoffe Sabrina Woman F/S 07 + H/W 07 (S1183 + S1273)&nbsp(10)","pi1923280503.htm",9,"922");
navigation[18] = new navElem(18,"Knipmode deutsch special","pi460692536.htm",1,"1197");
navigation[19] = new navElem(19,"Modellübersicht Knipmode Special F/S 10 &nbsp(17)","pi-2047432306.htm",18,"1488");
navigation[20] = new navElem(20,"bereits lieferbare Originalstoffe Knipmode special F/S 2010&nbsp(27)","pi2116617267.htm",18,"1410");
navigation[21] = new navElem(21,"Modellübersicht Knipmode Special H/W 09&nbsp(19)","pi-1150248810.htm",18,"1158");
navigation[22] = new navElem(22,"Originalstoffe Knipmode Special H/W 2009&nbsp(19)","pi-748579233.htm",18,"1159");
navigation[23] = new navElem(23,"Modellübersicht Knipmode Special F/S 09&nbsp(14)","pi-1648678465.htm",18,"1074");
navigation[24] = new navElem(24,"Originalstoffe Knipmode Special F/S 09&nbsp(16)","pi-702025580.htm",18,"1075");
navigation[25] = new navElem(25,"Ottobre Woman + kids","pi2121711556.htm",1,"1199");
navigation[26] = new navElem(26,"bereits lieferbare Originalstoffe Ottobre Woman + kids F/S 2010&nbsp(4)","pi1421577976.htm",25,"1411");
navigation[27] = new navElem(27,"Originalstoffe Ottobre Woman F/S + H/W 09&nbsp(4)","pi-1148573103.htm",25,"1218");
navigation[28] = new navElem(28,"Originalstoffe Ottobre Woman + kids 06/07/08&nbsp(7)","pi-1590850078.htm",25,"724");
navigation[29] = new navElem(29,"Lea - Modetrends für gr. Größen","pi1949416742.htm",1,"1198");
navigation[30] = new navElem(30,"Modellübersicht Lea - Modetrends für gr. Größen 2010 (LH870)&nbsp(41)","pi-2027278338.htm",29,"1468");
navigation[31] = new navElem(31,"Originalstoffe Lea - Modetrends für gr. Größen 2010&nbsp(8)","pi-366643857.htm",29,"1412");
navigation[32] = new navElem(32,"Modellübersicht Lea - Modetrends für gr. Größen 09 (LH699)&nbsp(41)","pi-623095310.htm",29,"1024");
navigation[33] = new navElem(33,"Originalstoffe Lea - Modetrends für gr. Größen 09 (LH699)&nbsp(2)","pi-1790438114.htm",29,"1026");
navigation[34] = new navElem(34,"Burda + Young Fashion + Burda Plus","pi136957301.htm",1,"1200");
navigation[35] = new navElem(35,"Originalstoffe Burda + Einzelschnitte 2010&nbsp(4)","pi1087856260.htm",34,"1413");
navigation[36] = new navElem(36,"Originalstoffe Burda 09 + Young Fashion 09&nbsp(2)","pi-738954400.htm",34,"1280");
navigation[37] = new navElem(37,"Originalstoffe aus Burda 07/08&nbsp(3)","pi80199216.htm",34,"723");
navigation[38] = new navElem(38,"Zeitschriften Burda Plus 08&nbsp(2)","pi-971841402.htm",34,"857");
navigation[39] = new navElem(39,"Diana Moden","pi-896935025.htm",1,"858");
navigation[40] = new navElem(40," Originalstoffe Diana Moden 2010&nbsp(2)","pi-1746601902.htm",39,"1414");
navigation[41] = new navElem(41,"Originalstoffe Diana Moden 09&nbsp(5)","pi1581519321.htm",39,"1281");
navigation[42] = new navElem(42,"Originalstoffe Diana Moden 08&nbsp(5)","pi-522899395.htm",39,"1279");
navigation[43] = new navElem(43,"NEU: Pattern Company Schnitte Sommer 2010","pi-661533621.htm",null,"1312");
navigation[44] = new navElem(44,"Mantel/Jacken/Strickjacken&nbsp(9)","pi-353613008.htm",43,"1313");
navigation[45] = new navElem(45,"Hosen&nbsp(3)","pi1930844017.htm",43,"1314");
navigation[46] = new navElem(46,"Kleider&nbsp(6)","pi-1262689058.htm",43,"1315");
navigation[47] = new navElem(47,"Röcke&nbsp(2)","pi-598495481.htm",43,"1316");
navigation[48] = new navElem(48,"Blusen/Tuniken&nbsp(8)","pi-927592900.htm",43,"1317");
navigation[49] = new navElem(49,"Shirts/Tops/Deko-Top&nbsp(6)","pi1003120781.htm",43,"1318");
navigation[50] = new navElem(50,"Strickjacke/Pulli/Überwurf&nbsp(5)","pi2126712522.htm",43,"1319");
navigation[51] = new navElem(51,"Westen&nbsp(3)","pi-938273405.htm",43,"1320");
navigation[52] = new navElem(52,"NEU: Stoffe Frühjahr/Sommer 2010","pi1697305589.htm",null,"1321");
navigation[53] = new navElem(53,"Neu eingetroffen am 4.3.10&nbsp(9)","pi1284723146.htm",52,"1485");
navigation[54] = new navElem(54,"Neu eingetroffen am 24.2.10&nbsp(6)","pi1267000924.htm",52,"1494");
navigation[55] = new navElem(55,"Neu eingetroffen am 11.2.10&nbsp(12)","pi1974529916.htm",52,"1493");
navigation[56] = new navElem(56,"Sortiert nach Qualität","pi-751694037.htm",52,"1322");
navigation[57] = new navElem(57,"Ausbrenner&nbsp(3)","pi1254380999.htm",56,"1326");
navigation[58] = new navElem(58,"Baumwolle/Batist&nbsp(14)","pi1481891324.htm",56,"1327");
navigation[59] = new navElem(59,"Baumwoll-Leinen&nbsp(2)","pi-2019793782.htm",56,"1329");
navigation[60] = new navElem(60,"Baumwollmischung&nbsp(24)","pi-1419706020.htm",56,"1351");
navigation[61] = new navElem(61,"Beschichteter Stoff&nbsp(3)","pi1924128973.htm",56,"1443");
navigation[62] = new navElem(62,"Bestickter Stoff/Stickereistoff&nbsp(12)","pi-767171283.htm",56,"1352");
navigation[63] = new navElem(63,"Bio-Leinen&nbsp(13)","pi-328222998.htm",56,"1353");
navigation[64] = new navElem(64,"Bordürenstoff&nbsp(2)","pi-601366744.htm",56,"1354");
navigation[65] = new navElem(65,"Boucle/Strickstoff&nbsp(15)","pi-2021643767.htm",56,"1355");
navigation[66] = new navElem(66,"Bouclé/Tweed&nbsp(2)","pi1828360628.htm",56,"1356");
navigation[67] = new navElem(67,"Chiffon/Georgette&nbsp(10)","pi804476069.htm",56,"1357");
navigation[68] = new navElem(68,"Crash/Cloqué/Plissee/Krepp&nbsp(11)","pi649201985.htm",56,"1359");
navigation[69] = new navElem(69,"Doppelgewebe&nbsp(3)","pi-49395124.htm",56,"1361");
navigation[70] = new navElem(70,"Doubleface&nbsp(1)","pi1766020957.htm",56,"1362");
navigation[71] = new navElem(71,"Gabardine&nbsp(2)","pi-946607782.htm",56,"1363");
navigation[72] = new navElem(72,"Georgette/Chiffon&nbsp(10)","pi648798365.htm",56,"1477");
navigation[73] = new navElem(73,"Glencheck&nbsp(2)","pi220651731.htm",56,"1364");
navigation[74] = new navElem(74,"Jacquard&nbsp(2)","pi-1819076840.htm",56,"1365");
navigation[75] = new navElem(75,"Jeans + Köper&nbsp(11)","pi947598086.htm",56,"1366");
navigation[76] = new navElem(76,"Jersey/Strickjersey gemustert alle&nbsp(26)","pi1381542052.htm",56,"1367");
navigation[77] = new navElem(77,"Jersey floral gemustert&nbsp(11)","pi370736341.htm",56,"1368");
navigation[78] = new navElem(78,"Jersey mit Phantasie-Muster&nbsp(11)","pi800318219.htm",56,"1369");
navigation[79] = new navElem(79,"Jersey Retro Blumen, Wellen + grafisch gemustert&nbsp(3)","pi-866465040.htm",56,"1370");
navigation[80] = new navElem(80,"Jersey uni + Melange, Tüll/Meshjersey&nbsp(32)","pi-1974907855.htm",56,"1381");
navigation[81] = new navElem(81,"Jersey Strick&nbsp(6)","pi9857694.htm",56,"1382");
navigation[82] = new navElem(82,"Jersey Tüll/Mesh&nbsp(3)","pi-1886382710.htm",56,"1483");
navigation[83] = new navElem(83,"Jersey Viskose/Elasthan uni&nbsp(24)","pi1990363828.htm",56,"1325");
navigation[84] = new navElem(84,"Köper + Jeans&nbsp(12)","pi-1907750404.htm",56,"1384");
navigation[85] = new navElem(85,"Kombinationsstoffe&nbsp(5)","pi-597033064.htm",56,"1471");
navigation[86] = new navElem(86,"Leichtleinen&nbsp(7)","pi-239932259.htm",56,"1420");
navigation[87] = new navElem(87,"Leinen/-mischungen&nbsp(40)","pi452733261.htm",56,"1385");
navigation[88] = new navElem(88,"Leinen/Stretch&nbsp(3)","pi-1486976478.htm",56,"1491");
navigation[89] = new navElem(89,"Mesh/Tüll&nbsp(12)","pi-575770486.htm",56,"1386");
navigation[90] = new navElem(90,"Plissee/Crash/Cloqué/Krepp&nbsp(9)","pi-131862487.htm",56,"1387");
navigation[91] = new navElem(91,"Polyamid/Polycarbonat/-mischung&nbsp(8)","pi-447345354.htm",56,"1388");
navigation[92] = new navElem(92,"Polyester/Polyethylen/-mischung&nbsp(24)","pi1602147967.htm",56,"1389");
navigation[93] = new navElem(93,"Popeline&nbsp(2)","pi745585861.htm",56,"1390");
navigation[94] = new navElem(94,"Ramie&nbsp(9)","pi833236130.htm",56,"1391");
navigation[95] = new navElem(95,"Seide/-mischungen&nbsp(7)","pi874458016.htm",56,"1393");
navigation[96] = new navElem(96,"Slinky (Viskose/Elasthan)&nbsp(1)","pi-1595479187.htm",56,"1478");
navigation[97] = new navElem(97,"Spitze&nbsp(1)","pi-223581407.htm",56,"1394");
navigation[98] = new navElem(98,"Stepper&nbsp(1)","pi186690103.htm",56,"1395");
navigation[99] = new navElem(99,"Stickerei-Stoff/bestickter Stoff&nbsp(12)","pi-120154307.htm",56,"1396");
navigation[100] = new navElem(100,"Stretch&nbsp(22)","pi-581983309.htm",56,"1397");
navigation[101] = new navElem(101,"Stretchbaumwolle/Stretchsatin&nbsp(7)","pi-318726887.htm",56,"1398");
navigation[102] = new navElem(102,"Stretchjeans/-köper&nbsp(11)","pi-1082125466.htm",56,"1399");
navigation[103] = new navElem(103,"Stretchleinen&nbsp(3)","pi376507631.htm",56,"1400");
navigation[104] = new navElem(104,"Strickstoff/Boucle&nbsp(15)","pi1413349380.htm",56,"1401");
navigation[105] = new navElem(105,"Strickstoff fein&nbsp(15)","pi1877579957.htm",56,"1402");
navigation[106] = new navElem(106,"Tüll/Mesh&nbsp(12)","pi1230661137.htm",56,"1404");
navigation[107] = new navElem(107,"Tweed/Bouclé&nbsp(2)","pi-1178804569.htm",56,"1405");
navigation[108] = new navElem(108,"Viskose/-mischungen&nbsp(11)","pi2051121453.htm",56,"1406");
navigation[109] = new navElem(109,"Viskoseleinen&nbsp(2)","pi-1634221334.htm",56,"1407");
navigation[110] = new navElem(110,"Walk Sommerwalkloden mit Fransenkante&nbsp(19)","pi-1350786005.htm",56,"1462");
navigation[111] = new navElem(111,"Sortiert nach Farbe","pi1294814352.htm",52,"1323");
navigation[112] = new navElem(112,"Bunt&nbsp(13)","pi1111934408.htm",111,"1330");
navigation[113] = new navElem(113,"Weiß/Wollweiß/Champagner/Elfenbein&nbsp(64)","pi-970820567.htm",111,"1331");
navigation[114] = new navElem(114,"Beige/Natur/Camel/Sand/Schlamm&nbsp(14)","pi-978632394.htm",111,"1332");
navigation[115] = new navElem(115,"Gold/Gelb/Ocker/Vanille/Apricot&nbsp(14)","pi1529936511.htm",111,"1333");
navigation[116] = new navElem(116,"Orange/Rot/Weinrot/Lachs/Koralle&nbsp(29)","pi1835672148.htm",111,"1334");
navigation[117] = new navElem(117,"Rosatöne/Pink/Rosé/Rosenholz&nbsp(17)","pi-2021687099.htm",111,"1335");
navigation[118] = new navElem(118,"Lilatöne/Brombeer/Aubergine/Fuchsia&nbsp(35)","pi-440416133.htm",111,"1336");
navigation[119] = new navElem(119,"Blautöne&nbsp(21)","pi-1466646624.htm",111,"1337");
navigation[120] = new navElem(120,"Grüntöne/Khaki/Oliv/Kiwi&nbsp(29)","pi-988926258.htm",111,"1338");
navigation[121] = new navElem(121,"Petrol/Türkis/Aqua/Mint&nbsp(13)","pi-1895084489.htm",111,"1339");
navigation[122] = new navElem(122,"Brauntöne/Rost/Terra/Kupfer/Fango&nbsp(31)","pi1444698042.htm",111,"1340");
navigation[123] = new navElem(123,"Grautöne/Silber/Kitt&nbsp(27)","pi1716291507.htm",111,"1341");
navigation[124] = new navElem(124,"Schwarz&nbsp(37)","pi1797172344.htm",111,"1342");
navigation[125] = new navElem(125,"gold/silber/kupfer schimmernd&nbsp(3)","pi693641497.htm",111,"1343");
navigation[126] = new navElem(126,"Kombinationsstoffe&nbsp(6)","pi-398164551.htm",111,"1472");
navigation[127] = new navElem(127,"Stoff ist geeignet für:","pi-1749035695.htm",52,"1324");
navigation[128] = new navElem(128,"Outdoorjacken/Mäntel&nbsp(20)","pi1814311151.htm",127,"1344");
navigation[129] = new navElem(129,"Blazer/Jacken/Blusenjacken&nbsp(71)","pi-1730061131.htm",127,"1345");
navigation[130] = new navElem(130,"Blusen/Tuniken/Oberteile/Weste&nbsp(59)","pi-1121457710.htm",127,"1346");
navigation[131] = new navElem(131,"Shirt/Jerseybluse/Bolero/Shrug&nbsp(58)","pi-233706416.htm",127,"1347");
navigation[132] = new navElem(132,"Strickjacken/Twinset/Pulli&nbsp(13)","pi729180689.htm",127,"1348");
navigation[133] = new navElem(133,"Hosen&nbsp(53)","pi-161748226.htm",127,"1349");
navigation[134] = new navElem(134,"Röcke/Kleider&nbsp(143)","pi751338151.htm",127,"1350");
navigation[135] = new navElem(135,"Stola/Überwurf&nbsp(2)","pi302140464.htm",127,"1492");
navigation[136] = new navElem(136,"30% reduziert: Herbst/Winter-Stoffe 2009","pi-1177116957.htm",null,"1091");
navigation[137] = new navElem(137,"Sortiert nach Qualität","pi121233384.htm",136,"1092");
navigation[138] = new navElem(138,"Ausbrenner&nbsp(2)","pi-525823698.htm",137,"1157");
navigation[139] = new navElem(139,"Baumwolle/Batist&nbsp(6)","pi-116942049.htm",137,"1095");
navigation[140] = new navElem(140,"Baumwoll-Jersey&nbsp(4)","pi684036709.htm",137,"1096");
navigation[141] = new navElem(141,"Baumwollmischung&nbsp(7)","pi-1398361317.htm",137,"1097");
navigation[142] = new navElem(142,"Beschichteter Stoff&nbsp(1)","pi1972258755.htm",137,"1445");
navigation[143] = new navElem(143,"Bestickter Stoff/Stickereistoff&nbsp(2)","pi-1644708416.htm",137,"1098");
navigation[144] = new navElem(144,"Boucle/Strickstoff&nbsp(14)","pi-1788720692.htm",137,"1100");
navigation[145] = new navElem(145,"Bouclé/Tweed&nbsp(5)","pi127156445.htm",137,"1101");
navigation[146] = new navElem(146,"Cord&nbsp(5)","pi836232787.htm",137,"1103");
navigation[147] = new navElem(147,"Crash/Cloqué/Plissee/Krepp&nbsp(8)","pi-241037672.htm",137,"1104");
navigation[148] = new navElem(148,"Crinkle&nbsp(1)","pi-1081018746.htm",137,"1106");
navigation[149] = new navElem(149,"Doppelgewebe&nbsp(15)","pi1371408685.htm",137,"1224");
navigation[150] = new navElem(150,"Doubleface&nbsp(14)","pi-1484646364.htm",137,"1107");
navigation[151] = new navElem(151,"Fell/Pelzimitat&nbsp(2)","pi1751173874.htm",137,"1108");
navigation[152] = new navElem(152,"Gabardine&nbsp(3)","pi2027799992.htm",137,"1272");
navigation[153] = new navElem(153,"Glencheck&nbsp(2)","pi375164580.htm",137,"1277");
navigation[154] = new navElem(154,"Jackenstoff fest Kunstfaser&nbsp(3)","pi1123184051.htm",137,"1226");
navigation[155] = new navElem(155,"Jersey/Strickjersey gemustert alle&nbsp(25)","pi-627606095.htm",137,"1111");
navigation[156] = new navElem(156,"Jersey floral gemustert&nbsp(1)","pi-2101927274.htm",137,"1206");
navigation[157] = new navElem(157,"Jersey mit Phantasie-Muster&nbsp(12)","pi-1237048916.htm",137,"1211");
navigation[158] = new navElem(158,"Jersey Retro Blumen, Wellen + grafisch gemustert&nbsp(12)","pi1167221428.htm",137,"1207");
navigation[159] = new navElem(159,"Jersey uni + Melange&nbsp(10)","pi1053695518.htm",137,"1112");
navigation[160] = new navElem(160,"Jersey Strick&nbsp(4)","pi476133377.htm",137,"1256");
navigation[161] = new navElem(161,"Jersey Baumwolle mit Elasthan&nbsp(3)","pi-1429586105.htm",137,"1113");
navigation[162] = new navElem(162,"Kurzhaar-Zottel&nbsp(3)","pi-1940914287.htm",137,"1221");
navigation[163] = new navElem(163,"Microflausch &nbsp(1)","pi1346520689.htm",137,"1204");
navigation[164] = new navElem(164,"Nicki&nbsp(2)","pi-1299215037.htm",137,"1223");
navigation[165] = new navElem(165,"Pizzatechnik, aufgefilzte Fäden&nbsp(4)","pi-1995402355.htm",137,"1172");
navigation[166] = new navElem(166,"Plissee/Crash/Cloqué/Krepp&nbsp(8)","pi-768590958.htm",137,"1201");
navigation[167] = new navElem(167,"Polyamid-Polyurethan-Mischung &nbsp(2)","pi1201407132.htm",137,"1439");
navigation[168] = new navElem(168,"Polyester/Polyethylen&nbsp(4)","pi784583957.htm",137,"1228");
navigation[169] = new navElem(169,"Samt/Stretchsamt&nbsp(2)","pi-1234254618.htm",137,"1184");
navigation[170] = new navElem(170,"Satin&nbsp(1)","pi-1327211510.htm",137,"1116");
navigation[171] = new navElem(171,"Seide&nbsp(5)","pi-1823135293.htm",137,"1117");
navigation[172] = new navElem(172,"Spitze&nbsp(5)","pi1262324040.htm",137,"1118");
navigation[173] = new navElem(173,"Stepper&nbsp(15)","pi1831326121.htm",137,"1119");
navigation[174] = new navElem(174,"Stickerei-Stoff/bestickter Stoff&nbsp(2)","pi-744640330.htm",137,"1120");
navigation[175] = new navElem(175,"Stretch&nbsp(10)","pi-17067009.htm",137,"1121");
navigation[176] = new navElem(176,"Stretchbaumwolle/Stretchsatin&nbsp(1)","pi502275540.htm",137,"1122");
navigation[177] = new navElem(177,"Strickstoff/Boucle&nbsp(14)","pi1699678242.htm",137,"1126");
navigation[178] = new navElem(178,"Strickstoff fein&nbsp(6)","pi1506636576.htm",137,"1127");
navigation[179] = new navElem(179,"Tüll&nbsp(2)","pi72589678.htm",137,"1186");
navigation[180] = new navElem(180,"Tweed/Bouclé&nbsp(5)","pi785649230.htm",137,"1128");
navigation[181] = new navElem(181,"Velvet/Baumwollsamt mit und ohne Stretch&nbsp(4)","pi1302370231.htm",137,"1129");
navigation[182] = new navElem(182,"Viskose/-mischungen&nbsp(10)","pi215892157.htm",137,"1130");
navigation[183] = new navElem(183,"komplett Walk und walkartige Stoffe, Wollfilz, Pizza&nbsp(24)","pi796602170.htm",137,"1131");
navigation[184] = new navElem(184,"Walk und walkartige Stoffe uni&nbsp(14)","pi523362069.htm",137,"1165");
navigation[185] = new navElem(185,"Walk und walkartige Stoffe bunt/bedruckt&nbsp(10)","pi1718686898.htm",137,"1166");
navigation[186] = new navElem(186,"Walk ganz leichte Ware, verpresste Wolle&nbsp(2)","pi-1960766039.htm",137,"1214");
navigation[187] = new navElem(187,"Walk Crash/Crinkle&nbsp(2)","pi657792301.htm",137,"1187");
navigation[188] = new navElem(188,"Walk Edelstepper/Doubleface&nbsp(8)","pi-2017156601.htm",137,"1171");
navigation[189] = new navElem(189,"Walk mittelschwere + dickere Qualität&nbsp(3)","pi-198274512.htm",137,"1168");
navigation[190] = new navElem(190,"Walk Lana Cotta, gekochte Wolle, Strickloden&nbsp(2)","pi1602671217.htm",137,"1169");
navigation[191] = new navElem(191,"Walk Wollfilz, Strickfilz&nbsp(8)","pi319063006.htm",137,"1170");
navigation[192] = new navElem(192,"Winterjersey&nbsp(3)","pi831875379.htm",137,"1132");
navigation[193] = new navElem(193,"Wolle/-mischungen&nbsp(43)","pi-2121838600.htm",137,"1133");
navigation[194] = new navElem(194,"Woll-Spitze&nbsp(4)","pi-1634569441.htm",137,"1179");
navigation[195] = new navElem(195,"Zottel Kurzhaar&nbsp(3)","pi-1793574574.htm",137,"1219");
navigation[196] = new navElem(196,"Sortiert nach Farbe","pi-1235825719.htm",136,"1093");
navigation[197] = new navElem(197,"Bunt&nbsp(3)","pi2090983065.htm",196,"1134");
navigation[198] = new navElem(198,"Weiß/Wollweiß/Champagner/Elfenbein&nbsp(24)","pi-1078880538.htm",196,"1135");
navigation[199] = new navElem(199,"Beige/Natur/Camel/Sand/Schlamm&nbsp(12)","pi2129211268.htm",196,"1136");
navigation[200] = new navElem(200,"Gold/Gelb/Ocker/Vanille&nbsp(4)","pi-1771097774.htm",196,"1137");
navigation[201] = new navElem(201,"Orange/Rot/Weinrot/Lachs/Koralle&nbsp(19)","pi-1402775663.htm",196,"1138");
navigation[202] = new navElem(202,"Rosatöne/Pink/Rosé/Rosenholz&nbsp(8)","pi-1190843353.htm",196,"1139");
navigation[203] = new navElem(203,"Lilatöne/Brombeer/Aubergine/Fuchsia&nbsp(36)","pi-1916228947.htm",196,"1140");
navigation[204] = new navElem(204,"Blautöne&nbsp(7)","pi1071476330.htm",196,"1141");
navigation[205] = new navElem(205,"Petrol/Türkis/Aqua/Mint&nbsp(14)","pi-1162190168.htm",196,"1143");
navigation[206] = new navElem(206,"Grüntöne/Khaki/Oliv/Kiwi&nbsp(10)","pi866100387.htm",196,"1142");
navigation[207] = new navElem(207,"Brauntöne/Rost/Terra/Kupfer/Fango&nbsp(35)","pi-1452914807.htm",196,"1144");
navigation[208] = new navElem(208,"Grautöne/Silber/Kitt&nbsp(34)","pi-1602246378.htm",196,"1145");
navigation[209] = new navElem(209,"Schwarz&nbsp(54)","pi1071283423.htm",196,"1146");
navigation[210] = new navElem(210,"gold/silber/kupfer schimmernd&nbsp(3)","pi669141541.htm",196,"1147");
navigation[211] = new navElem(211,"Stoff ist geeignet für:","pi-845649834.htm",136,"1094");
navigation[212] = new navElem(212,"Outdoorjacken/Mäntel&nbsp(18)","pi-509327742.htm",211,"1148");
navigation[213] = new navElem(213,"Blazer/Jacken/Blusenjacken&nbsp(38)","pi2100451456.htm",211,"1149");
navigation[214] = new navElem(214,"Weste&nbsp(18)","pi-2118434458.htm",211,"1182");
navigation[215] = new navElem(215,"Blusen/Oberteile/Hemden&nbsp(15)","pi-581136767.htm",211,"1150");
navigation[216] = new navElem(216,"Shirt/Jerseybluse/Rolli/Bolero/Wickeljacke/shrug&nbsp(34)","pi-326307154.htm",211,"1151");
navigation[217] = new navElem(217,"StrickJacken/Pulli/Pullunder&nbsp(27)","pi-61932393.htm",211,"1152");
navigation[218] = new navElem(218,"Hosen&nbsp(9)","pi-1013837684.htm",211,"1153");
navigation[219] = new navElem(219,"Röcke/Kleider&nbsp(58)","pi42643613.htm",211,"1154");
navigation[220] = new navElem(220,"Stola/Kragen/Verzierungen&nbsp(7)","pi-481420902.htm",211,"1155");
navigation[221] = new navElem(221,"Stoffe komplett","pi-247953855.htm",null,"240");
navigation[222] = new navElem(222,"Sortiert nach Qualität","pi-1597816387.htm",221,"127");
navigation[223] = new navElem(223,"Ausbrenner&nbsp(9)","pi1936008260.htm",222,"50");
navigation[224] = new navElem(224,"Bänder (Rips/Tüll)&nbsp(4)","pi2114740066.htm",222,"375");
navigation[225] = new navElem(225,"Bambus&nbsp(1)","pi995099149.htm",222,"1056");
navigation[226] = new navElem(226,"Baumwolle/Batist&nbsp(32)","pi218066529.htm",222,"43");
navigation[227] = new navElem(227,"Baumwoll-Jersey&nbsp(7)","pi1824830347.htm",222,"1046");
navigation[228] = new navElem(228,"Baumwoll-Leinen&nbsp(4)","pi-583648899.htm",222,"365");
navigation[229] = new navElem(229,"Baumwollmischung&nbsp(69)","pi1120696660.htm",222,"366");
navigation[230] = new navElem(230,"Beschichteter Stoff&nbsp(5)","pi522367498.htm",222,"1444");
navigation[231] = new navElem(231,"Bestickter Stoff/Stickerei-Stoff&nbsp(29)","pi-1259146103.htm",222,"671");
navigation[232] = new navElem(232,"Bio-Leinen&nbsp(13)","pi1388245995.htm",222,"888");
navigation[233] = new navElem(233,"Bordürenstoffe&nbsp(8)","pi353255891.htm",222,"23");
navigation[234] = new navElem(234,"Boucle/Strickstoff&nbsp(44)","pi719937026.htm",222,"5");
navigation[235] = new navElem(235,"Bouclé/Tweed&nbsp(15)","pi-1800415674.htm",222,"26");
navigation[236] = new navElem(236,"Chiffon/Georgette&nbsp(12)","pi-466302934.htm",222,"367");
navigation[237] = new navElem(237,"Cord&nbsp(9)","pi-1919177779.htm",222,"4");
navigation[238] = new navElem(238,"Crash/Cloqué/Plissee/Krepp&nbsp(38)","pi1080775112.htm",222,"368");
navigation[239] = new navElem(239,"Crinkle&nbsp(5)","pi-1087410994.htm",222,"714");
navigation[240] = new navElem(240,"Doppelgewebe&nbsp(19)","pi1155926762.htm",222,"1225");
navigation[241] = new navElem(241,"Doubleface&nbsp(19)","pi1059049723.htm",222,"854");
navigation[242] = new navElem(242,"Fell-/Pelzimitat/Plüsch&nbsp(5)","pi1190708681.htm",222,"585");
navigation[243] = new navElem(243,"Gabardine&nbsp(7)","pi496941896.htm",222,"572");
navigation[244] = new navElem(244,"Georgette/Chiffon&nbsp(12)","pi1847278288.htm",222,"1461");
navigation[245] = new navElem(245,"Glencheck&nbsp(6)","pi-450985637.htm",222,"568");
navigation[246] = new navElem(246,"Jackenstoff fest Kunstfaser&nbsp(10)","pi1330149145.htm",222,"1227");
navigation[247] = new navElem(247,"Jacquard&nbsp(11)","pi1140876192.htm",222,"108");
navigation[248] = new navElem(248,"Javanaise Viskose&nbsp(1)","pi392516779.htm",222,"1475");
navigation[249] = new navElem(249,"Jeans + Köper&nbsp(16)","pi-542719045.htm",222,"32");
navigation[250] = new navElem(250,"Jersey/Strickjersey gemustert alle&nbsp(75)","pi182825452.htm",222,"45");
navigation[251] = new navElem(251,"Jersey floral gemustert&nbsp(16)","pi-395767387.htm",222,"1208");
navigation[252] = new navElem(252,"Jersey mit Phantasie-Muster&nbsp(25)","pi-1470833932.htm",222,"1210");
navigation[253] = new navElem(253,"Jersey Retro Blumen, Wellen + grafisch gemustert&nbsp(33)","pi814897154.htm",222,"1209");
navigation[254] = new navElem(254,"Jersey uni + Melange, Tüll/Meshjersey&nbsp(47)","pi725445156.htm",222,"836");
navigation[255] = new navElem(255,"Jersey Strick&nbsp(12)","pi279428654.htm",222,"1257");
navigation[256] = new navElem(256,"Jersey Baumwolle mit Elasthan&nbsp(6)","pi24678577.htm",222,"1047");
navigation[257] = new navElem(257,"Jersey Tüll/Mesh&nbsp(8)","pi-533871293.htm",222,"1484");
navigation[258] = new navElem(258,"Jersey Viskose/Elasthan uni&nbsp(26)","pi1364724133.htm",222,"1009");
navigation[259] = new navElem(259,"Köper + Jeans&nbsp(16)","pi240269999.htm",222,"577");
navigation[260] = new navElem(260,"Kombinationsstoffe&nbsp(10)","pi-297906298.htm",222,"1473");
navigation[261] = new navElem(261,"Kurzhaar-Zottel&nbsp(3)","pi1491874430.htm",222,"1222");
navigation[262] = new navElem(262,"Lederimitat&nbsp(2)","pi-589405114.htm",222,"1051");
navigation[263] = new navElem(263,"Leichtleinen&nbsp(7)","pi323528090.htm",222,"1421");
navigation[264] = new navElem(264,"Leinen/-mischungen&nbsp(70)","pi-515800096.htm",222,"42");
navigation[265] = new navElem(265,"Leinen/Stretch&nbsp(3)","pi1127383109.htm",222,"1490");
navigation[266] = new navElem(266,"Mesh/Tüll&nbsp(20)","pi-981230639.htm",222,"369");
navigation[267] = new navElem(267,"Metall-Stoffe&nbsp(6)","pi1048295107.htm",222,"370");
navigation[268] = new navElem(268,"Microflausch&nbsp(1)","pi-835721250.htm",222,"1205");
navigation[269] = new navElem(269,"Nicki&nbsp(2)","pi-2012567849.htm",222,"90");
navigation[270] = new navElem(270,"Panneaux f. Rock/Kleid&nbsp(2)","pi-524573922.htm",222,"712");
navigation[271] = new navElem(271,"Pannesamt&nbsp(1)","pi1325461457.htm",222,"818");
navigation[272] = new navElem(272,"Pelz-/Fellimitat/Plüsch&nbsp(4)","pi-1903509019.htm",222,"203");
navigation[273] = new navElem(273,"Pizzatechnik Aufgefilzte Fäden&nbsp(5)","pi2576025.htm",222,"35");
navigation[274] = new navElem(274,"Plissee/Crash/Cloqué/Krepp&nbsp(35)","pi1449487732.htm",222,"1202");
navigation[275] = new navElem(275,"Plüsch/Microplüsch&nbsp(3)","pi-733884252.htm",222,"559");
navigation[276] = new navElem(276,"Polyamid/Polycarbonat/-mischung&nbsp(13)","pi-1463383009.htm",222,"1040");
navigation[277] = new navElem(277,"Polyester/Polyethylen/-mischung&nbsp(49)","pi507650298.htm",222,"372");
navigation[278] = new navElem(278,"Popeline&nbsp(12)","pi-601179565.htm",222,"163");
navigation[279] = new navElem(279,"Ramie&nbsp(9)","pi-603920466.htm",222,"931");
navigation[280] = new navElem(280,"Rips&nbsp(1)","pi16791345.htm",222,"92");
navigation[281] = new navElem(281,"Samt/Stretchsamt&nbsp(2)","pi-773898129.htm",222,"1185");
navigation[282] = new navElem(282,"Satin&nbsp(19)","pi-525403537.htm",222,"711");
navigation[283] = new navElem(283,"Seide/-mischungen&nbsp(23)","pi529283611.htm",222,"226");
navigation[284] = new navElem(284,"Slinky (Viskose/Elasthan)&nbsp(1)","pi-1497547795.htm",222,"697");
navigation[285] = new navElem(285,"Smok&nbsp(3)","pi563941073.htm",222,"570 ");
navigation[286] = new navElem(286,"Spitze&nbsp(8)","pi-378242359.htm",222,"556");
navigation[287] = new navElem(287,"Stepper&nbsp(18)","pi-2090110756.htm",222,"193");
navigation[288] = new navElem(288,"Stickerei-Stoff/bestickter Stoff&nbsp(29)","pi-93503614.htm",222,"674");
navigation[289] = new navElem(289,"Stretch&nbsp(66)","pi1192799898.htm",222,"113");
navigation[290] = new navElem(290,"Stretchbaumwolle/Stretchsatin&nbsp(30)","pi961645838.htm",222,"44");
navigation[291] = new navElem(291,"Stretchjeans/-köper&nbsp(12)","pi1244055445.htm",222,"131");
navigation[292] = new navElem(292,"Stretchleinen&nbsp(4)","pi1250897139.htm",222,"47");
navigation[293] = new navElem(293,"Strickstoff/Boucle&nbsp(44)","pi1094804860.htm",222,"381");
navigation[294] = new navElem(294,"Strickstoff fein&nbsp(25)","pi-2082197885.htm",222,"930");
navigation[295] = new navElem(295,"Taft/taftartige Stoffe&nbsp(6)","pi1120946276.htm",222,"198");
navigation[296] = new navElem(296,"Tellerröcke&nbsp(2)","pi1479296599.htm",222,"21");
navigation[297] = new navElem(297,"Tencel/-Leinen&nbsp(3)","pi2123669482.htm",222,"117");
navigation[298] = new navElem(298,"Tüll/Mesh&nbsp(20)","pi25382503.htm",222,"916");
navigation[299] = new navElem(299,"Tweed/Bouclé&nbsp(15)","pi334518982.htm",222,"130");
navigation[300] = new navElem(300,"Velvet/Baumwollsamt mit und ohne Stretch&nbsp(5)","pi-1727646381.htm",222,"64");
navigation[301] = new navElem(301,"Viskose/-mischungen&nbsp(41)","pi1801484095.htm",222,"373");
navigation[302] = new navElem(302,"Viskoseleinen&nbsp(8)","pi-1467089630.htm",222,"374");
navigation[303] = new navElem(303,"komplett Walk u. walkartige Stoffe, Wollfilz, Pizza&nbsp(58)","pi-160072574.htm",222,"225");
navigation[304] = new navElem(304,"Walk und walkartige Stoffe uni&nbsp(45)","pi521764281.htm",222,"848");
navigation[305] = new navElem(305,"Walk und walkartige Stoffe bedruckt/bunt&nbsp(13)","pi-273723514.htm",222,"849");
navigation[306] = new navElem(306,"Walk ganz leichte Ware, verpresste Wolle&nbsp(2)","pi193373366.htm",222,"1216");
navigation[307] = new navElem(307,"Walk Crash/Crinkle&nbsp(2)","pi-959672598.htm",222,"1188");
navigation[308] = new navElem(308,"Walk Edelstepper/Doubleface&nbsp(9)","pi-558195254.htm",222,"1173");
navigation[309] = new navElem(309,"Walk mittelschwere + dickere Qualität&nbsp(3)","pi-787400573.htm",222,"1174");
navigation[310] = new navElem(310,"Walk Sommerwalk mit Fransenkante&nbsp(19)","pi-1606452601.htm",222,"844");
navigation[311] = new navElem(311,"Walk Leichtwalker ohne Fransenkante&nbsp(9)","pi1841456609.htm",222,"846");
navigation[312] = new navElem(312,"Walk Lana Cotta, gekochte Wolle, Strickloden&nbsp(5)","pi1475774816.htm",222,"845");
navigation[313] = new navElem(313,"Walk Wollfilz, Strickfilz&nbsp(10)","pi-1948483739.htm",222,"847");
navigation[314] = new navElem(314,"Winterjersey&nbsp(3)","pi1682332369.htm",222,"63");
navigation[315] = new navElem(315,"Wolle/Wollmischung&nbsp(78)","pi-1732880518.htm",222,"150");
navigation[316] = new navElem(316,"Woll-Spitze&nbsp(4)","pi-777246107.htm",222,"1180");
navigation[317] = new navElem(317,"Zottel Kurzhaar&nbsp(3)","pi407422928.htm",222,"1220");
navigation[318] = new navElem(318,"Sortiert nach Farbe","pi765615162.htm",221,"128");
navigation[319] = new navElem(319,"Bunt&nbsp(36)","pi-891645930.htm",318,"14");
navigation[320] = new navElem(320,"Weiß/Wollweiß/Champagner/Elfenbein&nbsp(162)","pi-54860438.htm",318,"11");
navigation[321] = new navElem(321,"Beige/Natur/Camel/Sand/Schlamm&nbsp(59)","pi1773832012.htm",318,"22");
navigation[322] = new navElem(322,"Gold/Gelb/Ocker/Vanille/Apricot&nbsp(44)","pi-1200993736.htm",318,"160");
navigation[323] = new navElem(323,"Orange/Rot/Weinrot/Lachs/Koralle&nbsp(88)","pi1978240052.htm",318,"16");
navigation[324] = new navElem(324,"Rosatöne/Pink/Rosé/Rosenholz&nbsp(57)","pi-414349440.htm",318,"18");
navigation[325] = new navElem(325,"Lilatöne/Brombeer/Aubergine/Fuchsia&nbsp(92)","pi-944530046.htm",318,"17");
navigation[326] = new navElem(326,"Blautöne&nbsp(45)","pi492771295.htm",318,"15");
navigation[327] = new navElem(327,"Grüntöne/Khaki/Oliv/Kiwi&nbsp(69)","pi-742080414.htm",318,"154");
navigation[328] = new navElem(328,"Petrol/Türkis/Aqua/Mint&nbsp(42)","pi872091001.htm",318,"19");
navigation[329] = new navElem(329,"Brauntöne/Rost/Terra/Kupfer/Fango&nbsp(123)","pi-321867352.htm",318,"13");
navigation[330] = new navElem(330,"Grautöne/Silber/Kitt&nbsp(100)","pi888769766.htm",318,"25");
navigation[331] = new navElem(331,"Schwarz&nbsp(159)","pi-656056915.htm",318,"10");
navigation[332] = new navElem(332,"gold/silber/kupfer schimmernd&nbsp(19)","pi-1246823371.htm",318,"716");
navigation[333] = new navElem(333,"Kombinationsstoffe&nbsp(12)","pi-1612292465.htm",318,"1474");
navigation[334] = new navElem(334,"Stoff ist geeignet für:","pi841197525.htm",221,"173");
navigation[335] = new navElem(335,"Outdoorjacken/Mäntel&nbsp(69)","pi1549351374.htm",334,"180");
navigation[336] = new navElem(336,"Blazer/Jacken/Blusenjacken&nbsp(201)","pi1560769008.htm",334,"175");
navigation[337] = new navElem(337,"Westen aus Strick/Walk/Stepp&nbsp(25)","pi1524471416.htm",334,"1181");
navigation[338] = new navElem(338,"Blusen/Tuniken/Oberteile/leichte Westen&nbsp(171)","pi1680028749.htm",334,"178");
navigation[339] = new navElem(339,"Shirt/Jerseybluse/Rolli/Bolero/Wickeljacke/shrug&nbsp(129)","pi-693328079.htm",334,"176");
navigation[340] = new navElem(340,"Strickjacken/Twinset/Pulli/Pullunder&nbsp(61)","pi-795883709.htm",334,"179");
navigation[341] = new navElem(341,"Hosen&nbsp(99)","pi-1492482549.htm",334,"277");
navigation[342] = new navElem(342,"Röcke/Kleider&nbsp(322)","pi735675591.htm",334,"177");
navigation[343] = new navElem(343,"Kragen/Verzierungen/Bänder/Stola/Schal&nbsp(19)","pi702834355.htm",334,"181");
navigation[344] = new navElem(344,"Designerstoffe + Made in Italy&nbsp(6)","pi714083756.htm",221,"110");
navigation[345] = new navElem(345,"Originalstoffe Pattern Company","pi369024073.htm",221,"334");
navigation[346] = new navElem(346,"bereits lieferbare Stoffe Pattern Company Sommer 2010&nbsp(52)","pi1752411620.htm",345,"228");
navigation[347] = new navElem(347,"Pattern Company Winter 2009&nbsp(32)","pi1404148737.htm",345,"1163");
navigation[348] = new navElem(348,"Pattern Company Sommer 2009&nbsp(31)","pi-223332397.htm",345,"912");
navigation[349] = new navElem(349,"Pattern Company Winter 2008&nbsp(28)","pi-893725213.htm",345,"784");
navigation[350] = new navElem(350,"Pattern Company Sommer 2008&nbsp(21)","pi2043171669.htm",345,"650");
navigation[351] = new navElem(351,"Pattern Company Winter 2007&nbsp(6)","pi-541803807.htm",345,"544");
navigation[352] = new navElem(352,"Pattern Company Sommer 2007&nbsp(13)","pi-1706137356.htm",345,"336");
navigation[353] = new navElem(353,"Originalstoffe Sabrina Woman + Lea + Diana","pi247212024.htm",221,"686");
navigation[354] = new navElem(354,"bereits lieferbare Stoffe Sabrina Woman F/S 2010&nbsp(29)","pi1691964011.htm",353,"1415");
navigation[355] = new navElem(355,"Sabrina Woman H/W 2009 (S1536)&nbsp(20)","pi1764811355.htm",353,"1162");
navigation[356] = new navElem(356,"Sabrina Woman F/S 2009 (S1464)&nbsp(16)","pi1155319195.htm",353,"919");
navigation[357] = new navElem(357,"Sabrina Woman H/W 2008 (S1401)&nbsp(8)","pi1378364310.htm",353,"796");
navigation[358] = new navElem(358,"Sabrina Woman F/S 2008 (S1329)&nbsp(18)","pi1330971634.htm",353,"651");
navigation[359] = new navElem(359,"Sabrina Woman F/S+H/W 2007 (S1273)&nbsp(10)","pi-490918027.htm",353,"542");
navigation[360] = new navElem(360,"Sabrina Woman Big Size 2006&nbsp(1)","pi-1454306518.htm",353,"379");
navigation[361] = new navElem(361,"Lea Modetrends für gr. Größen 2010&nbsp(8)","pi-1107321136.htm",353,"1416");
navigation[362] = new navElem(362,"Lea Modetrends für große Größen 2009 (LH699)&nbsp(2)","pi841263687.htm",353,"1027");
navigation[363] = new navElem(363,"Lea Modetrends für große Größen 07/08&nbsp(9)","pi368909707.htm",353,"652");
navigation[364] = new navElem(364,"Diana Moden 2010&nbsp(2)","pi-1191517826.htm",353,"1417");
navigation[365] = new navElem(365,"Diana Moden 09&nbsp(5)","pi-1287644890.htm",353,"1282");
navigation[366] = new navElem(366,"Diana Moden 08&nbsp(5)","pi127207097.htm",353,"700");
navigation[367] = new navElem(367,"Originalstoffe Knipmode Special in deutsch","pi-2084581831.htm",221,"913");
navigation[368] = new navElem(368,"bereits lieferbare Stoffe Knipmode Special F/S 2010&nbsp(27)","pi1412486951.htm",367,"1418");
navigation[369] = new navElem(369,"Knipmode Special H/W 09&nbsp(19)","pi494874114.htm",367,"1161");
navigation[370] = new navElem(370,"Knipmode Special F/S 09&nbsp(16)","pi1198849957.htm",367,"1160");
navigation[371] = new navElem(371,"Originalstoffe Ottobre Woman + kids  ","pi380958720.htm",221,"340");
navigation[372] = new navElem(372,"bereits lieferbare Stoffe Ottobre Woman + kids F/S 2010&nbsp(4)","pi4202769.htm",371,"229");
navigation[373] = new navElem(373,"Ottobre Woman H/W 09&nbsp(3)","pi-931292117.htm",371,"1217");
navigation[374] = new navElem(374,"Ottobre Woman F/S 09 + kids 09&nbsp(4)","pi-2145265744.htm",371,"914");
navigation[375] = new navElem(375,"Ottobre Woman 08 + kids 08&nbsp(4)","pi252266834.htm",371,"688");
navigation[376] = new navElem(376,"Ottobre Woman 07 + kids 07&nbsp(3)","pi195588620.htm",371,"380");
navigation[377] = new navElem(377,"Ottobre kids 06&nbsp(1)","pi1435383236.htm",371,"149");
navigation[378] = new navElem(378,"Originalstoffe Burda/Young Fashion/Plus Fashion","pi-474177229.htm",221,"685");
navigation[379] = new navElem(379,"Burda Modemagazin 2010 + Einzelschnitte&nbsp(4)","pi-190653476.htm",378,"1419");
navigation[380] = new navElem(380,"Burda Modemagazin + Young Fashion 09&nbsp(2)","pi835261296.htm",378,"653");
navigation[381] = new navElem(381,"Burda Modemagazin 08/07 + Einzelschnitte&nbsp(3)","pi-1909661583.htm",378,"564");
navigation[382] = new navElem(382,"Burda Plus Fashion F/S 08 + H/W 07&nbsp(2)","pi332335793.htm",378,"654");
navigation[383] = new navElem(383,"Futterstoffe&nbsp(20)","pi-298730619.htm",221,"204");
navigation[384] = new navElem(384,"Reststücke/Ballenreste stark reduziert!&nbsp(85)","pi1055510062.htm",221,"232");
navigation[385] = new navElem(385,"Verschlüsse Steckschnallen&nbsp(1)","pi-1735320439.htm",null,"1426");
navigation[386] = new navElem(386,"Reststücke/Ballenreste sortiert","pi1930649792.htm",null,"948");
navigation[387] = new navElem(387,"Sortiert nach Qualität","pi324305345.htm",386,"949");
navigation[388] = new navElem(388,"Ausbrenner&nbsp(1)","pi1459713452.htm",387,"989");
navigation[389] = new navElem(389,"Baumwolle/Batist&nbsp(4)","pi-2008918051.htm",387,"951");
navigation[390] = new navElem(390,"Baumwollmischung&nbsp(13)","pi-175053647.htm",387,"961");
navigation[391] = new navElem(391,"Bestickter Stoff&nbsp(3)","pi-1879573609.htm",387,"977");
navigation[392] = new navElem(392,"Bio-Leinen&nbsp(1)","pi-187039782.htm",387,"952");
navigation[393] = new navElem(393,"Boucle/Strickstoff&nbsp(5)","pi1216590214.htm",387,"955");
navigation[394] = new navElem(394,"Chiffon&nbsp(2)","pi-576673308.htm",387,"986");
navigation[395] = new navElem(395,"Cloqué&nbsp(1)","pi-2013748636.htm",387,"1007");
navigation[396] = new navElem(396,"Cord&nbsp(1)","pi-577826086.htm",387,"992");
navigation[397] = new navElem(397,"Crash/Crinkle&nbsp(3)","pi1686410608.htm",387,"960");
navigation[398] = new navElem(398,"Doubleface&nbsp(1)","pi-1728553832.htm",387,"994");
navigation[399] = new navElem(399,"Fell (Kunst-)/Flausch/Plüsch&nbsp(1)","pi-149616191.htm",387,"1442");
navigation[400] = new navElem(400,"Gabardine&nbsp(2)","pi1364703743.htm",387,"996");
navigation[401] = new navElem(401,"Jackenstoff fest Kunstfaser&nbsp(2)","pi921681446.htm",387,"1482");
navigation[402] = new navElem(402,"Jacquard&nbsp(5)","pi-183900277.htm",387,"959");
navigation[403] = new navElem(403,"Jeans/Köper&nbsp(2)","pi-1388801159.htm",387,"983");
navigation[404] = new navElem(404,"Jersey/Strickjersey uni und meliert&nbsp(6)","pi-818988770.htm",387,"962");
navigation[405] = new navElem(405,"Jersey/Strickjersey gemustert&nbsp(11)","pi679050364.htm",387,"963");
navigation[406] = new navElem(406,"Köper/Jeans&nbsp(2)","pi499893336.htm",387,"982");
navigation[407] = new navElem(407,"Leinen/-mischungen&nbsp(11)","pi447731027.htm",387,"953");
navigation[408] = new navElem(408,"Mesh/Tüll&nbsp(5)","pi752790089.htm",387,"1273");
navigation[409] = new navElem(409,"Metall-Stoffe&nbsp(1)","pi1567214355.htm",387,"981");
navigation[410] = new navElem(410,"Polyester/Polyamid/Polyethylen/-mischungen&nbsp(4)","pi1254381826.htm",387,"1078");
navigation[411] = new navElem(411,"Popeline&nbsp(1)","pi931111571.htm",387,"1183");
navigation[412] = new navElem(412,"Ramie&nbsp(3)","pi-1285694745.htm",387,"1043");
navigation[413] = new navElem(413,"Satin&nbsp(5)","pi735713001.htm",387,"1029");
navigation[414] = new navElem(414,"Seide&nbsp(1)","pi1064241367.htm",387,"990");
navigation[415] = new navElem(415,"Seidenmischungen&nbsp(1)","pi724940748.htm",387,"991");
navigation[416] = new navElem(416,"Spitze&nbsp(1)","pi-866340680.htm",387,"1004");
navigation[417] = new navElem(417,"Steppstoff&nbsp(2)","pi908033463.htm",387,"998");
navigation[418] = new navElem(418,"Stretch&nbsp(9)","pi-2001690042.htm",387,"984");
navigation[419] = new navElem(419,"Stretchbaumwolle&nbsp(1)","pi-241005227.htm",387,"957");
navigation[420] = new navElem(420,"Stretchsatin&nbsp(3)","pi1817668175.htm",387,"985");
navigation[421] = new navElem(421,"Strickstoff/Boucle&nbsp(6)","pi-1605299816.htm",387,"954");
navigation[422] = new navElem(422,"Strick fein&nbsp(5)","pi1740515197.htm",387,"988");
navigation[423] = new navElem(423,"Stickerei-Stoff&nbsp(3)","pi1298195340.htm",387,"978");
navigation[424] = new navElem(424,"Taft/taftartige Stoffe&nbsp(1)","pi-921673639.htm",387,"1005");
navigation[425] = new navElem(425,"Tüll/Mesh&nbsp(5)","pi-715029290.htm",387,"1274");
navigation[426] = new navElem(426,"Viskose/-mischungen&nbsp(5)","pi1369777306.htm",387,"980");
navigation[427] = new navElem(427,"Viskoseleinen&nbsp(3)","pi-847788131.htm",387,"979");
navigation[428] = new navElem(428,"Walk und walkartige Stoffe&nbsp(9)","pi285126451.htm",387,"1001");
navigation[429] = new navElem(429,"Wolle/-mischungen&nbsp(13)","pi886625977.htm",387,"995");
navigation[430] = new navElem(430,"Sortiert nach Farbe","pi-1112656658.htm",386,"950");
navigation[431] = new navElem(431,"Bunt&nbsp(3)","pi1411684495.htm",430,"956");
navigation[432] = new navElem(432,"Weiß/Wollweiß/Champagner/Eierschale&nbsp(18)","pi1583012035.htm",430,"965");
navigation[433] = new navElem(433,"Beige/Natur/Camel/Sand/Schlamm&nbsp(8)","pi-1628915142.htm",430,"976");
navigation[434] = new navElem(434,"Gold/Gelb/Ocker/Vanille&nbsp(5)","pi-696824760.htm",430,"966");
navigation[435] = new navElem(435,"Orange/Rot/Weinrot/Lachs/Koralle&nbsp(7)","pi-164476467.htm",430,"964");
navigation[436] = new navElem(436,"Rosatöne/Pink/Rosé&nbsp(11)","pi521743286.htm",430,"967");
navigation[437] = new navElem(437,"Lilatöne/Brombeer/Aubergine&nbsp(7)","pi-198036737.htm",430,"968");
navigation[438] = new navElem(438,"Blautöne&nbsp(8)","pi191107284.htm",430,"969");
navigation[439] = new navElem(439,"Grüntöne/Khaki/Oliv/Kiwi&nbsp(6)","pi-122327739.htm",430,"970");
navigation[440] = new navElem(440,"Petrol/Türkis/Aqua/Mint&nbsp(9)","pi1884304162.htm",430,"971");
navigation[441] = new navElem(441,"Brauntöne/Rost/Terra/Kupfer&nbsp(19)","pi-486631904.htm",430,"972");
navigation[442] = new navElem(442,"Grautöne/Silber/Kitt&nbsp(18)","pi-1985928287.htm",430,"973");
navigation[443] = new navElem(443,"Schwarz&nbsp(30)","pi2056644942.htm",430,"974");
navigation[444] = new navElem(444,"gold/silber/kupfer schimmernd&nbsp(3)","pi-1988749641.htm",430,"975");
navigation[445] = new navElem(445,"bis zu 30% reduziert: Stoffe Frühjahr/Sommer 2009","pi-1883984929.htm",null,"541");
navigation[446] = new navElem(446,"Sortiert nach Qualität","pi1062201714.htm",445,"862");
navigation[447] = new navElem(447,"Ausbrenner&nbsp(1)","pi1844981297.htm",446,"865");
navigation[448] = new navElem(448,"Bambus&nbsp(1)","pi-114328132.htm",446,"1055");
navigation[449] = new navElem(449,"Baumwolle/Batist&nbsp(5)","pi-1520425826.htm",446,"866");
navigation[450] = new navElem(450,"Baumwoll-Jersey&nbsp(1)","pi2142878223.htm",446,"1072");
navigation[451] = new navElem(451,"Baumwollmischung&nbsp(12)","pi-1277622684.htm",446,"917");
navigation[452] = new navElem(452,"Bestickter Stoff / Stickereistoff&nbsp(2)","pi-1127683093.htm",446,"1031");
navigation[453] = new navElem(453,"Boucle/Strickstoff&nbsp(3)","pi687696861.htm",446,"1034");
navigation[454] = new navElem(454,"Chiffon/Voile&nbsp(2)","pi-1108961725.htm",446,"871");
navigation[455] = new navElem(455,"Crash/Crinkle&nbsp(4)","pi1777890939.htm",446,"877");
navigation[456] = new navElem(456,"Jacquard&nbsp(2)","pi-1537902237.htm",446,"1053");
navigation[457] = new navElem(457,"Jeans + Köper&nbsp(3)","pi72115143.htm",446,"867");
navigation[458] = new navElem(458,"Jersey/Strickjersey gemustert&nbsp(9)","pi1282222925.htm",446,"869");
navigation[459] = new navElem(459,"Jersey/Strickjersey uni + melange&nbsp(1)","pi-1772631414.htm",446,"870");
navigation[460] = new navElem(460,"Jersey Baumwolle mit Elasthan&nbsp(1)","pi1964945906.htm",446,"1045");
navigation[461] = new navElem(461,"Köper + Jeans&nbsp(3)","pi-1923025485.htm",446,"885");
navigation[462] = new navElem(462,"Lederimitat&nbsp(2)","pi1395170681.htm",446,"1050");
navigation[463] = new navElem(463,"Leinen + Leinenmischung&nbsp(10)","pi-1780131756.htm",446,"875");
navigation[464] = new navElem(464,"Mesh/Tüll&nbsp(1)","pi613024376.htm",446,"886");
navigation[465] = new navElem(465,"Metallstoff&nbsp(2)","pi-597636993.htm",446,"874");
navigation[466] = new navElem(466,"Mischgewebe&nbsp(3)","pi1390368160.htm",446,"878");
navigation[467] = new navElem(467,"Polyester/-gemisch&nbsp(4)","pi1914411914.htm",446,"915");
navigation[468] = new navElem(468,"Popeline&nbsp(3)","pi727520336.htm",446,"1036");
navigation[469] = new navElem(469,"Ramie&nbsp(5)","pi1510712109.htm",446,"889");
navigation[470] = new navElem(470,"Seide/Seidenmischung&nbsp(2)","pi-571296562.htm",446,"879");
navigation[471] = new navElem(471,"Stickereistoff / Bestickter Stoff&nbsp(2)","pi1053622289.htm",446,"1032");
navigation[472] = new navElem(472,"Stretch&nbsp(9)","pi760411610.htm",446,"918");
navigation[473] = new navElem(473,"Stretchbaumwolle/Stretchsatin&nbsp(4)","pi-1311616004.htm",446,"868");
navigation[474] = new navElem(474,"Stretch-Jeans/-Köper&nbsp(1)","pi1046747453.htm",446,"882");
navigation[475] = new navElem(475,"Strickstoff&nbsp(3)","pi239639496.htm",446,"872");
navigation[476] = new navElem(476,"Strickstoff fein&nbsp(3)","pi-669122356.htm",446,"1033");
navigation[477] = new navElem(477,"Tüll/Mesh&nbsp(1)","pi202966838.htm",446,"873");
navigation[478] = new navElem(478,"Viskosemischung&nbsp(6)","pi-1080370121.htm",446,"880");
navigation[479] = new navElem(479,"Sortiert nach Farbe","pi-1891076853.htm",445,"863");
navigation[480] = new navElem(480,"Bunt&nbsp(6)","pi-219800342.htm",479,"890");
navigation[481] = new navElem(481,"Weiß/Wollweiß/Champagner/Elfenbein&nbsp(26)","pi-1729277661.htm",479,"891");
navigation[482] = new navElem(482,"Beige/Natur/Camel/Sand/Schlamm&nbsp(4)","pi-228805336.htm",479,"892");
navigation[483] = new navElem(483,"Gold/Gelb/Ocker/Vanille&nbsp(4)","pi1728956425.htm",479,"893");
navigation[484] = new navElem(484,"Orange/Rot/Weinrot&nbsp(10)","pi342114198.htm",479,"894");
navigation[485] = new navElem(485,"Rosatöne/Pink/Rosé/Rosenholz&nbsp(7)","pi507507039.htm",479,"895");
navigation[486] = new navElem(486,"Lilatöne/Brombeer/Aubergine/Fuchsia&nbsp(8)","pi-2133276748.htm",479,"896");
navigation[487] = new navElem(487,"Blautöne&nbsp(7)","pi-762916187.htm",479,"897");
navigation[488] = new navElem(488,"Grüntöne/Khaki/Oliv/Kiwi&nbsp(5)","pi1395868930.htm",479,"898");
navigation[489] = new navElem(489,"Petrol/Türkis/Aqua/Mint&nbsp(2)","pi1719856475.htm",479,"899");
navigation[490] = new navElem(490,"Brauntöne/Rost/Terra/Kupfer/Fango&nbsp(4)","pi1979939584.htm",479,"900");
navigation[491] = new navElem(491,"Grautöne/Silber/Kitt&nbsp(9)","pi-1625383167.htm",479,"901");
navigation[492] = new navElem(492,"Schwarz&nbsp(15)","pi-159590098.htm",479,"902");
navigation[493] = new navElem(493,"gold/silber/kupfer schimmernd&nbsp(1)","pi1687257367.htm",479,"903");
navigation[494] = new navElem(494,"Stoff ist geeignet für:","pi-1801161488.htm",445,"864");
navigation[495] = new navElem(495,"Blazer/Jacken/Blusenjacken&nbsp(16)","pi1824352282.htm",494,"905");
navigation[496] = new navElem(496,"Blusen/Oberteile/Hemden&nbsp(27)","pi1297262739.htm",494,"906");
navigation[497] = new navElem(497,"Shirt/Jerseybluse/Bolero/Wickeljacke&nbsp(11)","pi1013980614.htm",494,"907");
navigation[498] = new navElem(498,"Strickjacke/Twinset/Pulli/Pullunder&nbsp(5)","pi1844781007.htm",494,"908");
navigation[499] = new navElem(499,"Hosen&nbsp(15)","pi-1217752732.htm",494,"909");
navigation[500] = new navElem(500,"Röcke/Kleider&nbsp(33)","pi1633379989.htm",494,"910");
navigation[501] = new navElem(501,"Tuch/Stola/Cape&nbsp(2)","pi-1216682446.htm",494,"911");
navigation[502] = new navElem(502,"bis zu 50% reduziert: Winter-Stoffe","pi-279963587.htm",null,"192");
navigation[503] = new navElem(503,"Sortiert nach Qualität","pi1184575878.htm",502,"502");
navigation[504] = new navElem(504,"Ausbrenner&nbsp(1)","pi1852204209.htm",503,"508");
navigation[505] = new navElem(505,"Baumwolle&nbsp(2)","pi-1867395411.htm",503,"1011");
navigation[506] = new navElem(506,"Baumwollmischung&nbsp(9)","pi1424981575.htm",503,"510");
navigation[507] = new navElem(507,"Bestickter Stoff/Stickerei-Stoff&nbsp(7)","pi-180533276.htm",503,"680");
navigation[508] = new navElem(508,"Bordürenstoffe&nbsp(1)","pi-1823383545.htm",503,"566");
navigation[509] = new navElem(509,"Boucle/Strickstoff&nbsp(11)","pi-2008220548.htm",503,"511");
navigation[510] = new navElem(510,"Bouclé/Tweed&nbsp(6)","pi1768204042.htm",503,"512");
navigation[511] = new navElem(511,"Cord&nbsp(4)","pi-159200184.htm",503,"513");
navigation[512] = new navElem(512,"Cord mit Fell&nbsp(1)","pi1559795199.htm",503,"1013");
navigation[513] = new navElem(513,"Crash/Cloqué&nbsp(5)","pi-1978899558.htm",503,"548");
navigation[514] = new navElem(514,"Doppelgewebe&nbsp(2)","pi-385944372.htm",503,"1434");
navigation[515] = new navElem(515,"Doubleface&nbsp(3)","pi1932883924.htm",503,"1014");
navigation[516] = new navElem(516,"Fellimitat&nbsp(2)","pi928814971.htm",503,"1016");
navigation[517] = new navElem(517,"Gabardine&nbsp(2)","pi2064353382.htm",503,"1428");
navigation[518] = new navElem(518,"Glencheck&nbsp(2)","pi-605181694.htm",503,"567");
navigation[519] = new navElem(519,"Jacquard&nbsp(1)","pi-2105108311.htm",503,"514");
navigation[520] = new navElem(520,"Jeans/Köper&nbsp(1)","pi387116357.htm",503,"516");
navigation[521] = new navElem(521,"Jersey/Strickjersey gemustert&nbsp(9)","pi-943738078.htm",503,"517");
navigation[522] = new navElem(522,"Jersey/Strickjersey uni/Melange&nbsp(1)","pi1401797165.htm",503,"1432");
navigation[523] = new navElem(523,"Köper/Jeans&nbsp(1)","pi817399001.htm",503,"576");
navigation[524] = new navElem(524,"Metallstoff&nbsp(1)","pi-1858757478.htm",503,"563");
navigation[525] = new navElem(525,"Pannesamt&nbsp(1)","pi655134672.htm",503,"1427");
navigation[526] = new navElem(526,"Plüsch/Microplüsch&nbsp(2)","pi992879631.htm",503,"558");
navigation[527] = new navElem(527,"Polyester/Polyamid&nbsp(4)","pi1465203441.htm",503,"552");
navigation[528] = new navElem(528,"Popeline&nbsp(3)","pi-1797071239.htm",503,"550");
navigation[529] = new navElem(529,"Satin&nbsp(8)","pi-1293255420.htm",503,"1429");
navigation[530] = new navElem(530,"Seide/-mischung&nbsp(6)","pi-304816559.htm",503,"562");
navigation[531] = new navElem(531,"Smok&nbsp(1)","pi355536043.htm",503,"569");
navigation[532] = new navElem(532,"Spitze&nbsp(1)","pi-1319683374.htm",503,"1431");
navigation[533] = new navElem(533,"Stepper&nbsp(2)","pi-267989009.htm",503,"1017");
navigation[534] = new navElem(534,"Stickerei-Stoff/Bestickter Stoff&nbsp(6)","pi-1352893675.htm",503,"681");
navigation[535] = new navElem(535,"Stretch&nbsp(12)","pi-974454898.htm",503,"545");
navigation[536] = new navElem(536,"Stretchbaumwolle&nbsp(3)","pi1745769145.htm",503,"1012");
navigation[537] = new navElem(537,"Stretchvelvet&nbsp(1)","pi1598747605.htm",503,"1422");
navigation[538] = new navElem(538,"Strickstoff/Boucle&nbsp(11)","pi1384965173.htm",503,"547");
navigation[539] = new navElem(539,"Taft/taftartig&nbsp(6)","pi-709023356.htm",503,"546");
navigation[540] = new navElem(540,"Tellerrock&nbsp(2)","pi-987582425.htm",503,"1010");
navigation[541] = new navElem(541,"Tweed/Bouclé&nbsp(6)","pi-165476101.htm",503,"518");
navigation[542] = new navElem(542,"Velvet/Stretchvelvet/Baumwollsamt&nbsp(1)","pi-1552008590.htm",503,"1423");
navigation[543] = new navElem(543,"Viskose/-mischung&nbsp(2)","pi-1486831249.htm",503,"1435");
navigation[544] = new navElem(544,"Walk/Lana Cotta/walkartige Stoffe&nbsp(5)","pi1186125728.htm",503,"543");
navigation[545] = new navElem(545,"Wolle/Wollmischung&nbsp(16)","pi-1935598760.htm",503,"549");
navigation[546] = new navElem(546,"Sortiert nach Farbe","pi457578639.htm",502,"503");
navigation[547] = new navElem(547,"Bunt&nbsp(6)","pi-1261001823.htm",546,"519");
navigation[548] = new navElem(548,"Weiß/Wollweiß/Champagner/Eierschale&nbsp(12)","pi603810126.htm",546,"520");
navigation[549] = new navElem(549,"Beige/Natur/Camel/Sand/Schlamm&nbsp(11)","pi1302828727.htm",546,"521");
navigation[550] = new navElem(550,"Gold/Gelb/Ocker/Vanille&nbsp(4)","pi-1835145172.htm",546,"522");
navigation[551] = new navElem(551,"Orange/Rot/Weinrot&nbsp(13)","pi-749119555.htm",546,"523");
navigation[552] = new navElem(552,"Rosatöne/Pink/Rosé&nbsp(6)","pi1774729786.htm",546,"524");
navigation[553] = new navElem(553,"Lilatöne/Brombeer/Aubergine/Fuchsia&nbsp(9)","pi1761761331.htm",546,"525");
navigation[554] = new navElem(554,"Blautöne&nbsp(4)","pi-563653896.htm",546,"526");
navigation[555] = new navElem(555,"Grüntöne/Khaki/Oliv&nbsp(9)","pi1178423782.htm",546,"527");
navigation[556] = new navElem(556,"Petrol/Türkis/Aqua/Mint&nbsp(6)","pi-337901201.htm",546,"528");
navigation[557] = new navElem(557,"Brauntöne/Rost/Terra/Kupfer&nbsp(28)","pi-1763220860.htm",546,"529");
navigation[558] = new navElem(558,"Grautöne/Silber/Kitt&nbsp(14)","pi1982785845.htm",546,"530");
navigation[559] = new navElem(559,"Schwarz&nbsp(32)","pi-268133294.htm",546,"531");
navigation[560] = new navElem(560,"gold/silber/kupfer schimmernd&nbsp(3)","pi-1687070814.htm",546,"1424");
navigation[561] = new navElem(561,"Stoff ist geeignet für:","pi2141197680.htm",502,"507");
navigation[562] = new navElem(562,"Outdoorjacken/Mäntel/Outdoorweste&nbsp(11)","pi1338058347.htm",561,"532");
navigation[563] = new navElem(563,"Blazer/Jacken&nbsp(33)","pi1362617040.htm",561,"533");
navigation[564] = new navElem(564,"Blusen/Oberteile&nbsp(17)","pi546946705.htm",561,"534");
navigation[565] = new navElem(565,"Shirt/Jerseybluse/Rolli/Bolero/Wickeljacke&nbsp(14)","pi1742596903.htm",561,"535");
navigation[566] = new navElem(566,"Strickjacken/Pullis&nbsp(10)","pi-368615460.htm",561,"536");
navigation[567] = new navElem(567,"Hosen&nbsp(9)","pi1852539309.htm",561,"537");
navigation[568] = new navElem(568,"Röcke/Kleider&nbsp(29)","pi-911787670.htm",561,"538");
navigation[569] = new navElem(569,"Kragen/Verzierungen/Futter&nbsp(2)","pi2021282723.htm",561,"539");
navigation[570] = new navElem(570,"bis zu 50% reduziert: Sommer-Stoffe","pi-326540052.htm",null,"611");
navigation[571] = new navElem(571,"Sortiert nach Qualität","pi-1546467971.htm",570,"612");
navigation[572] = new navElem(572,"Ausbrenner&nbsp(2)","pi-1924014228.htm",571,"615");
navigation[573] = new navElem(573,"Baumwolle/Batist&nbsp(4)","pi622808573.htm",571,"616");
navigation[574] = new navElem(574,"Baumwoll-Leinen&nbsp(2)","pi-1266009997.htm",571,"617");
navigation[575] = new navElem(575,"Baumwollmischung&nbsp(19)","pi147013176.htm",571,"618");
navigation[576] = new navElem(576,"Bestickter Stoff&nbsp(5)","pi-2011037401.htm",571,"668");
navigation[577] = new navElem(577,"Bordürenstoffe&nbsp(5)","pi-1367331034.htm",571,"619");
navigation[578] = new navElem(578,"Boucle/Strickstoff&nbsp(1)","pi1983309685.htm",571,"620");
navigation[579] = new navElem(579,"Boucle/Tweed&nbsp(1)","pi255721112.htm",571,"1080");
navigation[580] = new navElem(580,"Crash/Cloqué&nbsp(7)","pi1652182699.htm",571,"622");
navigation[581] = new navElem(581,"Crinkle&nbsp(2)","pi1481270561.htm",571,"713");
navigation[582] = new navElem(582,"Jacquard&nbsp(5)","pi-974293488.htm",571,"623");
navigation[583] = new navElem(583,"Jacquardstretch&nbsp(1)","pi1456480465.htm",571,"624");
navigation[584] = new navElem(584,"Jeans/Köper&nbsp(1)","pi-754959537.htm",571,"1083");
navigation[585] = new navElem(585,"Jersey&nbsp(6)","pi1031542631.htm",571,"627");
navigation[586] = new navElem(586,"Köper/Jeans&nbsp(1)","pi1654040348.htm",571,"628");
navigation[587] = new navElem(587,"Leinen/-mischungen/Tencel&nbsp(17)","pi-375486483.htm",571,"629");
navigation[588] = new navElem(588,"Mesh/Tüll&nbsp(5)","pi-1953155702.htm",571,"1084");
navigation[589] = new navElem(589,"Metallstoffe&nbsp(3)","pi1836434403.htm",571,"631");
navigation[590] = new navElem(590,"Panneaux f. Rock/Kleid&nbsp(2)","pi1103314396.htm",571,"669");
navigation[591] = new navElem(591,"Polyester&nbsp(9)","pi1225461791.htm",571,"634");
navigation[592] = new navElem(592,"Popeline&nbsp(4)","pi1949151092.htm",571,"635");
navigation[593] = new navElem(593,"Satin&nbsp(8)","pi100378342.htm",571,"710");
navigation[594] = new navElem(594,"Seide/-mischungen&nbsp(3)","pi279580517.htm",571,"636");
navigation[595] = new navElem(595,"Smok&nbsp(2)","pi1475965634.htm",571,"637");
navigation[596] = new navElem(596,"Spitze&nbsp(1)","pi-93095909.htm",571,"638");
navigation[597] = new navElem(597,"Stickerei-Stoff&nbsp(5)","pi-1224412290.htm",571,"667");
navigation[598] = new navElem(598,"Stretch&nbsp(14)","pi-2081136960.htm",571,"639");
navigation[599] = new navElem(599,"Stretchbaumwolle/Stretchsatin&nbsp(8)","pi-1357568063.htm",571,"640");
navigation[600] = new navElem(600,"Strickstoff/Boucle&nbsp(1)","pi749677871.htm",571,"683");
navigation[601] = new navElem(601,"Taft&nbsp(2)","pi191940747.htm",571,"1082");
navigation[602] = new navElem(602,"Tweed/Boucle&nbsp(1)","pi245518521.htm",571,"1081");
navigation[603] = new navElem(603,"Viskose/-mischungen&nbsp(11)","pi-553927834.htm",571,"695");
navigation[604] = new navElem(604,"Viskoseleinen&nbsp(5)","pi-846705665.htm",571,"684");
navigation[605] = new navElem(605,"Sortiert nach Farbe","pi-675609350.htm",570,"613");
navigation[606] = new navElem(606,"Bunt&nbsp(7)","pi1992083873.htm",605,"655");
navigation[607] = new navElem(607,"Weiß/Wollweiß/Champagner/Eierschale&nbsp(29)","pi2140542798.htm",605,"656");
navigation[608] = new navElem(608,"Beige/Natur/Camel/Sand/Schlamm&nbsp(13)","pi332541111.htm",605,"657");
navigation[609] = new navElem(609,"Gold/Gelb/Ocker/Vanille&nbsp(16)","pi719210028.htm",605,"658");
navigation[610] = new navElem(610,"Orange/Rot/Weinrot&nbsp(13)","pi-350364227.htm",605,"659");
navigation[611] = new navElem(611,"Rosatöne/Pink/Rosé&nbsp(13)","pi-1481127878.htm",605,"660");
navigation[612] = new navElem(612,"Lilatöne/Brombeer/Aubergine&nbsp(1)","pi95571507.htm",605,"661");
navigation[613] = new navElem(613,"Blautöne&nbsp(6)","pi5869816.htm",605,"662");
navigation[614] = new navElem(614,"Petrol/Türkis/Aqua/Mint&nbsp(5)","pi-1658364049.htm",605,"664");
navigation[615] = new navElem(615,"Grüntöne/Khaki/Oliv&nbsp(13)","pi280084454.htm",605,"663");
navigation[616] = new navElem(616,"Brauntöne/Terra/Rost/Kupfer/Fango&nbsp(23)","pi-261521276.htm",605,"665");
navigation[617] = new navElem(617,"Grautöne/Silber/Kitt&nbsp(14)","pi1611393618.htm",605,"666");
navigation[618] = new navElem(618,"Schwarz&nbsp(23)","pi678623948.htm",605,"643");
navigation[619] = new navElem(619,"gold/silber/kupfer schimmernd&nbsp(9)","pi1695457668.htm",605,"715");
navigation[620] = new navElem(620,"Stoff ist geeignet für:","pi-824673293.htm",570,"614");
navigation[621] = new navElem(621,"Outdoorjacken/Mäntel&nbsp(5)","pi545873373.htm",620,"644");
navigation[622] = new navElem(622,"Blazer/Jacken&nbsp(33)","pi1705397075.htm",620,"645");
navigation[623] = new navElem(623,"Blusen/Oberteile/Hemden&nbsp(52)","pi602245037.htm",620,"670");
navigation[624] = new navElem(624,"Shirt/Bolero/Wickeljacke/shrug&nbsp(6)","pi-1358819911.htm",620,"647");
navigation[625] = new navElem(625,"Strickjacken/Pullis/Westen&nbsp(2)","pi1994205422.htm",620,"682");
navigation[626] = new navElem(626,"Hosen&nbsp(17)","pi-652317041.htm",620,"648");
navigation[627] = new navElem(627,"Röcke/Kleider&nbsp(66)","pi-1146630248.htm",620,"646");
navigation[628] = new navElem(628,"Schnittmuster Pattern Company","pi986578798.htm",null,"241");
navigation[629] = new navElem(629,"Schnitte Sommer 10","pi-190597601.htm",628,"932");
navigation[630] = new navElem(630,"Neu  lieferbare Schnittmuster&nbsp(14)","pi-1177964276.htm",629,"1464");
navigation[631] = new navElem(631,"Mantel/Jacken/Strickjacken&nbsp(9)","pi1557653708.htm",629,"941");
navigation[632] = new navElem(632,"Hosen&nbsp(3)","pi1310986579.htm",629,"943");
navigation[633] = new navElem(633,"Kleider&nbsp(6)","pi-2012396615.htm",629,"944");
navigation[634] = new navElem(634,"Röcke&nbsp(2)","pi-461052131.htm",629,"1465");
navigation[635] = new navElem(635,"Blusen/Tuniken&nbsp(7)","pi-429056634.htm",629,"945");
navigation[636] = new navElem(636,"Shirts/Tops/Deko-Top&nbsp(6)","pi-852192113.htm",629,"946");
navigation[637] = new navElem(637,"Strickjacke/Pulli/Überwurf&nbsp(5)","pi2107828565.htm",629,"947");
navigation[638] = new navElem(638,"Westen&nbsp(3)","pi-1992249830.htm",629,"1466");
navigation[639] = new navElem(639,"Schnitte Winter 09","pi1500477721.htm",628,"1231");
navigation[640] = new navElem(640,"Outdoorjacken/Kurzmäntel&nbsp(4)","pi1755627366.htm",639,"1232");
navigation[641] = new navElem(641,"Jacken/Blazer&nbsp(9)","pi-999601937.htm",639,"1233");
navigation[642] = new navElem(642,"Weste/Overshirt&nbsp(2)","pi-1155363836.htm",639,"1234");
navigation[643] = new navElem(643,"Hosen&nbsp(2)","pi-606194507.htm",639,"1235");
navigation[644] = new navElem(644,"Röcke/Kleider&nbsp(3)","pi-1381375534.htm",639,"1236");
navigation[645] = new navElem(645,"Oberteile/Strickjacken/Pullover&nbsp(12)","pi772590382.htm",639,"1252");
navigation[646] = new navElem(646,"Blusen/Tuniken&nbsp(5)","pi37707243.htm",639,"1237");
navigation[647] = new navElem(647,"Tops/Shirts/Jerseytunika&nbsp(3)","pi2000987216.htm",639,"1238");
navigation[648] = new navElem(648,"Überwurf&nbsp(1)","pi649118225.htm",639,"1239");
navigation[649] = new navElem(649,"Sondermodelle Winter 09&nbsp(22)","pi201584342.htm",628,"1454");
navigation[650] = new navElem(650,"Sondermodelle Sommer 09&nbsp(18)","pi-1641420965.htm",628,"1289");
navigation[651] = new navElem(651,"Schnitt-Kombinationen&nbsp(4)","pi-711013820.htm",628,"1459");
navigation[652] = new navElem(652,"Schnitte sortiert für Walk","pi1641580262.htm",628,"1059");
navigation[653] = new navElem(653,"Materialfavorit Sommerwalk mit Fransenkante&nbsp(5)","pi-361491783.htm",652,"1251");
navigation[654] = new navElem(654,"Materialfavorit Leichtwalker ohne Fransenkante&nbsp(25)","pi1381235599.htm",652,"1253");
navigation[655] = new navElem(655,"Materialfavorit verpresste Wolle, ganz leichter Walk&nbsp(3)","pi859174130.htm",652,"1255");
navigation[656] = new navElem(656,"Materialfavorit schwerer Walk&nbsp(3)","pi1166389796.htm",652,"1254");
navigation[657] = new navElem(657,"Mäntel/Outdoorjacken&nbsp(25)","pi1156935411.htm",652,"1067");
navigation[658] = new navElem(658,"Jacken/Blazer&nbsp(23)","pi-560803144.htm",652,"1068");
navigation[659] = new navElem(659,"Kleid&nbsp(1)","pi589027238.htm",652,"1069");
navigation[660] = new navElem(660,"Shirt/Pulli/Weste&nbsp(6)","pi1529089071.htm",652,"1070");
navigation[661] = new navElem(661,"Schnitte sortiert für Strickjersey/feinen Strick","pi1153062214.htm",628,"1258");
navigation[662] = new navElem(662,"Strick- oder Jerseyjacken&nbsp(9)","pi-1735217793.htm",661,"1262");
navigation[663] = new navElem(663,"Hosen&nbsp(1)","pi-1100441260.htm",661,"1263");
navigation[664] = new navElem(664,"Tops/Shirts Kurzarm&nbsp(7)","pi-1099305054.htm",661,"1265");
navigation[665] = new navElem(665,"Shirts Langarm&nbsp(7)","pi1195027323.htm",661,"1266");
navigation[666] = new navElem(666,"Kleid&nbsp(1)","pi589589445.htm",661,"1264");
navigation[667] = new navElem(667,"Pulli/Rolli/Overshirt&nbsp(8)","pi-215964000.htm",661,"1267");
navigation[668] = new navElem(668,"Weste/Ärmelschal/Stola&nbsp(2)","pi-1703867871.htm",661,"1268");
navigation[669] = new navElem(669,"Schnitte sortiert für dickeren Strickstoff/Boucle","pi-253894321.htm",628,"1259");
navigation[670] = new navElem(670,"Jacken&nbsp(7)","pi-824744408.htm",669,"1269");
navigation[671] = new navElem(671,"Pullis&nbsp(11)","pi-1549474551.htm",669,"1270");
navigation[672] = new navElem(672,"Sonstige Oberteile&nbsp(3)","pi-1090365290.htm",669,"1271");
navigation[673] = new navElem(673,"Schnitte sortiert für Viskose-Jersey","pi690367434.htm",628,"804");
navigation[674] = new navElem(674,"Leggins&nbsp(1)","pi-1906705290.htm",673,"807");
navigation[675] = new navElem(675,"Röcke/Kleider/Tunika&nbsp(9)","pi774071487.htm",673,"808");
navigation[676] = new navElem(676,"Shirts Langarm&nbsp(18)","pi-1652797548.htm",673,"809");
navigation[677] = new navElem(677,"Tops/Shirts Kurzam&nbsp(9)","pi1599665413.htm",673,"810");
navigation[678] = new navElem(678,"Jäckchen/Pulli/Rolli&nbsp(4)","pi216973224.htm",673,"831");
navigation[679] = new navElem(679,"Schnitte sortiert für Leinen und/oder Leichtleinen und/oder Ramie","pi2009225839.htm",628,"1060");
navigation[680] = new navElem(680,"Mäntel/Outdoorjacken/Westen&nbsp(5)","pi-876939383.htm",679,"1061");
navigation[681] = new navElem(681,"Jacken/Blazer&nbsp(7)","pi-1081960170.htm",679,"1062");
navigation[682] = new navElem(682,"Hosen&nbsp(10)","pi1459530975.htm",679,"1063");
navigation[683] = new navElem(683,"Röcke&nbsp(5)","pi919911732.htm",679,"1064");
navigation[684] = new navElem(684,"Kleider&nbsp(10)","pi241302053.htm",679,"1065");
navigation[685] = new navElem(685,"Blusen/Tuniken/Tops&nbsp(12)","pi506869378.htm",679,"1066");
navigation[686] = new navElem(686,"Alle Pattern Company Mehrgrößenschnitte Gr. 34-44/46/48, KH 168 cm","pi1399643036.htm",628,"200");
navigation[687] = new navElem(687,"Sondermodelle Winter 09&nbsp(19)","pi-1396359265.htm",686,"1455");
navigation[688] = new navElem(688,"Sondermodelle Sommer 09&nbsp(18)","pi1253861122.htm",686,"1288");
navigation[689] = new navElem(689,"Schnitt-Kombinationen&nbsp(4)","pi1788306342.htm",686,"1458");
navigation[690] = new navElem(690,"WALK-Modelle&nbsp(35)","pi-1568975718.htm",686,"803");
navigation[691] = new navElem(691,"Modelle für Strickjersey/feinen Strick&nbsp(24)","pi415761429.htm",686,"1260");
navigation[692] = new navElem(692,"Modelle für dickeren Strickstoff/Boucle&nbsp(18)","pi1796445618.htm",686,"1261");
navigation[693] = new navElem(693,"Modelle für Viskosejersey&nbsp(35)","pi2124227015.htm",686,"1178");
navigation[694] = new navElem(694,"Modelle für Leinen und/oder Ramie&nbsp(46)","pi-1305807057.htm",686,"1058");
navigation[695] = new navElem(695,"Mutter-Tochter-Modelle&nbsp(4)","pi-581048133.htm",686,"833");
navigation[696] = new navElem(696,"Mäntel/Outdoorjacken/-weste&nbsp(47)","pi1383121517.htm",686,"283");
navigation[697] = new navElem(697,"Jacken/Blazer/Strickjacken&nbsp(72)","pi113253162.htm",686,"281");
navigation[698] = new navElem(698,"Hosen&nbsp(35)","pi974895323.htm",686,"583");
navigation[699] = new navElem(699,"Röcke&nbsp(34)","pi1085047395.htm",686,"278");
navigation[700] = new navElem(700,"Kleider&nbsp(48)","pi1161289064.htm",686,"279");
navigation[701] = new navElem(701,"Blusen/Tuniken&nbsp(60)","pi-323423244.htm",686,"224");
navigation[702] = new navElem(702,"Tops/Shirts/Jerseytunika/Ärmelschal (shrug)&nbsp(67)","pi-1380099255.htm",686,"210");
navigation[703] = new navElem(703,"Oberteile/Pulli/Rolli/Twinset&nbsp(41)","pi77549078.htm",686,"832");
navigation[704] = new navElem(704,"Cape/Stola/Weste/Corsage/Sonstiges&nbsp(16)","pi-1667320161.htm",686,"223");
navigation[705] = new navElem(705,"Pattern Company Mehrgrößenschnitte in Kurzgrößen 17-23&nbsp(22)","pi-301519273.htm",628,"251");
navigation[706] = new navElem(706,"Pattern Company Mehrgrößenschnitte in Langgrößen 68/72-92&nbsp(14)","pi1839550284.htm",628,"252");
navigation[707] = new navElem(707,"Pattern Company Mehrgrößenschnitte in Komfortgrößen Gr. 46-54/56, KH 168 cm&nbsp(21)","pi222463643.htm",628,"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"));

