//
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 Winter 2010&nbsp(38)","pi-181274682.htm",2,"1501");
navigation[4] = new navElem(4,"Stoffe Pattern Company Sommer 2010&nbsp(32)","pi-1798151124.htm",2,"1408");
navigation[5] = new navElem(5,"Stoffe Pattern Company Winter 2009&nbsp(28)","pi1245136246.htm",2,"1189");
navigation[6] = new navElem(6,"Stoffe Pattern Company Sommer 2009&nbsp(14)","pi1134508479.htm",2,"1190");
navigation[7] = new navElem(7,"Stoffe Pattern Company Winter 2008&nbsp(26)","pi-442580844.htm",2,"1191");
navigation[8] = new navElem(8,"Stoffe Pattern Company Sommer 2008&nbsp(16)","pi1055707653.htm",2,"1192");
navigation[9] = new navElem(9,"Stoffe Pattern Company Sommer + Winter 2006/07&nbsp(16)","pi-57579294.htm",2,"1193");
navigation[10] = new navElem(10,"Sabrina Woman","pi-368266886.htm",1,"1195");
navigation[11] = new navElem(11,"Modellübersicht Sabrina Woman H/W 10 (S1659)&nbsp(42)","pi-1052104806.htm",10,"1664");
navigation[12] = new navElem(12,"Originalstoffe Sabrina Woman H/W 10&nbsp(31)","pi-20415016.htm",10,"1499");
navigation[13] = new navElem(13,"Modellübersicht Sabrina Woman F/S 2010 (S1593)&nbsp(39)","pi1083027117.htm",10,"1467");
navigation[14] = new navElem(14,"Originalstoffe Sabrina Woman F/S 2010&nbsp(26)","pi1576739773.htm",10,"1409");
navigation[15] = new navElem(15,"Originalstoffe Sabrina Woman H/W 09 (S1536)&nbsp(20)","pi380166865.htm",10,"1176");
navigation[16] = new navElem(16,"Originalstoffe Sabrina Woman F/S 09 (S1464)&nbsp(13)","pi-1877823311.htm",10,"1025");
navigation[17] = new navElem(17,"Originalstoffe Sabrina Woman F/S 08 + H/W 08 (S1329 + S1401)&nbsp(17)","pi1650773933.htm",10,"921");
navigation[18] = new navElem(18,"Originalstoffe Sabrina Woman F/S 07 + H/W 07 (S1183 + S1273)&nbsp(10)","pi1923280503.htm",10,"922");
navigation[19] = new navElem(19,"Knipmode deutsch special","pi460692536.htm",1,"1197");
navigation[20] = new navElem(20,"Originalstoffe Knipmode H/W 10&nbsp(29)","pi164289171.htm",19,"1498");
navigation[21] = new navElem(21,"Modellübersicht Knipmode Special F/S 10 &nbsp(17)","pi-2047432306.htm",19,"1488");
navigation[22] = new navElem(22,"Originalstoffe Knipmode special F/S 2010&nbsp(17)","pi2116617267.htm",19,"1410");
navigation[23] = new navElem(23,"Modellübersicht Knipmode Special H/W 09&nbsp(19)","pi-1150248810.htm",19,"1158");
navigation[24] = new navElem(24,"Originalstoffe Knipmode Special H/W 2009&nbsp(14)","pi-748579233.htm",19,"1159");
navigation[25] = new navElem(25,"Modellübersicht Knipmode Special F/S 09&nbsp(14)","pi-1648678465.htm",19,"1074");
navigation[26] = new navElem(26,"Originalstoffe Knipmode Special F/S 09&nbsp(11)","pi-702025580.htm",19,"1075");
navigation[27] = new navElem(27,"Ottobre Woman + kids","pi2121711556.htm",1,"1199");
navigation[28] = new navElem(28,"Modellübersicht Ottobre Woman H/W 2010&nbsp(13)","pi1412667965.htm",27,"1673");
navigation[29] = new navElem(29,"Originalstoffe Ottobre Woman H/W 10&nbsp(10)","pi676212473.htm",27,"1500");
navigation[30] = new navElem(30,"Originalstoffe Ottobre Woman + kids F/S 2010&nbsp(4)","pi1421577976.htm",27,"1411");
navigation[31] = new navElem(31,"Originalstoffe Ottobre Woman F/S + H/W 09&nbsp(3)","pi-1148573103.htm",27,"1218");
navigation[32] = new navElem(32,"Originalstoffe Ottobre Woman + kids 06/07/08&nbsp(5)","pi-1590850078.htm",27,"724");
navigation[33] = new navElem(33,"Lea - Modetrends für gr. Größen","pi1949416742.htm",1,"1198");
navigation[34] = new navElem(34,"Originalstoffe Lea - Modetrends für gr. Größen 2010&nbsp(5)","pi-366643857.htm",33,"1412");
navigation[35] = new navElem(35,"Originalstoffe Lea - Modetrends für gr. Größen 09 (LH699)&nbsp(2)","pi-1790438114.htm",33,"1026");
navigation[36] = new navElem(36,"Burda + Young Fashion + Burda Plus","pi136957301.htm",1,"1200");
navigation[37] = new navElem(37,"Originalstoffe Burda + Einzelschnitte 2010&nbsp(5)","pi1087856260.htm",36,"1413");
navigation[38] = new navElem(38,"Originalstoffe aus Burda 07/08/09&nbsp(4)","pi80199216.htm",36,"723");
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(4)","pi1581519321.htm",39,"1281");
navigation[42] = new navElem(42,"Originalstoffe Diana Moden 08&nbsp(3)","pi-522899395.htm",39,"1279");
navigation[43] = new navElem(43,"NEU: Schnittmuster Pattern Company Winter 10","pi1488811196.htm",null,"1510");
navigation[44] = new navElem(44,"Bereits lieferbare Schnitte Winter 2010&nbsp(28)","pi1280304314.htm",43,"1644");
navigation[45] = new navElem(45,"Mäntel, Jacken, Wickeljacke&nbsp(13)","pi1395551501.htm",43,"1511");
navigation[46] = new navElem(46,"Hosen/Leggin&nbsp(2)","pi392354122.htm",43,"1512");
navigation[47] = new navElem(47,"Kleid/Rock&nbsp(2)","pi1276685827.htm",43,"1513");
navigation[48] = new navElem(48,"Blusen/Tuniken&nbsp(3)","pi-374832650.htm",43,"1515");
navigation[49] = new navElem(49,"Shirts/Rolli&nbsp(9)","pi-1495147457.htm",43,"1516");
navigation[50] = new navElem(50,"Strickjacke/Rolli/Pulli/Pullunder/Weste&nbsp(7)","pi1448366356.htm",43,"1517");
navigation[51] = new navElem(51,"NEU: Stoffe Herbst/Winter 2010","pi-1963758238.htm",null,"1518");
navigation[52] = new navElem(52,"Neu eingetroffen am 1.9.&nbsp(6)","pi81723033.htm",51,"1643");
navigation[53] = new navElem(53,"Neu eingetroffen 27.8.&nbsp(12)","pi-1551731176.htm",51,"1672");
navigation[54] = new navElem(54,"Neu eingetroffen am 23.8.&nbsp(39)","pi941154916.htm",51,"1667");
navigation[55] = new navElem(55,"Sortiert nach Qualität","pi53828192.htm",51,"1519");
navigation[56] = new navElem(56,"Baumwolle/Batist&nbsp(2)","pi1402358525.htm",55,"1523");
navigation[57] = new navElem(57,"Baumwollmischung&nbsp(13)","pi623738227.htm",55,"1524");
navigation[58] = new navElem(58,"Beschichteter oder beflockter Stoff&nbsp(6)","pi-982229192.htm",55,"1525");
navigation[59] = new navElem(59,"Bestickter Stoff / Stickereistoff&nbsp(6)","pi1878669350.htm",55,"1526");
navigation[60] = new navElem(60,"Boucle/Strickstoff&nbsp(19)","pi687846084.htm",55,"1527");
navigation[61] = new navElem(61,"Bouclé/Tweed&nbsp(3)","pi-863075211.htm",55,"1528");
navigation[62] = new navElem(62,"Chiffon&nbsp(6)","pi1630772125.htm",55,"1566");
navigation[63] = new navElem(63,"Crash/Smok/Plissee&nbsp(9)","pi707037068.htm",55,"1565");
navigation[64] = new navElem(64,"Crinkle/Cloqué&nbsp(1)","pi-1703822027.htm",55,"1549");
navigation[65] = new navElem(65,"Cord&nbsp(4)","pi-1806801262.htm",55,"1529");
navigation[66] = new navElem(66,"Doppelgewebe&nbsp(6)","pi1042967417.htm",55,"1622");
navigation[67] = new navElem(67,"Doubleface&nbsp(5)","pi1519319068.htm",55,"1532");
navigation[68] = new navElem(68,"Fell/Pelzimitat/Plüsch&nbsp(1)","pi-653605651.htm",55,"1533");
navigation[69] = new navElem(69,"Gabardine&nbsp(2)","pi-1364633922.htm",55,"1646");
navigation[70] = new navElem(70,"Jackenstoff fest&nbsp(1)","pi-946829879.htm",55,"1537");
navigation[71] = new navElem(71,"Jacquard&nbsp(10)","pi721743109.htm",55,"1616");
navigation[72] = new navElem(72,"Jeans/Köper&nbsp(5)","pi858376178.htm",55,"1631");
navigation[73] = new navElem(73,"Jersey/Strickjersey gemustert alle&nbsp(27)","pi961729829.htm",55,"1559");
navigation[74] = new navElem(74,"Jersey/Strickjersey uni alle&nbsp(43)","pi-816925310.htm",55,"1560");
navigation[75] = new navElem(75,"Jersey Musterung floral&nbsp(1)","pi2120791003.htm",55,"1561");
navigation[76] = new navElem(76,"Jersey Musterung Phantasie&nbsp(18)","pi968777600.htm",55,"1562");
navigation[77] = new navElem(77,"Jersey Musterung grafisch&nbsp(3)","pi1980160924.htm",55,"1634");
navigation[78] = new navElem(78,"Jersey Slinky&nbsp(1)","pi-94035460.htm",55,"1668");
navigation[79] = new navElem(79,"Jersey Strick&nbsp(11)","pi-566996562.htm",55,"1564");
navigation[80] = new navElem(80,"Jersey Viskose/Elasthan uni&nbsp(35)","pi-1874605695.htm",55,"1563");
navigation[81] = new navElem(81,"Jersey Winterjersey&nbsp(7)","pi1990713651.htm",55,"1617");
navigation[82] = new navElem(82,"Jersey mit Volants, Doppelgewebe&nbsp(3)","pi648451494.htm",55,"1627");
navigation[83] = new navElem(83,"Jersey beflockt&nbsp(1)","pi659986723.htm",55,"1629");
navigation[84] = new navElem(84,"Köper/Jeans&nbsp(5)","pi138114928.htm",55,"1632");
navigation[85] = new navElem(85,"Kombinationsstoffe&nbsp(2)","pi-1567614357.htm",55,"1550");
navigation[86] = new navElem(86,"Lederimitat/Kunstleder&nbsp(1)","pi169961626.htm",55,"1567");
navigation[87] = new navElem(87,"Pizzatechnik Aufgefilzte Fäden&nbsp(3)","pi658374715.htm",55,"1636");
navigation[88] = new navElem(88,"Plissee/Crash/Smok&nbsp(9)","pi-1157338881.htm",55,"1635");
navigation[89] = new navElem(89,"Plüsch/Fellimitat&nbsp(1)","pi-1357473364.htm",55,"1623");
navigation[90] = new navElem(90,"Rapportstoff&nbsp(1)","pi1138615059.htm",55,"1621");
navigation[91] = new navElem(91,"Slinky-Jersey&nbsp(1)","pi1934582093.htm",55,"1669");
navigation[92] = new navElem(92,"Smok/Crash/Plissee&nbsp(8)","pi-1617353146.htm",55,"1571");
navigation[93] = new navElem(93,"Stepper&nbsp(4)","pi-597928474.htm",55,"1546");
navigation[94] = new navElem(94,"Stickereistoff/bestickter Stoff&nbsp(6)","pi376753595.htm",55,"1626");
navigation[95] = new navElem(95,"Stretch&nbsp(15)","pi-1776909348.htm",55,"1554");
navigation[96] = new navElem(96,"Stretchbaumwolle&nbsp(1)","pi1056548729.htm",55,"1570");
navigation[97] = new navElem(97,"Stretchcord&nbsp(4)","pi635283737.htm",55,"1637");
navigation[98] = new navElem(98,"Stretchjeans&nbsp(5)","pi327602143.htm",55,"1557");
navigation[99] = new navElem(99,"Strickstoff/Boucle&nbsp(19)","pi542834026.htm",55,"1555");
navigation[100] = new navElem(100,"Strick fein&nbsp(15)","pi-1647294082.htm",55,"1552");
navigation[101] = new navElem(101,"Taft&nbsp(2)","pi-1807673166.htm",55,"1625");
navigation[102] = new navElem(102,"Technostoff/Soft-Shell dünn&nbsp(4)","pi-297239232.htm",55,"1624");
navigation[103] = new navElem(103,"Tüll&nbsp(1)","pi-173035861.htm",55,"1633");
navigation[104] = new navElem(104,"Tweed/Bouclé&nbsp(3)","pi407722356.htm",55,"1603");
navigation[105] = new navElem(105,"Viskose/-mischungen&nbsp(8)","pi1227104039.htm",55,"1553");
navigation[106] = new navElem(106,"Walk und walkartige Stoffe komplett&nbsp(54)","pi-1414023408.htm",55,"1531");
navigation[107] = new navElem(107,"Walk und walkartige Stoffe uni/meliert&nbsp(36)","pi772901802.htm",55,"1534");
navigation[108] = new navElem(108,"Walk und walkartige Stoffe bedruckt/bunt&nbsp(16)","pi-1088896536.htm",55,"1536");
navigation[109] = new navElem(109,"Walk Jacquardwalk&nbsp(9)","pi1427503513.htm",55,"1545");
navigation[110] = new navElem(110,"walkartg. Mischung, Pizzatechnik&nbsp(3)","pi-536657908.htm",55,"1641");
navigation[111] = new navElem(111,"Walk Sommerwalk mit Fransenkante&nbsp(15)","pi-1985083772.htm",55,"1548");
navigation[112] = new navElem(112,"Walk Leichtwalker ohne Fransenkante&nbsp(15)","pi-1413499144.htm",55,"1544");
navigation[113] = new navElem(113,"Walk mittelschwere Qualität&nbsp(1)","pi1576598182.htm",55,"1601");
navigation[114] = new navElem(114,"Walk Tuchloden ganz leichte Ware, Schurwolle /Wollmischung&nbsp(5)","pi1781851188.htm",55,"1558");
navigation[115] = new navElem(115,"Walk gefilzte Wollmischung, Lana Cotta&nbsp(6)","pi-825178416.htm",55,"1551");
navigation[116] = new navElem(116,"Walk Edelstepper&nbsp(4)","pi753384815.htm",55,"1547");
navigation[117] = new navElem(117,"Winterjersey&nbsp(7)","pi120694872.htm",55,"1569");
navigation[118] = new navElem(118,"Wolle/Wollmischung&nbsp(58)","pi-865127509.htm",55,"1530");
navigation[119] = new navElem(119,"Sortiert nach Farbe","pi158549902.htm",51,"1520");
navigation[120] = new navElem(120,"Bunt&nbsp(11)","pi-1502347703.htm",119,"1574");
navigation[121] = new navElem(121,"Weiß/Wollweiß/Champagner/Elfenbein&nbsp(20)","pi1578715350.htm",119,"1575");
navigation[122] = new navElem(122,"Beige/Ecru/Natur/Camel/Sand/Schlamm&nbsp(9)","pi248640244.htm",119,"1576");
navigation[123] = new navElem(123,"Gold/Gelb/Ocker/Vanille/Apricot&nbsp(4)","pi-916319841.htm",119,"2576");
navigation[124] = new navElem(124,"Orange/Rot/Weinrot/Lachs/Koralle&nbsp(28)","pi875490533.htm",119,"1577");
navigation[125] = new navElem(125,"Rosatöne/Pink/Rosé/Rosenholz&nbsp(11)","pi-53898853.htm",119,"1578");
navigation[126] = new navElem(126,"Lilatöne/Magenta/Brombeer/Aubergine/Fuchsia&nbsp(39)","pi671078976.htm",119,"1579");
navigation[127] = new navElem(127,"Blautöne&nbsp(26)","pi906943809.htm",119,"1580");
navigation[128] = new navElem(128,"Grüntöne/Khaki/Oliv/Kiwi&nbsp(20)","pi-1499116946.htm",119,"1581");
navigation[129] = new navElem(129,"Petrol/Türkis/Aqua/Mint&nbsp(16)","pi-1131860404.htm",119,"1582");
navigation[130] = new navElem(130,"Brauntöne/Rost/Terra/Kupfer&nbsp(30)","pi632755411.htm",119,"1583");
navigation[131] = new navElem(131,"Grautöne/Silber/Kitt&nbsp(26)","pi1940142872.htm",119,"1584");
navigation[132] = new navElem(132,"Schwarz&nbsp(37)","pi-1426000122.htm",119,"1585");
navigation[133] = new navElem(133,"gold/silber/kupfer schimmernd&nbsp(1)","pi-85717852.htm",119,"1586");
navigation[134] = new navElem(134,"Kombinationsstoffe&nbsp(2)","pi1918227314.htm",119,"1587");
navigation[135] = new navElem(135,"Stoff ist geeignet für:","pi-653449225.htm",51,"1521");
navigation[136] = new navElem(136,"Mäntel/Outdoorjacken&nbsp(40)","pi1468962571.htm",135,"1588");
navigation[137] = new navElem(137,"Blazer/Jacken/Blusenjacken&nbsp(71)","pi1266970352.htm",135,"1589");
navigation[138] = new navElem(138,"Blusen/Tuniken/Oberteile&nbsp(9)","pi1307779121.htm",135,"1590");
navigation[139] = new navElem(139,"Shirts/Rolli&nbsp(68)","pi-102191458.htm",135,"1591");
navigation[140] = new navElem(140,"Strickjacken/Pulli&nbsp(10)","pi206087623.htm",135,"1592");
navigation[141] = new navElem(141,"Hosen&nbsp(14)","pi1014361596.htm",135,"1593");
navigation[142] = new navElem(142,"Röcke/Kleider&nbsp(107)","pi663436621.htm",135,"1594");
navigation[143] = new navElem(143,"30% reduziert: Stoffe Frühjahr/Sommer 2010","pi1697305589.htm",null,"1321");
navigation[144] = new navElem(144,"Sortiert nach Qualität","pi-751694037.htm",143,"1322");
navigation[145] = new navElem(145,"Ausbrenner&nbsp(3)","pi1254380999.htm",144,"1326");
navigation[146] = new navElem(146,"Baumwolle/Batist&nbsp(7)","pi1481891324.htm",144,"1327");
navigation[147] = new navElem(147,"Baumwoll-Leinen&nbsp(1)","pi-2019793782.htm",144,"1329");
navigation[148] = new navElem(148,"Baumwollmischung&nbsp(14)","pi-1419706020.htm",144,"1351");
navigation[149] = new navElem(149,"Beschichteter Stoff&nbsp(2)","pi1924128973.htm",144,"1443");
navigation[150] = new navElem(150,"Bestickter Stoff/Stickereistoff&nbsp(6)","pi-767171283.htm",144,"1352");
navigation[151] = new navElem(151,"Boucle/Strickstoff&nbsp(9)","pi-2021643767.htm",144,"1355");
navigation[152] = new navElem(152,"Bouclé/Tweed&nbsp(2)","pi1828360628.htm",144,"1356");
navigation[153] = new navElem(153,"Chiffon/Georgette&nbsp(6)","pi804476069.htm",144,"1357");
navigation[154] = new navElem(154,"Crash/Cloqué/Plissee/Krepp&nbsp(8)","pi649201985.htm",144,"1359");
navigation[155] = new navElem(155,"Doppelgewebe&nbsp(2)","pi-49395124.htm",144,"1361");
navigation[156] = new navElem(156,"Doubleface","pi1766020957.htm",144,"1362");
navigation[157] = new navElem(157,"Gabardine&nbsp(1)","pi-946607782.htm",144,"1363");
navigation[158] = new navElem(158,"Georgette/Chiffon&nbsp(6)","pi648798365.htm",144,"1477");
navigation[159] = new navElem(159,"Glencheck&nbsp(1)","pi220651731.htm",144,"1364");
navigation[160] = new navElem(160,"Jackenstoff fest&nbsp(4)","pi1686095911.htm",144,"1602");
navigation[161] = new navElem(161,"Jacquard&nbsp(2)","pi-1819076840.htm",144,"1365");
navigation[162] = new navElem(162,"Jeans + Köper&nbsp(5)","pi947598086.htm",144,"1366");
navigation[163] = new navElem(163,"Jersey/Strickjersey gemustert alle&nbsp(23)","pi1381542052.htm",144,"1367");
navigation[164] = new navElem(164,"Jersey uni + Melange, Tüll/Meshjersey&nbsp(2)","pi-1974907855.htm",144,"1381");
navigation[165] = new navElem(165,"Jersey floral gemustert&nbsp(11)","pi370736341.htm",144,"1368");
navigation[166] = new navElem(166,"Jersey mit Phantasie-Muster&nbsp(8)","pi800318219.htm",144,"1369");
navigation[167] = new navElem(167,"Jersey Retro Blumen, Wellen + grafisch gemustert&nbsp(3)","pi-866465040.htm",144,"1370");
navigation[168] = new navElem(168,"Jersey Strick&nbsp(4)","pi9857694.htm",144,"1382");
navigation[169] = new navElem(169,"Jersey Tüll/Mesh","pi-1886382710.htm",144,"1483");
navigation[170] = new navElem(170,"Köper + Jeans&nbsp(5)","pi-1907750404.htm",144,"1384");
navigation[171] = new navElem(171,"Kombinationsstoffe&nbsp(2)","pi-597033064.htm",144,"1471");
navigation[172] = new navElem(172,"Leinen/-mischungen&nbsp(12)","pi452733261.htm",144,"1385");
navigation[173] = new navElem(173,"Leinen/Stretch&nbsp(2)","pi-1486976478.htm",144,"1491");
navigation[174] = new navElem(174,"Mesh/Tüll&nbsp(5)","pi-575770486.htm",144,"1386");
navigation[175] = new navElem(175,"Plissee/Crash/Cloqué/Krepp&nbsp(7)","pi-131862487.htm",144,"1387");
navigation[176] = new navElem(176,"Polyamid/Polycarbonat/-mischung&nbsp(8)","pi-447345354.htm",144,"1388");
navigation[177] = new navElem(177,"Polyester/Polyethylen/-mischung&nbsp(15)","pi1602147967.htm",144,"1389");
navigation[178] = new navElem(178,"Popeline&nbsp(2)","pi745585861.htm",144,"1390");
navigation[179] = new navElem(179,"Seide/-mischungen&nbsp(6)","pi874458016.htm",144,"1393");
navigation[180] = new navElem(180,"Spitze&nbsp(1)","pi-223581407.htm",144,"1394");
navigation[181] = new navElem(181,"Stickerei-Stoff/bestickter Stoff&nbsp(6)","pi-120154307.htm",144,"1396");
navigation[182] = new navElem(182,"Stretch&nbsp(12)","pi-581983309.htm",144,"1397");
navigation[183] = new navElem(183,"Stretchbaumwolle/Stretchsatin&nbsp(5)","pi-318726887.htm",144,"1398");
navigation[184] = new navElem(184,"Stretchjeans/-köper&nbsp(4)","pi-1082125466.htm",144,"1399");
navigation[185] = new navElem(185,"Stretchleinen&nbsp(2)","pi376507631.htm",144,"1400");
navigation[186] = new navElem(186,"Strickstoff/Boucle&nbsp(9)","pi1413349380.htm",144,"1401");
navigation[187] = new navElem(187,"Strickstoff fein&nbsp(9)","pi1877579957.htm",144,"1402");
navigation[188] = new navElem(188,"Tüll/Mesh&nbsp(5)","pi1230661137.htm",144,"1404");
navigation[189] = new navElem(189,"Tweed/Bouclé&nbsp(2)","pi-1178804569.htm",144,"1405");
navigation[190] = new navElem(190,"Viskose/-mischungen&nbsp(9)","pi2051121453.htm",144,"1406");
navigation[191] = new navElem(191,"Viskoseleinen&nbsp(1)","pi-1634221334.htm",144,"1407");
navigation[192] = new navElem(192,"Sortiert nach Farbe","pi1294814352.htm",143,"1323");
navigation[193] = new navElem(193,"Bunt&nbsp(9)","pi1111934408.htm",192,"1330");
navigation[194] = new navElem(194,"Weiß/Wollweiß/Champagner/Elfenbein&nbsp(43)","pi-970820567.htm",192,"1331");
navigation[195] = new navElem(195,"Beige/Natur/Camel/Sand/Schlamm&nbsp(4)","pi-978632394.htm",192,"1332");
navigation[196] = new navElem(196,"Gold/Gelb/Ocker/Vanille/Apricot&nbsp(11)","pi1529936511.htm",192,"1333");
navigation[197] = new navElem(197,"Orange/Rot/Weinrot/Lachs/Koralle&nbsp(17)","pi1835672148.htm",192,"1334");
navigation[198] = new navElem(198,"Rosatöne/Pink/Rosé/Rosenholz&nbsp(9)","pi-2021687099.htm",192,"1335");
navigation[199] = new navElem(199,"Lilatöne/Brombeer/Aubergine/Fuchsia&nbsp(18)","pi-440416133.htm",192,"1336");
navigation[200] = new navElem(200,"Blautöne&nbsp(9)","pi-1466646624.htm",192,"1337");
navigation[201] = new navElem(201,"Grüntöne/Khaki/Oliv/Kiwi&nbsp(14)","pi-988926258.htm",192,"1338");
navigation[202] = new navElem(202,"Petrol/Türkis/Aqua/Mint&nbsp(8)","pi-1895084489.htm",192,"1339");
navigation[203] = new navElem(203,"Brauntöne/Rost/Terra/Kupfer/Fango&nbsp(18)","pi1444698042.htm",192,"1340");
navigation[204] = new navElem(204,"Grautöne/Silber/Kitt&nbsp(13)","pi1716291507.htm",192,"1341");
navigation[205] = new navElem(205,"Schwarz&nbsp(20)","pi1797172344.htm",192,"1342");
navigation[206] = new navElem(206,"gold/silber/kupfer schimmernd&nbsp(3)","pi693641497.htm",192,"1343");
navigation[207] = new navElem(207,"Kombinationsstoffe&nbsp(2)","pi-398164551.htm",192,"1472");
navigation[208] = new navElem(208,"Stoff ist geeignet für:","pi-1749035695.htm",143,"1324");
navigation[209] = new navElem(209,"Outdoorjacken/Mäntel","pi1814311151.htm",208,"1344");
navigation[210] = new navElem(210,"Blazer/Jacken/Blusenjacken&nbsp(27)","pi-1730061131.htm",208,"1345");
navigation[211] = new navElem(211,"Blusen/Tuniken/Oberteile/Weste&nbsp(24)","pi-1121457710.htm",208,"1346");
navigation[212] = new navElem(212,"Shirt/Jerseybluse/Bolero/Shrug&nbsp(27)","pi-233706416.htm",208,"1347");
navigation[213] = new navElem(213,"Strickjacken/Twinset/Pulli&nbsp(7)","pi729180689.htm",208,"1348");
navigation[214] = new navElem(214,"Hosen&nbsp(14)","pi-161748226.htm",208,"1349");
navigation[215] = new navElem(215,"Röcke/Kleider&nbsp(55)","pi751338151.htm",208,"1350");
navigation[216] = new navElem(216,"Stola/Überwurf&nbsp(2)","pi302140464.htm",208,"1492");
navigation[217] = new navElem(217,"Stoffe komplett","pi-247953855.htm",null,"240");
navigation[218] = new navElem(218,"Sortiert nach Qualität","pi-1597816387.htm",217,"127");
navigation[219] = new navElem(219,"Ausbrenner&nbsp(8)","pi1936008260.htm",218,"50");
navigation[220] = new navElem(220,"Bänder (Rips/Tüll)&nbsp(4)","pi2114740066.htm",218,"375");
navigation[221] = new navElem(221,"Bambus&nbsp(1)","pi995099149.htm",218,"1056");
navigation[222] = new navElem(222,"Baumwolle/Batist&nbsp(22)","pi218066529.htm",218,"43");
navigation[223] = new navElem(223,"Baumwoll-Jersey&nbsp(2)","pi1824830347.htm",218,"1046");
navigation[224] = new navElem(224,"Baumwoll-Leinen&nbsp(1)","pi-583648899.htm",218,"365");
navigation[225] = new navElem(225,"Baumwollmischung&nbsp(65)","pi1120696660.htm",218,"366");
navigation[226] = new navElem(226,"Beschichteter oder beflockter Stoff&nbsp(9)","pi522367498.htm",218,"1444");
navigation[227] = new navElem(227,"Bestickter Stoff/Stickerei-Stoff&nbsp(23)","pi-1259146103.htm",218,"671");
navigation[228] = new navElem(228,"Bio-Leinen&nbsp(10)","pi1388245995.htm",218,"888");
navigation[229] = new navElem(229,"Bordürenstoffe&nbsp(5)","pi353255891.htm",218,"23");
navigation[230] = new navElem(230,"Boucle/Strickstoff&nbsp(49)","pi719937026.htm",218,"5");
navigation[231] = new navElem(231,"Bouclé/Tweed&nbsp(18)","pi-1800415674.htm",218,"26");
navigation[232] = new navElem(232,"Chiffon/Georgette&nbsp(14)","pi-466302934.htm",218,"367");
navigation[233] = new navElem(233,"Cord&nbsp(12)","pi-1919177779.htm",218,"4");
navigation[234] = new navElem(234,"Crash&nbsp(35)","pi1080775112.htm",218,"368");
navigation[235] = new navElem(235,"Crinkle&nbsp(5)","pi-1087410994.htm",218,"714");
navigation[236] = new navElem(236,"Doppelgewebe&nbsp(21)","pi1155926762.htm",218,"1225");
navigation[237] = new navElem(237,"Doubleface&nbsp(21)","pi1059049723.htm",218,"854");
navigation[238] = new navElem(238,"Fell-/Pelzimitat/Plüsch&nbsp(6)","pi1190708681.htm",218,"585");
navigation[239] = new navElem(239,"Gabardine&nbsp(7)","pi496941896.htm",218,"572");
navigation[240] = new navElem(240,"Georgette/Chiffon&nbsp(14)","pi1847278288.htm",218,"1461");
navigation[241] = new navElem(241,"Glencheck&nbsp(5)","pi-450985637.htm",218,"568");
navigation[242] = new navElem(242,"Jackenstoff fest&nbsp(11)","pi1330149145.htm",218,"1227");
navigation[243] = new navElem(243,"Jacquard&nbsp(18)","pi1140876192.htm",218,"108");
navigation[244] = new navElem(244,"Javanaise Viskose&nbsp(1)","pi392516779.htm",218,"1475");
navigation[245] = new navElem(245,"Jeans/Köper uni + meliert&nbsp(12)","pi-542719045.htm",218,"32");
navigation[246] = new navElem(246,"Jeans/Köper bedruckt&nbsp(3)","pi-1965564108.htm",218,"1662");
navigation[247] = new navElem(247,"Jersey/Strickjersey gemustert alle&nbsp(80)","pi182825452.htm",218,"45");
navigation[248] = new navElem(248,"Jersey/Strick uni + Melange, Tüll/Meshjersey&nbsp(60)","pi725445156.htm",218,"836");
navigation[249] = new navElem(249,"Jersey Musterung floral&nbsp(14)","pi-395767387.htm",218,"1208");
navigation[250] = new navElem(250,"Jersey Musterung Phantasie&nbsp(36)","pi-1470833932.htm",218,"1210");
navigation[251] = new navElem(251,"Jersey Musterung Retro, grafisch  &nbsp(24)","pi814897154.htm",218,"1209");
navigation[252] = new navElem(252,"Jersey Baumwolle mit Elasthan&nbsp(2)","pi24678577.htm",218,"1047");
navigation[253] = new navElem(253,"Jersey beflockt&nbsp(1)","pi-1852941016.htm",218,"1630");
navigation[254] = new navElem(254,"Jersey Slinky&nbsp(1)","pi799784003.htm",218,"1670");
navigation[255] = new navElem(255,"Jersey Strick&nbsp(18)","pi279428654.htm",218,"1257");
navigation[256] = new navElem(256,"Jersey Viskose/Elasthan uni&nbsp(44)","pi1364724133.htm",218,"1009");
navigation[257] = new navElem(257,"Jersey mit Volants/Doppelgewebe&nbsp(3)","pi1773473926.htm",218,"1640");
navigation[258] = new navElem(258,"Jersey Winterjersey&nbsp(8)","pi1821369627.htm",218,"1639");
navigation[259] = new navElem(259,"Köper/Jeans uni + meliert&nbsp(12)","pi240269999.htm",218,"577");
navigation[260] = new navElem(260,"Köper/Jeans bedruckt&nbsp(3)","pi2133055617.htm",218,"1663");
navigation[261] = new navElem(261,"Kombinationsstoffe&nbsp(8)","pi-297906298.htm",218,"1473");
navigation[262] = new navElem(262,"Kurzhaar-Zottel&nbsp(3)","pi1491874430.htm",218,"1222");
navigation[263] = new navElem(263,"Lederimitat&nbsp(3)","pi-589405114.htm",218,"1051");
navigation[264] = new navElem(264,"Leinen uni + meliert&nbsp(22)","pi-717145220.htm",218,"1660");
navigation[265] = new navElem(265,"Leinen bedruckt/bestickt&nbsp(11)","pi-1964450611.htm",218,"1661");
navigation[266] = new navElem(266,"Leichtleinen&nbsp(6)","pi323528090.htm",218,"1421");
navigation[267] = new navElem(267,"Leinenmischungen/-strick&nbsp(13)","pi-515800096.htm",218,"42");
navigation[268] = new navElem(268,"Leinen/Stretch&nbsp(2)","pi1127383109.htm",218,"1490");
navigation[269] = new navElem(269,"Mesh/Tüll&nbsp(8)","pi-981230639.htm",218,"369");
navigation[270] = new navElem(270,"Metall-Stoffe&nbsp(6)","pi1048295107.htm",218,"370");
navigation[271] = new navElem(271,"Microflausch&nbsp(1)","pi-835721250.htm",218,"1205");
navigation[272] = new navElem(272,"Nicki&nbsp(2)","pi-2012567849.htm",218,"90");
navigation[273] = new navElem(273,"Pannesamt&nbsp(1)","pi1325461457.htm",218,"818");
navigation[274] = new navElem(274,"Pelz-/Fellimitat/Plüsch&nbsp(5)","pi-1903509019.htm",218,"203");
navigation[275] = new navElem(275,"Pizzatechnik Aufgefilzte Fäden&nbsp(6)","pi2576025.htm",218,"35");
navigation[276] = new navElem(276,"Plissee/Crash/Cloqué/Krepp&nbsp(36)","pi1449487732.htm",218,"1202");
navigation[277] = new navElem(277,"Plüsch/Microplüsch&nbsp(3)","pi-733884252.htm",218,"559");
navigation[278] = new navElem(278,"Polyamid/Polycarbonat/-mischung&nbsp(13)","pi-1463383009.htm",218,"1040");
navigation[279] = new navElem(279,"Polyester/Polyethylen/-mischung&nbsp(50)","pi507650298.htm",218,"372");
navigation[280] = new navElem(280,"Popeline&nbsp(9)","pi-601179565.htm",218,"163");
navigation[281] = new navElem(281,"Ramie&nbsp(5)","pi-603920466.htm",218,"931");
navigation[282] = new navElem(282,"Rapportstoff&nbsp(2)","pi-524573922.htm",218,"712");
navigation[283] = new navElem(283,"Rips&nbsp(1)","pi16791345.htm",218,"92");
navigation[284] = new navElem(284,"Samt/Stretchsamt&nbsp(2)","pi-773898129.htm",218,"1185");
navigation[285] = new navElem(285,"Satin&nbsp(16)","pi-525403537.htm",218,"711");
navigation[286] = new navElem(286,"Seide/-mischungen&nbsp(19)","pi529283611.htm",218,"226");
navigation[287] = new navElem(287,"Slinky-Jersey&nbsp(1)","pi-1497547795.htm",218,"697");
navigation[288] = new navElem(288,"Smok&nbsp(4)","pi563941073.htm",218,"570 ");
navigation[289] = new navElem(289,"Spitze&nbsp(7)","pi-378242359.htm",218,"556");
navigation[290] = new navElem(290,"Stepper&nbsp(20)","pi-2090110756.htm",218,"193");
navigation[291] = new navElem(291,"Stickerei-Stoff/bestickter Stoff&nbsp(23)","pi-93503614.htm",218,"674");
navigation[292] = new navElem(292,"Stretch&nbsp(64)","pi1192799898.htm",218,"113");
navigation[293] = new navElem(293,"Stretchbaumwolle/Stretchsatin&nbsp(25)","pi961645838.htm",218,"44");
navigation[294] = new navElem(294,"Stretchcord&nbsp(7)","pi1461923686.htm",218,"1638");
navigation[295] = new navElem(295,"Stretchjeans/-köper&nbsp(11)","pi1244055445.htm",218,"131");
navigation[296] = new navElem(296,"Stretchleinen&nbsp(2)","pi1250897139.htm",218,"47");
navigation[297] = new navElem(297,"Strickstoff/Boucle&nbsp(48)","pi1094804860.htm",218,"381");
navigation[298] = new navElem(298,"Strickstoff fein&nbsp(28)","pi-2082197885.htm",218,"930");
navigation[299] = new navElem(299,"Taft/taftartige Stoffe&nbsp(8)","pi1120946276.htm",218,"198");
navigation[300] = new navElem(300,"Technostoff/Soft-Shell dünn&nbsp(4)","pi277157689.htm",218,"800");
navigation[301] = new navElem(301,"Tellerröcke&nbsp(2)","pi1479296599.htm",218,"21");
navigation[302] = new navElem(302,"Tencel/-Leinen&nbsp(2)","pi2123669482.htm",218,"117");
navigation[303] = new navElem(303,"Tüll/Mesh&nbsp(8)","pi25382503.htm",218,"916");
navigation[304] = new navElem(304,"Tweed/Bouclé&nbsp(18)","pi334518982.htm",218,"130");
navigation[305] = new navElem(305,"Velvet/Baumwollsamt mit und ohne Stretch&nbsp(5)","pi-1727646381.htm",218,"64");
navigation[306] = new navElem(306,"Viskose/-mischungen&nbsp(41)","pi1801484095.htm",218,"373");
navigation[307] = new navElem(307,"Viskoseleinen&nbsp(5)","pi-1467089630.htm",218,"374");
navigation[308] = new navElem(308,"komplett Walk u. walkartige Stoffe, Wollfilz, Pizza&nbsp(77)","pi-160072574.htm",218,"225");
navigation[309] = new navElem(309,"Walk und walkartige Stoffe uni&nbsp(36)","pi333659937.htm",218,"1596");
navigation[310] = new navElem(310,"Walk und walkartige Stoffe bedruckt/bunt&nbsp(27)","pi-273723514.htm",218,"849");
navigation[311] = new navElem(311,"Walk mit Jacquard-Musterung&nbsp(9)","pi-491801029.htm",218,"1213");
navigation[312] = new navElem(312,"walkartg. Mischung, Pizzatechnik&nbsp(3)","pi-146766201.htm",218,"1642");
navigation[313] = new navElem(313,"Walk Sommerwalk mit Fransenkante&nbsp(18)","pi-1606452601.htm",218,"844");
navigation[314] = new navElem(314,"Walk mittelschwere + dickere Qualität&nbsp(4)","pi-787400573.htm",218,"1174");
navigation[315] = new navElem(315,"Walk Leichtwalker ohne Fransenkante&nbsp(15)","pi1841456609.htm",218,"846");
navigation[316] = new navElem(316,"Walk ganz leichte Ware, Tuchloden, Schurwolle /Wollmischung&nbsp(5)","pi193373366.htm",218,"1216");
navigation[317] = new navElem(317,"Walk gefilzte Wollmischung, Lana Cotta, Strickloden&nbsp(13)","pi1475774816.htm",218,"845");
navigation[318] = new navElem(318,"Walk Crash/Crinkle/Cloqué&nbsp(1)","pi-959672598.htm",218,"1188");
navigation[319] = new navElem(319,"Walk Edelstepper/Doubleface&nbsp(12)","pi-558195254.htm",218,"1173");
navigation[320] = new navElem(320,"Winterjersey&nbsp(8)","pi1682332369.htm",218,"63");
navigation[321] = new navElem(321,"Wolle/Wollmischung&nbsp(104)","pi-1732880518.htm",218,"150");
navigation[322] = new navElem(322,"Woll-Spitze&nbsp(4)","pi-777246107.htm",218,"1180");
navigation[323] = new navElem(323,"Zottel Kurzhaar&nbsp(3)","pi407422928.htm",218,"1220");
navigation[324] = new navElem(324,"Sortiert nach Farbe","pi765615162.htm",217,"128");
navigation[325] = new navElem(325,"Bunt&nbsp(34)","pi-891645930.htm",324,"14");
navigation[326] = new navElem(326,"Weiß/Wollweiß/Champagner/Elfenbein&nbsp(138)","pi-54860438.htm",324,"11");
navigation[327] = new navElem(327,"Beige/Ecru/Natur/Camel/Sand/Schlamm&nbsp(55)","pi1773832012.htm",324,"22");
navigation[328] = new navElem(328,"Gold/Gelb/Ocker/Vanille/Apricot&nbsp(43)","pi-1200993736.htm",324,"160");
navigation[329] = new navElem(329,"Orange/Rot/Weinrot/Lachs/Koralle&nbsp(94)","pi1978240052.htm",324,"16");
navigation[330] = new navElem(330,"Rosatöne/Pink/Rosé/Rosenholz&nbsp(51)","pi-414349440.htm",324,"18");
navigation[331] = new navElem(331,"Lilatöne/Magenta/Brombeer/Aubergine/Fuchsia&nbsp(108)","pi-944530046.htm",324,"17");
navigation[332] = new navElem(332,"Blautöne&nbsp(54)","pi492771295.htm",324,"15");
navigation[333] = new navElem(333,"Grüntöne/Khaki/Oliv/Kiwi&nbsp(70)","pi-742080414.htm",324,"154");
navigation[334] = new navElem(334,"Petrol/Türkis/Aqua/Mint&nbsp(43)","pi872091001.htm",324,"19");
navigation[335] = new navElem(335,"Brauntöne/Rost/Terra/Kupfer/Fango&nbsp(124)","pi-321867352.htm",324,"13");
navigation[336] = new navElem(336,"Grautöne/Silber/Kitt&nbsp(96)","pi888769766.htm",324,"25");
navigation[337] = new navElem(337,"Schwarz&nbsp(152)","pi-656056915.htm",324,"10");
navigation[338] = new navElem(338,"gold/silber/kupfer schimmernd&nbsp(18)","pi-1246823371.htm",324,"716");
navigation[339] = new navElem(339,"Kombinationsstoffe&nbsp(8)","pi-1612292465.htm",324,"1474");
navigation[340] = new navElem(340,"Stoff ist geeignet für:","pi841197525.htm",217,"173");
navigation[341] = new navElem(341,"Outdoorjacken/Mäntel&nbsp(80)","pi1549351374.htm",340,"180");
navigation[342] = new navElem(342,"Blazer/Jacken/Blusenjacken&nbsp(219)","pi1560769008.htm",340,"175");
navigation[343] = new navElem(343,"Westen aus Strick/Walk/Stepp&nbsp(29)","pi1524471416.htm",340,"1181");
navigation[344] = new navElem(344,"Blusen/Tuniken/Oberteile/leichte Westen&nbsp(132)","pi1680028749.htm",340,"178");
navigation[345] = new navElem(345,"Shirt/Jerseybluse/Rolli/Bolero/Wickeljacke/shrug&nbsp(143)","pi-693328079.htm",340,"176");
navigation[346] = new navElem(346,"Strickjacken/Twinset/Pulli/Pullunder&nbsp(53)","pi-795883709.htm",340,"179");
navigation[347] = new navElem(347,"Hosen&nbsp(87)","pi-1492482549.htm",340,"277");
navigation[348] = new navElem(348,"Röcke/Kleider&nbsp(331)","pi735675591.htm",340,"177");
navigation[349] = new navElem(349,"Kragen/Verzierungen/Bänder/Stola/Schal&nbsp(14)","pi702834355.htm",340,"181");
navigation[350] = new navElem(350,"Designerstoffe + Made in Italy&nbsp(4)","pi714083756.htm",217,"110");
navigation[351] = new navElem(351,"Originalstoffe Pattern Company","pi369024073.htm",217,"334");
navigation[352] = new navElem(352,"Pattern Company Winter 10&nbsp(38)","pi-520622770.htm",351,"1539");
navigation[353] = new navElem(353,"Pattern Company Sommer 2010&nbsp(32)","pi1752411620.htm",351,"228");
navigation[354] = new navElem(354,"Pattern Company Winter 2009&nbsp(28)","pi1404148737.htm",351,"1163");
navigation[355] = new navElem(355,"Pattern Company Sommer 2009&nbsp(15)","pi-223332397.htm",351,"912");
navigation[356] = new navElem(356,"Pattern Company Winter 2008&nbsp(26)","pi-893725213.htm",351,"784");
navigation[357] = new navElem(357,"Pattern Company Sommer 2008&nbsp(17)","pi2043171669.htm",351,"650");
navigation[358] = new navElem(358,"Pattern Company Winter 2007&nbsp(6)","pi-541803807.htm",351,"544");
navigation[359] = new navElem(359,"Pattern Company Sommer 2007&nbsp(10)","pi-1706137356.htm",351,"336");
navigation[360] = new navElem(360,"Originalstoffe Sabrina Woman + Lea + Diana","pi247212024.htm",217,"686");
navigation[361] = new navElem(361,"Sabrina Woman H/W 10&nbsp(31)","pi-1740059977.htm",360,"1540");
navigation[362] = new navElem(362,"Sabrina Woman F/S 2010 (S1593)&nbsp(26)","pi1691964011.htm",360,"1415");
navigation[363] = new navElem(363,"Sabrina Woman H/W 2009 (S1536)&nbsp(20)","pi1764811355.htm",360,"1162");
navigation[364] = new navElem(364,"Sabrina Woman F/S 2009 (S1464)&nbsp(13)","pi1155319195.htm",360,"919");
navigation[365] = new navElem(365,"Sabrina Woman H/W 2008 (S1401)&nbsp(5)","pi1378364310.htm",360,"796");
navigation[366] = new navElem(366,"Sabrina Woman F/S 2008 (S1329)&nbsp(13)","pi1330971634.htm",360,"651");
navigation[367] = new navElem(367,"Sabrina Woman F/S+H/W 2007 (S1273)&nbsp(10)","pi-490918027.htm",360,"542");
navigation[368] = new navElem(368,"Sabrina Woman Big Size 2006&nbsp(1)","pi-1454306518.htm",360,"379");
navigation[369] = new navElem(369,"Lea Modetrends für gr. Größen 2010&nbsp(5)","pi-1107321136.htm",360,"1416");
navigation[370] = new navElem(370,"Lea Modetrends für große Größen 07/08/09&nbsp(7)","pi368909707.htm",360,"652");
navigation[371] = new navElem(371,"Diana Moden 2010&nbsp(2)","pi-1191517826.htm",360,"1417");
navigation[372] = new navElem(372,"Diana Moden 09&nbsp(4)","pi-1287644890.htm",360,"1282");
navigation[373] = new navElem(373,"Diana Moden 08&nbsp(3)","pi127207097.htm",360,"700");
navigation[374] = new navElem(374,"Originalstoffe Knipmode Special in deutsch","pi-2084581831.htm",217,"913");
navigation[375] = new navElem(375,"Knipmode special H/W 10&nbsp(29)","pi-2052322260.htm",374,"1541");
navigation[376] = new navElem(376,"Knipmode Special F/S 2010&nbsp(17)","pi1412486951.htm",374,"1418");
navigation[377] = new navElem(377,"Knipmode Special H/W 09&nbsp(14)","pi494874114.htm",374,"1161");
navigation[378] = new navElem(378,"Knipmode Special F/S 09&nbsp(11)","pi1198849957.htm",374,"1160");
navigation[379] = new navElem(379,"Originalstoffe Ottobre Woman + kids  ","pi380958720.htm",217,"340");
navigation[380] = new navElem(380,"Ottobre Woman H/W 10&nbsp(10)","pi1093512125.htm",379,"1542");
navigation[381] = new navElem(381,"Ottobre Woman + kids F/S 2010&nbsp(4)","pi4202769.htm",379,"229");
navigation[382] = new navElem(382,"Ottobre Woman H/W 09&nbsp(3)","pi-931292117.htm",379,"1217");
navigation[383] = new navElem(383,"Ottobre Woman F/S 09 + kids 09&nbsp(2)","pi-2145265744.htm",379,"914");
navigation[384] = new navElem(384,"Ottobre Woman 07/08 + kids 07/08&nbsp(5)","pi252266834.htm",379,"688");
navigation[385] = new navElem(385,"Originalstoffe Burda/Young Fashion/Plus Fashion","pi-474177229.htm",217,"685");
navigation[386] = new navElem(386,"Burda Modemagazin 2010 + Einzelschnitte&nbsp(5)","pi-190653476.htm",385,"1419");
navigation[387] = new navElem(387,"Burda Modemagazin 09/08/07 + Einzelschnitte&nbsp(4)","pi-1909661583.htm",385,"564");
navigation[388] = new navElem(388,"Burda Plus Fashion F/S 08 + H/W 07&nbsp(2)","pi332335793.htm",385,"654");
navigation[389] = new navElem(389,"Futterstoffe&nbsp(19)","pi-298730619.htm",217,"204");
navigation[390] = new navElem(390,"Reststücke/Ballenreste stark reduziert!&nbsp(77)","pi1055510062.htm",217,"232");
navigation[391] = new navElem(391,"Verschlüsse Steckschnallen&nbsp(2)","pi-1735320439.htm",null,"1426");
navigation[392] = new navElem(392,"Reststücke/Ballenreste sortiert","pi1930649792.htm",null,"948");
navigation[393] = new navElem(393,"Sortiert nach Qualität","pi324305345.htm",392,"949");
navigation[394] = new navElem(394,"Ausbrenner&nbsp(1)","pi1459713452.htm",393,"989");
navigation[395] = new navElem(395,"Baumwolle/Batist&nbsp(6)","pi-2008918051.htm",393,"951");
navigation[396] = new navElem(396,"Baumwollmischung&nbsp(18)","pi-175053647.htm",393,"961");
navigation[397] = new navElem(397,"Bestickter Stoff&nbsp(2)","pi-1879573609.htm",393,"977");
navigation[398] = new navElem(398,"Bio-Leinen&nbsp(1)","pi-187039782.htm",393,"952");
navigation[399] = new navElem(399,"Boucle/Strickstoff&nbsp(5)","pi1216590214.htm",393,"955");
navigation[400] = new navElem(400,"Bouclé/Tweed&nbsp(1)","pi1716491965.htm",393,"999");
navigation[401] = new navElem(401,"Chiffon&nbsp(1)","pi-576673308.htm",393,"986");
navigation[402] = new navElem(402,"Cord&nbsp(3)","pi-577826086.htm",393,"992");
navigation[403] = new navElem(403,"Crash/Crinkle&nbsp(4)","pi1686410608.htm",393,"960");
navigation[404] = new navElem(404,"Doubleface&nbsp(1)","pi-1728553832.htm",393,"994");
navigation[405] = new navElem(405,"Fell (Kunst-)/Flausch/Plüsch&nbsp(1)","pi-149616191.htm",393,"1442");
navigation[406] = new navElem(406,"Gabardine&nbsp(1)","pi1364703743.htm",393,"996");
navigation[407] = new navElem(407,"Jackenstoff fest Kunstfaser&nbsp(2)","pi921681446.htm",393,"1482");
navigation[408] = new navElem(408,"Jacquard&nbsp(3)","pi-183900277.htm",393,"959");
navigation[409] = new navElem(409,"Jeans/Köper&nbsp(2)","pi-1388801159.htm",393,"983");
navigation[410] = new navElem(410,"Jersey/Strickjersey uni und meliert&nbsp(13)","pi-818988770.htm",393,"962");
navigation[411] = new navElem(411,"Jersey/Strickjersey gemustert&nbsp(3)","pi679050364.htm",393,"963");
navigation[412] = new navElem(412,"Köper/Jeans&nbsp(2)","pi499893336.htm",393,"982");
navigation[413] = new navElem(413,"Lederimitat&nbsp(1)","pi1796861843.htm",393,"1671");
navigation[414] = new navElem(414,"Leinen/-mischungen&nbsp(7)","pi447731027.htm",393,"953");
navigation[415] = new navElem(415,"Leinen-Tencel-Mischung&nbsp(1)","pi2006618336.htm",393,"987");
navigation[416] = new navElem(416,"Mesh/Tüll&nbsp(1)","pi752790089.htm",393,"1273");
navigation[417] = new navElem(417,"Metall-Stoffe&nbsp(2)","pi1567214355.htm",393,"981");
navigation[418] = new navElem(418,"Polyester/Polyamid/Polyethylen/-mischungen&nbsp(3)","pi1254381826.htm",393,"1078");
navigation[419] = new navElem(419,"Ramie&nbsp(2)","pi-1285694745.htm",393,"1043");
navigation[420] = new navElem(420,"Satin&nbsp(5)","pi735713001.htm",393,"1029");
navigation[421] = new navElem(421,"Seide&nbsp(3)","pi1064241367.htm",393,"990");
navigation[422] = new navElem(422,"Seidenmischungen&nbsp(1)","pi724940748.htm",393,"991");
navigation[423] = new navElem(423,"Spitze&nbsp(1)","pi-866340680.htm",393,"1004");
navigation[424] = new navElem(424,"Steppstoff&nbsp(1)","pi908033463.htm",393,"998");
navigation[425] = new navElem(425,"Stretch&nbsp(11)","pi-2001690042.htm",393,"984");
navigation[426] = new navElem(426,"Stretchbaumwolle&nbsp(2)","pi-241005227.htm",393,"957");
navigation[427] = new navElem(427,"Stretchsatin&nbsp(6)","pi1817668175.htm",393,"985");
navigation[428] = new navElem(428,"Strickstoff/Boucle&nbsp(5)","pi-1605299816.htm",393,"954");
navigation[429] = new navElem(429,"Strick fein&nbsp(4)","pi1740515197.htm",393,"988");
navigation[430] = new navElem(430,"Stickerei-Stoff&nbsp(2)","pi1298195340.htm",393,"978");
navigation[431] = new navElem(431,"Taft/taftartige Stoffe&nbsp(2)","pi-921673639.htm",393,"1005");
navigation[432] = new navElem(432,"Tüll/Mesh&nbsp(1)","pi-715029290.htm",393,"1274");
navigation[433] = new navElem(433,"Tweed/Bouclé&nbsp(1)","pi1001082170.htm",393,"1000");
navigation[434] = new navElem(434,"Velvet&nbsp(4)","pi665904550.htm",393,"1006");
navigation[435] = new navElem(435,"Viskose/-mischungen&nbsp(3)","pi1369777306.htm",393,"980");
navigation[436] = new navElem(436,"Walk und walkartige Stoffe&nbsp(7)","pi285126451.htm",393,"1001");
navigation[437] = new navElem(437,"Wolle/-mischungen&nbsp(10)","pi886625977.htm",393,"995");
navigation[438] = new navElem(438,"Sortiert nach Farbe","pi-1112656658.htm",392,"950");
navigation[439] = new navElem(439,"Bunt&nbsp(3)","pi1411684495.htm",438,"956");
navigation[440] = new navElem(440,"Weiß/Wollweiß/Champagner/Eierschale&nbsp(27)","pi1583012035.htm",438,"965");
navigation[441] = new navElem(441,"Beige/Natur/Camel/Sand/Schlamm&nbsp(12)","pi-1628915142.htm",438,"976");
navigation[442] = new navElem(442,"Gold/Gelb/Ocker/Vanille&nbsp(8)","pi-696824760.htm",438,"966");
navigation[443] = new navElem(443,"Orange/Rot/Weinrot/Lachs/Koralle&nbsp(3)","pi-164476467.htm",438,"964");
navigation[444] = new navElem(444,"Rosatöne/Pink/Rosé&nbsp(6)","pi521743286.htm",438,"967");
navigation[445] = new navElem(445,"Lilatöne/Brombeer/Aubergine&nbsp(8)","pi-198036737.htm",438,"968");
navigation[446] = new navElem(446,"Blautöne&nbsp(7)","pi191107284.htm",438,"969");
navigation[447] = new navElem(447,"Grüntöne/Khaki/Oliv/Kiwi&nbsp(8)","pi-122327739.htm",438,"970");
navigation[448] = new navElem(448,"Petrol/Türkis/Aqua/Mint&nbsp(8)","pi1884304162.htm",438,"971");
navigation[449] = new navElem(449,"Brauntöne/Rost/Terra/Kupfer&nbsp(19)","pi-486631904.htm",438,"972");
navigation[450] = new navElem(450,"Grautöne/Silber/Kitt&nbsp(13)","pi-1985928287.htm",438,"973");
navigation[451] = new navElem(451,"Schwarz&nbsp(19)","pi2056644942.htm",438,"974");
navigation[452] = new navElem(452,"gold/silber/kupfer schimmernd&nbsp(3)","pi-1988749641.htm",438,"975");
navigation[453] = new navElem(453,"bis zu 50% reduziert: Sommer-Stoffe","pi-326540052.htm",null,"611");
navigation[454] = new navElem(454,"Sortiert nach Qualität","pi-1546467971.htm",453,"612");
navigation[455] = new navElem(455,"Ausbrenner&nbsp(2)","pi-1924014228.htm",454,"615");
navigation[456] = new navElem(456,"Bambus&nbsp(1)","pi968648105.htm",454,"1597");
navigation[457] = new navElem(457,"Baumwolle/Batist&nbsp(4)","pi622808573.htm",454,"616");
navigation[458] = new navElem(458,"Baumwollmischung&nbsp(22)","pi147013176.htm",454,"618");
navigation[459] = new navElem(459,"Beschichteter Stoff","pi1588038213.htm",454,"1598");
navigation[460] = new navElem(460,"Bestickter Stoff&nbsp(4)","pi-2011037401.htm",454,"668");
navigation[461] = new navElem(461,"Bordürenstoffe&nbsp(4)","pi-1367331034.htm",454,"619");
navigation[462] = new navElem(462,"Boucle/Strickstoff&nbsp(1)","pi1983309685.htm",454,"620");
navigation[463] = new navElem(463,"Boucle/Tweed&nbsp(1)","pi255721112.htm",454,"1080");
navigation[464] = new navElem(464,"Chiffon&nbsp(2)","pi1876544914.htm",454,"621");
navigation[465] = new navElem(465,"Crash/Cloqué&nbsp(8)","pi1652182699.htm",454,"622");
navigation[466] = new navElem(466,"Crinkle&nbsp(3)","pi1481270561.htm",454,"713");
navigation[467] = new navElem(467,"Jacquard&nbsp(4)","pi-974293488.htm",454,"623");
navigation[468] = new navElem(468,"Jacquardstretch&nbsp(2)","pi1456480465.htm",454,"624");
navigation[469] = new navElem(469,"Jeans/Köper&nbsp(2)","pi-754959537.htm",454,"1083");
navigation[470] = new navElem(470,"Jersey&nbsp(8)","pi1031542631.htm",454,"627");
navigation[471] = new navElem(471,"Köper/Jeans&nbsp(2)","pi1654040348.htm",454,"628");
navigation[472] = new navElem(472,"Lederimitat&nbsp(2)","pi24727624.htm",454,"1599");
navigation[473] = new navElem(473,"Leinen/-mischungen/Tencel&nbsp(17)","pi-375486483.htm",454,"629");
navigation[474] = new navElem(474,"Mesh/Tüll&nbsp(2)","pi-1953155702.htm",454,"1084");
navigation[475] = new navElem(475,"Metallstoffe&nbsp(5)","pi1836434403.htm",454,"631");
navigation[476] = new navElem(476,"Panneaux f. Rock/Kleid&nbsp(1)","pi1103314396.htm",454,"669");
navigation[477] = new navElem(477,"Polyester/-gemisch&nbsp(11)","pi1225461791.htm",454,"634");
navigation[478] = new navElem(478,"Popeline&nbsp(4)","pi1949151092.htm",454,"635");
navigation[479] = new navElem(479,"Satin&nbsp(8)","pi100378342.htm",454,"710");
navigation[480] = new navElem(480,"Seide/-mischungen&nbsp(3)","pi279580517.htm",454,"636");
navigation[481] = new navElem(481,"Smok&nbsp(1)","pi1475965634.htm",454,"637");
navigation[482] = new navElem(482,"Spitze&nbsp(1)","pi-93095909.htm",454,"638");
navigation[483] = new navElem(483,"Stickerei-Stoff&nbsp(4)","pi-1224412290.htm",454,"667");
navigation[484] = new navElem(484,"Stretch&nbsp(15)","pi-2081136960.htm",454,"639");
navigation[485] = new navElem(485,"Stretchbaumwolle/Stretchsatin&nbsp(10)","pi-1357568063.htm",454,"640");
navigation[486] = new navElem(486,"Strickstoff/Boucle&nbsp(1)","pi749677871.htm",454,"683");
navigation[487] = new navElem(487,"Taft&nbsp(2)","pi191940747.htm",454,"1082");
navigation[488] = new navElem(488,"Tweed/Boucle&nbsp(1)","pi245518521.htm",454,"1081");
navigation[489] = new navElem(489,"Viskose/-mischungen&nbsp(14)","pi-553927834.htm",454,"695");
navigation[490] = new navElem(490,"Viskoseleinen&nbsp(4)","pi-846705665.htm",454,"684");
navigation[491] = new navElem(491,"Sortiert nach Farbe","pi-675609350.htm",453,"613");
navigation[492] = new navElem(492,"Bunt&nbsp(8)","pi1992083873.htm",491,"655");
navigation[493] = new navElem(493,"Weiß/Wollweiß/Champagner/Eierschale&nbsp(36)","pi2140542798.htm",491,"656");
navigation[494] = new navElem(494,"Beige/Natur/Camel/Sand/Schlamm&nbsp(15)","pi332541111.htm",491,"657");
navigation[495] = new navElem(495,"Gold/Gelb/Ocker/Vanille&nbsp(16)","pi719210028.htm",491,"658");
navigation[496] = new navElem(496,"Orange/Rot/Weinrot&nbsp(10)","pi-350364227.htm",491,"659");
navigation[497] = new navElem(497,"Rosatöne/Pink/Rosé&nbsp(14)","pi-1481127878.htm",491,"660");
navigation[498] = new navElem(498,"Lilatöne/Brombeer/Aubergine&nbsp(6)","pi95571507.htm",491,"661");
navigation[499] = new navElem(499,"Blautöne&nbsp(5)","pi5869816.htm",491,"662");
navigation[500] = new navElem(500,"Petrol/Türkis/Aqua/Mint&nbsp(4)","pi-1658364049.htm",491,"664");
navigation[501] = new navElem(501,"Grüntöne/Khaki/Oliv&nbsp(12)","pi280084454.htm",491,"663");
navigation[502] = new navElem(502,"Brauntöne/Terra/Rost/Kupfer/Fango&nbsp(22)","pi-261521276.htm",491,"665");
navigation[503] = new navElem(503,"Grautöne/Silber/Kitt&nbsp(15)","pi1611393618.htm",491,"666");
navigation[504] = new navElem(504,"Schwarz&nbsp(25)","pi678623948.htm",491,"643");
navigation[505] = new navElem(505,"gold/silber/kupfer schimmernd&nbsp(9)","pi1695457668.htm",491,"715");
navigation[506] = new navElem(506,"Stoff ist geeignet für:","pi-824673293.htm",453,"614");
navigation[507] = new navElem(507,"Outdoorjacken/Mäntel&nbsp(5)","pi545873373.htm",506,"644");
navigation[508] = new navElem(508,"Blazer/Jacken&nbsp(41)","pi1705397075.htm",506,"645");
navigation[509] = new navElem(509,"Blusen/Oberteile/Hemden&nbsp(52)","pi602245037.htm",506,"670");
navigation[510] = new navElem(510,"Shirt/Bolero/Wickeljacke/shrug&nbsp(8)","pi-1358819911.htm",506,"647");
navigation[511] = new navElem(511,"Strickjacken/Pullis/Westen&nbsp(2)","pi1994205422.htm",506,"682");
navigation[512] = new navElem(512,"Hosen&nbsp(19)","pi-652317041.htm",506,"648");
navigation[513] = new navElem(513,"Röcke/Kleider&nbsp(66)","pi-1146630248.htm",506,"646");
navigation[514] = new navElem(514,"Sonstiges/Ledertop&nbsp(2)","pi-1704072924.htm",506,"649");
navigation[515] = new navElem(515,"30% reduziert: Herbst/Winter-Stoffe 2009","pi-1177116957.htm",null,"1091");
navigation[516] = new navElem(516,"Sortiert nach Qualität","pi121233384.htm",515,"1092");
navigation[517] = new navElem(517,"Ausbrenner&nbsp(2)","pi-525823698.htm",516,"1157");
navigation[518] = new navElem(518,"Baumwolle/Batist&nbsp(6)","pi-116942049.htm",516,"1095");
navigation[519] = new navElem(519,"Baumwoll-Jersey&nbsp(1)","pi684036709.htm",516,"1096");
navigation[520] = new navElem(520,"Baumwollmischung&nbsp(7)","pi-1398361317.htm",516,"1097");
navigation[521] = new navElem(521,"Beschichteter Stoff&nbsp(1)","pi1972258755.htm",516,"1445");
navigation[522] = new navElem(522,"Boucle/Strickstoff&nbsp(11)","pi-1788720692.htm",516,"1100");
navigation[523] = new navElem(523,"Bouclé/Tweed&nbsp(5)","pi127156445.htm",516,"1101");
navigation[524] = new navElem(524,"Cord&nbsp(5)","pi836232787.htm",516,"1103");
navigation[525] = new navElem(525,"Crash/Cloqué/Plissee/Krepp&nbsp(7)","pi-241037672.htm",516,"1104");
navigation[526] = new navElem(526,"Crinkle&nbsp(1)","pi-1081018746.htm",516,"1106");
navigation[527] = new navElem(527,"Doppelgewebe&nbsp(12)","pi1371408685.htm",516,"1224");
navigation[528] = new navElem(528,"Doubleface&nbsp(13)","pi-1484646364.htm",516,"1107");
navigation[529] = new navElem(529,"Fell/Pelzimitat&nbsp(2)","pi1751173874.htm",516,"1108");
navigation[530] = new navElem(530,"Gabardine&nbsp(2)","pi2027799992.htm",516,"1272");
navigation[531] = new navElem(531,"Glencheck&nbsp(2)","pi375164580.htm",516,"1277");
navigation[532] = new navElem(532,"Jackenstoff fest Kunstfaser&nbsp(2)","pi1123184051.htm",516,"1226");
navigation[533] = new navElem(533,"Jersey/Strickjersey gemustert alle&nbsp(17)","pi-627606095.htm",516,"1111");
navigation[534] = new navElem(534,"Jersey floral gemustert&nbsp(1)","pi-2101927274.htm",516,"1206");
navigation[535] = new navElem(535,"Jersey mit Phantasie-Muster&nbsp(10)","pi-1237048916.htm",516,"1211");
navigation[536] = new navElem(536,"Jersey Retro Blumen, Wellen + grafisch gemustert&nbsp(6)","pi1167221428.htm",516,"1207");
navigation[537] = new navElem(537,"Jersey uni + Melange&nbsp(6)","pi1053695518.htm",516,"1112");
navigation[538] = new navElem(538,"Jersey Strick&nbsp(2)","pi476133377.htm",516,"1256");
navigation[539] = new navElem(539,"Jersey Baumwolle mit Elasthan&nbsp(1)","pi-1429586105.htm",516,"1113");
navigation[540] = new navElem(540,"Kurzhaar-Zottel&nbsp(3)","pi-1940914287.htm",516,"1221");
navigation[541] = new navElem(541,"Microflausch &nbsp(1)","pi1346520689.htm",516,"1204");
navigation[542] = new navElem(542,"Nicki&nbsp(2)","pi-1299215037.htm",516,"1223");
navigation[543] = new navElem(543,"Pizzatechnik, aufgefilzte Fäden&nbsp(3)","pi-1995402355.htm",516,"1172");
navigation[544] = new navElem(544,"Plissee/Crash/Cloqué/Krepp&nbsp(7)","pi-768590958.htm",516,"1201");
navigation[545] = new navElem(545,"Polyamid-Polyurethan-Mischung &nbsp(2)","pi1201407132.htm",516,"1439");
navigation[546] = new navElem(546,"Polyester/Polyethylen&nbsp(3)","pi784583957.htm",516,"1228");
navigation[547] = new navElem(547,"Samt/Stretchsamt&nbsp(2)","pi-1234254618.htm",516,"1184");
navigation[548] = new navElem(548,"Satin&nbsp(1)","pi-1327211510.htm",516,"1116");
navigation[549] = new navElem(549,"Seide&nbsp(5)","pi-1823135293.htm",516,"1117");
navigation[550] = new navElem(550,"Spitze&nbsp(4)","pi1262324040.htm",516,"1118");
navigation[551] = new navElem(551,"Stepper&nbsp(14)","pi1831326121.htm",516,"1119");
navigation[552] = new navElem(552,"Stretch&nbsp(10)","pi-17067009.htm",516,"1121");
navigation[553] = new navElem(553,"Stretchbaumwolle/Stretchsatin&nbsp(1)","pi502275540.htm",516,"1122");
navigation[554] = new navElem(554,"Strickstoff/Boucle&nbsp(11)","pi1699678242.htm",516,"1126");
navigation[555] = new navElem(555,"Strickstoff fein&nbsp(4)","pi1506636576.htm",516,"1127");
navigation[556] = new navElem(556,"Tweed/Bouclé&nbsp(5)","pi785649230.htm",516,"1128");
navigation[557] = new navElem(557,"Velvet/Baumwollsamt mit und ohne Stretch&nbsp(4)","pi1302370231.htm",516,"1129");
navigation[558] = new navElem(558,"Viskose/-mischungen&nbsp(8)","pi215892157.htm",516,"1130");
navigation[559] = new navElem(559,"komplett Walk und walkartige Stoffe, Wollfilz, Pizza&nbsp(18)","pi796602170.htm",516,"1131");
navigation[560] = new navElem(560,"Walk und walkartige Stoffe uni&nbsp(10)","pi523362069.htm",516,"1165");
navigation[561] = new navElem(561,"Walk und walkartige Stoffe bunt/bedruckt&nbsp(8)","pi1718686898.htm",516,"1166");
navigation[562] = new navElem(562,"Walk ganz leichte Ware, verpresste Wolle&nbsp(2)","pi-1960766039.htm",516,"1214");
navigation[563] = new navElem(563,"Walk Crash/Crinkle&nbsp(1)","pi657792301.htm",516,"1187");
navigation[564] = new navElem(564,"Walk Edelstepper/Doubleface&nbsp(7)","pi-2017156601.htm",516,"1171");
navigation[565] = new navElem(565,"Walk mittelschwere + dickere Qualität&nbsp(3)","pi-198274512.htm",516,"1168");
navigation[566] = new navElem(566,"Walk Lana Cotta, gekochte Wolle, Strickloden&nbsp(1)","pi1602671217.htm",516,"1169");
navigation[567] = new navElem(567,"Walk Wollfilz, Strickfilz&nbsp(5)","pi319063006.htm",516,"1170");
navigation[568] = new navElem(568,"Winterjersey&nbsp(1)","pi831875379.htm",516,"1132");
navigation[569] = new navElem(569,"Wolle/-mischungen&nbsp(37)","pi-2121838600.htm",516,"1133");
navigation[570] = new navElem(570,"Woll-Spitze&nbsp(4)","pi-1634569441.htm",516,"1179");
navigation[571] = new navElem(571,"Zottel Kurzhaar&nbsp(3)","pi-1793574574.htm",516,"1219");
navigation[572] = new navElem(572,"Sortiert nach Farbe","pi-1235825719.htm",515,"1093");
navigation[573] = new navElem(573,"Bunt&nbsp(3)","pi2090983065.htm",572,"1134");
navigation[574] = new navElem(574,"Weiß/Wollweiß/Champagner/Elfenbein&nbsp(19)","pi-1078880538.htm",572,"1135");
navigation[575] = new navElem(575,"Beige/Natur/Camel/Sand/Schlamm&nbsp(10)","pi2129211268.htm",572,"1136");
navigation[576] = new navElem(576,"Gold/Gelb/Ocker/Vanille&nbsp(4)","pi-1771097774.htm",572,"1137");
navigation[577] = new navElem(577,"Orange/Rot/Weinrot/Lachs/Koralle&nbsp(19)","pi-1402775663.htm",572,"1138");
navigation[578] = new navElem(578,"Rosatöne/Pink/Rosé/Rosenholz&nbsp(7)","pi-1190843353.htm",572,"1139");
navigation[579] = new navElem(579,"Lilatöne/Brombeer/Aubergine/Fuchsia&nbsp(31)","pi-1916228947.htm",572,"1140");
navigation[580] = new navElem(580,"Blautöne&nbsp(6)","pi1071476330.htm",572,"1141");
navigation[581] = new navElem(581,"Petrol/Türkis/Aqua/Mint&nbsp(10)","pi-1162190168.htm",572,"1143");
navigation[582] = new navElem(582,"Grüntöne/Khaki/Oliv/Kiwi&nbsp(7)","pi866100387.htm",572,"1142");
navigation[583] = new navElem(583,"Brauntöne/Rost/Terra/Kupfer/Fango&nbsp(27)","pi-1452914807.htm",572,"1144");
navigation[584] = new navElem(584,"Grautöne/Silber/Kitt&nbsp(28)","pi-1602246378.htm",572,"1145");
navigation[585] = new navElem(585,"Schwarz&nbsp(42)","pi1071283423.htm",572,"1146");
navigation[586] = new navElem(586,"gold/silber/kupfer schimmernd&nbsp(2)","pi669141541.htm",572,"1147");
navigation[587] = new navElem(587,"Stoff ist geeignet für:","pi-845649834.htm",515,"1094");
navigation[588] = new navElem(588,"Outdoorjacken/Mäntel&nbsp(16)","pi-509327742.htm",587,"1148");
navigation[589] = new navElem(589,"Blazer/Jacken/Blusenjacken&nbsp(32)","pi2100451456.htm",587,"1149");
navigation[590] = new navElem(590,"Weste&nbsp(17)","pi-2118434458.htm",587,"1182");
navigation[591] = new navElem(591,"Blusen/Oberteile/Hemden&nbsp(12)","pi-581136767.htm",587,"1150");
navigation[592] = new navElem(592,"Shirt/Jerseybluse/Rolli/Bolero/Wickeljacke/shrug&nbsp(21)","pi-326307154.htm",587,"1151");
navigation[593] = new navElem(593,"StrickJacken/Pulli/Pullunder&nbsp(21)","pi-61932393.htm",587,"1152");
navigation[594] = new navElem(594,"Hosen&nbsp(9)","pi-1013837684.htm",587,"1153");
navigation[595] = new navElem(595,"Röcke/Kleider&nbsp(46)","pi42643613.htm",587,"1154");
navigation[596] = new navElem(596,"Stola/Kragen/Verzierungen&nbsp(4)","pi-481420902.htm",587,"1155");
navigation[597] = new navElem(597,"bis zu 50% reduziert: Winter-Stoffe","pi-279963587.htm",null,"192");
navigation[598] = new navElem(598,"Sortiert nach Qualität","pi1184575878.htm",597,"502");
navigation[599] = new navElem(599,"Ausbrenner&nbsp(1)","pi1852204209.htm",598,"508");
navigation[600] = new navElem(600,"Baumwolle&nbsp(2)","pi-1867395411.htm",598,"1011");
navigation[601] = new navElem(601,"Baumwollmischung&nbsp(7)","pi1424981575.htm",598,"510");
navigation[602] = new navElem(602,"Bestickter Stoff/Stickerei-Stoff&nbsp(6)","pi-180533276.htm",598,"680");
navigation[603] = new navElem(603,"Bordürenstoffe&nbsp(1)","pi-1823383545.htm",598,"566");
navigation[604] = new navElem(604,"Boucle/Strickstoff&nbsp(9)","pi-2008220548.htm",598,"511");
navigation[605] = new navElem(605,"Bouclé/Tweed&nbsp(6)","pi1768204042.htm",598,"512");
navigation[606] = new navElem(606,"Cord&nbsp(3)","pi-159200184.htm",598,"513");
navigation[607] = new navElem(607,"Cord mit Fell&nbsp(1)","pi1559795199.htm",598,"1013");
navigation[608] = new navElem(608,"Crash/Cloqué&nbsp(4)","pi-1978899558.htm",598,"548");
navigation[609] = new navElem(609,"Doppelgewebe&nbsp(2)","pi-385944372.htm",598,"1434");
navigation[610] = new navElem(610,"Doubleface&nbsp(2)","pi1932883924.htm",598,"1014");
navigation[611] = new navElem(611,"Fellimitat&nbsp(2)","pi928814971.htm",598,"1016");
navigation[612] = new navElem(612,"Gabardine&nbsp(2)","pi2064353382.htm",598,"1428");
navigation[613] = new navElem(613,"Glencheck&nbsp(2)","pi-605181694.htm",598,"567");
navigation[614] = new navElem(614,"Jacquard&nbsp(1)","pi-2105108311.htm",598,"514");
navigation[615] = new navElem(615,"Jeans/Köper&nbsp(1)","pi387116357.htm",598,"516");
navigation[616] = new navElem(616,"Jersey/Strickjersey gemustert&nbsp(5)","pi-943738078.htm",598,"517");
navigation[617] = new navElem(617,"Jersey/Strickjersey uni/Melange&nbsp(1)","pi1401797165.htm",598,"1432");
navigation[618] = new navElem(618,"Köper/Jeans&nbsp(1)","pi817399001.htm",598,"576");
navigation[619] = new navElem(619,"Metallstoff&nbsp(1)","pi-1858757478.htm",598,"563");
navigation[620] = new navElem(620,"Pannesamt&nbsp(1)","pi655134672.htm",598,"1427");
navigation[621] = new navElem(621,"Plüsch/Microplüsch&nbsp(2)","pi992879631.htm",598,"558");
navigation[622] = new navElem(622,"Polyester/Polyamid&nbsp(4)","pi1465203441.htm",598,"552");
navigation[623] = new navElem(623,"Popeline&nbsp(3)","pi-1797071239.htm",598,"550");
navigation[624] = new navElem(624,"Satin&nbsp(7)","pi-1293255420.htm",598,"1429");
navigation[625] = new navElem(625,"Seide/-mischung&nbsp(5)","pi-304816559.htm",598,"562");
navigation[626] = new navElem(626,"Smok&nbsp(1)","pi355536043.htm",598,"569");
navigation[627] = new navElem(627,"Spitze&nbsp(1)","pi-1319683374.htm",598,"1431");
navigation[628] = new navElem(628,"Stepper&nbsp(2)","pi-267989009.htm",598,"1017");
navigation[629] = new navElem(629,"Stickerei-Stoff/Bestickter Stoff&nbsp(5)","pi-1352893675.htm",598,"681");
navigation[630] = new navElem(630,"Stretch&nbsp(9)","pi-974454898.htm",598,"545");
navigation[631] = new navElem(631,"Stretchbaumwolle&nbsp(2)","pi1745769145.htm",598,"1012");
navigation[632] = new navElem(632,"Stretchvelvet&nbsp(1)","pi1598747605.htm",598,"1422");
navigation[633] = new navElem(633,"Strickstoff/Boucle&nbsp(9)","pi1384965173.htm",598,"547");
navigation[634] = new navElem(634,"Taft/taftartig&nbsp(6)","pi-709023356.htm",598,"546");
navigation[635] = new navElem(635,"Tellerrock&nbsp(2)","pi-987582425.htm",598,"1010");
navigation[636] = new navElem(636,"Tweed/Bouclé&nbsp(6)","pi-165476101.htm",598,"518");
navigation[637] = new navElem(637,"Velvet/Stretchvelvet/Baumwollsamt&nbsp(1)","pi-1552008590.htm",598,"1423");
navigation[638] = new navElem(638,"Viskose/-mischung&nbsp(2)","pi-1486831249.htm",598,"1435");
navigation[639] = new navElem(639,"Walk/Lana Cotta/walkartige Stoffe&nbsp(3)","pi1186125728.htm",598,"543");
navigation[640] = new navElem(640,"Wolle/Wollmischung&nbsp(11)","pi-1935598760.htm",598,"549");
navigation[641] = new navElem(641,"Sortiert nach Farbe","pi457578639.htm",597,"503");
navigation[642] = new navElem(642,"Bunt&nbsp(4)","pi-1261001823.htm",641,"519");
navigation[643] = new navElem(643,"Weiß/Wollweiß/Champagner/Eierschale&nbsp(10)","pi603810126.htm",641,"520");
navigation[644] = new navElem(644,"Beige/Natur/Camel/Sand/Schlamm&nbsp(9)","pi1302828727.htm",641,"521");
navigation[645] = new navElem(645,"Gold/Gelb/Ocker/Vanille&nbsp(4)","pi-1835145172.htm",641,"522");
navigation[646] = new navElem(646,"Orange/Rot/Weinrot&nbsp(10)","pi-749119555.htm",641,"523");
navigation[647] = new navElem(647,"Rosatöne/Pink/Rosé&nbsp(4)","pi1774729786.htm",641,"524");
navigation[648] = new navElem(648,"Lilatöne/Brombeer/Aubergine/Fuchsia&nbsp(5)","pi1761761331.htm",641,"525");
navigation[649] = new navElem(649,"Blautöne&nbsp(2)","pi-563653896.htm",641,"526");
navigation[650] = new navElem(650,"Grüntöne/Khaki/Oliv&nbsp(9)","pi1178423782.htm",641,"527");
navigation[651] = new navElem(651,"Petrol/Türkis/Aqua/Mint&nbsp(5)","pi-337901201.htm",641,"528");
navigation[652] = new navElem(652,"Brauntöne/Rost/Terra/Kupfer&nbsp(23)","pi-1763220860.htm",641,"529");
navigation[653] = new navElem(653,"Grautöne/Silber/Kitt&nbsp(10)","pi1982785845.htm",641,"530");
navigation[654] = new navElem(654,"Schwarz&nbsp(28)","pi-268133294.htm",641,"531");
navigation[655] = new navElem(655,"gold/silber/kupfer schimmernd&nbsp(3)","pi-1687070814.htm",641,"1424");
navigation[656] = new navElem(656,"Stoff ist geeignet für:","pi2141197680.htm",597,"507");
navigation[657] = new navElem(657,"Outdoorjacken/Mäntel/Outdoorweste&nbsp(9)","pi1338058347.htm",656,"532");
navigation[658] = new navElem(658,"Blazer/Jacken&nbsp(30)","pi1362617040.htm",656,"533");
navigation[659] = new navElem(659,"Blusen/Oberteile&nbsp(16)","pi546946705.htm",656,"534");
navigation[660] = new navElem(660,"Shirt/Jerseybluse/Rolli/Bolero/Wickeljacke&nbsp(9)","pi1742596903.htm",656,"535");
navigation[661] = new navElem(661,"Strickjacken/Pullis&nbsp(7)","pi-368615460.htm",656,"536");
navigation[662] = new navElem(662,"Hosen&nbsp(6)","pi1852539309.htm",656,"537");
navigation[663] = new navElem(663,"Röcke/Kleider&nbsp(24)","pi-911787670.htm",656,"538");
navigation[664] = new navElem(664,"Kragen/Verzierungen/Futter&nbsp(2)","pi2021282723.htm",656,"539");
navigation[665] = new navElem(665,"Alle Schnittmuster Pattern Company","pi986578798.htm",null,"241");
navigation[666] = new navElem(666,"Schnitte Winter 10","pi-1847299633.htm",665,"1502");
navigation[667] = new navElem(667,"Bereits lieferbare Schnitte Winter 2010&nbsp(28)","pi1040863411.htm",666,"1645");
navigation[668] = new navElem(668,"Mantel, Jacken, Wickeljacke&nbsp(13)","pi-1943536796.htm",666,"1503");
navigation[669] = new navElem(669,"Hosen, Leggin&nbsp(2)","pi1944258709.htm",666,"1504");
navigation[670] = new navElem(670,"Kleid/Rock&nbsp(2)","pi1423859762.htm",666,"1505");
navigation[671] = new navElem(671,"Blusen/Tuniken&nbsp(3)","pi-1785017936.htm",666,"1507");
navigation[672] = new navElem(672,"Shirts&nbsp(7)","pi-1715894434.htm",666,"1508");
navigation[673] = new navElem(673,"Strickjacke/Rolli/Pulli/Pullunder/Weste&nbsp(7)","pi918241159.htm",666,"1509");
navigation[674] = new navElem(674,"Schnitte Sommer 10","pi-190597601.htm",665,"932");
navigation[675] = new navElem(675,"Mantel/Jacken/Strickjacken&nbsp(9)","pi1557653708.htm",674,"941");
navigation[676] = new navElem(676,"Hosen&nbsp(3)","pi1310986579.htm",674,"943");
navigation[677] = new navElem(677,"Kleider&nbsp(6)","pi-2012396615.htm",674,"944");
navigation[678] = new navElem(678,"Röcke&nbsp(2)","pi-461052131.htm",674,"1465");
navigation[679] = new navElem(679,"Blusen/Tuniken&nbsp(7)","pi-429056634.htm",674,"945");
navigation[680] = new navElem(680,"Shirts/Tops/Deko-Top&nbsp(6)","pi-852192113.htm",674,"946");
navigation[681] = new navElem(681,"Strickjacke/Pulli/Überwurf&nbsp(5)","pi2107828565.htm",674,"947");
navigation[682] = new navElem(682,"Westen&nbsp(3)","pi-1992249830.htm",674,"1466");
navigation[683] = new navElem(683,"Sondermodelle 09/10 + Schnittkombinationen","pi-204975511.htm",665,"1496");
navigation[684] = new navElem(684,"Sondermodelle Sommer 09+10&nbsp(25)","pi2065362805.htm",683,"1652");
navigation[685] = new navElem(685,"Sondermodelle Winter 09&nbsp(21)","pi723465618.htm",683,"1653");
navigation[686] = new navElem(686,"Schnittkombinationen&nbsp(4)","pi-1228872259.htm",683,"1656");
navigation[687] = new navElem(687,"Schnitte sortiert für Leder/-imitate","pi173777142.htm",665,"1651");
navigation[688] = new navElem(688,"Jacke&nbsp(1)","pi-122143712.htm",687,"1655");
navigation[689] = new navElem(689,"Hose","pi-114104030.htm",687,"1654");
navigation[690] = new navElem(690,"Schnitte sortiert für Steppstoffe","pi1519186179.htm",665,"1648");
navigation[691] = new navElem(691,"Jacken&nbsp(2)","pi-49344632.htm",690,"1649");
navigation[692] = new navElem(692,"Schlupfblouson&nbsp(1)","pi-1081697777.htm",690,"1659");
navigation[693] = new navElem(693,"Westen&nbsp(2)","pi1033497321.htm",690,"1650");
navigation[694] = new navElem(694,"Schnitte sortiert für Walk","pi1641580262.htm",665,"1059");
navigation[695] = new navElem(695,"Materialfavorit Sommerwalk mit Fransenkante&nbsp(4)","pi-361491783.htm",694,"1251");
navigation[696] = new navElem(696,"Materialfavorit Leichtwalker ohne Fransenkante&nbsp(30)","pi1381235599.htm",694,"1253");
navigation[697] = new navElem(697,"Materialfavorit verpresste Wolle, ganz leichter Walk&nbsp(7)","pi859174130.htm",694,"1255");
navigation[698] = new navElem(698,"Materialfavorit schwerer Walk&nbsp(3)","pi1166389796.htm",694,"1254");
navigation[699] = new navElem(699,"Mäntel/Outdoorjacken&nbsp(22)","pi1156935411.htm",694,"1067");
navigation[700] = new navElem(700,"Jacken/Blazer&nbsp(24)","pi-560803144.htm",694,"1068");
navigation[701] = new navElem(701,"Kleid/Rock&nbsp(3)","pi589027238.htm",694,"1069");
navigation[702] = new navElem(702,"Shirt/Pulli/Weste&nbsp(8)","pi1529089071.htm",694,"1070");
navigation[703] = new navElem(703,"Schnitte sortiert für Strickjersey/feinen Strick","pi1153062214.htm",665,"1258");
navigation[704] = new navElem(704,"Strick- oder Jerseyjacken&nbsp(9)","pi-1735217793.htm",703,"1262");
navigation[705] = new navElem(705,"Hosen&nbsp(1)","pi-1100441260.htm",703,"1263");
navigation[706] = new navElem(706,"Tops/Shirts Kurzarm&nbsp(7)","pi-1099305054.htm",703,"1265");
navigation[707] = new navElem(707,"Shirts Langarm&nbsp(6)","pi1195027323.htm",703,"1266");
navigation[708] = new navElem(708,"Kleid&nbsp(1)","pi589589445.htm",703,"1264");
navigation[709] = new navElem(709,"Pulli/Rolli/Overshirt&nbsp(9)","pi-215964000.htm",703,"1267");
navigation[710] = new navElem(710,"Weste/Ärmelschal/Stola&nbsp(2)","pi-1703867871.htm",703,"1268");
navigation[711] = new navElem(711,"Schnitte sortiert für dickeren Strickstoff/Boucle","pi-253894321.htm",665,"1259");
navigation[712] = new navElem(712,"Jacken&nbsp(3)","pi-824744408.htm",711,"1269");
navigation[713] = new navElem(713,"Pullis&nbsp(12)","pi-1549474551.htm",711,"1270");
navigation[714] = new navElem(714,"Sonstige Oberteile&nbsp(1)","pi-1090365290.htm",711,"1271");
navigation[715] = new navElem(715,"Schnitte sortiert für Viskose-Jersey","pi690367434.htm",665,"804");
navigation[716] = new navElem(716,"Leggin&nbsp(1)","pi-1906705290.htm",715,"807");
navigation[717] = new navElem(717,"Röcke/Kleider/Tunika&nbsp(9)","pi774071487.htm",715,"808");
navigation[718] = new navElem(718,"Shirts Langarm&nbsp(22)","pi-1652797548.htm",715,"809");
navigation[719] = new navElem(719,"Tops/Shirts Kurzam&nbsp(11)","pi1599665413.htm",715,"810");
navigation[720] = new navElem(720,"Jäckchen/Pulli/Rolli&nbsp(5)","pi216973224.htm",715,"831");
navigation[721] = new navElem(721,"Schnitte sortiert für Leinen und/oder Leichtleinen und/oder Ramie","pi2009225839.htm",665,"1060");
navigation[722] = new navElem(722,"Mäntel/Outdoorjacken/Westen&nbsp(5)","pi-876939383.htm",721,"1061");
navigation[723] = new navElem(723,"Jacken/Blazer&nbsp(7)","pi-1081960170.htm",721,"1062");
navigation[724] = new navElem(724,"Hosen&nbsp(10)","pi1459530975.htm",721,"1063");
navigation[725] = new navElem(725,"Röcke&nbsp(5)","pi919911732.htm",721,"1064");
navigation[726] = new navElem(726,"Kleider&nbsp(10)","pi241302053.htm",721,"1065");
navigation[727] = new navElem(727,"Blusen/Tuniken/Tops&nbsp(12)","pi506869378.htm",721,"1066");
navigation[728] = new navElem(728,"Alle Pattern Company Mehrgrößenschnitte Gr. 34/36-44/46/48, KH 168 cm","pi1399643036.htm",665,"200");
navigation[729] = new navElem(729,"Schnittmuster &#0034;Raus-Liste&#0034;&nbsp(35)","pi1049248021.htm",728,"1606");
navigation[730] = new navElem(730,"Sondermodelle 09/10 + Schnittkombinationen&nbsp(44)","pi562090614.htm",728,"1497");
navigation[731] = new navElem(731,"WALK-Modelle&nbsp(40)","pi-1568975718.htm",728,"803");
navigation[732] = new navElem(732,"Modelle für Leder/-imitate&nbsp(1)","pi-1060908213.htm",728,"1657");
navigation[733] = new navElem(733,"Modelle für Steppstoffe&nbsp(5)","pi1356052081.htm",728,"1658");
navigation[734] = new navElem(734,"Modelle für Strickjersey/feinen Strick&nbsp(26)","pi415761429.htm",728,"1260");
navigation[735] = new navElem(735,"Modelle für dickeren Strickstoff/Boucle&nbsp(13)","pi1796445618.htm",728,"1261");
navigation[736] = new navElem(736,"Modelle für Viskosejersey&nbsp(39)","pi2124227015.htm",728,"1178");
navigation[737] = new navElem(737,"Modelle für Leinen und/oder Ramie&nbsp(46)","pi-1305807057.htm",728,"1058");
navigation[738] = new navElem(738,"Mutter-Tochter-Modelle&nbsp(4)","pi-581048133.htm",728,"833");
navigation[739] = new navElem(739,"Mäntel/Outdoorjacken/-weste&nbsp(49)","pi1383121517.htm",728,"283");
navigation[740] = new navElem(740,"Jacken/Blazer/Strickjacken&nbsp(75)","pi113253162.htm",728,"281");
navigation[741] = new navElem(741,"Hosen/Leggin&nbsp(36)","pi974895323.htm",728,"583");
navigation[742] = new navElem(742,"Röcke&nbsp(34)","pi1085047395.htm",728,"278");
navigation[743] = new navElem(743,"Kleider&nbsp(50)","pi1161289064.htm",728,"279");
navigation[744] = new navElem(744,"Blusen/Tuniken&nbsp(64)","pi-323423244.htm",728,"224");
navigation[745] = new navElem(745,"Tops/Shirts/Jerseytunika/Ärmelschal (shrug)&nbsp(74)","pi-1380099255.htm",728,"210");
navigation[746] = new navElem(746,"Oberteile/Pulli/Rolli/Twinset/Pullunder&nbsp(46)","pi77549078.htm",728,"832");
navigation[747] = new navElem(747,"Cape/Stola/Weste/Corsage/Sonstiges&nbsp(16)","pi-1667320161.htm",728,"223");
navigation[748] = new navElem(748,"Schnittmuster &#0034;Raus-Liste&#0034;","pi-235334065.htm",665,"1605");
navigation[749] = new navElem(749,"Mäntel/Outdoorjacken&nbsp(2)","pi458211659.htm",748,"1607");
navigation[750] = new navElem(750,"Jacken/Blazer&nbsp(6)","pi-1871815632.htm",748,"1608");
navigation[751] = new navElem(751,"Hosen&nbsp(6)","pi-1506192271.htm",748,"1609");
navigation[752] = new navElem(752,"Röcke&nbsp(4)","pi1630625246.htm",748,"1610");
navigation[753] = new navElem(753,"Kleider&nbsp(2)","pi293794823.htm",748,"1611");
navigation[754] = new navElem(754,"Blusen/Tuniken&nbsp(5)","pi-771803763.htm",748,"1612");
navigation[755] = new navElem(755,"Tops/Shirts&nbsp(9)","pi-1774643254.htm",748,"1613");
navigation[756] = new navElem(756,"Rolli/Pulli&nbsp(2)","pi2060954376.htm",748,"1614");
navigation[757] = new navElem(757,"Sonstiges&nbsp(5)","pi1574152310.htm",748,"1615");
navigation[758] = new navElem(758,"Pattern Company Mehrgrößenschnitte in Kurzgrößen 17-23&nbsp(14)","pi-301519273.htm",665,"251");
navigation[759] = new navElem(759,"Pattern Company Mehrgrößenschnitte in Langgrößen 68/72-92&nbsp(6)","pi1839550284.htm",665,"252");
navigation[760] = new navElem(760,"Pattern Company Mehrgrößenschnitte in Komfortgrößen Gr. 46-54/56, KH 168 cm&nbsp(16)","pi222463643.htm",665,"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"));

