	// define buildUp Methods for StandAloneElements
	function createLine(){
		myLine = new clsObject("OrderBody")
			myLine.LinePos						=	xmlOHeader.childNodes.length;
			myLine.ProductNo					=	"";
			myLine.Name							=	"";
			myLine.Description					=	"";
			myLine.PriceUserEntry				=	"";
			myLine.PriceUnit					=	"1";
			myLine.MinOrder						=	"1";
			myLine.QuantityUnit					=	"";
			myLine.QuantityAmount				=	"1";
			myLine.TaxClass						=	"0";
			myLine.TaxRate						=	"0";
			myLine.TaxAmountLineTotalLC			=	"0";
			myLine.TaxAmountLineTotalSC			=	"0";
			myLine.DiscountRate					=	"0";
			myLine.DiscountNetSingleUnitLC		=	"0";
			myLine.DiscountGrossSingleUnitLC	=	"0";
			myLine.DiscountNetLineTotalLC		=	"0";
			myLine.DiscountGrossLineTotalLC		=	"0";
			myLine.DiscountNetSingleUnitSC		=	"0";
			myLine.DiscountGrossSingleUnitSC	=	"0";
			myLine.DiscountNetLineTotalSC		=	"0";
			myLine.DiscountGrossLineTotalSC		=	"0";
			myLine.PriceNetSingleUnitLC			=	"0";
			myLine.PriceGrossSingleUnitLC		=	"0";
			myLine.PriceNetLineTotalLC			=	"0";
			myLine.PriceGrossLineTotalLC		=	"0";
			myLine.PriceNetSingleUnitSC			=	"0";
			myLine.PriceGrossSingleUnitSC		=	"0";
			myLine.PriceNetLineTotalSC			=	"0";
			myLine.PriceGrossLineTotalSC		=	"0";
			myLine.WeightUnit					=	"";
			myLine.WeightAmountSingleUnit		=	"0";
			myLine.WeightAmountLineTotal		=	"0";
			// remove
			myLine.addNode("Internal");
	// return Line-Object to Caller
	return myLine;
	};
// 
	function addToBag(anElement,Amount){
		with(this){
			var taxamount = taxarea[parseInt(xmlConfig.taxarea)][parseInt(anElement.Tax) + 1];
			var update = -1;
			myLines = xmlOHeader.childNodes
			for(var i=0;i<myLines.length;i++){
				if(myLines[i].ProductNo==anElement.Prod_nr){
					update = i;
					break;
					};
				};
			// product already in shoppingcard
			if(update>-1){
				// detect position of prod_nr in shoppingcart
				myLines[i].QuantityAmount = Amount;
				if(boolPriceTaxIncl){
					myLines[i].PriceNetLineTotalLC = anElement.Price * Amount * ( 1 - taxamount/( 100 + taxamount ));
					myLines[i].PriceGrossLineTotalLC = anElement.Price * Amount;
					}
				else{
					myLines[i].PriceNetLineTotalLC = anElement.Price * Amount;
					myLines[i].PriceGrossLineTotalLC = anElement.Price * Amount * ( 1 + taxamount/100 );
					};
				}
			// add product to shoppingcart
			else{
				myLine = createLine();
				myLine.ProductNo = anElement.Prod_nr;
				myLine.Name = anElement.Title;
				myLine.Description = anElement.Subtitle;
				myLine.QuantityAmount = Amount;
				myLine.QuantityUnit = anElement.Unitdesc;
				myInternal = myLine.getFirstItem("Internal")
					myInternal.price = anElement.Price;
					myInternal.address = anElement.LnkAdress;
					myInternal.navIndex = anElement.NavIndex;
					myInternal.discount = anElement.Discount;
					myInternal.minOrder = anElement.Minorder;
					myInternal.variants = anElement.Variants;
					myInternal.catDiscount = anElement.catDiscount;
				
				myLine.WeightAmountSingleUnit = parseFloat(anElement.Weight);
				myLine.WeightAmountLineTotal = parseFloat(anElement.Weight) * parseInt(Amount);
				
				myLine.TaxClass = anElement.Tax;
				myLine.TaxRate = taxamount;
				
				myLine.PriceUnit = anElement.PriceUnit;
				
				if(boolPriceTaxIncl){
					myLine.PriceNetSingleUnitLC = parseFloat(anElement.Price) * ( 1 - taxamount/( 100 + taxamount ) );
					myLine.PriceNetLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount) * ( 1 - taxamount/( 100 + taxamount ) );
					myLine.PriceGrossSingleUnitLC = parseFloat(anElement.Price);
					myLine.PriceGrossLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount);
					}
				else{
					myLine.PriceNetSingleUnitLC = parseFloat(anElement.Price);
					myLine.PriceNetLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount);
					myLine.PriceGrossSingleUnitLC = parseFloat(anElement.Price) * ( 1 + taxamount/100 );
					myLine.PriceGrossLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount) * ( 1 + taxamount/100 );
					};
				myLines[myLines.length] = myLine;
				};
			safeData();
			var dummyQueryString = "";
			if(Element){
				dummyQueryString += "productId=" + anElement.Prod_No + "&quantity=" + Amount;
				};
			location.href="orderform.htm?" + dummyQueryString;
			};
		};
// ** 1105
	function TElementPrint(){
		var boolDisplArtId = "true";
		var variants, variantString = "";
		variants = this.Variants.split("@");
		for(var i=0; i<variants.length - 1; i++){
			variantString += "search" + i + "_EQ_" + variants[i].split(";")[1] + "_AND_"; 
			};
		variantString += "{EOL}";
		
		var addToBag = '<img src="assets/images/btnaddtobag.gif" width="99" height="24" alt="Artikel merken" border="0" align="bottom" hspace="0" vspace="0" class="main">';
		var rString = '<TR><TD align="right" class="PROVIEWBODY">';
		if(this.Image!=""){
			if(this.LnkAdress!="#DROP#") rString += "<a href=\"" + this.LnkAdress + "?defaultVariants=" + variantString + "&categoryId=" + this.NavIndex + "\">";
			rString += "<img src='" + this.Image + "' border=0";
			if(this.Width!=0) rString += " width=" + this.Width;
			if(this.Height!=0) rString += " height=" + this.Height;
			rString += " align=\"top\">";
			if(this.LnkAdress!="#DROP#") rString += "</a>";
			};
		
		rString += '</TD><TD class="PROVIEWBODY" valign="top" width="100%"><TABLE border="0" cellpadding="1" cellspacing="0" width="100%">';
		if(boolDisplArtId) rString += '<TR><TD class="PROVIEWARTID">' + this.Prod_nr + "</TD></TR>";
		rString += "<TR><TD class=\"PROVIEWBEZ1\">"
		if(this.LnkAdress!="#DROP#") rString += "<a href=\"" + this.LnkAdress + "?defaultVariants=" + variantString + "&categoryId=" + this.NavIndex + "\">"
		rString += this.Title;
		if(this.LnkAdress!="#DROP#") rString += "</a>";
		rString += "</TD></TR>"
			+ "<TR><TD class=\"PROVIEWBEZ2\">" + this.Subtitle;
		if(variants.length>0) rString += "<br>";
		for(var i=0; i<variants.length - 1; i++){
			rString	+= "<nobr><strong>" + variants[i].split(";")[0] + ": " + variants[i].split(";")[1] + "</strong>"
			if(i<variants.length-2) rString += ", ";
			rString += "</nobr>";
			};
		rString += "</TD></TR>";
		if(this.displMode==0||this.displMode==2){
			rString	+= "<TR><TD>";
			rString += "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">";
			if(this.catDiscount==0){
				rString += "<tr valign=\"top\"><td class=\"PROVIEWPRICE\" nowrap>";
				rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
				if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objSecCurrency);
				rString += "</td></tr>";
				}
			else{
				if(this.Discount==""||this.Discount=="{EOL}"){
					rString += "<tr valign=\"top\">";
					rString += "<td nowrap>Before:&nbsp;</td>";
					rString += "<td class=\"PROVIEWPRICESTROKEN\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
					rString += "</td>"
					rString += "</tr>";
					rString += "<tr valign=\"top\">";
					rString += "<td nowrap>Now only:&nbsp;</td>";
					rString += "<td class=\"PROVIEWPRICE\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price * (1 - this.catDiscount / 100 ),this.Tax) / this.PriceUnit, objPriCurrency);
					if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price - ( this.Price * this.catDiscount / 100 ),this.Tax) / this.PriceUnit, objSecCurrency);
					rString += "</td>"
					rString += "</tr>";
					}
				else{
					rString += "<tr valign=\"top\"><td class=\"PROVIEWPRICE\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
					if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objSecCurrency);
					rString += "</td></tr>";
					};
				};
			rString += "</table>";
			rString += "</TD></TR>";
			}
		else if(this.displMode==3){
			rString	+= "<TR><TD class=\"PROVIEWPRICE\" nowrap>";
			rString += "Price on demand";
			rString += "</TD></TR>";
			};
		if(this.displMode==0){
			rString += "<TR><TD>&nbsp;</TD></TR>"
				+ "<TR><TD><a href=\"JavaScript:addToBag(Entry[" + this.Index + "]," + this.Minorder + ");\">" + addToBag + "</a></TD></TR>";
			};
		rString += "<TR><TD>&nbsp;</TD></TR>"
			+ "</TABLE>"
			+ "</td></tr>";
		return(rString);
		};
// ** 1106
	function Element(Index,Image,Width,Height,Prod_nr,Title,Subtitle,Manufac,Price,Weight,Tax,PriceUnit,Unitdesc,NavIndex,Options,LnkAdress,Discount,Minorder,Category,catDiscount,displMode){
		this.Index = Index;
		this.Image = Image;this.Width = Width;
		this.Height = Height;this.Prod_nr = Prod_nr;
		this.Title = Title;this.Subtitle = Subtitle;
		this.Manufac = Manufac;this.Price = Price;
		this.Weight = Weight;this.Tax = Tax;
		this.PriceUnit = PriceUnit;this.Unitdesc = Unitdesc;
		this.NavIndex = NavIndex;
		this.Print = TElementPrint;this.Variants = Options;
		this.LnkAdress = LnkAdress;this.Discount = Discount;
		this.Minorder = Minorder;this.Category = Category;
		this.catDiscount = catDiscount;
		this.displMode = displMode;
		};
// ** 1107
	var Entry = new Array();
// ** 1108
	
		Entry[0] = new Element(
		0, "assets/thumb/4170-kl.jpg",
		142, 107,
		"4170", "Mohair with ± 14 mm pile",
		"4170 Mohair with ± 14 mm pile", "",
		"0.93", "0",
		"1", 1,
		"cm", "2",
		"", "pd1734537619.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/MS309-kl.jpg",
		142, 107,
		"MS309", "Miniature fabrics",
		"MS309 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd-321625359.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/MS310-kl.jpg",
		142, 107,
		"MS310", "Miniature fabrics",
		"MS310 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd1167182868.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/MS311-kl.jpg",
		142, 107,
		"MS311", "Miniature fabrics",
		"MS311 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd-2147150733.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/MS312-kl.jpg",
		142, 107,
		"MS312", "Miniature fabrics",
		"MS312 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd-1757440322.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/MS313-kl.jpg",
		142, 107,
		"MS313", "Miniature fabrics",
		"MS313 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd370346853.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/MS314-kl.jpg",
		142, 107,
		"MS314", "Miniature fabrics",
		"MS314 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd-791774312.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/MS315-kl.jpg",
		142, 107,
		"MS315", "Miniature fabrics",
		"MS315 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd836677703.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/MS316-kl.jpg",
		142, 107,
		"MS316", "Miniature fabrics",
		"MS316 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd-1951036542.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/MS317-kl.jpg",
		142, 107,
		"MS317", "Miniature fabrics",
		"MS317 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd-1420675719.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/MS318-kl.jpg",
		142, 107,
		"MS318", "Miniature fabrics",
		"MS318 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd432127292.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/MS319-kl.jpg",
		142, 107,
		"MS319", "Miniature fabrics",
		"MS319 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd1895102651.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/MS320-kl.jpg",
		142, 107,
		"MS320", "Miniature fabrics",
		"MS320 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd-281109338.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/MS321-kl.jpg",
		142, 107,
		"MS321", "Miniature fabrics",
		"MS321 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd-1888763027.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/MS322-kl.jpg",
		142, 107,
		"MS322", "Miniature fabrics",
		"MS322 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd469073984.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/MS323-kl.jpg",
		142, 107,
		"MS323", "Miniature fabrics",
		"MS323 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd-1633522161.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/MS324-kl.jpg",
		142, 107,
		"MS324", "Miniature fabrics",
		"MS324 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd-144577910.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/MS325-kl.jpg",
		142, 107,
		"MS325", "Miniature fabrics",
		"MS325 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd-1934332639.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/MS326-kl.jpg",
		142, 107,
		"MS326", "Miniature fabrics",
		"MS326 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd232860164.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/MS327-kl.jpg",
		142, 107,
		"MS327", "Miniature fabrics",
		"MS327 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd197456163.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/MS328-kl.jpg",
		142, 107,
		"MS328", "Miniature fabrics",
		"MS328 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd924645678.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/MS329-kl.jpg",
		142, 107,
		"MS329", "Miniature fabrics",
		"MS329 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd-835844459.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/MS330-kl.jpg",
		142, 107,
		"MS330", "Miniature fabrics",
		"MS330 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd1075388040.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/MS331-kl.jpg",
		142, 107,
		"MS331", "Miniature fabrics",
		"MS331 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd1200535031.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/MS332-kl.jpg",
		142, 107,
		"MS332", "Miniature fabrics",
		"MS332 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd-838071150.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/MS333-kl.jpg",
		142, 107,
		"MS333", "Miniature fabrics",
		"MS333 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd-1694489655.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/MS334-kl.jpg",
		142, 107,
		"MS334", "Miniature fabrics",
		"MS334 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd-1813347892.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/MS335-kl.jpg",
		142, 107,
		"MS335", "Miniature fabrics",
		"MS335 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd309964939.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/MS336-kl.jpg",
		142, 107,
		"MS336", "Miniature fabrics",
		"MS336 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd1397631158.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/MS337-kl.jpg",
		142, 107,
		"MS337", "Miniature fabrics",
		"MS337 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd1630279869.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/1001-1020-kl.jpg",
		142, 107,
		"1001", "Glass eyes black",
		"Glass eyes black 1 mm to 20 mm", "",
		"0.62", "0",
		"1", 1,
		"pair", "21",
		"Size;01 mm@", "pd-1709230128.htm",
		"", 1,
		"2-a", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/1033-1044-kl.jpg",
		142, 107,
		"1033", "Glass eyes matted black",
		"Glass eyes matted black 3 mm to 14 mm", "",
		"0.9", "0",
		"1", 1,
		"pair", "21",
		"Size;03 mm@", "pd1603422348.htm",
		"", 1,
		"2-a", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/1105-1118-kl.jpg",
		142, 107,
		"1105", "Glass eyes brown",
		"Glass eyes brown 5 mm bis 18 mm", "",
		"1.2", "0",
		"1", 1,
		"pair", "21",
		"Size;05 mm@", "pd-1484300578.htm",
		"", 1,
		"2-a", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/1126-1136-kl.jpg",
		142, 107,
		"1126", "Glass eyes transparent",
		"Glass eyes transparent 6 mm to 16 mm", "",
		"1.24", "0",
		"1", 1,
		"pair", "21",
		"Size;06 mm@", "pd2050567394.htm",
		"", 1,
		"2-a", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/1146-1156-kl.jpg",
		142, 107,
		"1146", "Glass eyes blue",
		"Glass eyes blue 6 mm to 16 mm", "",
		"1.24", "0",
		"1", 1,
		"pair", "21",
		"Size;06 mm@", "pd1444785146.htm",
		"", 1,
		"2-a", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/1166-1176-kl.jpg",
		142, 107,
		"1166", "Glass eyes backing brown fired on",
		"Glass eyes backing brown fired on 6 mm to 16 mm", "",
		"2.5", "0",
		"1", 1,
		"pair", "21",
		"Size;06 mm@", "pd1124926994.htm",
		"", 1,
		"2-a", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/7054-kl.jpg",
		142, 107,
		"7054/15", "Plastic safety noses &quot;super&quot;",
		"Plastic safety noses black &quot;super&quot;", "",
		"0.3", "0",
		"1", 1,
		"piece", "24",
		"Size;15 mm@", "pd-1374053590.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/Versandkatalog2010-kl.jpg",
		100, 143,
		"0000", "Mail order catalogue",
		"Free mail order catalogue", "",
		"0", "0",
		"1", 1,
		"piece", "38",
		"", "pd-2147060748.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/2015-2090-kl.jpg",
		142, 107,
		"2015", "Plywood discs",
		"Plywood discs single per 10 pieces", "",
		"0.45", "0",
		"1", 1,
		"10 pieces", "25",
		"Size;15 mm@", "pd-528364734.htm",
		"", 1,
		"04", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/1315-1420-kl.jpg",
		142, 107,
		"1315", "Cardboard discs",
		"Cardboard discs single per 10 pieces", "",
		"0.45", "0",
		"1", 1,
		"10 pieces", "25",
		"Size;15 mm@", "pd1713499160.htm",
		"", 1,
		"04", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/2400-2413-kl.jpg",
		142, 107,
		"2400", "Joint sets",
		"Joint sets (5 joints)", "",
		"2.2", "0",
		"1", 1,
		"piece", "25",
		"Size;2 × 15 mm + 3 × 15 mm@", "pd565307294.htm",
		"", 1,
		"04", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/2450-2457-kl.jpg",
		142, 107,
		"2450", "Miniature fibre discs",
		"Miniature fibre discs with  1,7 mm hole", "",
		"3", "0",
		"1", 1,
		"50 pieces", "25",
		"Size;06 mm@", "pd-302041138.htm",
		"", 1,
		"04", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/120-kl.jpg",
		142, 107,
		"120", "Woolvelt",
		"120 Woolvelt", "",
		"1.5", "0",
		"1", 1,
		"piece", "12",
		"Size;025 × 017 cm@", "pd472378744.htm",
		"", 1,
		"1-n", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/7000-kl.jpg",
		142, 107,
		"7000/06", "Plastic safety eyes black",
		"Plastic safety eyes black 6 mm", "",
		"0.35", "0",
		"1", 1,
		"pair", "22",
		"Size;06 mm@", "pd283662247.htm",
		"", 1,
		"2-b", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/7001-kl.jpg",
		142, 107,
		"7001/06", "Plastic safety eyes amber",
		"Plastic safety eyes amber 6 mm to 16 mm", "",
		"0.35", "0",
		"1", 1,
		"pair", "22",
		"Size;06 mm@", "pd-736847777.htm",
		"", 1,
		"2-b", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/7002-kl.jpg",
		142, 107,
		"7002/06", "Plastic safety eyes dark brown transparent",
		"Plastic safety eyes dark brown transparent 6 mm to 16 mm", "",
		"0.35", "0",
		"1", 1,
		"pair", "22",
		"Size;06 mm@", "pd91097111.htm",
		"", 1,
		"2-b", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/7003-kl.jpg",
		142, 107,
		"7003/06", "Plastic safety eyes brown",
		"Plastic safety eyes brown 6 mm to 16 mm", "",
		"0.35", "0",
		"1", 1,
		"pair", "22",
		"Size;06 mm@", "pd-1741322545.htm",
		"", 1,
		"2-b", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/7004-kl.jpg",
		142, 107,
		"7004/06", "Plastic safety eyes blue",
		"Plastic safety eyes blue 6 mm bis 16 mm", "",
		"0.35", "0",
		"1", 1,
		"pair", "22",
		"Size;06 mm@", "pd304608391.htm",
		"", 1,
		"2-b", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/7005-kl.jpg",
		142, 107,
		"7005/06", "Plastic safety eyes green",
		"Plastic safety eyes green 6 mm bis 16 mm", "",
		"0.35", "0",
		"1", 1,
		"pair", "22",
		"Size;06 mm@", "pd117322047.htm",
		"", 1,
		"2-b", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/1050-kl.jpg",
		142, 142,
		"1050", "Position eyes Set 0",
		"Position eyes 1, 2, 3, 4, 5 mm", "",
		"8.4", "0",
		"1", 1,
		"set", "23",
		"", "pd-2081612553.htm",
		"", 1,
		"2-c", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/3055-kl.jpg",
		142, 107,
		"3055", "Fiskars stitching scissors",
		"Fiskars stitching scissors", "",
		"13.9", "0",
		"1", 1,
		"piece", "28",
		"", "pd-1734425997.htm",
		"", 1,
		"06-a", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/3056-kl.jpg",
		142, 107,
		"3056", "Fiskars sewing scissors",
		"Fiskars sewing scissors", "",
		"14.9", "0",
		"1", 1,
		"piece", "28",
		"", "pd-1085810215.htm",
		"", 1,
		"06-a", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/3057-kl.jpg",
		142, 107,
		"3057", "Fiskars stitching scissors",
		"Fiskars stitching scissors", "",
		"16.9", "0",
		"1", 1,
		"piece", "28",
		"", "pd1797625775.htm",
		"", 1,
		"06-a", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/Musterbuch-kl.jpg",
		142, 107,
		"0001", "Sample cards",
		"Sample cards", "",
		"20", "0",
		"1", 1,
		"piece", "38",
		"", "pd-1102831243.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/3004-3006-kl.jpg",
		142, 107,
		"3004", "Growlers",
		"Plastic growlers", "",
		"2.8", "0",
		"1", 1,
		"piece", "38",
		"Size;40 mm@", "pd-118351701.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/3004K-3006K-kl.jpg",
		142, 107,
		"3004K", "Growlers",
		"Cardboard growlers", "",
		"3.2", "0",
		"1", 1,
		"piece", "38",
		"Size;40 mm@", "pd618481948.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/5401-5412-kl.jpg",
		142, 107,
		"5401", "Zipper bags",
		"Zipper bags", "",
		"1.4", "0",
		"1", 1,
		"100 pieces", "38",
		"Size;04 × 06 cm@", "pd-1239379255.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/1051-kl.jpg",
		142, 142,
		"1051", "Position eyes Set 1",
		"Position eyes 4, 5, 6, 7, 8, 9, 10 mm", "",
		"13.5", "0",
		"1", 1,
		"set", "23",
		"", "pd725079379.htm",
		"", 1,
		"2-c", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/1052-kl.jpg",
		142, 142,
		"1052", "Position eyes Set 2",
		"Position eyes 11, 12, 13, 14, 15, 16 mm", "",
		"18.5", "0",
		"1", 1,
		"set", "23",
		"", "pd366389177.htm",
		"", 1,
		"2-c", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/1053-kl.jpg",
		142, 142,
		"1053", "Position eyes Set 1 + 2",
		"Position eyes 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 mm", "",
		"29", "0",
		"1", 1,
		"set", "23",
		"", "pd-1121150833.htm",
		"", 1,
		"2-c", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/7050-kl.jpg",
		142, 107,
		"7050/12", "Plastic safety noses &quot;soft&quot;",
		"Plastic safety noses black &quot;soft&quot;", "",
		"0.4", "0",
		"1", 1,
		"piece", "24",
		"Size;12 mm@", "pd-1578463915.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/7051-kl.jpg",
		142, 107,
		"7051/12", "Plastic safety noses &quot;soft&quot;",
		"Plastic safety noses brown &quot;soft&quot;", "",
		"0.4", "0",
		"1", 1,
		"piece", "24",
		"Size;12 mm@", "pd1009122887.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/7052-kl.jpg",
		142, 107,
		"7052/15", "Plastic safety noses",
		"Plastic safety noses black", "",
		"0.25", "0",
		"1", 1,
		"piece", "24",
		"Size;15 mm@", "pd290003113.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/7053-kl.jpg",
		142, 107,
		"7053/15", "Plastic safety noses",
		"Plastic safety noses brown", "",
		"0.25", "0",
		"1", 1,
		"piece", "24",
		"Size;15 mm@", "pd-2045671173.htm",
		"", 1,
		"03", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/2460-2467-kl.jpg",
		142, 107,
		"2460", "Miniature sets",
		"Miniature sets with cotterpins no. 2470", "",
		"1.1", "0",
		"1", 1,
		"piece", "25",
		"Size;06 mm@", "pd1091819453.htm",
		"", 1,
		"04", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/7070-kl.jpg",
		142, 107,
		"7070/20", "Plastic safety joints",
		"Plastic safety joints", "",
		"0.55", "0",
		"1", 1,
		"piece", "25",
		"Size;20 mm@", "pd-16610961.htm",
		"", 1,
		"04", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/2500-2501,2526-2527-kl.jpg",
		142, 107,
		"2500", "Washers",
		"Washers Ø 12 mm for cotterpins and bolts", "",
		"0.3", "0",
		"1", 1,
		"20 pieces", "26",
		"Size;M3 - 3 mm innerhole@", "pd903602140.htm",
		"", 1,
		"05", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/2500-2501,2526-2527-kl.jpg",
		142, 107,
		"2526", "Washers",
		"Washers Ø 20 mm, for cotterpins and bolts", "",
		"0.4", "0",
		"1", 1,
		"10 pieces", "26",
		"Size;M4 - 4 mm innerhole@", "pd-461265496.htm",
		"", 1,
		"05", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/121-kl.jpg",
		142, 107,
		"121", "Woolvelt",
		"121 Woolvelt", "",
		"1.5", "0",
		"1", 1,
		"piece", "12",
		"Size;025 × 017 cm@", "pd506576948.htm",
		"", 1,
		"1-n", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/122-kl.jpg",
		142, 107,
		"122", "Woolvelt",
		"122 Woolvelt", "",
		"1.5", "0",
		"1", 1,
		"piece", "12",
		"Size;025 × 017 cm@", "pd-1242445037.htm",
		"", 1,
		"1-n", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/123-kl.jpg",
		142, 107,
		"123", "Woolvelt",
		"123 Woolvelt", "",
		"1.5", "0",
		"1", 1,
		"piece", "12",
		"Size;025 × 017 cm@", "pd-1974337058.htm",
		"", 1,
		"1-n", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/2516,2520,2525-kl.jpg",
		142, 107,
		"2516", "Bolts",
		"Bolts", "",
		"0.4", "0",
		"1", 1,
		"10 pieces", "26",
		"Size;16 mm@", "pd1471808773.htm",
		"", 1,
		"05", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/2502-2503-kl.jpg",
		142, 107,
		"2502", "Nuts",
		"Lock nuts", "",
		"0.5", "0",
		"1", 1,
		"10 pieces", "26",
		"Art;Lock nuts@", "pd-737320434.htm",
		"", 1,
		"05", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/2469-2474-kl.jpg",
		142, 107,
		"2470", "T-shaped cotterpins",
		"T-shaped cotterpins for miniature fibre discs", "",
		"2.3", "0",
		"1", 1,
		"50 pieces", "26",
		"Size;1,6 x 15 mm@", "pd1305427706.htm",
		"", 1,
		"05", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/2469-2474-kl.jpg",
		142, 107,
		"2471", "T-shaped cotterpins",
		"T-shaped cotterpins  for plywood- and cardboard discs", "",
		"0.6", "0",
		"1", 1,
		"10 pieces", "26",
		"Size;2,5 × 28 mm@", "pd-131849562.htm",
		"", 1,
		"05", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/2475-2477-kl.jpg",
		142, 107,
		"2475", "Cotterpins (for waggle joints)",
		"Cotterpins for waggle joints for miniature fibre discs", "",
		"2.3", "0",
		"1", 1,
		"50 pieces", "26",
		"Size;1,6 × 20 mm@", "pd217943440.htm",
		"", 1,
		"05", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/2475-2477-kl.jpg",
		142, 107,
		"2476", "Cotterpins (for waggle joints)",
		"Cotterpins for waggle joints for plywood- und cardboard discs", "",
		"0.6", "0",
		"1", 1,
		"10 pieces", "26",
		"Size;2,5 × 28 mm@", "pd471021212.htm",
		"", 1,
		"05", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/5051-kl.jpg",
		142, 107,
		"5051", "Fiberfill",
		"Fiberfill", "",
		"8.5", "0",
		"1", 1,
		"kilogram", "33",
		"", "pd1825695848.htm",
		"", 1,
		"08", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/5053-kl.jpg",
		142, 107,
		"5053", "Sheep wool",
		"Sheep wool", "",
		"12.5", "0",
		"1", 1,
		"kilogram", "33",
		"", "pd1853990102.htm",
		"", 1,
		"08", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/5060-kl.jpg",
		142, 107,
		"5060", "Polyester filling",
		"Polyester filling", "",
		"4.6", "0",
		"1", 1,
		"kilogram", "33",
		"", "pd929148660.htm",
		"", 1,
		"08", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/5061-kl.jpg",
		142, 107,
		"5061", "Cotton wadding",
		"Cotton wadding", "",
		"4.6", "0",
		"1", 1,
		"kilogram", "33",
		"", "pd1675329090.htm",
		"", 1,
		"08", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/5080-kl.jpg",
		142, 107,
		"5080", "Mohair stuffing material",
		"Mohair stuffing material", "",
		"7.3", "0",
		"1", 1,
		"kilogram", "33",
		"", "pd2061719104.htm",
		"", 1,
		"08", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/5189-kl.jpg",
		142, 107,
		"5189", "Rubber pellets",
		"Rubber pellets heavy", "",
		"9.6", "0",
		"1", 1,
		"kilogram", "33",
		"Weight;1 kg@", "pd-22731154.htm",
		"", 1,
		"08", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/5191-kl.jpg",
		142, 107,
		"5191", "Rubber pellets",
		"Rubber pellets", "",
		"9.6", "0",
		"1", 1,
		"kilogram", "33",
		"Weight;1 kg@", "pd288295258.htm",
		"", 1,
		"08", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/511-kl.jpg",
		142, 107,
		"511", "Mohair with ± 9 mm pile",
		"511 Mohair with ± 9 mm pile", "",
		"0.57", "0",
		"1", 1,
		"cm", "1",
		"", "pd185094918.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/512-kl.jpg",
		142, 107,
		"512", "Mohair with ± 9 mm pile",
		"512 Mohair with ± 9 mm pile", "",
		"0.57", "0",
		"1", 1,
		"cm", "1",
		"", "pd-1742026588.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/5203-kl.jpg",
		142, 107,
		"5203", "Steel pellets",
		"Steel pellets", "",
		"11.9", "0",
		"1", 1,
		"kilogram", "33",
		"Weight;1 kg@", "pd-2140475534.htm",
		"", 1,
		"08", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/5205-kl.jpg",
		142, 107,
		"5205", "Steel pellets",
		"Steel pellets fine", "",
		"11.9", "0",
		"1", 1,
		"kilogram", "33",
		"Weight;1 kg@", "pd1617398430.htm",
		"", 1,
		"08", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/5206-kl.jpg",
		142, 107,
		"5206", "Glass pellets",
		"Glass pellets coarse", "",
		"7.9", "0",
		"1", 1,
		"kilogram", "33",
		"", "pd1171361930.htm",
		"", 1,
		"08", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/5208-kl.jpg",
		142, 107,
		"5208", "Glass pellets",
		"Glass pellets fine", "",
		"7.9", "0",
		"1", 1,
		"kilogram", "33",
		"", "pd1991233992.htm",
		"", 1,
		"08", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/513-kl.jpg",
		142, 107,
		"513", "Mohair with ± 9 mm pile",
		"513 Mohair with ± 9 mm pile", "",
		"0.57", "0",
		"1", 1,
		"cm", "1",
		"", "pd-283423840.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/514-kl.jpg",
		142, 107,
		"514", "Mohair with ± 9 mm pile",
		"514 Mohair with ± 9 mm pile", "",
		"0.57", "0",
		"1", 1,
		"cm", "1",
		"", "pd-1280861490.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/515-kl.jpg",
		142, 107,
		"515", "Mohair with ± 9 mm pile",
		"515 Mohair with ± 9 mm pile", "",
		"0.57", "0",
		"1", 1,
		"cm", "1",
		"", "pd745108908.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/2480-kl.jpg",
		142, 107,
		"2485", "Turning forceps",
		"Turning forceps 10 cm", "",
		"4.9", "0",
		"1", 1,
		"piece", "27",
		"Size;10 cm@", "pd1109639285.htm",
		"", 1,
		"06", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/2481-2483-kl.jpg",
		142, 107,
		"2481", "Cotter key",
		"Cotter key", "",
		"5.8", "0",
		"1", 1,
		"piece", "27",
		"Art;for 2469/2470 or 2475/2478@", "pd-654013999.htm",
		"", 1,
		"06", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/5308-kl.jpg",
		142, 107,
		"5308", "Fabricawl",
		"Fabricawl ± 12 cm", "",
		"2.9", "0",
		"1", 1,
		"piece", "27",
		"", "pd-1021143126.htm",
		"", 1,
		"06", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/3008-3018-kl.jpg",
		142, 107,
		"3008", "Wooden stuffers",
		"Wooden stuffers", "",
		"2.4", "0",
		"1", 1,
		"piece", "27",
		"Size;08 cm@", "pd-113201688.htm",
		"", 1,
		"06", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/3035-3040-kl.jpg",
		142, 107,
		"3035", "Mini stuffers",
		"Mini stuffers", "",
		"2.4", "0",
		"1", 1,
		"piece", "27",
		"Size;05 cm@", "pd-1114953627.htm",
		"", 1,
		"06", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/thumb/3051-kl.jpg",
		142, 107,
		"3051", "Stitching scissors",
		"Stitching scissors", "",
		"2.9", "0",
		"1", 1,
		"piece", "28",
		"", "pd-920709138.htm",
		"", 1,
		"06-a", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/201-kl.jpg",
		142, 107,
		"201", "Suédine",
		"201 Suédine: Imitation leather for the paws of the bears.", "",
		"1.2", "0",
		"1", 1,
		"piece", "11",
		"Size;025 × 017 cm@", "pd1924058068.htm",
		"", 1,
		"1-m", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/thumb/Mats-kl.jpg",
		100, 142,
		"6073", "Mats ± 35 cm",
		"6073 Do it yourself kit Mats ± 35 cm", "",
		"41.4", "0",
		"1", 1,
		"piece", "35",
		"", "pd-444158157.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/5193-kl.jpg",
		142, 107,
		"5193", "Mineral pellets",
		"Mineral pellets fine", "",
		"4.25", "0",
		"1", 1,
		"kilogram", "33",
		"Weight;1 kg@", "pd749283094.htm",
		"", 1,
		"08", "0",
		 0)
	
		Entry[102] = new Element(
		102, "assets/thumb/5195-kl.jpg",
		142, 107,
		"5195", "Mineral pellets",
		"Mineral pellets medium", "",
		"4.25", "0",
		"1", 1,
		"kilogram", "33",
		"Weight;1 kg@", "pd827434114.htm",
		"", 1,
		"08", "0",
		 0)
	
		Entry[103] = new Element(
		103, "assets/thumb/5197-kl.jpg",
		142, 107,
		"5197", "Mineral pellets",
		"Mineral pellets coarse", "",
		"4.25", "0",
		"1", 1,
		"kilogram", "33",
		"Weight;1 kg@", "pd2126262446.htm",
		"", 1,
		"08", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/5200-kl.jpg",
		142, 107,
		"5200", "Plastic pellets",
		"Plastic pellets", "",
		"2.9", "0",
		"1", 1,
		"kilogram", "33",
		"", "pd316487578.htm",
		"", 1,
		"08", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/516-kl.jpg",
		142, 107,
		"516", "Mohair with ± 9 mm pile",
		"516 Mohair with ± 9 mm pile", "",
		"0.57", "0",
		"1", 1,
		"cm", "1",
		"", "pd1320030040.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/thumb/517-kl.jpg",
		142, 107,
		"517", "Mohair with ± 9 mm pile",
		"517 Mohair with ± 9 mm pile", "",
		"0.57", "0",
		"1", 1,
		"cm", "1",
		"", "pd-1423448762.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/3059-kl.jpg",
		142, 107,
		"3059", "Fiskars scissors grinders",
		"Fiskars scissors grinders", "",
		"10.9", "0",
		"1", 1,
		"piece", "28",
		"", "pd1486202084.htm",
		"", 1,
		"06-a", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/7200-kl.jpg",
		142, 107,
		"7200/06", "7200 Dollarmature",
		"7200 Dollarmature per meter", "",
		"8.7", "0",
		"1", 1,
		"piece", "38",
		"Size;06 mm@", "pd-268819022.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/5362-kl.jpg",
		142, 107,
		"5362", "Nylbond",
		"Nylbond extra strong 60 mtr. spools in many colours", "",
		"2", "0",
		"1", 1,
		"pieces", "31",
		"Nylbond colour no.;fits to (please mention at textfield comment)@", "pd609352672.htm",
		"", 1,
		"7-b", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/thumb/202-kl.jpg",
		142, 107,
		"202", "Suédine",
		"202 Suédine: Imitation leather for the paws of the bears.", "",
		"1.2", "0",
		"1", 1,
		"piece", "11",
		"Size;025 × 017 cm@", "pd2076637249.htm",
		"", 1,
		"1-m", "0",
		 0)
	
		Entry[111] = new Element(
		111, "assets/thumb/203-kl.jpg",
		142, 107,
		"203", "Suédine",
		"203 Suédine: Imitation leather for the paws of the bears.", "",
		"1.2", "0",
		"1", 1,
		"piece", "11",
		"Size;025 × 017 cm@", "pd-1422212188.htm",
		"", 1,
		"1-m", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/204-kl.jpg",
		142, 107,
		"204", "Suédine",
		"204 Suédine: Imitation leather for the paws of the bears.", "",
		"1.2", "0",
		"1", 1,
		"piece", "11",
		"Size;025 × 017 cm@", "pd-82937021.htm",
		"", 1,
		"1-m", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/thumb/205-kl.jpg",
		142, 107,
		"205", "Suédine",
		"205 Suédine: Imitation leather for the paws of the bears.", "",
		"1.2", "0",
		"1", 1,
		"piece", "11",
		"Size;025 × 017 cm@", "pd-1174667826.htm",
		"", 1,
		"1-m", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/thumb/208-kl.jpg",
		142, 107,
		"208", "Suédine",
		"208 Suédine: Imitation leather for the paws of the bears.", "",
		"1.2", "0",
		"1", 1,
		"piece", "11",
		"Size;025 × 017 cm@", "pd-233843177.htm",
		"", 1,
		"1-m", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/thumb/209-kl.jpg",
		142, 107,
		"209", "Suédine",
		"209 Suédine: Imitation leather for the paws of the bears.", "",
		"1.2", "0",
		"1", 1,
		"piece", "11",
		"Size;025 × 017 cm@", "pd-1165795534.htm",
		"", 1,
		"1-m", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/thumb/210-kl.jpg",
		142, 107,
		"210", "Suédine",
		"210 Suédine: Imitation leather for the paws of the bears.", "",
		"1.2", "0",
		"1", 1,
		"piece", "11",
		"Size;025 × 017 cm@", "pd1189829353.htm",
		"", 1,
		"1-m", "0",
		 0)
	
		Entry[117] = new Element(
		117, "assets/thumb/211-kl.jpg",
		142, 107,
		"211", "Suédine",
		"211 Suédine: Imitation leather for the paws of the bears.", "",
		"1.2", "0",
		"1", 1,
		"piece", "11",
		"Size;025 × 017 cm@", "pd56375148.htm",
		"", 1,
		"1-m", "0",
		 0)
	
		Entry[118] = new Element(
		118, "assets/thumb/212-kl.jpg",
		142, 107,
		"212", "Suédine",
		"212 Suédine: Imitation leather for the paws of the bears.", "",
		"1.2", "0",
		"1", 1,
		"piece", "11",
		"Size;025 × 017 cm@", "pd1534559915.htm",
		"", 1,
		"1-m", "0",
		 0)
	
		Entry[119] = new Element(
		119, "assets/thumb/214-kl.jpg",
		142, 107,
		"214", "Suédine",
		"214 Suédine: Imitation leather for the paws of the bears.", "",
		"1.2", "0",
		"1", 1,
		"piece", "11",
		"Size;025 × 017 cm@", "pd1455871453.htm",
		"", 1,
		"1-m", "0",
		 0)
	
		Entry[120] = new Element(
		120, "assets/thumb/215-kl.jpg",
		142, 107,
		"215", "Suédine",
		"215 Suédine: Imitation leather for the paws of the bears.", "",
		"1.2", "0",
		"1", 1,
		"piece", "11",
		"Size;025 × 017 cm@", "pd-1624773776.htm",
		"", 1,
		"1-m", "0",
		 0)
	
		Entry[121] = new Element(
		121, "assets/thumb/216-kl.jpg",
		142, 107,
		"216", "Suédine",
		"216 Suédine: Imitation leather for the paws of the bears.", "",
		"1.2", "0",
		"1", 1,
		"piece", "11",
		"Size;025 × 017 cm@", "pd-465485569.htm",
		"", 1,
		"1-m", "0",
		 0)
	
		Entry[122] = new Element(
		122, "assets/thumb/217-kl.jpg",
		142, 107,
		"217", "Suédine",
		"217 Suédine: Imitation leather for the paws of the bears.", "",
		"1.2", "0",
		"1", 1,
		"piece", "11",
		"Size;025 × 017 cm@", "pd-679354310.htm",
		"", 1,
		"1-m", "0",
		 0)
	
		Entry[123] = new Element(
		123, "assets/thumb/Jim37-kl.jpg",
		100, 142,
		"6030 - 455", "Jim37 synthetic",
		"6030 Do it yourself kit Jim37 ± 37 cm made from synthetic fabric", "",
		"24.4", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;455@", "pd1102404753.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[124] = new Element(
		124, "assets/thumb/Jim45-kl.jpg",
		100, 142,
		"6037- 4140", "Jim45 ± 45 cm",
		"6036 + 6037 Do it yourself kit Jim45 ± 45 cm", "",
		"36.7", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;4140@", "pd-1239523478.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[125] = new Element(
		125, "assets/thumb/Paulie-alpaca-kl.jpg",
		142, 107,
		"6042 - 5470", "Paulie ± 25 cm alpaca",
		"6042 Do it yourself kit Paulie ± 25 cm from fabric-no. 5470 - 5477", "",
		"25.4", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;5470@", "pd-1594313168.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[126] = new Element(
		126, "assets/thumb/Sam-kl.jpg",
		142, 142,
		"6151 - 586", "Sam ± 32 cm 755 - 764, 586 - 596",
		"6151 Do it yourself kit Sam ± 32 cm from mohair 755 - 764 or 586 - 596", "",
		"31.1", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;586@", "pd-1854090634.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[127] = new Element(
		127, "assets/thumb/Ralf-kl.jpg",
		142, 107,
		"6111", "Ralf ± 32 cm",
		"6111 Do it yourself kit Ralf ± 32 cm", "",
		"43.4", "0",
		"1", 1,
		"piece", "35",
		"", "pd798515281.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[128] = new Element(
		128, "assets/thumb/Ruud-kl.jpg",
		142, 107,
		"6110", "Ruud ± 50 cm",
		"6110 Do it yourself kit Ruud ± 50 cm", "",
		"74.6", "0",
		"1", 1,
		"piece", "35",
		"", "pd1644978919.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[129] = new Element(
		129, "assets/thumb/4209-kl.jpg",
		142, 107,
		"4209", "Mohair with 30% viscose with ± 8 mm pile",
		"4209 Mohair with 30% viscose with ± 8 mm pile", "",
		"0.82", "0",
		"1", 1,
		"cm", "1",
		"", "pd-639254675.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[130] = new Element(
		130, "assets/thumb/219-kl.jpg",
		142, 107,
		"219", "Suédine",
		"219 Suédine: Imitation leather for the paws of the bears.", "",
		"1.2", "0",
		"1", 1,
		"piece", "11",
		"Size;025 × 017 cm@", "pd-360855709.htm",
		"", 1,
		"1-m", "0",
		 0)
	
		Entry[131] = new Element(
		131, "assets/thumb/221-kl.jpg",
		142, 107,
		"221", "Suédine",
		"221 Suédine: Imitation leather for the paws of the bears.", "",
		"1.2", "0",
		"1", 1,
		"piece", "11",
		"Size;025 × 017 cm@", "pd-1399919506.htm",
		"", 1,
		"1-m", "0",
		 0)
	
		Entry[132] = new Element(
		132, "assets/thumb/222-kl.jpg",
		142, 107,
		"222", "Suédine",
		"222 Suédine: Imitation leather for the paws of the bears.", "",
		"1.2", "0",
		"1", 1,
		"piece", "11",
		"Size;025 × 017 cm@", "pd-1048126763.htm",
		"", 1,
		"1-m", "0",
		 0)
	
		Entry[133] = new Element(
		133, "assets/thumb/223-kl.jpg",
		142, 107,
		"223", "Suédine",
		"223 Suédine: Imitation leather for the paws of the bears.", "",
		"1.2", "0",
		"1", 1,
		"piece", "11",
		"Size;025 × 017 cm@", "pd-1414535224.htm",
		"", 1,
		"1-m", "0",
		 0)
	
		Entry[134] = new Element(
		134, "assets/thumb/Rosti-kl.jpg",
		142, 107,
		"6112", "Rosti ± 32 cm",
		"6112 Do it yourself kit Rosti ± 32 cm", "",
		"40", "0",
		"1", 1,
		"piece", "35",
		"", "pd148248631.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[135] = new Element(
		135, "assets/thumb/Jacko-4160-kl.jpg",
		142, 107,
		"6045 - 4160", "Jacko ± 28 cm",
		"6045 Do it yourself kit Jacko ± 28 cm from mohair 4160 - 4167", "",
		"25.4", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;4160@", "pd-1685998275.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[136] = new Element(
		136, "assets/thumb/Jimmy30-baumwolle-kl.jpg",
		100, 142,
		"Jimmy30", "Jimmy30",
		"Pattern Jimmy30 ± 30 cm", "",
		"4", "0",
		"2", 1,
		"piece", "36",
		"", "pd257500177.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[137] = new Element(
		137, "assets/thumb/Jim37-kl.jpg",
		100, 142,
		"Jim37", "Jim37",
		"Pattern Jim37 ± 37 cm", "",
		"4", "0",
		"2", 1,
		"piece", "36",
		"", "pd-384709465.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[138] = new Element(
		138, "assets/thumb/Jim45-kl.jpg",
		100, 142,
		"Jim45", "Jim45",
		"Pattern Jim45 ± 45 cm", "",
		"5", "0",
		"2", 1,
		"piece", "36",
		"", "pd-1248313555.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[139] = new Element(
		139, "assets/thumb/Super-Jim-kl.jpg",
		142, 107,
		"Super Jim", "Super Jim",
		"Pattern Super Jim ± 60 cm.", "",
		"6", "0",
		"2", 1,
		"piece", "36",
		"", "pd1245400355.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[140] = new Element(
		140, "assets/thumb/Joep-kl.jpg",
		142, 142,
		"Joep", "Joep",
		"Pattern Joep ± 32 cm", "",
		"4", "0",
		"2", 1,
		"piece", "36",
		"", "pd494674953.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[141] = new Element(
		141, "assets/thumb/Truus-kl.jpg",
		100, 142,
		"Truus", "Truus",
		"Pattern Truus ± 27 cm.", "",
		"4", "0",
		"2", 1,
		"piece", "36",
		"", "pd-1270502049.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[142] = new Element(
		142, "assets/thumb/Teun-kl.jpg",
		100, 142,
		"Teun", "Teun",
		"Pattern Teun ± 38 cm", "",
		"5", "0",
		"2", 1,
		"piece", "36",
		"", "pd-1552748891.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[143] = new Element(
		143, "assets/thumb/Terry-kl.jpg",
		100, 142,
		"Terry", "Terry",
		"Pattern Terry ± 40 cm", "",
		"5", "0",
		"2", 1,
		"piece", "36",
		"", "pd-1707316901.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[144] = new Element(
		144, "assets/thumb/Timber-kl.jpg",
		142, 142,
		"Timber", "Timber",
		"Pattern Timber ± 32 cm", "",
		"4", "0",
		"2", 1,
		"piece", "36",
		"", "pd1541700353.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[145] = new Element(
		145, "assets/thumb/5466-kl.jpg",
		142, 106,
		"5466", "Alpaca with ± 22 mm pile",
		"5466 Alpaca with ± 22 mm pile", "",
		"1.32", "0",
		"1", 1,
		"cm", "8",
		"", "pd-134956174.htm",
		"", 10,
		"1-j", "0",
		 0)
	
		Entry[146] = new Element(
		146, "assets/thumb/218-kl.jpg",
		142, 107,
		"218", "Suédine",
		"218 Suédine: Imitation leather for the paws of the bears.", "",
		"1.2", "0",
		"1", 1,
		"piece", "11",
		"Size;025 × 017 cm@", "pd1208177831.htm",
		"", 1,
		"1-m", "0",
		 0)
	
		Entry[147] = new Element(
		147, "assets/thumb/Jona-kl.jpg",
		106, 142,
		"6086 - 5450", "Jona ± 20 cm",
		"6086 Do it yourself kit Jona ± 20 cm ", "",
		"17.9", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;5450@", "pd1221132767.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[148] = new Element(
		148, "assets/thumb/Franz-kl.jpg",
		106, 142,
		"6089 - Beige", "Franz ± 38 cm",
		"6089 Do it yourself kit Franz ± 38 cm", "",
		"19.9", "0",
		"1", 1,
		"piece", "35",
		"Colour;Beige@", "pd1232021977.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[149] = new Element(
		149, "assets/thumb/3044-3045-kl.jpg",
		142, 107,
		"3044", "Metal stuffer",
		"Metal stuffer 7 cm", "",
		"3.5", "0",
		"1", 1,
		"pieces", "27",
		"Number;3044@", "pd-495570154.htm",
		"", 1,
		"06", "0",
		 0)
	
		Entry[150] = new Element(
		150, "assets/thumb/151-040-kl.jpg",
		142, 107,
		"151-040", "Mohair with ± 16 mm pile",
		"151-040 Mohair with ± 16 mm pile", "",
		"0.68", "0",
		"1", 1,
		"cm", "2",
		"", "pd626978234.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[151] = new Element(
		151, "assets/thumb/rbs-01-kl.jpg",
		142, 107,
		"RBS-01-2", "Rainbowseries 15 cm × 70 cm",
		"Rainbowseries darkred mohair 15 cm × 70 cm", "",
		"7.5", "0",
		"1", 1,
		"pieces", "16",
		"", "pd1855431480.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[152] = new Element(
		152, "assets/thumb/Bennie-kl.jpg",
		100, 142,
		"Bennie", "Bennie",
		"Pattern Bennie ± 37 cm", "",
		"4", "0",
		"2", 1,
		"piece", "36",
		"", "pd1455078679.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[153] = new Element(
		153, "assets/thumb/Guenther-kl.jpg",
		100, 142,
		"Günther", "Günther",
		"Pattern Günther ± 17 cm", "",
		"3", "0",
		"2", 1,
		"piece", "36",
		"", "pd-1806801635.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[154] = new Element(
		154, "assets/thumb/Sam-kl.jpg",
		142, 142,
		"Sam", "Sam",
		"Pattern Sam ± 32 cm", "",
		"4", "0",
		"2", 1,
		"piece", "36",
		"", "pd-2107136877.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[155] = new Element(
		155, "assets/thumb/Nanango-kl.jpg",
		142, 107,
		"6047", "Nanango ± 45 cm",
		"6047 Do it yourself kit Nanango ± 45 cm kangaroe from alpaca", "",
		"65.6", "0",
		"1", 1,
		"piece", "35",
		"", "pd2116028665.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[156] = new Element(
		156, "assets/thumb/Nanango-kl.jpg",
		142, 107,
		"6048", "Nanango ± 65 cm",
		"6048 Do it yourself kit Nanango ± 65 cm kangaroe from alpaca", "",
		"99", "0",
		"1", 1,
		"piece", "35",
		"", "pd-1976443953.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[157] = new Element(
		157, "assets/thumb/Ralf-kl.jpg",
		142, 107,
		"Ralf", "Ralf",
		"Pattern Ralf ± 32 cm", "",
		"6", "0",
		"2", 1,
		"piece", "36",
		"", "pd525763221.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[158] = new Element(
		158, "assets/thumb/Ruud-kl.jpg",
		142, 107,
		"Ruud", "Ruud",
		"Pattern Ruud ± 50 cm", "",
		"8", "0",
		"2", 1,
		"piece", "36",
		"", "pd21749451.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[159] = new Element(
		159, "assets/thumb/Poco-kl.jpg",
		142, 142,
		"Poco", "Poco",
		"Pattern Poco ± 32 cm", "",
		"4", "0",
		"2", 1,
		"piece", "36",
		"", "pd1691921905.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[160] = new Element(
		160, "assets/thumb/Paulie-alpaca-kl.jpg",
		142, 107,
		"Paulie", "Paulie",
		"Pattern Paulie ± 25 cm", "",
		"4", "0",
		"2", 1,
		"piece", "36",
		"", "pd-353900153.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[161] = new Element(
		161, "assets/thumb/Olle-mohair-kl.jpg",
		142, 107,
		"Olle", "Olle",
		"Pattern Olle ± 23 cm", "",
		"3", "0",
		"2", 1,
		"piece", "36",
		"", "pd-225237235.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[162] = new Element(
		162, "assets/thumb/Puk-kl.jpg",
		142, 142,
		"Puk", "Puk",
		"Pattern Puk ± 15 cm", "",
		"3", "0",
		"2", 1,
		"piece", "36",
		"", "pd-139200509.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[163] = new Element(
		163, "assets/thumb/Jimmy30-mohair-kl.jpg",
		100, 142,
		"6027 - 922", "Jimmy30 mohair",
		"6027 Do it yourself kit Jimmy30 ± 30 cm made from mohair", "",
		"20.9", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;922@", "pd223627753.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[164] = new Element(
		164, "assets/thumb/Jimmy30-baumwolle-kl.jpg",
		100, 142,
		"6026 - 4070", "Jimmy30 cotton",
		"6026 Do it yourself kit Jimmy30 ± 30 cm made from 6026  cotton", "",
		"18.3", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;4070@", "pd1546047547.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[165] = new Element(
		165, "assets/thumb/Jimmy30-viskose-kl.jpg",
		142, 107,
		"6025 - 4074", "Jimmy30 viscose",
		"6025 Do it yourself kit Jimmy30 ± 30 cm made from viscose", "",
		"17.9", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;4074@", "pd2031453437.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[166] = new Element(
		166, "assets/thumb/Super-Jim-kl.jpg",
		142, 107,
		"6094 - 520", "Super Jim ± 60 cm",
		"6094 Do it yourself kit Super Jim ± 60 cm fabric-no. 520-529", "",
		"47.2", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;520@", "pd-726145319.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[167] = new Element(
		167, "assets/thumb/Truus-kl.jpg",
		100, 142,
		"6115 - 622", "Truus ± 27 cm",
		"6115 Do it yourself kit Truus ± 27 cm", "",
		"24.9", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;622@", "pd-1371242771.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[168] = new Element(
		168, "assets/thumb/Teun-kl.jpg",
		100, 142,
		"6120 - 640", "Teun ± 38 cm",
		"6120 Do it yourself kit Teun ± 38 cm", "",
		"32.8", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;640@", "pd2040211227.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[169] = new Element(
		169, "assets/thumb/Terry-742-kl.jpg",
		142, 142,
		"6124 - 739", "Terry ± 40 cm",
		"6124 Do it yourself kit Terry ± 40 cm fabric-no. 739-747", "",
		"38.2", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;739@", "pd786774234.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[170] = new Element(
		170, "assets/thumb/Terry-kl.jpg",
		100, 142,
		"6125 - 586", "Terry ± 40 cm",
		"6125 Do it yourself kit Terry ± 40 cm fabric-no. 755-764 and 586-596", "",
		"38.2", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;586@", "pd-437382735.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[171] = new Element(
		171, "assets/thumb/Rosti-kl.jpg",
		142, 107,
		"Rosti", "Rosti",
		"Pattern Rosti ± 32 cm", "",
		"6", "0",
		"2", 1,
		"piece", "36",
		"", "pd647640056.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[172] = new Element(
		172, "assets/thumb/5311-5313-kl.jpg",
		142, 107,
		"5311", "Nose thread",
		"Perle nose thread black", "",
		"2", "0",
		"1", 1,
		"piece", "30",
		"Strength;no. 3@", "pd-1911401596.htm",
		"", 1,
		"7-a", "0",
		 0)
	
		Entry[173] = new Element(
		173, "assets/thumb/5316-5318-kl.jpg",
		142, 107,
		"5316", "Nose thread",
		"Perle nose thread brown", "",
		"2", "0",
		"1", 1,
		"piece", "30",
		"Strength;no. 3@", "pd57928593.htm",
		"", 1,
		"7-a", "0",
		 0)
	
		Entry[174] = new Element(
		174, "assets/thumb/5320-5322-kl.jpg",
		142, 107,
		"5320", "Nose thread",
		"Perle nose thread redbrown", "",
		"2", "0",
		"1", 1,
		"piece", "30",
		"Strength;no. 3@", "pd-1324895638.htm",
		"", 1,
		"7-a", "0",
		 0)
	
		Entry[175] = new Element(
		175, "assets/thumb/5325-5327-kl.jpg",
		142, 107,
		"5325", "Nose thread",
		"Perle nose thread salmon", "",
		"2", "0",
		"1", 1,
		"piece", "30",
		"Strength;no. 3@", "pd2101850335.htm",
		"", 1,
		"7-a", "0",
		 0)
	
		Entry[176] = new Element(
		176, "assets/thumb/5350-kl.jpg",
		142, 107,
		"5350", "Eye yarn",
		"Eye yarn white, thickness 20 = 200 mtr.", "",
		"5.4", "0",
		"1", 1,
		"piece", "32",
		"", "pd908508288.htm",
		"", 1,
		"7-c", "0",
		 0)
	
		Entry[177] = new Element(
		177, "assets/thumb/5352-kl.jpg",
		142, 107,
		"5352", "Eye yarn",
		"Eye yarn ocker, thickness 20 = 200 mtr.", "",
		"5.4", "0",
		"1", 1,
		"piece", "32",
		"", "pd1941222540.htm",
		"", 1,
		"7-c", "0",
		 0)
	
		Entry[178] = new Element(
		178, "assets/thumb/5353-kl.jpg",
		142, 107,
		"5353", "Eye yarn",
		"Eye yarn dark brown, thickness 20 = 200 mtr.", "",
		"5.4", "0",
		"1", 1,
		"piece", "32",
		"", "pd977362330.htm",
		"", 1,
		"7-c", "0",
		 0)
	
		Entry[179] = new Element(
		179, "assets/thumb/5354-kl.jpg",
		142, 107,
		"5354", "Eye yarn",
		"Eye yarn black, thickness 20 = 200 Mtr.", "",
		"5.4", "0",
		"1", 1,
		"piece", "32",
		"", "pd780576088.htm",
		"", 1,
		"7-c", "0",
		 0)
	
		Entry[180] = new Element(
		180, "assets/thumb/5360-kl.jpg",
		142, 107,
		"5360", "Sewing yarn",
		"Sewing yarn no. 30. Yarn for sewing by hand on 300 mtr. spools.", "",
		"5.4", "0",
		"1", 1,
		"piece", "31",
		"Colour no.:;fits to (please mention at textfield comment)@", "pd1816816454.htm",
		"", 1,
		"7-b", "0",
		 0)
	
		Entry[181] = new Element(
		181, "assets/thumb/5360-kl.jpg",
		142, 107,
		"5361", "Sewing yarn",
		"Sewing yarn no. 50. Yarn for hand and machine on 500 mtr. spools.", "",
		"5.8", "0",
		"1", 1,
		"piece", "31",
		"Colour no.:;fits to (please mention at textfield comment)@", "pd1463884075.htm",
		"", 1,
		"7-b", "0",
		 0)
	
		Entry[182] = new Element(
		182, "assets/thumb/5359-kl.jpg",
		142, 107,
		"5359", "Sewing yarn",
		"Sewing yarn no. 30. Yarn for sewing by hand 30 mtr. in many colours", "",
		"1.55", "0",
		"1", 1,
		"piece", "31",
		"", "pd-2121536528.htm",
		"", 1,
		"7-b", "0",
		 0)
	
		Entry[183] = new Element(
		183, "assets/thumb/4130-kl.jpg",
		142, 107,
		"4130", "Mohair with ± 2 mm pile",
		"4130 Mohair with ± 2 mm pile.", "",
		"0.58", "0",
		"1", 1,
		"cm", "1",
		"", "pd-341590483.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[184] = new Element(
		184, "assets/thumb/4131-kl.jpg",
		142, 107,
		"4131", "Mohair with ± 2 mm pile",
		"4131 Mohair with ± 2 mm pile", "",
		"0.58", "0",
		"1", 1,
		"cm", "1",
		"", "pd944694307.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[185] = new Element(
		185, "assets/thumb/Timber-kl.jpg",
		142, 142,
		"6126 - 739", "Timber ± 32 cm",
		"6126 Do it yourself kit Timber ± 32 cm", "",
		"31.1", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;739@", "pd-1741319415.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[186] = new Element(
		186, "assets/thumb/Bennie-kl.jpg",
		100, 142,
		"6145 - 765", "Bennie ± 37 cm",
		"6145 Do it yourself kit Bennie ± 37 cm", "",
		"26.5", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;765@", "pd731283980.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[187] = new Element(
		187, "assets/thumb/Guenther-kl.jpg",
		100, 142,
		"6155 - 4085", "Günther ± 17 cm",
		"6155 Do it yourself kit Günther ± 17 cm", "",
		"14.4", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;4085@", "pd298866422.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[188] = new Element(
		188, "assets/thumb/Jacko-4160-kl.jpg",
		142, 107,
		"Jacko", "Jacko",
		"Pattern Jacko ± 28 cm", "",
		"4", "0",
		"2", 1,
		"piece", "36",
		"", "pd197048567.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[189] = new Element(
		189, "assets/thumb/Nanango-kl.jpg",
		142, 107,
		"Nanango small", "Nanango small",
		"Pattern Nanango ± 45 cm", "",
		"6", "0",
		"2", 1,
		"piece", "36",
		"", "pd-1631173635.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[190] = new Element(
		190, "assets/thumb/Nanango-kl.jpg",
		142, 107,
		"Nanango big", "Nanango big",
		"Pattern Nanango ± 65 cm", "",
		"8", "0",
		"2", 1,
		"piece", "36",
		"", "pd-241033613.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[191] = new Element(
		191, "assets/thumb/5491-kl.jpg",
		142, 107,
		"5491", "Alpaca with ± 9 mm pile",
		"5491 Alpaca with ± 9 mm pile", "",
		"1.03", "0",
		"1", 1,
		"cm", "8",
		"", "pd1844090329.htm",
		"", 10,
		"1-j", "0",
		 0)
	
		Entry[192] = new Element(
		192, "assets/thumb/Sam-4140-kl.jpg",
		100, 142,
		"6152 - 4140", "Sam ± 32 cm 4140 - 4153",
		"6152 Do it yourself kit Sam ± 32 cm from mohair 4140 - 4153", "",
		"29.9", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;4140@", "pd-638143569.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[193] = new Element(
		193, "assets/thumb/Poco-4160-kl.jpg",
		142, 107,
		"6044 - 4160", "Poco ± 32 cm",
		"6044 Do it yourself kit Poco ± 32 cm", "",
		"32.9", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;4160@", "pd-1706895841.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[194] = new Element(
		194, "assets/thumb/Olle-mohair-kl.jpg",
		142, 107,
		"6040 - 4140", "Olle mohair",
		"6040 Do it yourself kit Olle ± 23 cm from mohair 4140 - 4153", "",
		"19.4", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;4140@", "pd1886606301.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[195] = new Element(
		195, "assets/thumb/Puk-kl.jpg",
		142, 142,
		"6154 - 4130", "Puk ± 15 cm",
		"6154 Do it yourself kit Puk ± 15 cm", "",
		"10.5", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;4130@", "pd619333069.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[196] = new Element(
		196, "assets/thumb/4208-kl.jpg",
		142, 107,
		"4208", "Mohair with 30% viscose with ± 8 mm pile",
		"4208 Mohair with 30% viscose with ± 8 mm pile", "",
		"0.82", "0",
		"1", 1,
		"cm", "1",
		"", "pd-535453287.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[197] = new Element(
		197, "assets/thumb/4207-kl.jpg",
		142, 107,
		"4207", "Mohair with 30% viscose with ± 8 mm pile",
		"4207 Mohair with 30% viscose with ± 8 mm pile", "",
		"0.82", "0",
		"1", 1,
		"cm", "1",
		"", "pd-2121292433.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[198] = new Element(
		198, "assets/thumb/4132-kl.jpg",
		142, 107,
		"4132", "Mohair with ± 2 mm pile",
		"4132 Mohair with ± 2 mm pile", "",
		"0.58", "0",
		"1", 1,
		"cm", "1",
		"", "pd-1443109579.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[199] = new Element(
		199, "assets/thumb/4133-kl.jpg",
		142, 107,
		"4133", "Mohair with ± 2 mm pile",
		"4133 Mohair with ± 2 mm pile", "",
		"0.58", "0",
		"1", 1,
		"cm", "1",
		"", "pd1757839979.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[200] = new Element(
		200, "assets/thumb/4134-kl.jpg",
		142, 107,
		"4134", "Mohair with ± 2 mm pile",
		"4134 Mohair with ± 2 mm pile", "",
		"0.58", "0",
		"1", 1,
		"cm", "1",
		"", "pd1460566673.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[201] = new Element(
		201, "assets/thumb/786-kl.jpg",
		142, 107,
		"786", "Mohair with ± 6 mm pile",
		"786 Mohair with ± 6 mm pile", "",
		"0.71", "0",
		"1", 1,
		"cm", "1",
		"", "pd-874989601.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[202] = new Element(
		202, "assets/thumb/787-kl.jpg",
		142, 107,
		"787", "Mohair with ± 6 mm pile",
		"787 Mohair with ± 6 mm pile", "",
		"0.71", "0",
		"1", 1,
		"cm", "1",
		"", "pd-1130955483.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[203] = new Element(
		203, "assets/thumb/500-kl.jpg",
		142, 107,
		"500", "Mohair with ± 9 mm pile",
		"500 Mohair with ± 9 mm pile", "",
		"0.57", "0",
		"1", 1,
		"cm", "1",
		"", "pd1118541719.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[204] = new Element(
		204, "assets/thumb/7201-kl.jpg",
		142, 107,
		"7201/06", "7201&quot;Y&quot; fitting",
		"7201 &quot;Y&quot; fitting for dollarmature", "",
		"0.4", "0",
		"1", 1,
		"piece", "38",
		"Size;06 mm@", "pd1715782557.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[205] = new Element(
		205, "assets/thumb/501-kl.jpg",
		142, 107,
		"501", "Mohair with ± 9 mm pile",
		"501 Mohair with ± 9 mm pile", "",
		"0.57", "0",
		"1", 1,
		"cm", "1",
		"", "pd1816823375.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[206] = new Element(
		206, "assets/thumb/502-kl.jpg",
		142, 107,
		"502", "Mohair with ± 9 mm pile",
		"502 Mohair with ± 9 mm pile", "",
		"0.57", "0",
		"1", 1,
		"cm", "1",
		"", "pd-1996934891.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[207] = new Element(
		207, "assets/thumb/503-kl.jpg",
		142, 107,
		"503", "Mohair with ± 9 mm pile",
		"503 Mohair with ± 9 mm pile", "",
		"0.57", "0",
		"1", 1,
		"cm", "1",
		"", "pd-115855029.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[208] = new Element(
		208, "assets/thumb/504-kl.jpg",
		142, 107,
		"504", "Mohair with ± 9 mm pile",
		"504 Mohair with ± 9 mm pile", "",
		"0.57", "0",
		"1", 1,
		"cm", "1",
		"", "pd-50903951.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[209] = new Element(
		209, "assets/thumb/505-kl.jpg",
		142, 107,
		"505", "Mohair with ± 9 mm pile",
		"505 Mohair with ± 9 mm pile", "",
		"0.57", "0",
		"1", 1,
		"cm", "1",
		"", "pd808608775.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[210] = new Element(
		210, "assets/thumb/506-kl.jpg",
		142, 107,
		"506", "Mohair with ± 9 mm pile",
		"506 Mohair with ± 9 mm pile", "",
		"0.57", "0",
		"1", 1,
		"cm", "1",
		"", "pd268182925.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[211] = new Element(
		211, "assets/thumb/507-kl.jpg",
		142, 107,
		"507", "Mohair with ± 9 mm pile",
		"507 Mohair with ± 9 mm pile", "",
		"0.57", "0",
		"1", 1,
		"cm", "1",
		"", "pd-1477502333.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[212] = new Element(
		212, "assets/thumb/508-kl.jpg",
		142, 107,
		"508", "Mohair with ± 9 mm pile",
		"508 Mohair with ± 9 mm pile", "",
		"0.57", "0",
		"1", 1,
		"cm", "1",
		"", "pd79573097.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[213] = new Element(
		213, "assets/thumb/509-kl.jpg",
		142, 107,
		"509", "Mohair with ± 9 mm pile",
		"509 Mohair with ± 9 mm pile", "",
		"0.57", "0",
		"1", 1,
		"cm", "1",
		"", "pd2078019775.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[214] = new Element(
		214, "assets/thumb/510-kl.jpg",
		142, 107,
		"510", "Mohair with ± 9 mm pile",
		"510 Mohair with ± 9 mm pile", "",
		"0.57", "0",
		"1", 1,
		"cm", "1",
		"", "pd-856588027.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[215] = new Element(
		215, "assets/thumb/861-kl.jpg",
		142, 107,
		"861", "Mohair with ± 9 mm pile",
		"861 Mohair with ± 9 mm pile", "",
		"0.95", "0",
		"1", 1,
		"cm", "1",
		"", "pd230343355.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[216] = new Element(
		216, "assets/thumb/932-kl.jpg",
		142, 107,
		"932", "Mohair with ± 9 mm pile",
		"932 Mohair with ± 9 mm pile", "",
		"0.95", "0",
		"1", 1,
		"cm", "1",
		"", "pd581170017.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[217] = new Element(
		217, "assets/thumb/933-kl.jpg",
		142, 107,
		"933", "Mohair with ± 9 mm pile",
		"933 Mohair with ± 9 mm pile", "",
		"0.95", "0",
		"1", 1,
		"cm", "1",
		"", "pd-1371771785.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[218] = new Element(
		218, "assets/thumb/716-kl.jpg",
		142, 107,
		"716", "Mohair with ± 9 mm pile",
		"716 Mohair with ± 9 mm pile", "",
		"1.1", "0",
		"1", 1,
		"cm", "1",
		"", "pd1861734443.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[219] = new Element(
		219, "assets/thumb/730-kl.jpg",
		142, 107,
		"730", "Mohair with ± 9 mm pile",
		"730 Mohair with ± 9 mm pile", "",
		"1.1", "0",
		"1", 1,
		"cm", "1",
		"", "pd752844369.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[220] = new Element(
		220, "assets/thumb/990-kl.jpg",
		142, 107,
		"990", "Mohair with ± 9 mm pile",
		"990 Mohair with ± 9 mm pile", "",
		"1.09", "0",
		"1", 1,
		"cm", "1",
		"", "pd-1889488665.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[221] = new Element(
		221, "assets/thumb/863-kl.jpg",
		142, 107,
		"863", "Mohair with ± 9 mm pile",
		"863 Mohair with ± 9 mm pile", "",
		"1.01", "0",
		"1", 1,
		"cm", "1",
		"", "pd-903678621.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[222] = new Element(
		222, "assets/thumb/864-kl.jpg",
		142, 107,
		"864", "Mohair with ± 9 mm pile",
		"864 Mohair with ± 9 mm pile", "",
		"1.01", "0",
		"1", 1,
		"cm", "1",
		"", "pd-293271991.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[223] = new Element(
		223, "assets/thumb/4140-kl.jpg",
		142, 107,
		"4140", "Mohair with ± 9 mm pile",
		"4140 Mohair with ± 9 mm pile", "",
		"0.97", "0",
		"1", 1,
		"cm", "1",
		"", "pd1072227649.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[224] = new Element(
		224, "assets/thumb/4141-kl.jpg",
		142, 107,
		"4141", "Mohair with ± 9 mm pile",
		"4141 Mohair with ± 9 mm pile", "",
		"0.97", "0",
		"1", 1,
		"cm", "1",
		"", "pd-1376374441.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[225] = new Element(
		225, "assets/thumb/4142-kl.jpg",
		142, 107,
		"4142", "Mohair with ± 9 mm pile",
		"4142 Mohair with ± 9 mm pile", "",
		"0.97", "0",
		"1", 1,
		"cm", "1",
		"", "pd511701853.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[226] = new Element(
		226, "assets/thumb/4143-kl.jpg",
		142, 107,
		"4143", "Mohair with ± 9 mm pile",
		"4143 Mohair with ± 9 mm pile", "",
		"0.97", "0",
		"1", 1,
		"cm", "1",
		"", "pd1873075411.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[227] = new Element(
		227, "assets/thumb/4144-kl.jpg",
		142, 107,
		"4144", "Mohair with ± 9 mm pile",
		"4144 Mohair with ± 9 mm pile", "",
		"0.97", "0",
		"1", 1,
		"cm", "1",
		"", "pd-256312519.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[228] = new Element(
		228, "assets/thumb/4145-kl.jpg",
		142, 107,
		"4145", "Mohair with ± 9 mm pile",
		"4145 Mohair with ± 9 mm pile", "",
		"0.97", "0",
		"1", 1,
		"cm", "1",
		"", "pd-80406513.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[229] = new Element(
		229, "assets/thumb/4146-kl.jpg",
		142, 107,
		"4146", "Mohair with ± 9 mm pile",
		"4146 Mohair with ± 9 mm pile", "",
		"0.97", "0",
		"1", 1,
		"cm", "1",
		"", "pd-424339243.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[230] = new Element(
		230, "assets/thumb/4147-kl.jpg",
		142, 107,
		"4147", "Mohair with ± 9 mm pile",
		"4147 Mohair with ± 9 mm pile", "",
		"0.97", "0",
		"1", 1,
		"cm", "1",
		"", "pd714956555.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[231] = new Element(
		231, "assets/thumb/4148-kl.jpg",
		142, 107,
		"4148", "Mohair with ± 9 mm pile",
		"4148 Mohair with ± 9 mm pile", "",
		"0.97", "0",
		"1", 1,
		"cm", "1",
		"", "pd566175793.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[232] = new Element(
		232, "assets/thumb/4149-kl.jpg",
		142, 107,
		"4149", "Mohair with ± 9 mm pile",
		"4149 Mohair with ± 9 mm pile", "",
		"0.97", "0",
		"1", 1,
		"cm", "1",
		"", "pd1544809927.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[233] = new Element(
		233, "assets/thumb/4150-kl.jpg",
		142, 107,
		"4150", "Mohair with ± 9 mm pile",
		"4150 Mohair with ± 9 mm pile", "",
		"0.97", "0",
		"1", 1,
		"cm", "1",
		"", "pd-1469594291.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[234] = new Element(
		234, "assets/thumb/622-kl.jpg",
		142, 107,
		"622", "Mohair with ± 11 mm pile",
		"622 Mohair with ± 11 mm pile", "",
		"0.76", "0",
		"1", 1,
		"cm", "2",
		"", "pd1981536453.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[235] = new Element(
		235, "assets/thumb/623-kl.jpg",
		142, 107,
		"623", "Mohair with ± 11 mm pile",
		"623 Mohair with ± 11 mm pile", "",
		"0.76", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1810636677.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[236] = new Element(
		236, "assets/thumb/624-kl.jpg",
		142, 107,
		"624", "Mohair with ± 11 mm pile",
		"624 Mohair with ± 11 mm pile", "",
		"0.76", "0",
		"1", 1,
		"cm", "2",
		"", "pd706823969.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[237] = new Element(
		237, "assets/thumb/625-kl.jpg",
		142, 107,
		"625", "Mohair with ± 11 mm pile",
		"625 Mohair with ± 11 mm pile", "",
		"0.76", "0",
		"1", 1,
		"cm", "2",
		"", "pd-745478601.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[238] = new Element(
		238, "assets/thumb/626-kl.jpg",
		142, 107,
		"626", "Mohair with ± 11 mm pile",
		"626 Mohair with ± 11 mm pile", "",
		"0.76", "0",
		"1", 1,
		"cm", "2",
		"", "pd472986429.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[239] = new Element(
		239, "assets/thumb/627-kl.jpg",
		142, 107,
		"627", "Mohair with ± 11 mm pile",
		"627 Mohair with ± 11 mm pile", "",
		"0.76", "0",
		"1", 1,
		"cm", "2",
		"", "pd320577459.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[240] = new Element(
		240, "assets/thumb/628-kl.jpg",
		142, 107,
		"628", "Mohair with ± 11 mm pile",
		"628 Mohair with ± 11 mm pile", "",
		"0.76", "0",
		"1", 1,
		"cm", "2",
		"", "pd-199427815.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[241] = new Element(
		241, "assets/thumb/629-kl.jpg",
		142, 107,
		"629", "Mohair with ± 11 mm pile",
		"629 Mohair with ± 11 mm pile", "",
		"0.76", "0",
		"1", 1,
		"cm", "2",
		"", "pd1691666671.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[242] = new Element(
		242, "assets/thumb/7202-kl.jpg",
		142, 107,
		"7202/06", "7202 &quot;+&quot; fitting",
		"7202 &quot;+&quot; fitting for dollarmature", "",
		"0.4", "0",
		"1", 1,
		"piece", "38",
		"Size;06 mm@", "pd1751364789.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[243] = new Element(
		243, "assets/thumb/4104-kl.jpg",
		142, 107,
		"4104", "Mohair with ± 85 mm pile",
		"4104 Mohair with ± 85 mm pile", "",
		"2.12", "0",
		"1", 1,
		"cm", "4",
		"", "pd-515162835.htm",
		"", 10,
		"1-f", "0",
		 0)
	
		Entry[244] = new Element(
		244, "assets/thumb/4171-kl.jpg",
		142, 107,
		"4171", "Mohair with ± 14 mm pile",
		"4171 Mohair with 14 ± mm pile", "",
		"0.93", "0",
		"1", 1,
		"cm", "2",
		"", "pd-547456221.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[245] = new Element(
		245, "assets/thumb/rbs-08-kl.jpg",
		142, 107,
		"RBS-08", "Rainbowseries with ± 7 mm pile",
		"Rainbowseries blue mohair with ± 7 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "1",
		"", "pd-464846327.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[246] = new Element(
		246, "assets/thumb/Mia-kl.jpg",
		106, 142,
		"6065", "Mia ± 23 cm",
		"6065 Do it yourself kit Mia ± 23 cm", "",
		"24.4", "0",
		"1", 1,
		"piece", "35",
		"", "pd-1385710753.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[247] = new Element(
		247, "assets/thumb/778-kl.jpg",
		142, 102,
		"778", "Mohair with ± 4 mm pile",
		"778 Mohair with ± 4 mm pile", "",
		"0.81", "0",
		"1", 1,
		"cm", "1",
		"", "pd-2042291967.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[248] = new Element(
		248, "assets/thumb/4172-kl.jpg",
		142, 107,
		"4172", "Mohair with ± 14 mm pile",
		"4172 Mohair with ± 14 mm pile", "",
		"0.93", "0",
		"1", 1,
		"cm", "2",
		"", "pd1826939677.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[249] = new Element(
		249, "assets/thumb/4175-kl.jpg",
		142, 107,
		"4175", "Mohair with ± 14 mm pile",
		"4175 Mohair with ± 14 mm pile", "",
		"0.93", "0",
		"1", 1,
		"cm", "2",
		"", "pd756699795.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[250] = new Element(
		250, "assets/thumb/4174-kl.jpg",
		142, 107,
		"4174", "Mohair with ± 14 mm pile",
		"4174 Mohair with ± 14 mm pile", "",
		"0.93", "0",
		"1", 1,
		"cm", "2",
		"", "pd587884281.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[251] = new Element(
		251, "assets/thumb/875-kl.jpg",
		142, 107,
		"875", "Mohair with ± 4 mm pile",
		"875 Mohair with ± 4 mm pile", "",
		"0.81", "0",
		"1", 1,
		"cm", "1",
		"", "pd-1131233131.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[252] = new Element(
		252, "assets/thumb/876-kl.jpg",
		142, 107,
		"876", "Mohair with ± 4 mm pile",
		"876 Mohair with ± 4 mm pile", "",
		"0.81", "0",
		"1", 1,
		"cm", "1",
		"", "pd-1608889141.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[253] = new Element(
		253, "assets/thumb/877-kl.jpg",
		142, 107,
		"877", "Mohair with ± 4 mm pile",
		"877 Mohair with ± 4 mm pile", "",
		"0.81", "0",
		"1", 1,
		"cm", "1",
		"", "pd-767243279.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[254] = new Element(
		254, "assets/thumb/878-kl.jpg",
		142, 107,
		"878", "Mohair with ± 4 mm pile",
		"878 Mohair with ± 4 mm pile", "",
		"0.81", "0",
		"1", 1,
		"cm", "1",
		"", "pd-118933625.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[255] = new Element(
		255, "assets/thumb/879-kl.jpg",
		142, 107,
		"879", "Mohair with ± 4 mm pile",
		"879 Mohair with ± 4 mm pile", "",
		"0.81", "0",
		"1", 1,
		"cm", "1",
		"", "pd837625101.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[256] = new Element(
		256, "assets/thumb/880-kl.jpg",
		142, 107,
		"880", "Mohair with ± 4 mm pile",
		"880 Mohair with ± 4 mm pile", "",
		"0.81", "0",
		"1", 1,
		"cm", "1",
		"", "pd-2066340349.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[257] = new Element(
		257, "assets/thumb/785-kl.jpg",
		142, 107,
		"785", "Mohair with ± 6 mm pile",
		"785 Mohair with ± 6 mm pile", "",
		"0.71", "0",
		"1", 1,
		"cm", "1",
		"", "pd-1472583703.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[258] = new Element(
		258, "assets/thumb/4173-kl.jpg",
		142, 107,
		"4173", "Mohair with ± 14 mm pile",
		"4173 Mohair with ± 14 mm pile", "",
		"0.93", "0",
		"1", 1,
		"cm", "2",
		"", "pd5763205.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[259] = new Element(
		259, "assets/thumb/Gutschein-kl.jpg",
		142, 107,
		"0002", "Free-gift coupon",
		"Free-gift coupon", "",
		"1", "0",
		"1", 1,
		"pieces", "38",
		"", "pd-1328234949.htm",
		"", 10,
		"12", "0",
		 0)
	
		Entry[260] = new Element(
		260, "assets/thumb/789-kl.jpg",
		142, 107,
		"789", "Sheepwool with ± 6 mm pile",
		"789 Sheepwool with ± 6 mm pile", "",
		"0.63", "0",
		"1", 1,
		"cm", "9",
		"", "pd1759567135.htm",
		"", 10,
		"1-k", "0",
		 0)
	
		Entry[261] = new Element(
		261, "assets/thumb/225-kl.jpg",
		142, 107,
		"225", "Suédine",
		"225 Suédine: Imitation leather for the paws of the bears.", "",
		"1.2", "0",
		"1", 1,
		"piece", "11",
		"Size;025 × 017 cm@", "pd1957172507.htm",
		"", 1,
		"1-m", "0",
		 0)
	
		Entry[262] = new Element(
		262, "assets/thumb/914-kl.jpg",
		142, 107,
		"914", "Mohair with ± 11 mm pile",
		"914 Mohair with ± 11 mm pile", "",
		"0.74", "0",
		"1", 1,
		"cm", "2",
		"", "pd-549912442.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[263] = new Element(
		263, "assets/thumb/915-kl.jpg",
		142, 107,
		"915", "Mohair with ± 11 mm pile",
		"915 Mohair with ± 11 mm pile", "",
		"0.74", "0",
		"1", 1,
		"cm", "2",
		"", "pd5321252.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[264] = new Element(
		264, "assets/thumb/916-kl.jpg",
		142, 107,
		"916", "Mohair with ± 11 mm pile",
		"916 Mohair with ± 11 mm pile", "",
		"0.74", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1460833038.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[265] = new Element(
		265, "assets/thumb/660-kl.jpg",
		142, 107,
		"660", "Mohair with ± 11 mm pile",
		"660 Mohair with ± 11 mm pile", "",
		"0.74", "0",
		"1", 1,
		"cm", "2",
		"", "pd498789488.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[266] = new Element(
		266, "assets/thumb/661-kl.jpg",
		142, 107,
		"661", "Mohair with ± 11 mm pile",
		"661 Mohair with ± 11 mm pile", "",
		"0.74", "0",
		"1", 1,
		"cm", "2",
		"", "pd-53909474.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[267] = new Element(
		267, "assets/thumb/662-kl.jpg",
		142, 107,
		"662", "Mohair with ± 11 mm pile",
		"662 Mohair with ± 11 mm pile", "",
		"0.74", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1384430724.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[268] = new Element(
		268, "assets/thumb/663-kl.jpg",
		142, 107,
		"663", "Mohair with ± 11 mm pile",
		"663 Mohair with ± 11 mm pile", "",
		"0.74", "0",
		"1", 1,
		"cm", "2",
		"", "pd1970816522.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[269] = new Element(
		269, "assets/thumb/664-kl.jpg",
		142, 107,
		"664", "Mohair with ± 11 mm pile",
		"664 Mohair with ± 11 mm pile", "",
		"0.74", "0",
		"1", 1,
		"cm", "2",
		"", "pd1717273416.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[270] = new Element(
		270, "assets/thumb/665-kl.jpg",
		142, 107,
		"665", "Mohair with ± 11 mm pile",
		"665 Mohair with ± 11 mm pile", "",
		"0.74", "0",
		"1", 1,
		"cm", "2",
		"", "pd1586772662.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[271] = new Element(
		271, "assets/thumb/784-kl.jpg",
		142, 107,
		"784", "Mohair with ± 11 mm pile",
		"784 Mohair with ± 11 mm pile", "",
		"0.7", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1129203756.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[272] = new Element(
		272, "assets/thumb/714-kl.jpg",
		142, 107,
		"714", "Mohair with ± 12 mm pile",
		"714 Mohair with ± 12 mm pile", "",
		"1.11", "0",
		"1", 1,
		"cm", "2",
		"", "pd1460810274.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[273] = new Element(
		273, "assets/thumb/987-kl.jpg",
		142, 107,
		"987", "Mohair with ± 14 mm pile",
		"987 Mohair with ± 14 mm pile", "",
		"1", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1225639472.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[274] = new Element(
		274, "assets/thumb/870-kl.jpg",
		142, 107,
		"870", "Mohair with ± 4 mm pile",
		"870 Mohair with ± 4 mm pile", "",
		"0.81", "0",
		"1", 1,
		"cm", "1",
		"", "pd2133234304.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[275] = new Element(
		275, "assets/thumb/871-kl.jpg",
		142, 107,
		"871", "Mohair with ± 4 mm pile",
		"871 Mohair with ± 4 mm pile", "",
		"0.81", "0",
		"1", 1,
		"cm", "1",
		"", "pd-1958495058.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[276] = new Element(
		276, "assets/thumb/872-kl.jpg",
		142, 107,
		"872", "Mohair with ± 4 mm pile",
		"872 Mohair with ± 4 mm pile", "",
		"0.81", "0",
		"1", 1,
		"cm", "1",
		"", "pd-720508276.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[277] = new Element(
		277, "assets/thumb/874-kl.jpg",
		142, 107,
		"874", "Mohair with ± 4 mm pile",
		"874 Mohair with ± 4 mm pile", "",
		"0.81", "0",
		"1", 1,
		"cm", "1",
		"", "pd1733657498.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[278] = new Element(
		278, "assets/thumb/911-kl.jpg",
		142, 107,
		"911", "Mohair with ± 11 mm pile",
		"911 Mohair with ± 11 mm pile", "",
		"0.74", "0",
		"1", 1,
		"cm", "2",
		"", "pd1267678040.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[279] = new Element(
		279, "assets/thumb/912-kl.jpg",
		142, 107,
		"912", "Mohair with ± 11 mm pile",
		"912 Mohair with ± 11 mm pile", "",
		"0.74", "0",
		"1", 1,
		"cm", "2",
		"", "pd1847390534.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[280] = new Element(
		280, "assets/thumb/4177-kl.jpg",
		142, 107,
		"4177", "Mohair with ± 14 mm pile",
		"4177 Mohair with ±14 mm pile", "",
		"0.93", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1062947024.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[281] = new Element(
		281, "assets/thumb/4176-kl.jpg",
		142, 107,
		"4176", "Mohair with ± 14 mm pile",
		"4176 Mohair with ± 14 mm pile", "",
		"0.93", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1319423778.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[282] = new Element(
		282, "assets/thumb/4206-kl.jpg",
		142, 107,
		"4206", "Mohair with 30% viscose with ± 8 mm pile",
		"4206 Mohair with 30% viscose with ± 8 mm pile", "",
		"0.82", "0",
		"1", 1,
		"cm", "1",
		"", "pd-2110965188.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[283] = new Element(
		283, "assets/thumb/921-kl.jpg",
		142, 107,
		"921", "Mohair with ± 15 mm pile",
		"921 Mohair with ± 15 mm pile", "",
		"0.84", "0",
		"1", 1,
		"cm", "2",
		"", "pd683018308.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[284] = new Element(
		284, "assets/thumb/922-kl.jpg",
		142, 107,
		"922", "Mohair with ± 15 mm pile",
		"922 Mohair with ± 15 mm pile", "",
		"0.84", "0",
		"1", 1,
		"cm", "2",
		"", "pd1024636946.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[285] = new Element(
		285, "assets/thumb/923-kl.jpg",
		142, 107,
		"923", "Mohair with ± 15 mm pile",
		"923 Mohair with ± 15 mm pile", "",
		"0.84", "0",
		"1", 1,
		"cm", "2",
		"", "pd-928357232.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[286] = new Element(
		286, "assets/thumb/924-kl.jpg",
		142, 107,
		"924", "Mohair with ± 15 mm pile",
		"924 Mohair with ± 15 mm pile", "",
		"0.84", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1228792514.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[287] = new Element(
		287, "assets/thumb/7235-kl.jpg",
		142, 107,
		"7235/16", "7235/16 Discs",
		"7235/16 35 mm discs for the 16 mm dollarmature", "",
		"0.4", "0",
		"1", 1,
		"piece", "38",
		"Size;35 mm@", "pd-1561359062.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[288] = new Element(
		288, "assets/thumb/520-kl.jpg",
		142, 107,
		"520", "Mohair with ± 21 mm pile",
		"520 Mohair with ± 21 mm pile", "",
		"0.65", "0",
		"1", 1,
		"cm", "3",
		"", "pd-1309253473.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[289] = new Element(
		289, "assets/thumb/521-kl.jpg",
		142, 107,
		"521", "Mohair with ± 21 mm pile",
		"521 Mohair with ± 21 mm pile", "",
		"0.65", "0",
		"1", 1,
		"cm", "3",
		"", "pd825742309.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[290] = new Element(
		290, "assets/thumb/5325-5327-kl.jpg",
		142, 107,
		"5325-SP", "Nose thread",
		"Perle nose thread salmon per cone of 500 meters", "",
		"39.5", "0",
		"1", 1,
		"piece", "30",
		"Strength;no. 5@", "pd1223294089.htm",
		"", 1,
		"7-a", "0",
		 0)
	
		Entry[291] = new Element(
		291, "assets/thumb/5320-5322-kl.jpg",
		142, 107,
		"5320-SP", "Nose thread",
		"Perle nose thread redbrown per cone of 500 meters", "",
		"39.5", "0",
		"1", 1,
		"piece", "30",
		"Strength;no. 3@", "pd1541416834.htm",
		"", 1,
		"7-a", "0",
		 0)
	
		Entry[292] = new Element(
		292, "assets/thumb/5316-5318-kl.jpg",
		142, 107,
		"5316-SP", "Nose thread",
		"Perle nose thread brown per cone of 500 meters", "",
		"39.5", "0",
		"1", 1,
		"piece", "30",
		"Strength;no. 3@", "pd273045911.htm",
		"", 1,
		"7-a", "0",
		 0)
	
		Entry[293] = new Element(
		293, "assets/thumb/5311-5313-kl.jpg",
		142, 107,
		"5311-SP", "Nose thread",
		"Perle nose thread black per cone of 500 meters", "",
		"36", "0",
		"1", 1,
		"piece", "30",
		"Strength;no. 3@", "pd451586648.htm",
		"", 1,
		"7-a", "0",
		 0)
	
		Entry[294] = new Element(
		294, "assets/thumb/538-kl.jpg",
		142, 107,
		"538", "Mohair with ± 15 mm pile",
		"538 Mohair with ± 16 mm pile", "",
		"0.97", "0",
		"1", 1,
		"cm", "2",
		"", "pd1162109545.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[295] = new Element(
		295, "assets/thumb/Mojo-kl.jpg",
		106, 142,
		"6092", "Mojo ± 25 cm",
		"6092 Do it yourself kit Mojo ± 25 cm", "",
		"18.9", "0",
		"1", 1,
		"piece", "35",
		"", "pd-123508465.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[296] = new Element(
		296, "assets/thumb/Hasi-kl.jpg",
		106, 142,
		"6090", "Easter bunny &quot;Hasi&quot;",
		"6090 Do it yourself kit Easter bunny &quot;Hasi&quot; ± 31 cm ", "",
		"19.9", "0",
		"1", 1,
		"piece", "35",
		"", "pd-916021683.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[297] = new Element(
		297, "assets/thumb/522-kl.jpg",
		142, 107,
		"522", "Mohair with ± 21 mm pile",
		"522 Mohair with ± 21 mm pile", "",
		"0.65", "0",
		"1", 1,
		"cm", "3",
		"", "pd-625422181.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[298] = new Element(
		298, "assets/thumb/523-kl.jpg",
		142, 107,
		"523", "Mohair with ± 21 mm pile",
		"523 Mohair with ± 21 mm pile", "",
		"0.65", "0",
		"1", 1,
		"cm", "3",
		"", "pd-441699263.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[299] = new Element(
		299, "assets/thumb/524-kl.jpg",
		142, 107,
		"524", "Mohair with ± 21 mm pile",
		"524 Mohair with ± 21 mm pile", "",
		"0.65", "0",
		"1", 1,
		"cm", "3",
		"", "pd-2017060777.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[300] = new Element(
		300, "assets/thumb/525-kl.jpg",
		142, 107,
		"525", "Mohair with ± 21 mm pile",
		"525 Mohair with ± 21 mm pile", "",
		"0.65", "0",
		"1", 1,
		"cm", "3",
		"", "pd1653486173.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[301] = new Element(
		301, "assets/thumb/526-kl.jpg",
		142, 107,
		"526", "Mohair with ± 21 mm pile",
		"526 Mohair with ± 21 mm pile", "",
		"0.65", "0",
		"1", 1,
		"cm", "3",
		"", "pd-1904659501.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[302] = new Element(
		302, "assets/thumb/768-kl.jpg",
		142, 107,
		"768", "Mohair with ± 23 mm pile",
		"768 Mohair with ± 23 mm pile", "",
		"0.84", "0",
		"1", 1,
		"cm", "3",
		"", "pd-1256117703.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[303] = new Element(
		303, "assets/thumb/769-kl.jpg",
		142, 107,
		"769", "Mohair with ± 23 mm pile",
		"769 Mohair with ± 23 mm pile", "",
		"0.84", "0",
		"1", 1,
		"cm", "3",
		"", "pd1807015695.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[304] = new Element(
		304, "assets/thumb/770-kl.jpg",
		142, 107,
		"770", "Mohair with ± 23 mm pile",
		"770 Mohair with ± 23 mm pile", "",
		"0.84", "0",
		"1", 1,
		"cm", "3",
		"", "pd-998885419.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[305] = new Element(
		305, "assets/thumb/771-kl.jpg",
		142, 107,
		"771", "Mohair with ± 23 mm pile",
		"771 Mohair with ± 23 mm pile", "",
		"0.84", "0",
		"1", 1,
		"cm", "3",
		"", "pd1239389707.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[306] = new Element(
		306, "assets/thumb/772-kl.jpg",
		142, 107,
		"772", "Mohair with ± 23 mm pile",
		"772 Mohair with ± 23 mm pile", "",
		"0.84", "0",
		"1", 1,
		"cm", "3",
		"", "pd935868209.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[307] = new Element(
		307, "assets/thumb/773-kl.jpg",
		142, 107,
		"773", "Mohair with ± 23 mm pile",
		"773 Mohair with ± 23 mm pile", "",
		"0.84", "0",
		"1", 1,
		"cm", "3",
		"", "pd1050645703.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[308] = new Element(
		308, "assets/thumb/774-kl.jpg",
		142, 107,
		"774", "Mohair with ± 23 mm pile",
		"774 Mohair with ± 23 mm pile", "",
		"0.84", "0",
		"1", 1,
		"cm", "3",
		"", "pd1519895629.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[309] = new Element(
		309, "assets/thumb/996-kl.jpg",
		142, 107,
		"996", "Mohair with ± 23 mm pile",
		"996 Mohair with ± 23 mm pile", "",
		"0.84", "0",
		"1", 1,
		"cm", "3",
		"", "pd-1135159485.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[310] = new Element(
		310, "assets/thumb/997-kl.jpg",
		142, 107,
		"997", "Mohair with ± 23 mm pile",
		"997 Mohair with ± 23 mm pile", "",
		"0.84", "0",
		"1", 1,
		"cm", "3",
		"", "pd1518811945.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[311] = new Element(
		311, "assets/thumb/998-kl.jpg",
		142, 107,
		"998", "Mohair with ± 23 mm pile",
		"998 Mohair with ± 23 mm pile", "",
		"0.84", "0",
		"1", 1,
		"cm", "3",
		"", "pd-211871361.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[312] = new Element(
		312, "assets/thumb/812-kl.jpg",
		142, 107,
		"812", "Mohair with ± 23 mm pile",
		"812 Mohair with ± 23 mm pile", "",
		"0.8", "0",
		"1", 1,
		"cm", "3",
		"", "pd-84494395.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[313] = new Element(
		313, "assets/thumb/640-kl.jpg",
		142, 107,
		"640", "Mohair with ± 23 mm pile",
		"640 Mohair with ± 23 mm pile", "",
		"0.85", "0",
		"1", 1,
		"cm", "3",
		"", "pd1408280601.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[314] = new Element(
		314, "assets/thumb/641-kl.jpg",
		142, 107,
		"641", "Mohair with ± 23 mm pile",
		"641 Mohair with ± 23 mm pile", "",
		"0.85", "0",
		"1", 1,
		"cm", "3",
		"", "pd-1666445329.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[315] = new Element(
		315, "assets/thumb/642-kl.jpg",
		142, 107,
		"642", "Mohair with ± 23 mm pile",
		"642 Mohair with ± 23 mm pile", "",
		"0.85", "0",
		"1", 1,
		"cm", "3",
		"", "pd1263031221.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[316] = new Element(
		316, "assets/thumb/643-kl.jpg",
		142, 107,
		"643", "Mohair with ± 23 mm pile",
		"643 Mohair with ± 23 mm pile", "",
		"0.85", "0",
		"1", 1,
		"cm", "3",
		"", "pd-1890413333.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[317] = new Element(
		317, "assets/thumb/572-kl.jpg",
		142, 107,
		"572", "OUT GOING Mohair with ± 23 mm pile",
		"572 Mohair with ± 23 mm pile", "",
		"0.71", "0",
		"1", 1,
		"cm", "3",
		"", "pd-2098015983.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[318] = new Element(
		318, "assets/thumb/4181-kl.jpg",
		142, 107,
		"4181", "Mohair with ± 14 mm pile",
		"4181 Mohair with ± 14 mm pile", "",
		"0.98", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1352003037.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[319] = new Element(
		319, "assets/thumb/5300-5303-kl.jpg",
		142, 107,
		"5300", "Needles",
		"Needles", "",
		"1", "0",
		"1", 1,
		"piece", "27",
		"Size;08 cm × 2 mm@", "pd-239308535.htm",
		"", 1,
		"06", "0",
		 0)
	
		Entry[320] = new Element(
		320, "assets/thumb/926-kl.jpg",
		142, 107,
		"926", "Mohair with ± 15 mm pile",
		"926 Mohair with ± 15 mm pile", "",
		"0.84", "0",
		"1", 1,
		"cm", "2",
		"", "pd2116252183.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[321] = new Element(
		321, "assets/thumb/927-kl.jpg",
		142, 107,
		"927", "Mohair with ± 15 mm pile",
		"927 Mohair with ± 15 mm pile", "",
		"0.84", "0",
		"1", 1,
		"cm", "2",
		"", "pd1327112733.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[322] = new Element(
		322, "assets/thumb/928-kl.jpg",
		142, 107,
		"928", "Mohair with ± 15 mm pile",
		"928 Mohair with ± 15 mm pile", "",
		"0.84", "0",
		"1", 1,
		"cm", "2",
		"", "pd-764565101.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[323] = new Element(
		323, "assets/thumb/7210-kl.jpg",
		142, 107,
		"7210/06", "7210 Forceps",
		"7210 Forceps for dollarmature", "",
		"19.9", "0",
		"1", 1,
		"piece", "38",
		"Size;06 mm@", "pd-262479979.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[324] = new Element(
		324, "assets/thumb/777-kl.jpg",
		142, 107,
		"777", "Mohair with ± 15 mm pile",
		"777 Mohair with ± 15 mm pile", "",
		"0.72", "0",
		"1", 1,
		"cm", "2",
		"", "pd-628161954.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[325] = new Element(
		325, "assets/thumb/650-kl.jpg",
		142, 107,
		"650", "Mohair with ± 15 mm pile",
		"650 Mohair with ± 15 mm pile", "",
		"0.93", "0",
		"1", 1,
		"cm", "2",
		"", "pd1662740412.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[326] = new Element(
		326, "assets/thumb/651-kl.jpg",
		142, 107,
		"651", "Mohair with ± 15 mm pile",
		"651 Mohair with ± 15 mm pile", "",
		"0.93", "0",
		"1", 1,
		"cm", "2",
		"", "pd-245496758.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[327] = new Element(
		327, "assets/thumb/652-kl.jpg",
		142, 107,
		"652", "Mohair with ± 15 mm pile",
		"652 Mohair with ± 15 mm pile", "",
		"0.93", "0",
		"1", 1,
		"cm", "2",
		"", "pd-685216888.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[328] = new Element(
		328, "assets/thumb/653-kl.jpg",
		142, 107,
		"653", "Mohair with ± 15 mm pile",
		"653 Mohair with ± 15 mm pile", "",
		"0.93", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1207673610.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[329] = new Element(
		329, "assets/thumb/654-kl.jpg",
		142, 107,
		"654", "Mohair with ± 15 mm pile",
		"654 Mohair with ± 15 mm pile", "",
		"0.93", "0",
		"1", 1,
		"cm", "2",
		"", "pd-685792236.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[330] = new Element(
		330, "assets/thumb/655-kl.jpg",
		142, 107,
		"655", "Mohair with ± 15 mm pile",
		"655 Mohair with ± 15 mm pile", "",
		"0.93", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1432684446.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[331] = new Element(
		331, "assets/thumb/656-kl.jpg",
		142, 107,
		"656", "Mohair with ± 15 mm pile",
		"656 Mohair with ± 15 mm pile", "",
		"0.93", "0",
		"1", 1,
		"cm", "2",
		"", "pd1593040224.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[332] = new Element(
		332, "assets/thumb/657-kl.jpg",
		142, 107,
		"657", "Mohair with ± 15 mm pile",
		"657 Mohair with ± 15 mm pile", "",
		"0.93", "0",
		"1", 1,
		"cm", "2",
		"", "pd-738098546.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[333] = new Element(
		333, "assets/thumb/658-kl.jpg",
		142, 107,
		"658", "Mohair with ± 15 mm pile",
		"658 Mohair with ± 15 mm pile", "",
		"0.93", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1715690644.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[334] = new Element(
		334, "assets/thumb/659-kl.jpg",
		142, 107,
		"659", "Mohair with ± 15 mm pile",
		"659 Mohair with ± 15 mm pile", "",
		"0.93", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1110808710.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[335] = new Element(
		335, "assets/thumb/4182-kl.jpg",
		142, 107,
		"4182", "Mohair with ± 14 mm pile",
		"4182 Mohair with ± 14 mm pile", "",
		"0.98", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1795117378.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[336] = new Element(
		336, "assets/thumb/890-kl.jpg",
		142, 107,
		"890", "Mohair with ± 17 mm pile",
		"890 Mohair with ± 17 mm pile", "",
		"1.08", "0",
		"1", 1,
		"cm", "2",
		"", "pd1726987980.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[337] = new Element(
		337, "assets/thumb/4200-kl.jpg",
		142, 102,
		"4200", "Mohair with ± 17 mm pile",
		"4200 Mohair with ± 17 mm pile", "",
		"1.09", "0",
		"1", 1,
		"cm", "2",
		"", "pd1511289306.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[338] = new Element(
		338, "assets/thumb/897-kl.jpg",
		142, 107,
		"897", "Mohair with ± 17 mm pile",
		"897 Mohair with ± 17 mm pile", "",
		"1.18", "0",
		"1", 1,
		"cm", "2",
		"", "pd428817846.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[339] = new Element(
		339, "assets/thumb/739-kl.jpg",
		142, 107,
		"739", "Mohair with ± 17 mm pile",
		"739 Mohair with ± 17 mm pile", "",
		"1.09", "0",
		"1", 1,
		"cm", "2",
		"", "pd-623873324.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[340] = new Element(
		340, "assets/thumb/740-kl.jpg",
		142, 107,
		"740", "Mohair with ± 17 mm pile",
		"740 Mohair with ± 17 mm pile", "",
		"1.09", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1126472414.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[341] = new Element(
		341, "assets/thumb/741-kl.jpg",
		142, 107,
		"741", "Mohair with ± 17 mm pile",
		"741 Mohair with ± 17 mm pile", "",
		"1.09", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1559947232.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[342] = new Element(
		342, "assets/thumb/742-kl.jpg",
		142, 107,
		"742", "Mohair with ± 17 mm pile",
		"742 Mohair with ± 17 mm pile", "",
		"1.09", "0",
		"1", 1,
		"cm", "2",
		"", "pd-305644722.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[343] = new Element(
		343, "assets/thumb/743-kl.jpg",
		142, 107,
		"743", "Mohair with ± 17 mm pile",
		"743 Mohair with ± 17 mm pile", "",
		"1.09", "0",
		"1", 1,
		"cm", "2",
		"", "pd1013778988.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[344] = new Element(
		344, "assets/thumb/744-kl.jpg",
		142, 107,
		"744", "Mohair with ± 17 mm pile",
		"744 Mohair with ± 17 mm pile", "",
		"1.09", "0",
		"1", 1,
		"cm", "2",
		"", "pd175385658.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[345] = new Element(
		345, "assets/thumb/745-kl.jpg",
		142, 107,
		"745", "Mohair with ± 17 mm pile",
		"745 Mohair with ± 17 mm pile", "",
		"1.09", "0",
		"1", 1,
		"cm", "2",
		"", "pd981243128.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[346] = new Element(
		346, "assets/thumb/746-kl.jpg",
		142, 107,
		"746", "Mohair with ± 17 mm pile",
		"746 Mohair with ± 17 mm pile", "",
		"1.09", "0",
		"1", 1,
		"cm", "2",
		"", "pd-686005274.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[347] = new Element(
		347, "assets/thumb/747-kl.jpg",
		142, 107,
		"747", "Mohair with ± 17 mm pile",
		"747 Mohair with ± 17 mm pile", "",
		"1.09", "0",
		"1", 1,
		"cm", "2",
		"", "pd1726268548.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[348] = new Element(
		348, "assets/thumb/712-kl.jpg",
		142, 107,
		"712", "Mohair with ± 17 mm pile",
		"712 Mohair with ± 17 mm pile", "",
		"1.24", "0",
		"1", 1,
		"cm", "2",
		"", "pd1401474642.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[349] = new Element(
		349, "assets/thumb/713-kl.jpg",
		142, 107,
		"713", "Mohair with ± 17 mm pile",
		"713 Mohair with ± 17 mm pile", "",
		"1.24", "0",
		"1", 1,
		"cm", "2",
		"", "pd-991992624.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[350] = new Element(
		350, "assets/thumb/4201-kl.jpg",
		142, 107,
		"4201", "Mohair with ± 17 mm pile",
		"4201 Mohair with ± 17 mm pile", "",
		"1.24", "0",
		"1", 1,
		"cm", "2",
		"", "pd523769726.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[351] = new Element(
		351, "assets/thumb/4120-kl.jpg",
		142, 107,
		"4120", "Mohair with ± 17 mm pile",
		"4120 Mohair with ± 17 mm pile", "",
		"0.97", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1053097508.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[352] = new Element(
		352, "assets/thumb/4121-kl.jpg",
		142, 107,
		"4121", "Mohair with ± 17 mm pile",
		"4121 Mohair with ± 17 mm pile", "",
		"0.97", "0",
		"1", 1,
		"cm", "2",
		"", "pd-666129558.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[353] = new Element(
		353, "assets/thumb/4122-kl.jpg",
		142, 107,
		"4122", "Mohair with ± 17 mm pile",
		"4122 Mohair with ± 17 mm pile", "",
		"0.97", "0",
		"1", 1,
		"cm", "2",
		"", "pd-618207320.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[354] = new Element(
		354, "assets/thumb/4123-kl.jpg",
		142, 107,
		"4123", "Mohair with ± 17 mm pile",
		"4123 Mohair with ± 17 mm pile", "",
		"0.97", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1590446570.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[355] = new Element(
		355, "assets/thumb/4124-kl.jpg",
		142, 107,
		"4124", "Mohair with ± 17 mm pile",
		"4124 Mohair with ± 17 mm pile", "",
		"0.97", "0",
		"1", 1,
		"cm", "2",
		"", "pd-776003020.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[356] = new Element(
		356, "assets/thumb/4125-kl.jpg",
		142, 107,
		"4125", "Mohair with ± 17 mm pile",
		"4125 Mohair with ± 17 mm pile", "",
		"0.97", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1189403774.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[357] = new Element(
		357, "assets/thumb/4126-kl.jpg",
		142, 107,
		"4126", "Mohair with ± 17 mm pile",
		"4126 Mohair with ± 17 mm pile", "",
		"0.97", "0",
		"1", 1,
		"cm", "2",
		"", "pd576224640.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[358] = new Element(
		358, "assets/thumb/4183-kl.jpg",
		142, 107,
		"4183", "Mohair with ± 14 mm pile",
		"4183 Mohair with ± 14 mm pile", "",
		"0.98", "0",
		"1", 1,
		"cm", "2",
		"", "pd-753688658.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[359] = new Element(
		359, "assets/thumb/4184-kl.jpg",
		142, 107,
		"4184", "Mohair with ± 14 mm pile",
		"4184 Mohair with ± 14 mm pile", "",
		"0.98", "0",
		"1", 1,
		"cm", "2",
		"", "pd1670153612.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[360] = new Element(
		360, "assets/thumb/4180-kl.jpg",
		142, 107,
		"4180", "Mohair with ± 14 mm pile",
		"4180 Mohair with ± 14 mm pile", "",
		"0.98", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1744726374.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[361] = new Element(
		361, "assets/thumb/810-kl.jpg",
		142, 107,
		"810", "Mohair with ± 23 mm pile",
		"810 Mohair with ± 23 mm pile", "",
		"0.87", "0",
		"1", 1,
		"cm", "3",
		"", "pd-922384808.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[362] = new Element(
		362, "assets/thumb/811-kl.jpg",
		142, 107,
		"811", "Mohair with ± 23 mm pile",
		"811 Mohair with ± 23 mm pile", "",
		"0.96", "0",
		"1", 1,
		"cm", "3",
		"", "pd-365599566.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[363] = new Element(
		363, "assets/thumb/527-kl.jpg",
		142, 107,
		"527", "Mohair with ± 21 mm pile",
		"527 Mohair with ± 21 mm pile", "",
		"0.65", "0",
		"1", 1,
		"cm", "3",
		"", "pd-1774546462.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[364] = new Element(
		364, "assets/thumb/528-kl.jpg",
		142, 107,
		"528", "Mohair with ± 21 mm pile",
		"528 Mohair with ± 21 mm pile", "",
		"0.65", "0",
		"1", 1,
		"cm", "3",
		"", "pd1716720352.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[365] = new Element(
		365, "assets/thumb/529-kl.jpg",
		142, 107,
		"529", "Mohair with ± 21 mm pile",
		"529 Mohair with ± 21 mm pile", "",
		"0.65", "0",
		"1", 1,
		"cm", "3",
		"", "pd-1273383922.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[366] = new Element(
		366, "assets/thumb/738-kl.jpg",
		142, 107,
		"738", "Mohair with ± 23 mm pile",
		"738 Mohair with ± 23 mm pile", "",
		"0.84", "0",
		"1", 1,
		"cm", "3",
		"", "pd-240766740.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[367] = new Element(
		367, "assets/thumb/765-kl.jpg",
		142, 107,
		"765", "Mohair with ± 23 mm pile",
		"765 Mohair with ± 23 mm pile", "",
		"0.84", "0",
		"1", 1,
		"cm", "3",
		"", "pd2010427642.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[368] = new Element(
		368, "assets/thumb/766-kl.jpg",
		142, 107,
		"766", "Mohair with ± 23 mm pile",
		"766 Mohair with ± 23 mm pile", "",
		"0.84", "0",
		"1", 1,
		"cm", "3",
		"", "pd-1005869128.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[369] = new Element(
		369, "assets/thumb/767-kl.jpg",
		142, 107,
		"767", "Mohair with ± 23 mm pile",
		"767 Mohair with ± 23 mm pile", "",
		"0.84", "0",
		"1", 1,
		"cm", "3",
		"", "pd-1493912410.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[370] = new Element(
		370, "assets/thumb/775-kl.jpg",
		142, 107,
		"775", "Mohair with ± 23 mm pile",
		"775 Mohair with ± 23 mm pile", "",
		"0.84", "0",
		"1", 1,
		"cm", "3",
		"", "pd962626372.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[371] = new Element(
		371, "assets/thumb/776-kl.jpg",
		142, 107,
		"776", "Mohair with ± 23 mm pile",
		"776 Mohair with ± 23 mm pile", "",
		"0.84", "0",
		"1", 1,
		"cm", "3",
		"", "pd1330490130.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[372] = new Element(
		372, "assets/thumb/991-kl.jpg",
		142, 107,
		"991", "Mohair with ± 23 mm pile",
		"991 Mohair with ± 23 mm pile", "",
		"0.84", "0",
		"1", 1,
		"cm", "3",
		"", "pd-1043689584.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[373] = new Element(
		373, "assets/thumb/992-kl.jpg",
		142, 107,
		"992", "Mohair with ± 23 mm pile",
		"992 Mohair with ± 23 mm pile", "",
		"0.84", "0",
		"1", 1,
		"cm", "3",
		"", "pd1999257662.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[374] = new Element(
		374, "assets/thumb/993-kl.jpg",
		142, 107,
		"993", "Mohair with ± 23 mm pile",
		"993 Mohair with ± 23 mm pile", "",
		"0.84", "0",
		"1", 1,
		"cm", "3",
		"", "pd1036277916.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[375] = new Element(
		375, "assets/thumb/994-kl.jpg",
		142, 107,
		"994", "Mohair with ± 23 mm pile",
		"994 Mohair with ± 23 mm pile", "",
		"0.84", "0",
		"1", 1,
		"cm", "3",
		"", "pd-2009604054.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[376] = new Element(
		376, "assets/thumb/995-kl.jpg",
		142, 107,
		"995", "Mohair with ± 23 mm pile",
		"995 Mohair with ± 23 mm pile", "",
		"0.84", "0",
		"1", 1,
		"cm", "3",
		"", "pd-1830213016.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[377] = new Element(
		377, "assets/thumb/644-kl.jpg",
		142, 107,
		"644", "Mohair with ± 23 mm pile",
		"644 Mohair with ± 23 mm pile", "",
		"0.85", "0",
		"1", 1,
		"cm", "3",
		"", "pd-1838745320.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[378] = new Element(
		378, "assets/thumb/571-kl.jpg",
		142, 107,
		"571", "OUT GOING Mohair with ± 23 mm pile",
		"571 Mohair with ± 23 mm pile", "",
		"0.71", "0",
		"1", 1,
		"cm", "3",
		"", "pd-1091985038.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[379] = new Element(
		379, "assets/thumb/rbs-04-kl.jpg",
		142, 107,
		"RBS-04", "Rainbowseries with ± 7 mm pile",
		"Rainbowseries yellow mohair with ± 7 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "1",
		"", "pd994083466.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[380] = new Element(
		380, "assets/thumb/Platsch-kl.jpg",
		106, 142,
		"6062", "Platsch ± 25 cm",
		"6062 Do it yourself kit Platsch ± 25 cm", "",
		"11", "0",
		"1", 1,
		"piece", "35",
		"", "pd-558022858.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[381] = new Element(
		381, "assets/thumb/750-kl.jpg",
		142, 107,
		"750", "Mohair with ± 23 mm pile",
		"750 Mohair with ± 23 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "3",
		"", "pd-1216840030.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[382] = new Element(
		382, "assets/thumb/751-kl.jpg",
		142, 107,
		"751", "Mohair with ± 23 mm pile",
		"751 Mohair with ± 23 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "3",
		"", "pd396217760.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[383] = new Element(
		383, "assets/thumb/752-kl.jpg",
		142, 107,
		"752", "Mohair with ± 23 mm pile",
		"752 Mohair with ± 23 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "3",
		"", "pd867560654.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[384] = new Element(
		384, "assets/thumb/753-kl.jpg",
		142, 107,
		"753", "Mohair with ± 23 mm pile",
		"753 Mohair with ± 23 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "3",
		"", "pd-1809311828.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[385] = new Element(
		385, "assets/thumb/586-kl.jpg",
		142, 107,
		"586", "Mohair with ± 23 mm pile",
		"586 Mohair with ± 23 mm pile", "",
		"1.08", "0",
		"1", 1,
		"cm", "3",
		"", "pd1588327866.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[386] = new Element(
		386, "assets/thumb/587-kl.jpg",
		142, 107,
		"587", "Mohair with ± 23 mm pile",
		"587 Mohair with ± 23 mm pile", "",
		"1.08", "0",
		"1", 1,
		"cm", "3",
		"", "pd653228664.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[387] = new Element(
		387, "assets/thumb/588-kl.jpg",
		142, 107,
		"588", "Mohair with ± 23 mm pile",
		"588 Mohair with ± 23 mm pile", "",
		"1.08", "0",
		"1", 1,
		"cm", "3",
		"", "pd1798292838.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[388] = new Element(
		388, "assets/thumb/589-kl.jpg",
		142, 107,
		"589", "Mohair with ± 23 mm pile",
		"589 Mohair with ± 23 mm pile", "",
		"1.08", "0",
		"1", 1,
		"cm", "3",
		"", "pd167576068.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[389] = new Element(
		389, "assets/thumb/590-kl.jpg",
		142, 107,
		"590", "Mohair with ± 23 mm pile",
		"590 Mohair with ± 23 mm pile", "",
		"1.08", "0",
		"1", 1,
		"cm", "3",
		"", "pd-1591654446.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[390] = new Element(
		390, "assets/thumb/591-kl.jpg",
		142, 107,
		"591", "Mohair with ± 23 mm pile",
		"591 Mohair with ± 23 mm pile", "",
		"1.08", "0",
		"1", 1,
		"cm", "3",
		"", "pd643988048.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[391] = new Element(
		391, "assets/thumb/593-kl.jpg",
		142, 107,
		"593", "Mohair with ± 23 mm pile",
		"593 Mohair with ± 23 mm pile", "",
		"1.08", "0",
		"1", 1,
		"cm", "3",
		"", "pd-1673105572.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[392] = new Element(
		392, "assets/thumb/594-kl.jpg",
		142, 107,
		"594", "Mohair with ± 23 mm pile",
		"594 Mohair with ± 23 mm pile", "",
		"1.08", "0",
		"1", 1,
		"cm", "3",
		"", "pd1976227050.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[393] = new Element(
		393, "assets/thumb/595-kl.jpg",
		142, 107,
		"595", "Mohair with ± 23 mm pile",
		"595 Mohair with ± 23 mm pile", "",
		"1.08", "0",
		"1", 1,
		"cm", "3",
		"", "pd1135619368.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[394] = new Element(
		394, "assets/thumb/596-kl.jpg",
		142, 107,
		"596", "Mohair with ± 23 mm pile",
		"596 Mohair with ± 23 mm pile", "",
		"1.08", "0",
		"1", 1,
		"cm", "3",
		"", "pd2093250454.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[395] = new Element(
		395, "assets/thumb/755-kl.jpg",
		142, 107,
		"755", "Mohair with ± 23 mm pile",
		"755 Mohair with ± 23 mm pile", "",
		"1.08", "0",
		"1", 1,
		"cm", "3",
		"", "pd840155060.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[396] = new Element(
		396, "assets/thumb/756-kl.jpg",
		142, 107,
		"756", "Mohair with ± 23 mm pile",
		"756 Mohair with ± 23 mm pile", "",
		"1.08", "0",
		"1", 1,
		"cm", "3",
		"", "pd1271332098.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[397] = new Element(
		397, "assets/thumb/757-kl.jpg",
		142, 107,
		"757", "Mohair with ± 23 mm pile",
		"757 Mohair with ± 23 mm pile", "",
		"1.08", "0",
		"1", 1,
		"cm", "3",
		"", "pd278786816.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[398] = new Element(
		398, "assets/thumb/758-kl.jpg",
		142, 107,
		"758", "Mohair with ± 23 mm pile",
		"758 Mohair with ± 23 mm pile", "",
		"1.08", "0",
		"1", 1,
		"cm", "3",
		"", "pd92016942.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[399] = new Element(
		399, "assets/thumb/759-kl.jpg",
		142, 107,
		"759", "Mohair with ± 23 mm pile",
		"759 Mohair with ± 23 mm pile", "",
		"1.08", "0",
		"1", 1,
		"cm", "3",
		"", "pd-817868020.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[400] = new Element(
		400, "assets/thumb/760-kl.jpg",
		142, 107,
		"760", "Mohair with ± 23 mm pile",
		"760 Mohair with ± 23 mm pile", "",
		"1.08", "0",
		"1", 1,
		"cm", "3",
		"", "pd-1411375078.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[401] = new Element(
		401, "assets/thumb/761-kl.jpg",
		142, 107,
		"761", "Mohair with ± 23 mm pile",
		"761 Mohair with ± 23 mm pile", "",
		"1.08", "0",
		"1", 1,
		"cm", "3",
		"", "pd8203224.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[402] = new Element(
		402, "assets/thumb/762-kl.jpg",
		142, 107,
		"762", "Mohair with ± 23 mm pile",
		"762 Mohair with ± 23 mm pile", "",
		"1.08", "0",
		"1", 1,
		"cm", "3",
		"", "pd-1863428666.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[403] = new Element(
		403, "assets/thumb/763-kl.jpg",
		142, 107,
		"763", "Mohair with ± 23 mm pile",
		"763 Mohair with ± 23 mm pile", "",
		"1.08", "0",
		"1", 1,
		"cm", "3",
		"", "pd-369915548.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[404] = new Element(
		404, "assets/thumb/764-kl.jpg",
		142, 107,
		"764", "Mohair with ± 23 mm pile",
		"764 Mohair with ± 23 mm pile", "",
		"1.08", "0",
		"1", 1,
		"cm", "3",
		"", "pd-1978884558.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[405] = new Element(
		405, "assets/thumb/691-kl.jpg",
		142, 107,
		"691", "Mohair with ± 23 mm pile",
		"691 Mohair with ± 23 mm pile", "",
		"1.08", "0",
		"1", 1,
		"cm", "3",
		"", "pd363542448.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[406] = new Element(
		406, "assets/thumb/693-kl.jpg",
		142, 107,
		"693", "Mohair with ± 23 mm pile",
		"693 Mohair with ± 23 mm pile", "",
		"1.08", "0",
		"1", 1,
		"cm", "3",
		"", "pd-1841846946.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[407] = new Element(
		407, "assets/thumb/695-kl.jpg",
		142, 107,
		"695", "Mohair with ± 23 mm pile",
		"695 Mohair with ± 23 mm pile", "",
		"1.08", "0",
		"1", 1,
		"cm", "3",
		"", "pd-266288452.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[408] = new Element(
		408, "assets/thumb/851-kl.jpg",
		142, 107,
		"851", "Mohair with ± 24 mm pile",
		"851 Mohair with ± 24 mm pile", "",
		"1.39", "0",
		"1", 1,
		"cm", "3",
		"", "pd1190057802.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[409] = new Element(
		409, "assets/thumb/853-kl.jpg",
		142, 107,
		"853", "Mohair with ± 24 mm pile",
		"853 Mohair with ± 24 mm pile", "",
		"1.39", "0",
		"1", 1,
		"cm", "3",
		"", "pd-1089374584.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[410] = new Element(
		410, "assets/thumb/856-kl.jpg",
		142, 107,
		"856", "Mohair with ± 24 mm pile",
		"856 Mohair with ± 24 mm pile", "",
		"1.39", "0",
		"1", 1,
		"cm", "3",
		"", "pd1809866742.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[411] = new Element(
		411, "assets/thumb/865-kl.jpg",
		142, 107,
		"865", "Mohair with ± 24 mm pile",
		"865 Mohair with ± 24 mm pile", "",
		"1.39", "0",
		"1", 1,
		"cm", "3",
		"", "pd-49848556.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[412] = new Element(
		412, "assets/thumb/989-kl.jpg",
		142, 107,
		"989", "Mohair with ± 24 mm pile",
		"989 Mohair with ± 24 mm pile", "",
		"1.39", "0",
		"1", 1,
		"cm", "3",
		"", "pd1632971618.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[413] = new Element(
		413, "assets/thumb/4185-kl.jpg",
		142, 107,
		"4185", "Mohair with ± 14 mm pile",
		"4185 Mohair with ± 14 mm pile", "",
		"0.98", "0",
		"1", 1,
		"cm", "2",
		"", "pd-442152864.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[414] = new Element(
		414, "assets/thumb/4186-kl.jpg",
		142, 107,
		"4186", "Mohair with ± 14 mm pile",
		"4186 Mohair with ± 14 mm pile", "",
		"0.98", "0",
		"1", 1,
		"cm", "2",
		"", "pd962389390.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[415] = new Element(
		415, "assets/thumb/226-kl.jpg",
		142, 107,
		"226", "Suédine",
		"226 Suédine: Imitation leather for the paws of the bears.", "",
		"1.2", "0",
		"1", 1,
		"piece", "11",
		"Size;025 × 017 cm@", "pd-675677574.htm",
		"", 1,
		"1-m", "0",
		 0)
	
		Entry[416] = new Element(
		416, "assets/thumb/850-kl.jpg",
		142, 107,
		"850", "Mohair with ± 24 mm pile",
		"850 Mohair with ± 24 mm pile", "",
		"1.62", "0",
		"1", 1,
		"cm", "3",
		"", "pd-1011159325.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[417] = new Element(
		417, "assets/thumb/852-kl.jpg",
		142, 107,
		"852", "Mohair with ± 24 mm pile",
		"852 Mohair with ± 24 mm pile", "",
		"1.62", "0",
		"1", 1,
		"cm", "3",
		"", "pd1779669961.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[418] = new Element(
		418, "assets/thumb/857-kl.jpg",
		142, 107,
		"857", "Mohair with ± 24 mm pile",
		"857 Mohair with ± 24 mm pile", "",
		"1.62", "0",
		"1", 1,
		"cm", "3",
		"", "pd1011936031.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[419] = new Element(
		419, "assets/thumb/858-kl.jpg",
		142, 107,
		"858", "Mohair with ± 24 mm pile",
		"858 Mohair with ± 24 mm pile", "",
		"1.62", "0",
		"1", 1,
		"cm", "3",
		"", "pd-1469095323.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[420] = new Element(
		420, "assets/thumb/859-kl.jpg",
		142, 107,
		"859", "Mohair with ± 24 mm pile",
		"859 Mohair with ± 24 mm pile", "",
		"1.62", "0",
		"1", 1,
		"cm", "3",
		"", "pd-1314585829.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[421] = new Element(
		421, "assets/thumb/869-kl.jpg",
		142, 107,
		"869", "Mohair with ± 24 mm pile",
		"869 Mohair with ± 24 mm pile", "",
		"1.62", "0",
		"1", 1,
		"cm", "3",
		"", "pd1433250497.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[422] = new Element(
		422, "assets/thumb/476-kl.jpg",
		142, 107,
		"476", "Synthetic with ± 30 mm pile",
		"476 Synthetic with ± 30 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "7",
		"", "pd-51481897.htm",
		"", 10,
		"1-i", "0",
		 0)
	
		Entry[423] = new Element(
		423, "assets/thumb/477-kl.jpg",
		142, 107,
		"477", "Synthetic with ± 30 mm pile",
		"477 Synthetic with ± 30 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "7",
		"", "pd1317540061.htm",
		"", 10,
		"1-i", "0",
		 0)
	
		Entry[424] = new Element(
		424, "assets/thumb/400-kl.jpg",
		142, 107,
		"400", "Cotton with ± 9 mm pile",
		"400 Cotton with ± 9 mm pile", "",
		"0.4", "0",
		"1", 1,
		"cm", "5",
		"", "pd925906515.htm",
		"", 10,
		"1-g", "0",
		 0)
	
		Entry[425] = new Element(
		425, "assets/thumb/401-kl.jpg",
		142, 107,
		"401", "Cotton with ± 9 mm pile",
		"401 Cotton with ± 9 mm pile", "",
		"0.4", "0",
		"1", 1,
		"cm", "5",
		"", "pd753529017.htm",
		"", 10,
		"1-g", "0",
		 0)
	
		Entry[426] = new Element(
		426, "assets/thumb/402-kl.jpg",
		142, 107,
		"402", "Cotton with ± 9 mm pile",
		"402 Cotton with ± 9 mm pile", "",
		"0.4", "0",
		"1", 1,
		"cm", "5",
		"", "pd-344651377.htm",
		"", 10,
		"1-g", "0",
		 0)
	
		Entry[427] = new Element(
		427, "assets/thumb/403-kl.jpg",
		142, 107,
		"403", "Cotton with ± 9 mm pile",
		"403 Cotton with ± 9 mm pile", "",
		"0.4", "0",
		"1", 1,
		"cm", "5",
		"", "pd839673429.htm",
		"", 10,
		"1-g", "0",
		 0)
	
		Entry[428] = new Element(
		428, "assets/thumb/404-kl.jpg",
		142, 107,
		"404", "Cotton with ± 9 mm pile",
		"404 Cotton with ± 9 mm pile", "",
		"0.4", "0",
		"1", 1,
		"cm", "5",
		"", "pd-993302389.htm",
		"", 10,
		"1-g", "0",
		 0)
	
		Entry[429] = new Element(
		429, "assets/thumb/405-kl.jpg",
		142, 107,
		"405", "Cotton with ± 9 mm pile",
		"405 Cotton with ± 9 mm pile", "",
		"0.4", "0",
		"1", 1,
		"cm", "5",
		"", "pd370298289.htm",
		"", 10,
		"1-g", "0",
		 0)
	
		Entry[430] = new Element(
		430, "assets/thumb/406-kl.jpg",
		142, 107,
		"406", "Cotton with ± 9 mm pile",
		"406 Cotton with ± 9 mm pile", "",
		"0.4", "0",
		"1", 1,
		"cm", "5",
		"", "pd-201224377.htm",
		"", 10,
		"1-g", "0",
		 0)
	
		Entry[431] = new Element(
		431, "assets/thumb/407-kl.jpg",
		142, 107,
		"407", "Cotton with ± 9 mm pile",
		"407 Cotton with ± 9 mm pile", "",
		"0.4", "0",
		"1", 1,
		"cm", "5",
		"", "pd1407468237.htm",
		"", 10,
		"1-g", "0",
		 0)
	
		Entry[432] = new Element(
		432, "assets/thumb/4070-kl.jpg",
		142, 107,
		"4070", "Cotton with ± 9 mm pile",
		"4070 Cotton with ± 9 mm pile", "",
		"0.62", "0",
		"1", 1,
		"cm", "5",
		"", "pd1226930627.htm",
		"", 10,
		"1-g", "0",
		 0)
	
		Entry[433] = new Element(
		433, "assets/thumb/Puk-Alpaka-kl.jpg",
		106, 142,
		"6087 - 5451", "Puk alpaca ± 15 cm",
		"6087 Do it yourself kit Puk alpaca ± 15 cm", "",
		"12.6", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;5451@", "pd1223465382.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[434] = new Element(
		434, "assets/thumb/01-kl.jpg",
		142, 107,
		"150-001", "Mohair with ± 12 mm pile",
		"150-001 Mohair with ± 12 mm pile", "",
		"0.61", "0",
		"1", 1,
		"cm", "2",
		"", "pd1257190728.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[435] = new Element(
		435, "assets/thumb/02-kl.jpg",
		142, 107,
		"150-002", "Mohair with ± 12 mm pile",
		"150-002 Mohair with ± 12 mm pile", "",
		"0.61", "0",
		"1", 1,
		"cm", "2",
		"", "pd131546294.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[436] = new Element(
		436, "assets/thumb/03-kl.jpg",
		142, 107,
		"150-003", "Mohair with ± 12 mm pile",
		"150-003 Mohair with ± 12 mm pile", "",
		"0.61", "0",
		"1", 1,
		"cm", "2",
		"", "pd494176724.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[437] = new Element(
		437, "assets/thumb/04-kl.jpg",
		142, 107,
		"150-004", "Mohair with ± 12 mm pile",
		"150-004 Mohair with ± 12 mm pile", "",
		"0.61", "0",
		"1", 1,
		"cm", "2",
		"", "pd1352225826.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[438] = new Element(
		438, "assets/thumb/05-kl.jpg",
		142, 107,
		"150-005", "Mohair with ± 12 mm pile",
		"150-005 Mohair with ± 12 mm pile", "",
		"0.61", "0",
		"1", 1,
		"cm", "2",
		"", "pd-774856928.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[439] = new Element(
		439, "assets/thumb/06-kl.jpg",
		142, 107,
		"150-006", "Mohair with ± 12 mm pile",
		"150-006 Mohair with ± 12 mm pile", "",
		"0.61", "0",
		"1", 1,
		"cm", "2",
		"", "pd700127822.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[440] = new Element(
		440, "assets/thumb/07-kl.jpg",
		142, 107,
		"150-007", "Mohair with ± 12 mm pile",
		"150-007 Mohair with ± 12 mm pile", "",
		"0.61", "0",
		"1", 1,
		"cm", "2",
		"", "pd876020012.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[441] = new Element(
		441, "assets/thumb/5450-kl.jpg",
		142, 106,
		"5450", "Alpaca with ± 6 mm pile",
		"5450 Alpaca with ± 6 mm pile", "",
		"1.08", "0",
		"1", 1,
		"cm", "8",
		"", "pd1220006258.htm",
		"", 10,
		"1-j", "0",
		 0)
	
		Entry[442] = new Element(
		442, "assets/thumb/5451-kl.jpg",
		142, 106,
		"5451", "Alpaca with ± 6 mm pile",
		"5451 Alpaca with ± 6 mm pile", "",
		"1.08", "0",
		"1", 1,
		"cm", "8",
		"", "pd1726913776.htm",
		"", 10,
		"1-j", "0",
		 0)
	
		Entry[443] = new Element(
		443, "assets/thumb/5452-kl.jpg",
		142, 106,
		"5452", "Alpaca with ± 6 mm pile",
		"5452 Alpaca with ± 6 mm pile", "",
		"1.08", "0",
		"1", 1,
		"cm", "8",
		"", "pd-329872226.htm",
		"", 10,
		"1-j", "0",
		 0)
	
		Entry[444] = new Element(
		444, "assets/thumb/5453-kl.jpg",
		142, 106,
		"5453", "Alpaca with ± 6 mm pile",
		"5453 Alpaca with ± 6 mm pile", "",
		"1.08", "0",
		"1", 1,
		"cm", "8",
		"", "pd-431031300.htm",
		"", 10,
		"1-j", "0",
		 0)
	
		Entry[445] = new Element(
		445, "assets/thumb/5454-kl.jpg",
		142, 106,
		"5454", "Alpaca with ± 6 mm pile",
		"5454 Alpaca with ± 6 mm pile", "",
		"1.08", "0",
		"1", 1,
		"cm", "8",
		"", "pd79999626.htm",
		"", 10,
		"1-j", "0",
		 0)
	
		Entry[446] = new Element(
		446, "assets/thumb/5455-kl.jpg",
		142, 106,
		"5455", "Alpaca with ± 6 mm pile",
		"5455 Alpaca with ± 6 mm pile", "",
		"1.08", "0",
		"1", 1,
		"cm", "8",
		"", "pd1092600776.htm",
		"", 10,
		"1-j", "0",
		 0)
	
		Entry[447] = new Element(
		447, "assets/thumb/5456-kl.jpg",
		142, 106,
		"5456", "Alpaca with ± 6 mm pile",
		"5456 Alpaca with ± 6 mm pile", "",
		"1.08", "0",
		"1", 1,
		"cm", "8",
		"", "pd979660598.htm",
		"", 10,
		"1-j", "0",
		 0)
	
		Entry[448] = new Element(
		448, "assets/thumb/5457-kl.jpg",
		142, 106,
		"5457", "Alpaca with ± 6 mm pile",
		"5457 Alpaca with ± 6 mm pile", "",
		"1.08", "0",
		"1", 1,
		"cm", "8",
		"", "pd-1245773740.htm",
		"", 10,
		"1-j", "0",
		 0)
	
		Entry[449] = new Element(
		449, "assets/thumb/Puh-kl.jpg",
		106, 142,
		"6085 - 5450", "Puh family",
		"6085 Do it yourself kit Puh family", "",
		"39.2", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;5450@", "pd-431523886.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[450] = new Element(
		450, "assets/thumb/Platsch-kl.jpg",
		106, 142,
		"Platsch", "Platsch",
		"Pattern Platsch ± 25 cm", "",
		"3", "0",
		"2", 1,
		"piece", "36",
		"", "pd-1941723242.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[451] = new Element(
		451, "assets/thumb/Duco-kl.jpg",
		106, 142,
		"Duco", "Duco",
		"Pattern Duco ± 22 cm", "",
		"4", "0",
		"2", 1,
		"piece", "36",
		"", "pd-731484236.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[452] = new Element(
		452, "assets/thumb/Paco-kl.jpg",
		106, 142,
		"Paco", "Paco",
		"Pattern Paco ± 22 cm", "",
		"4", "0",
		"2", 1,
		"piece", "36",
		"", "pd454634754.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[453] = new Element(
		453, "assets/thumb/Nino-kl.jpg",
		106, 142,
		"Nino", "Nino",
		"Pattern Nino ± 22 cm", "",
		"4", "0",
		"2", 1,
		"piece", "36",
		"", "pd1660658432.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[454] = new Element(
		454, "assets/thumb/Robin-kl.jpg",
		142, 106,
		"Robin", "Robin",
		"Pattern Robin", "",
		"4", "0",
		"2", 1,
		"piece", "36",
		"", "pd-808369874.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[455] = new Element(
		455, "assets/thumb/Julio-kl.jpg",
		100, 142,
		"Julio", "Julio",
		"Pattern Julio ± 17 cm", "",
		"4", "0",
		"2", 1,
		"piece", "36",
		"", "pd1079575308.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[456] = new Element(
		456, "assets/thumb/Nico-kl.jpg",
		100, 142,
		"Nico", "Nico",
		"Pattern Nico ± 23 cm", "",
		"4", "0",
		"2", 1,
		"piece", "36",
		"", "pd1063800858.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[457] = new Element(
		457, "assets/thumb/Carlo-kl.jpg",
		106, 142,
		"Carlo", "Carlo",
		"Pattern Carlo ± 22 cm", "",
		"4", "0",
		"2", 1,
		"piece", "36",
		"", "pd-905913384.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[458] = new Element(
		458, "assets/thumb/Bas-kl.jpg",
		106, 142,
		"Bas", "Bas",
		"Pattern Bas ± 20 cm", "",
		"4", "0",
		"2", 1,
		"piece", "36",
		"", "pd2128184774.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[459] = new Element(
		459, "assets/thumb/Aiko-kl.jpg",
		106, 142,
		"Aiko", "Aiko",
		"Pattern Aiko ± 16 cm", "",
		"4", "0",
		"2", 1,
		"piece", "36",
		"", "pd-1064158876.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[460] = new Element(
		460, "assets/thumb/Timo-kl.jpg",
		106, 142,
		"Timo", "Timo",
		"Pattern Timo ± 31 cm", "",
		"5", "0",
		"2", 1,
		"piece", "36",
		"", "pd1451937330.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[461] = new Element(
		461, "assets/thumb/Tumbly-kl.jpg",
		106, 142,
		"Tumbly", "Tumbly",
		"Pattern Tumbly ± 21 cm", "",
		"5", "0",
		"2", 1,
		"piece", "36",
		"", "pd-652941392.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[462] = new Element(
		462, "assets/thumb/Mia-kl.jpg",
		106, 142,
		"Mia", "Mia",
		"Pattern Mia ± 23 cm", "",
		"5", "0",
		"2", 1,
		"piece", "36",
		"", "pd-461843106.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[463] = new Element(
		463, "assets/thumb/Momo-kl.jpg",
		107, 142,
		"Momo", "Momo",
		"Pattern Momo ± 37 cm", "",
		"5", "0",
		"2", 1,
		"piece", "36",
		"", "pd1527083708.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[464] = new Element(
		464, "assets/thumb/Emilio-kl.jpg",
		100, 142,
		"Emilio", "Emilio",
		"Pattern Emiliio ± 21 cm", "",
		"5", "0",
		"2", 1,
		"piece", "36",
		"", "pd421726026.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[465] = new Element(
		465, "assets/thumb/Fito-kl.jpg",
		100, 142,
		"Fito", "Fito",
		"Pattern Fitp ± 25 cm", "",
		"5", "0",
		"2", 1,
		"piece", "36",
		"", "pd388048520.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[466] = new Element(
		466, "assets/thumb/Slomo-kl.jpg",
		100, 142,
		"Slomo", "Slomo",
		"Pattern Slomo ± 22 cm", "",
		"5", "0",
		"2", 1,
		"piece", "36",
		"", "pd993497078.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[467] = new Element(
		467, "assets/thumb/Dodo-kl.jpg",
		100, 142,
		"Dodo", "Dodo",
		"Pattern Dodo ± 27 cm", "",
		"5", "0",
		"2", 1,
		"piece", "36",
		"", "pd-1024323820.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[468] = new Element(
		468, "assets/thumb/Mats-kl.jpg",
		100, 142,
		"Mats", "Mats",
		"Pattern Mats ± 35 cm", "",
		"6", "0",
		"2", 1,
		"piece", "36",
		"", "pd1577016162.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[469] = new Element(
		469, "assets/thumb/Jelle-kl.jpg",
		142, 106,
		"Jelle", "Jelle",
		"Pattern Jelle ± 40 cm", "",
		"6", "0",
		"2", 1,
		"piece", "36",
		"", "pd-2061830048.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[470] = new Element(
		470, "assets/thumb/Justin-kl.jpg",
		142, 107,
		"Justin", "Justin",
		"Pattern Justin ± 30 cm", "",
		"6", "0",
		"2", 1,
		"piece", "36",
		"", "pd1988760974.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[471] = new Element(
		471, "assets/thumb/Benno-Menno-kl.jpg",
		142, 107,
		"Benno + Menno", "Benno + Menno",
		"Pattern Benno ± 30 cm + Menno ± 20 cm", "",
		"6", "0",
		"2", 1,
		"piece", "36",
		"", "pd1046703724.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[472] = new Element(
		472, "assets/thumb/Domino-kl.jpg",
		100, 142,
		"Domino", "Domino",
		"Pattern Domino ± 33 cm", "",
		"6", "0",
		"2", 1,
		"piece", "36",
		"", "pd2073700986.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[473] = new Element(
		473, "assets/thumb/08-kl.jpg",
		142, 107,
		"150-008", "Mohair with ± 12 mm pile",
		"150-008 Mohair with ± 12 mm pile", "",
		"0.61", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1823802566.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[474] = new Element(
		474, "assets/thumb/09-kl.jpg",
		142, 107,
		"150-009", "Mohair with ± 12 mm pile",
		"150-009 Mohair with ± 12 mm pile", "",
		"0.61", "0",
		"1", 1,
		"cm", "2",
		"", "pd193723384.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[475] = new Element(
		475, "assets/thumb/10-kl.jpg",
		142, 107,
		"150-010", "Mohair with ± 12 mm pile",
		"150-010 Mohair with ± 12 mm pile", "",
		"0.61", "0",
		"1", 1,
		"cm", "2",
		"", "pd1920344806.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[476] = new Element(
		476, "assets/thumb/11-kl.jpg",
		142, 107,
		"150-011", "Mohair with ± 12 mm pile",
		"150-011 Mohair with ± 12 mm pile", "",
		"0.61", "0",
		"1", 1,
		"cm", "2",
		"", "pd-336553084.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[477] = new Element(
		477, "assets/thumb/12-kl.jpg",
		142, 107,
		"150-012", "Mohair with ± 12 mm pile",
		"150-012 Mohair with ± 12 mm pile", "",
		"0.61", "0",
		"1", 1,
		"cm", "2",
		"", "pd1458863442.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[478] = new Element(
		478, "assets/thumb/13-kl.jpg",
		142, 107,
		"150-013", "Mohair with ± 12 mm pile",
		"150-013 Mohair with ± 12 mm pile", "",
		"0.61", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1441879088.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[479] = new Element(
		479, "assets/thumb/14-kl.jpg",
		142, 107,
		"150-014", "Mohair with ± 12 mm pile",
		"150-014 Mohair with ± 12 mm pile", "",
		"0.61", "0",
		"1", 1,
		"cm", "2",
		"", "pd-818628994.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[480] = new Element(
		480, "assets/thumb/15-kl.jpg",
		142, 107,
		"150-015", "Mohair with ± 12 mm pile",
		"150-015 Mohair with ± 12 mm pile", "",
		"0.61", "0",
		"1", 1,
		"cm", "2",
		"", "pd-81479460.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[481] = new Element(
		481, "assets/thumb/16-kl.jpg",
		142, 107,
		"150-016", "Mohair with ± 12 mm pile",
		"150-016 Mohair with ± 12 mm pile", "",
		"0.61", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1220003222.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[482] = new Element(
		482, "assets/thumb/17-kl.jpg",
		142, 107,
		"150-017", "Mohair with ± 12 mm pile",
		"150-017 Mohair with ± 12 mm pile", "",
		"0.61", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1915613528.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[483] = new Element(
		483, "assets/thumb/18-kl.jpg",
		142, 107,
		"150-018", "Mohair with ± 12 mm pile",
		"150-018 Mohair with ± 12 mm pile", "",
		"0.61", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1366346474.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[484] = new Element(
		484, "assets/thumb/19-kl.jpg",
		142, 107,
		"150-019", "Mohair with ± 12 mm pile",
		"150-019 Mohair with ± 12 mm pile", "",
		"0.61", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1482507980.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[485] = new Element(
		485, "assets/thumb/20-kl.jpg",
		142, 107,
		"150-020", "Mohair with ± 12 mm pile",
		"150-020 Mohair with ± 12 mm pile", "",
		"0.61", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1608215934.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[486] = new Element(
		486, "assets/thumb/21-kl.jpg",
		142, 107,
		"150-021", "Mohair with ± 12 mm pile",
		"150-021 Mohair with ± 12 mm pile", "",
		"0.61", "0",
		"1", 1,
		"cm", "2",
		"", "pd324764800.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[487] = new Element(
		487, "assets/thumb/22-kl.jpg",
		142, 107,
		"150-022", "Mohair with ± 12 mm pile",
		"150-022 Mohair with ± 12 mm pile", "",
		"0.61", "0",
		"1", 1,
		"cm", "2",
		"", "pd168427182.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[488] = new Element(
		488, "assets/thumb/23-kl.jpg",
		142, 107,
		"150-023", "Mohair with ± 12 mm pile",
		"150-023 Mohair with ± 12 mm pile", "",
		"0.61", "0",
		"1", 1,
		"cm", "2",
		"", "pd-335151988.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[489] = new Element(
		489, "assets/thumb/24-kl.jpg",
		142, 107,
		"150-024", "Mohair with ± 12 mm pile",
		"150-024 Mohair with ± 12 mm pile", "",
		"0.61", "0",
		"1", 1,
		"cm", "2",
		"", "pd1863574938.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[490] = new Element(
		490, "assets/thumb/25-kl.jpg",
		142, 107,
		"150-025", "Mohair with ± 12 mm pile",
		"150-025 Mohair with ± 12 mm pile", "",
		"0.61", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1866699432.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[491] = new Element(
		491, "assets/thumb/26-kl.jpg",
		142, 107,
		"150-026", "Mohair with ± 12 mm pile",
		"150-026 Mohair with ± 12 mm pile", "",
		"0.61", "0",
		"1", 1,
		"cm", "2",
		"", "pd529888070.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[492] = new Element(
		492, "assets/thumb/27-kl.jpg",
		142, 107,
		"150-027", "Mohair with ± 12 mm pile",
		"150-027 Mohair with ± 12 mm pile", "",
		"0.61", "0",
		"1", 1,
		"cm", "2",
		"", "pd-852106524.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[493] = new Element(
		493, "assets/thumb/28-kl.jpg",
		142, 107,
		"150-028", "Mohair with ± 12 mm pile",
		"150-028 Mohair with ± 12 mm pile", "",
		"0.61", "0",
		"1", 1,
		"cm", "2",
		"", "pd1154257842.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[494] = new Element(
		494, "assets/thumb/29-kl.jpg",
		142, 107,
		"150-029", "Mohair with ± 12 mm pile",
		"150-029 Mohair with ± 12 mm pile", "",
		"0.61", "0",
		"1", 1,
		"cm", "2",
		"", "pd51521840.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[495] = new Element(
		495, "assets/thumb/30-kl.jpg",
		142, 107,
		"150-030", "Mohair with ± 12 mm pile",
		"150-030 Mohair with ± 12 mm pile", "",
		"0.61", "0",
		"1", 1,
		"cm", "2",
		"", "pd-619842850.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[496] = new Element(
		496, "assets/thumb/31-kl.jpg",
		142, 107,
		"150-031", "Mohair with ± 12 mm pile",
		"150-031 Mohair with ± 12 mm pile", "",
		"0.61", "0",
		"1", 1,
		"cm", "2",
		"", "pd-538588100.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[497] = new Element(
		497, "assets/thumb/32-kl.jpg",
		142, 107,
		"150-032", "Mohair with ± 12 mm pile",
		"150-032 Mohair with ± 12 mm pile", "",
		"0.61", "0",
		"1", 1,
		"cm", "2",
		"", "pd112262346.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[498] = new Element(
		498, "assets/thumb/Floris-viskose-kl.jpg",
		100, 142,
		"6098", "Floris ± 32 cm",
		"6098 Do it yourself kit Floris ± 32 cm", "",
		"15", "0",
		"1", 1,
		"piece", "35",
		"", "pd1257883029.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[499] = new Element(
		499, "assets/thumb/ms344-kl.jpg",
		142, 107,
		"MS344", "Miniature fabrics",
		"MS343 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd1049907294.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[500] = new Element(
		500, "assets/thumb/Rusty-kl.jpg",
		116, 142,
		"6099", "Rusty ± 26 cm",
		"6099 Do it yourself kit Rusty ± 26 cm", "",
		"14.9", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;150-015@", "pd1260459279.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[501] = new Element(
		501, "assets/thumb/YinYan-kl.jpg",
		142, 96,
		"6100", "Yin &amp; Yan ± 21 cm",
		"6100 Do it yourself kit Yin &amp; Yan ± 21 cm", "",
		"17.9", "0",
		"1", 1,
		"piece", "35",
		"", "pd1685063061.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[502] = new Element(
		502, "assets/thumb/Charly-kl.jpg",
		94, 142,
		"6103 - 055", "Charly ± 25 cm",
		"6103 Do it yourself kit Charly ± 25 cm", "",
		"16.9", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;151-055@", "pd1275036519.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[503] = new Element(
		503, "assets/thumb/Koko-kl.jpg",
		102, 142,
		"6104 - 040", "Koko ± 31 cm",
		"6104 Do it yourself kit Koko ± 31 cm", "",
		"19.9", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;151-040@", "pd1320769142.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[504] = new Element(
		504, "assets/thumb/151-041-kl.jpg",
		142, 107,
		"151-041", "Mohair with ± 16 mm pile",
		"151-041 Mohair with ± 16 mm pile", "",
		"0.68", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1824542951.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[505] = new Element(
		505, "assets/thumb/151-046-kl.jpg",
		142, 107,
		"151-046", "Mohair with ± 16 mm pile",
		"151-046 Mohair with ± 16 mm pile", "",
		"0.68", "0",
		"1", 1,
		"cm", "2",
		"", "pd1588869636.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[506] = new Element(
		506, "assets/thumb/151-045-kl.jpg",
		142, 107,
		"151-045", "Mohair with ± 16 mm pile",
		"151-045 Mohair with ± 16 mm pile", "",
		"0.68", "0",
		"1", 1,
		"cm", "2",
		"", "pd944825323.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[507] = new Element(
		507, "assets/thumb/151-044-kl.jpg",
		142, 107,
		"151-044", "Mohair with ± 16 mm pile",
		"151-044 Mohair with ± 16 mm pile", "",
		"0.68", "0",
		"1", 1,
		"cm", "2",
		"", "pd223387902.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[508] = new Element(
		508, "assets/thumb/151-042-kl.jpg",
		142, 107,
		"151-042", "Mohair with ± 16 mm pile",
		"151-042 Mohair with ± 16 mm pile", "",
		"0.68", "0",
		"1", 1,
		"cm", "2",
		"", "pd4592429.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[509] = new Element(
		509, "assets/thumb/151-043-kl.jpg",
		142, 107,
		"151-043", "Mohair with ± 16 mm pile",
		"151-043 Mohair with ± 16 mm pile", "",
		"0.68", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1501960920.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[510] = new Element(
		510, "assets/thumb/151-055-kl.jpg",
		142, 107,
		"151-055", "Mohair with ± 16 mm pile",
		"151-055 Mohair with ± 16 mm pile", "",
		"0.68", "0",
		"1", 1,
		"cm", "2",
		"", "pd-769728161.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[511] = new Element(
		511, "assets/thumb/151-054-kl.jpg",
		142, 107,
		"151-054", "Mohair with ± 16 mm pile",
		"151-054 Mohair with ± 16 mm pile", "",
		"0.68", "0",
		"1", 1,
		"cm", "2",
		"", "pd2084500738.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[512] = new Element(
		512, "assets/thumb/151-053-kl.jpg",
		142, 107,
		"151-053", "Mohair with ± 16 mm pile",
		"151-053 Mohair with ± 16 mm pile", "",
		"0.68", "0",
		"1", 1,
		"cm", "2",
		"", "pd-742519039.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[513] = new Element(
		513, "assets/thumb/151-052-kl.jpg",
		142, 107,
		"151-052", "Mohair with ± 16 mm pile",
		"151-052 Mohair with ± 16 mm pile", "",
		"0.68", "0",
		"1", 1,
		"cm", "2",
		"", "pd1309969164.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[514] = new Element(
		514, "assets/thumb/151-051-kl.jpg",
		142, 107,
		"151-051", "Mohair with ± 16 mm pile",
		"151-051 Mohair with ± 16 mm pile", "",
		"0.68", "0",
		"1", 1,
		"cm", "2",
		"", "pd-85026669.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[515] = new Element(
		515, "assets/thumb/151-050-kl.jpg",
		142, 107,
		"151-050", "Mohair with ± 16 mm pile",
		"151-050 Mohair with ± 16 mm pile", "",
		"0.68", "0",
		"1", 1,
		"cm", "2",
		"", "pd-128135738.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[516] = new Element(
		516, "assets/thumb/151-049-kl.jpg",
		142, 107,
		"151-049", "Mohair with ± 16 mm pile",
		"151-049 Mohair with ± 16 mm pile", "",
		"0.68", "0",
		"1", 1,
		"cm", "2",
		"", "pd-330312043.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[517] = new Element(
		517, "assets/thumb/151-048-kl.jpg",
		142, 107,
		"151-048", "Mohair with ± 16 mm pile",
		"151-048 Mohair with ± 16 mm pile", "",
		"0.68", "0",
		"1", 1,
		"cm", "2",
		"", "pd-721293392.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[518] = new Element(
		518, "assets/thumb/151-047-kl.jpg",
		142, 107,
		"151-047", "Mohair with ± 16 mm pile",
		"151-047 Mohair with ± 16 mm pile", "",
		"0.68", "0",
		"1", 1,
		"cm", "2",
		"", "pd-797926009.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[519] = new Element(
		519, "assets/thumb/4071-kl.jpg",
		142, 107,
		"4071", "Cotton with ± 9 mm pile",
		"4071 Cotton with ± 9 mm pile", "",
		"0.62", "0",
		"1", 1,
		"cm", "5",
		"", "pd1326227881.htm",
		"", 10,
		"1-g", "0",
		 0)
	
		Entry[520] = new Element(
		520, "assets/thumb/4072-kl.jpg",
		142, 107,
		"4072", "Cotton with ± 9 mm pile",
		"4072 Cotton with ± 9 mm pile", "",
		"0.62", "0",
		"1", 1,
		"cm", "5",
		"", "pd-1129520129.htm",
		"", 10,
		"1-g", "0",
		 0)
	
		Entry[521] = new Element(
		521, "assets/thumb/4073-kl.jpg",
		142, 107,
		"4073", "Cotton with ± 9 mm pile",
		"4073 Cotton with ± 9 mm pile", "",
		"0.62", "0",
		"1", 1,
		"cm", "5",
		"", "pd1867744837.htm",
		"", 10,
		"1-g", "0",
		 0)
	
		Entry[522] = new Element(
		522, "assets/thumb/4081-kl.jpg",
		142, 107,
		"4081", "Cotton with ± 9 mm pile",
		"4081 Cotton with ± 9 mm pile", "",
		"0.62", "0",
		"1", 1,
		"cm", "5",
		"", "pd-459716101.htm",
		"", 10,
		"1-g", "0",
		 0)
	
		Entry[523] = new Element(
		523, "assets/thumb/4085-kl.jpg",
		142, 107,
		"4085", "Viscose with ± 6 mm pile",
		"4085 Viscose with ± 6 mm pile", "",
		"0.59", "0",
		"1", 1,
		"cm", "6",
		"", "pd-786780519.htm",
		"", 10,
		"1-h", "0",
		 0)
	
		Entry[524] = new Element(
		524, "assets/thumb/980-kl.jpg",
		142, 107,
		"980", "Mohair with ± 24 mm pile",
		"980 Mohair with ± 24 mm pile", "",
		"1.62", "0",
		"1", 1,
		"cm", "3",
		"", "pd1034910319.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[525] = new Element(
		525, "assets/thumb/982-kl.jpg",
		142, 107,
		"982", "Mohair with ± 24 mm pile",
		"982 Mohair with ± 24 mm pile", "",
		"1.62", "0",
		"1", 1,
		"cm", "3",
		"", "pd-1596734923.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[526] = new Element(
		526, "assets/thumb/710-kl.jpg",
		142, 107,
		"710", "Mohair with ± 24 mm pile",
		"710 Mohair with ± 24 mm pile", "",
		"1.76", "0",
		"1", 1,
		"cm", "3",
		"", "pd486942609.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[527] = new Element(
		527, "assets/thumb/719-kl.jpg",
		142, 107,
		"719", "Mohair with ± 24 mm pile",
		"719 Mohair with ± 24 mm pile", "",
		"1.76", "0",
		"1", 1,
		"cm", "3",
		"", "pd-609977305.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[528] = new Element(
		528, "assets/thumb/721-kl.jpg",
		142, 107,
		"721", "Mohair with ± 24 mm pile",
		"721 Mohair with ± 24 mm pile", "",
		"1.76", "0",
		"1", 1,
		"cm", "3",
		"", "pd-1799849299.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[529] = new Element(
		529, "assets/thumb/722-kl.jpg",
		142, 107,
		"722", "Mohair with ± 26 mm pile",
		"722 Mohair with ± 26 mm pile", "",
		"1.8", "0",
		"1", 1,
		"cm", "3",
		"", "pd1767109795.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[530] = new Element(
		530, "assets/thumb/700-kl.jpg",
		142, 107,
		"700", "Mohair with ± 27 mm pile",
		"700 Mohair with ± 27 mm pile", "",
		"1.45", "0",
		"1", 1,
		"cm", "3",
		"", "pd-1384966263.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[531] = new Element(
		531, "assets/thumb/701-kl.jpg",
		142, 107,
		"701", "Mohair with ± 27 mm pile",
		"701 Mohair with ± 27 mm pile", "",
		"1.45", "0",
		"1", 1,
		"cm", "3",
		"", "pd-1946956577.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[532] = new Element(
		532, "assets/thumb/702-kl.jpg",
		142, 107,
		"702", "Mohair with ± 27 mm pile",
		"702 Mohair with ± 27 mm pile", "",
		"1.45", "0",
		"1", 1,
		"cm", "3",
		"", "pd484186661.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[533] = new Element(
		533, "assets/thumb/703-kl.jpg",
		142, 107,
		"703", "Mohair with ± 27 mm pile",
		"703 Mohair with ± 27 mm pile", "",
		"1.45", "0",
		"1", 1,
		"cm", "3",
		"", "pd-1836613413.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[534] = new Element(
		534, "assets/thumb/704-kl.jpg",
		142, 107,
		"704", "Mohair with ± 27 mm pile",
		"704 Mohair with ± 27 mm pile", "",
		"1.45", "0",
		"1", 1,
		"cm", "3",
		"", "pd336813697.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[535] = new Element(
		535, "assets/thumb/705-kl.jpg",
		142, 107,
		"705", "Mohair with ± 27 mm pile",
		"705 Mohair with ± 27 mm pile", "",
		"1.45", "0",
		"1", 1,
		"cm", "3",
		"", "pd589450391.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[536] = new Element(
		536, "assets/thumb/580-kl.jpg",
		142, 107,
		"580", "Mohair with ± 41 mm pile",
		"580 Mohair with ± 41 mm pile", "",
		"1.49", "0",
		"1", 1,
		"cm", "4",
		"", "pd-936059783.htm",
		"", 10,
		"1-f", "0",
		 0)
	
		Entry[537] = new Element(
		537, "assets/thumb/581-kl.jpg",
		142, 107,
		"581", "Mohair with ± 41 mm pile",
		"581 Mohair with ± 41 mm pile", "",
		"1.49", "0",
		"1", 1,
		"cm", "4",
		"", "pd-995042481.htm",
		"", 10,
		"1-f", "0",
		 0)
	
		Entry[538] = new Element(
		538, "assets/thumb/582-kl.jpg",
		142, 107,
		"582", "Mohair with ± 41 mm pile",
		"582 Mohair with ± 41 mm pile", "",
		"1.49", "0",
		"1", 1,
		"cm", "4",
		"", "pd1065061909.htm",
		"", 10,
		"1-f", "0",
		 0)
	
		Entry[539] = new Element(
		539, "assets/thumb/583-kl.jpg",
		142, 107,
		"583", "Mohair with ± 41 mm pile",
		"583 Mohair with ± 41 mm pile", "",
		"1.49", "0",
		"1", 1,
		"cm", "4",
		"", "pd-768223669.htm",
		"", 10,
		"1-f", "0",
		 0)
	
		Entry[540] = new Element(
		540, "assets/thumb/573-kl.jpg",
		142, 107,
		"573", "Mohair with ± 41 mm pile",
		"573 Mohair with ± 41 mm pile", "",
		"1.64", "0",
		"1", 1,
		"cm", "4",
		"", "pd1855740167.htm",
		"", 10,
		"1-f", "0",
		 0)
	
		Entry[541] = new Element(
		541, "assets/thumb/574-kl.jpg",
		142, 107,
		"574", "Mohair with ± 41 mm pile",
		"574 Mohair with ± 41 mm pile", "",
		"1.64", "0",
		"1", 1,
		"cm", "4",
		"", "pd-693427571.htm",
		"", 10,
		"1-f", "0",
		 0)
	
		Entry[542] = new Element(
		542, "assets/thumb/575-kl.jpg",
		142, 107,
		"575", "Mohair with ± 41 mm pile",
		"575 Mohair with ± 41 mm pile", "",
		"1.64", "0",
		"1", 1,
		"cm", "4",
		"", "pd1267359619.htm",
		"", 10,
		"1-f", "0",
		 0)
	
		Entry[543] = new Element(
		543, "assets/thumb/576-kl.jpg",
		142, 107,
		"576", "Mohair with ± 41 mm pile",
		"576 Mohair with ± 41 mm pile", "",
		"1.64", "0",
		"1", 1,
		"cm", "4",
		"", "pd-549520023.htm",
		"", 10,
		"1-f", "0",
		 0)
	
		Entry[544] = new Element(
		544, "assets/thumb/4110-kl.jpg",
		142, 107,
		"4110", "Mohair with ± 41 mm pile",
		"4110 Mohair with ± 41 mm pile", "",
		"1.49", "0",
		"1", 1,
		"cm", "4",
		"", "pd1960682943.htm",
		"", 10,
		"1-f", "0",
		 0)
	
		Entry[545] = new Element(
		545, "assets/thumb/4111-kl.jpg",
		142, 107,
		"4111", "Mohair with ± 41 mm pile",
		"4111 Mohair with ± 41 mm pile", "",
		"1.49", "0",
		"1", 1,
		"cm", "4",
		"", "pd1518411269.htm",
		"", 10,
		"1-f", "0",
		 0)
	
		Entry[546] = new Element(
		546, "assets/thumb/4112-kl.jpg",
		142, 107,
		"4112", "Mohair with ± 41 mm pile",
		"4112 Mohair with ± 41 mm pile", "",
		"1.49", "0",
		"1", 1,
		"cm", "4",
		"", "pd1638377403.htm",
		"", 10,
		"1-f", "0",
		 0)
	
		Entry[547] = new Element(
		547, "assets/thumb/4113-kl.jpg",
		142, 107,
		"4113", "Mohair with ± 41 mm pile",
		"4113 Mohair with ± 41 mm pile", "",
		"1.49", "0",
		"1", 1,
		"cm", "4",
		"", "pd1481597025.htm",
		"", 10,
		"1-f", "0",
		 0)
	
		Entry[548] = new Element(
		548, "assets/thumb/4114-kl.jpg",
		142, 107,
		"4114", "Mohair with ± 41 mm pile",
		"4114 Mohair with ± 41 mm pile", "",
		"1.49", "0",
		"1", 1,
		"cm", "4",
		"", "pd-320233097.htm",
		"", 10,
		"1-f", "0",
		 0)
	
		Entry[549] = new Element(
		549, "assets/thumb/4115-kl.jpg",
		142, 107,
		"4115", "Mohair with ± 41 mm pile",
		"4115 Mohair with ± 41 mm pile", "",
		"1.49", "0",
		"1", 1,
		"cm", "4",
		"", "pd1962762365.htm",
		"", 10,
		"1-f", "0",
		 0)
	
		Entry[550] = new Element(
		550, "assets/thumb/4116-kl.jpg",
		142, 107,
		"4116", "Mohair with ± 41 mm pile",
		"4116 Mohair with ± 41 mm pile", "",
		"1.49", "0",
		"1", 1,
		"cm", "4",
		"", "pd839945971.htm",
		"", 10,
		"1-f", "0",
		 0)
	
		Entry[551] = new Element(
		551, "assets/thumb/4100-kl.jpg",
		142, 107,
		"4100", "Mohair with ± 85 mm pile",
		"4100 Mohair with ± 85 mm pile", "",
		"2.12", "0",
		"1", 1,
		"cm", "4",
		"", "pd2049997401.htm",
		"", 10,
		"1-f", "0",
		 0)
	
		Entry[552] = new Element(
		552, "assets/thumb/4101-kl.jpg",
		142, 107,
		"4101", "Mohair with ± 85 mm pile",
		"4101 Mohair with ± 85 mm pile", "",
		"2.12", "0",
		"1", 1,
		"cm", "4",
		"", "pd154217519.htm",
		"", 10,
		"1-f", "0",
		 0)
	
		Entry[553] = new Element(
		553, "assets/thumb/4102-kl.jpg",
		142, 107,
		"4102", "Mohair with ± 85 mm pile",
		"4102 Mohair with ± 85 mm pile", "",
		"2.12", "0",
		"1", 1,
		"cm", "4",
		"", "pd-1518614027.htm",
		"", 10,
		"1-f", "0",
		 0)
	
		Entry[554] = new Element(
		554, "assets/thumb/4103-kl.jpg",
		142, 107,
		"4103", "Mohair with ± 85 mm pile",
		"4103 Mohair with ± 85 mm pile", "",
		"2.12", "0",
		"1", 1,
		"cm", "4",
		"", "pd-1627130581.htm",
		"", 10,
		"1-f", "0",
		 0)
	
		Entry[555] = new Element(
		555, "assets/thumb/5487-kl.jpg",
		142, 107,
		"5487", "Alpaca with ± 9 mm pile",
		"5487 Alpaca with ± 9 mm pile", "",
		"1.03", "0",
		"1", 1,
		"cm", "8",
		"", "pd1891380049.htm",
		"", 10,
		"1-j", "0",
		 0)
	
		Entry[556] = new Element(
		556, "assets/thumb/5488-kl.jpg",
		142, 107,
		"5488", "Alpaca with ± 9 mm pile",
		"5488 Alpaca with ± 9 mm pile", "",
		"1.03", "0",
		"1", 1,
		"cm", "8",
		"", "pd1688282599.htm",
		"", 10,
		"1-j", "0",
		 0)
	
		Entry[557] = new Element(
		557, "assets/thumb/5489-kl.jpg",
		142, 107,
		"5489", "Alpaca with ± 9 mm pile",
		"5489 Alpaca with ± 9 mm pile", "",
		"1.03", "0",
		"1", 1,
		"cm", "8",
		"", "pd2016688749.htm",
		"", 10,
		"1-j", "0",
		 0)
	
		Entry[558] = new Element(
		558, "assets/thumb/5490-kl.jpg",
		142, 107,
		"5490", "Alpaca with ± 9 mm pile",
		"5490 Alpaca with ± 9 mm pile", "",
		"1.03", "0",
		"1", 1,
		"cm", "8",
		"", "pd1392294499.htm",
		"", 10,
		"1-j", "0",
		 0)
	
		Entry[559] = new Element(
		559, "assets/thumb/779-kl.jpg",
		142, 107,
		"779", "Sheepwool with ± 6 mm pile",
		"779 Sheepwool with ± 6 mm pile", "",
		"0.63", "0",
		"1", 1,
		"cm", "9",
		"", "pd-630697143.htm",
		"", 10,
		"1-k", "0",
		 0)
	
		Entry[560] = new Element(
		560, "assets/thumb/455-kl.jpg",
		142, 107,
		"455", "Synthetic with ± 13 mm pile",
		"455 Synthetic with ± 13 mm pile", "",
		"0.76", "0",
		"1", 1,
		"cm", "7",
		"", "pd-763449251.htm",
		"", 10,
		"1-i", "0",
		 0)
	
		Entry[561] = new Element(
		561, "assets/thumb/456-kl.jpg",
		142, 107,
		"456", "Synthetic with ± 13 mm pile",
		"456 Synthetic with ± 13 mm pile", "",
		"0.76", "0",
		"1", 1,
		"cm", "7",
		"", "pd-938090029.htm",
		"", 10,
		"1-i", "0",
		 0)
	
		Entry[562] = new Element(
		562, "assets/thumb/457-kl.jpg",
		142, 107,
		"457", "Synthetic with ± 13 mm pile",
		"457 Synthetic with ± 13 mm pile", "",
		"0.76", "0",
		"1", 1,
		"cm", "7",
		"", "pd-351958983.htm",
		"", 10,
		"1-i", "0",
		 0)
	
		Entry[563] = new Element(
		563, "assets/thumb/458-kl.jpg",
		142, 107,
		"458", "Synthetic with ± 13 mm pile",
		"458 Synthetic with ± 13 mm pile", "",
		"0.76", "0",
		"1", 1,
		"cm", "7",
		"", "pd-1880593137.htm",
		"", 10,
		"1-i", "0",
		 0)
	
		Entry[564] = new Element(
		564, "assets/thumb/460-kl.jpg",
		142, 107,
		"460", "Synthetic with ± 13 mm pile",
		"460 Synthetic with ± 13 mm pile", "",
		"0.76", "0",
		"1", 1,
		"cm", "7",
		"", "pd-968067627.htm",
		"", 10,
		"1-i", "0",
		 0)
	
		Entry[565] = new Element(
		565, "assets/thumb/461-kl.jpg",
		142, 107,
		"461", "Synthetic with ± 13 mm pile",
		"461 Synthetic with ± 13 mm pile", "",
		"0.76", "0",
		"1", 1,
		"cm", "7",
		"", "pd114820107.htm",
		"", 10,
		"1-i", "0",
		 0)
	
		Entry[566] = new Element(
		566, "assets/thumb/462-kl.jpg",
		142, 106,
		"462", "Synthetic with ± 13 mm pile",
		"462 Synthetic with ± 13 mm pile", "",
		"0.76", "0",
		"1", 1,
		"cm", "7",
		"", "pd1466848561.htm",
		"", 10,
		"1-i", "0",
		 0)
	
		Entry[567] = new Element(
		567, "assets/thumb/463-kl.jpg",
		142, 107,
		"463", "Synthetic with ± 13 mm pile",
		"463 Synthetic with ± 13 mm pile", "",
		"0.76", "0",
		"1", 1,
		"cm", "7",
		"", "pd-244653369.htm",
		"", 10,
		"1-i", "0",
		 0)
	
		Entry[568] = new Element(
		568, "assets/thumb/464-kl.jpg",
		142, 107,
		"464", "Synthetic with ± 13 mm pile",
		"464 Synthetic with ± 13 mm pile", "",
		"0.76", "0",
		"1", 1,
		"cm", "7",
		"", "pd-1278492083.htm",
		"", 10,
		"1-i", "0",
		 0)
	
		Entry[569] = new Element(
		569, "assets/thumb/465-kl.jpg",
		142, 107,
		"465", "Synthetic with ± 13 mm pile",
		"465 Synthetic with ± 13 mm pile", "",
		"0.76", "0",
		"1", 1,
		"cm", "7",
		"", "pd518194499.htm",
		"", 10,
		"1-i", "0",
		 0)
	
		Entry[570] = new Element(
		570, "assets/thumb/471-kl.jpg",
		142, 107,
		"471", "Synthetic with ± 30 mm pile",
		"471 Synthetic with ± 30 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "7",
		"", "pd820451625.htm",
		"", 10,
		"1-i", "0",
		 0)
	
		Entry[571] = new Element(
		571, "assets/thumb/472-kl.jpg",
		142, 107,
		"472", "Synthetic with ± 30 mm pile",
		"472 Synthetic with ± 30 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "7",
		"", "pd-1434835073.htm",
		"", 10,
		"1-i", "0",
		 0)
	
		Entry[572] = new Element(
		572, "assets/thumb/473-kl.jpg",
		142, 107,
		"473", "Synthetic with ± 30 mm pile",
		"473 Synthetic with ± 30 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "7",
		"", "pd-134187579.htm",
		"", 10,
		"1-i", "0",
		 0)
	
		Entry[573] = new Element(
		573, "assets/thumb/474-kl.jpg",
		142, 107,
		"474", "Synthetic with ± 30 mm pile",
		"474 Synthetic with ± 30 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "7",
		"", "pd-1470249605.htm",
		"", 10,
		"1-i", "0",
		 0)
	
		Entry[574] = new Element(
		574, "assets/thumb/475-kl.jpg",
		142, 107,
		"475", "Synthetic with ± 30 mm pile",
		"475 Synthetic with ± 30 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "7",
		"", "pd-344869855.htm",
		"", 10,
		"1-i", "0",
		 0)
	
		Entry[575] = new Element(
		575, "assets/thumb/4086-kl.jpg",
		142, 107,
		"4086", "Viscose with ± 6 mm pile",
		"4086 Viscose with ± 6 mm pile", "",
		"0.59", "0",
		"1", 1,
		"cm", "6",
		"", "pd2053839671.htm",
		"", 10,
		"1-h", "0",
		 0)
	
		Entry[576] = new Element(
		576, "assets/thumb/4087-kl.jpg",
		142, 107,
		"4087", "Viscose with ± 6 mm pile",
		"4087 Viscose with ± 6 mm pile", "",
		"0.59", "0",
		"1", 1,
		"cm", "6",
		"", "pd2043310141.htm",
		"", 10,
		"1-h", "0",
		 0)
	
		Entry[577] = new Element(
		577, "assets/thumb/4088-kl.jpg",
		142, 107,
		"4088", "Viscose with ± 6 mm pile",
		"4088 Viscose with ± 6 mm pile", "",
		"0.59", "0",
		"1", 1,
		"cm", "6",
		"", "pd-928308045.htm",
		"", 10,
		"1-h", "0",
		 0)
	
		Entry[578] = new Element(
		578, "assets/thumb/4089-kl.jpg",
		142, 107,
		"4089", "Viscose with ± 6 mm pile",
		"4089 Viscose with ± 6 mm pile", "",
		"0.59", "0",
		"1", 1,
		"cm", "6",
		"", "pd-1163131367.htm",
		"", 10,
		"1-h", "0",
		 0)
	
		Entry[579] = new Element(
		579, "assets/thumb/4090-kl.jpg",
		142, 107,
		"4090", "Viscose with ± 6 mm pile",
		"4090 Viscose with ± 6 mm pile", "",
		"0.59", "0",
		"1", 1,
		"cm", "6",
		"", "pd-644964881.htm",
		"", 10,
		"1-h", "0",
		 0)
	
		Entry[580] = new Element(
		580, "assets/thumb/4091-kl.jpg",
		142, 107,
		"4091", "Viscose with ± 6 mm pile",
		"4091 Viscose with ± 6 mm pile", "",
		"0.59", "0",
		"1", 1,
		"cm", "6",
		"", "pd-245001803.htm",
		"", 10,
		"1-h", "0",
		 0)
	
		Entry[581] = new Element(
		581, "assets/thumb/4074-kl.jpg",
		142, 107,
		"4074", "Viscose with ± 7 mm pile",
		"4074 Viscose with ± 7 mm pile", "",
		"0.59", "0",
		"1", 1,
		"cm", "6",
		"", "pd-974519573.htm",
		"", 10,
		"1-h", "0",
		 0)
	
		Entry[582] = new Element(
		582, "assets/thumb/4075-kl.jpg",
		142, 107,
		"4075", "Viscose with ± 7 mm pile",
		"4075 Viscose with ± 7 mm pile", "",
		"0.59", "0",
		"1", 1,
		"cm", "6",
		"", "pd1364193041.htm",
		"", 10,
		"1-h", "0",
		 0)
	
		Entry[583] = new Element(
		583, "assets/thumb/4077-kl.jpg",
		142, 107,
		"4077", "Viscose with ± 7 mm pile",
		"4077 Viscose with ± 7 mm pile", "",
		"0.59", "0",
		"1", 1,
		"cm", "6",
		"", "pd-994996313.htm",
		"", 10,
		"1-h", "0",
		 0)
	
		Entry[584] = new Element(
		584, "assets/thumb/4079-kl.jpg",
		142, 107,
		"4079", "Viscose with ± 7 mm pile",
		"4079 Viscose with ± 7 mm pile", "",
		"0.59", "0",
		"1", 1,
		"cm", "6",
		"", "pd-1612072403.htm",
		"", 10,
		"1-h", "0",
		 0)
	
		Entry[585] = new Element(
		585, "assets/thumb/124-kl.jpg",
		142, 107,
		"124", "Woolvelt",
		"124 Woolvelt", "",
		"1.5", "0",
		"1", 1,
		"piece", "12",
		"Size;025 × 017 cm@", "pd-1972027357.htm",
		"", 1,
		"1-n", "0",
		 0)
	
		Entry[586] = new Element(
		586, "assets/thumb/125-kl.jpg",
		142, 107,
		"125", "Woolvelt",
		"125 Woolvelt", "",
		"1.5", "0",
		"1", 1,
		"piece", "12",
		"Size;025 × 017 cm@", "pd-2058488786.htm",
		"", 1,
		"1-n", "0",
		 0)
	
		Entry[587] = new Element(
		587, "assets/thumb/126-kl.jpg",
		142, 107,
		"126", "Woolvelt",
		"126 Woolvelt", "",
		"1.5", "0",
		"1", 1,
		"piece", "12",
		"Size;025 × 017 cm@", "pd-767615595.htm",
		"", 1,
		"1-n", "0",
		 0)
	
		Entry[588] = new Element(
		588, "assets/thumb/127-kl.jpg",
		142, 107,
		"127", "Woolvelt",
		"127 Woolvelt", "",
		"1.5", "0",
		"1", 1,
		"piece", "12",
		"Size;025 × 017 cm@", "pd-649690744.htm",
		"", 1,
		"1-n", "0",
		 0)
	
		Entry[589] = new Element(
		589, "assets/thumb/128-kl.jpg",
		142, 107,
		"128", "Woolvelt",
		"128 Woolvelt", "",
		"1.5", "0",
		"1", 1,
		"piece", "12",
		"Size;025 × 017 cm@", "pd-1219472137.htm",
		"", 1,
		"1-n", "0",
		 0)
	
		Entry[590] = new Element(
		590, "assets/thumb/129-kl.jpg",
		142, 107,
		"129", "Woolvelt",
		"129 Woolvelt", "",
		"1.5", "0",
		"1", 1,
		"piece", "12",
		"Size;025 × 017 cm@", "pd1868601234.htm",
		"", 1,
		"1-n", "0",
		 0)
	
		Entry[591] = new Element(
		591, "assets/thumb/130-kl.jpg",
		142, 107,
		"130", "Woolvelt",
		"130 Woolvelt", "",
		"1.5", "0",
		"1", 1,
		"piece", "12",
		"Size;025 × 017 cm@", "pd806619849.htm",
		"", 1,
		"1-n", "0",
		 0)
	
		Entry[592] = new Element(
		592, "assets/thumb/131-kl.jpg",
		142, 107,
		"131", "Woolvelt",
		"131 Woolvelt", "",
		"1.5", "0",
		"1", 1,
		"piece", "12",
		"Size;025 × 017 cm@", "pd55243980.htm",
		"", 1,
		"1-n", "0",
		 0)
	
		Entry[593] = new Element(
		593, "assets/thumb/rbs-03-kl.jpg",
		142, 107,
		"RBS-03", "Rainbowseries with ± 7 mm pile",
		"Rainbowseries orange mohair with ± 7 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "1",
		"", "pd1276789197.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[594] = new Element(
		594, "assets/thumb/7210-kl.jpg",
		142, 107,
		"7210/06-1", "7210 Forceps",
		"7210 Forceps for dollarmature", "",
		"17.9", "0",
		"1", 1,
		"piece", "27",
		"Size;06 mm@", "pd-677867351.htm",
		"", 1,
		"06", "0",
		 0)
	
		Entry[595] = new Element(
		595, "assets/thumb/3059-kl.jpg",
		142, 107,
		"3059-1", "Fiskars scissors grinders",
		"Fiskars scissors grinders", "",
		"10.9", "0",
		"1", 1,
		"piece", "27",
		"", "pd238144290.htm",
		"", 1,
		"06", "0",
		 0)
	
		Entry[596] = new Element(
		596, "assets/thumb/5470-kl.jpg",
		142, 107,
		"5470", "Alpaca with ± 9 mm pile",
		"5470 Alpaca with ± 9 mm pile", "",
		"1.09", "0",
		"1", 1,
		"cm", "8",
		"", "pd2132405792.htm",
		"", 10,
		"1-j", "0",
		 0)
	
		Entry[597] = new Element(
		597, "assets/thumb/5471-kl.jpg",
		142, 107,
		"5471", "Alpaca with ± 9 mm pile",
		"5471 Alpaca with ± 9 mm pile", "",
		"1.09", "0",
		"1", 1,
		"cm", "8",
		"", "pd-1367277234.htm",
		"", 10,
		"1-j", "0",
		 0)
	
		Entry[598] = new Element(
		598, "assets/thumb/5472-kl.jpg",
		142, 107,
		"5472", "Alpaca with ± 9 mm pile",
		"5472 Alpaca with ± 9 mm pile", "",
		"1.09", "0",
		"1", 1,
		"cm", "8",
		"", "pd875249708.htm",
		"", 10,
		"1-j", "0",
		 0)
	
		Entry[599] = new Element(
		599, "assets/thumb/5473-kl.jpg",
		142, 107,
		"5473", "Alpaca with ± 9 mm pile",
		"5473 Alpaca with ± 9 mm pile", "",
		"1.09", "0",
		"1", 1,
		"cm", "8",
		"", "pd-1468706246.htm",
		"", 10,
		"1-j", "0",
		 0)
	
		Entry[600] = new Element(
		600, "assets/thumb/5474-kl.jpg",
		142, 107,
		"5474", "Alpaca with ± 9 mm pile",
		"5474 Alpaca with ± 9 mm pile", "",
		"1.09", "0",
		"1", 1,
		"cm", "8",
		"", "pd1178217208.htm",
		"", 10,
		"1-j", "0",
		 0)
	
		Entry[601] = new Element(
		601, "assets/thumb/5475-kl.jpg",
		142, 107,
		"5475", "Alpaca with ± 9 mm pile",
		"5475 Alpaca with ± 9 mm pile", "",
		"1.09", "0",
		"1", 1,
		"cm", "8",
		"", "pd-1700009498.htm",
		"", 10,
		"1-j", "0",
		 0)
	
		Entry[602] = new Element(
		602, "assets/thumb/5476-kl.jpg",
		142, 107,
		"5476", "Alpaca with ± 9 mm pile",
		"5476 Alpaca with ± 9 mm pile", "",
		"1.09", "0",
		"1", 1,
		"cm", "8",
		"", "pd1616362116.htm",
		"", 10,
		"1-j", "0",
		 0)
	
		Entry[603] = new Element(
		603, "assets/thumb/5477-kl.jpg",
		142, 107,
		"5477", "Alpaca with ± 9 mm pile",
		"5477 Alpaca with ± 9 mm pile", "",
		"1.09", "0",
		"1", 1,
		"cm", "8",
		"", "pd-984828846.htm",
		"", 10,
		"1-j", "0",
		 0)
	
		Entry[604] = new Element(
		604, "assets/thumb/4160-kl.jpg",
		142, 107,
		"4160", "Mohair with ± 9 mm pile",
		"4160 Mohair with ± 9 mm pile", "",
		"1.13", "0",
		"1", 1,
		"cm", "1",
		"", "pd1025358544.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[605] = new Element(
		605, "assets/thumb/4161-kl.jpg",
		142, 107,
		"4161", "Mohair with ± 9 mm pile",
		"4161 Mohair with ± 9 mm pile", "",
		"1.13", "0",
		"1", 1,
		"cm", "1",
		"", "pd-835297922.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[606] = new Element(
		606, "assets/thumb/4162-kl.jpg",
		142, 107,
		"4162", "Mohair with ± 9 mm pile",
		"4162 Mohair with ± 9 mm pile", "",
		"1.13", "0",
		"1", 1,
		"cm", "1",
		"", "pd918206428.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[607] = new Element(
		607, "assets/thumb/4163-kl.jpg",
		142, 107,
		"4163", "Mohair with ± 9 mm pile",
		"4163 Mohair with ± 9 mm pile", "",
		"1.13", "0",
		"1", 1,
		"cm", "1",
		"", "pd2146062698.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[608] = new Element(
		608, "assets/thumb/4164-kl.jpg",
		142, 107,
		"4164", "Mohair with ± 9 mm pile",
		"4164 Mohair with ± 9 mm pile", "",
		"1.13", "0",
		"1", 1,
		"cm", "1",
		"", "pd1337851304.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[609] = new Element(
		609, "assets/thumb/4165-kl.jpg",
		142, 107,
		"4165", "Mohair with ± 9 mm pile",
		"4165 Mohair with ± 9 mm pile", "",
		"1.13", "0",
		"1", 1,
		"cm", "1",
		"", "pd-1355236330.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[610] = new Element(
		610, "assets/thumb/4166-kl.jpg",
		142, 107,
		"4166", "Mohair with ± 9 mm pile",
		"4166 Mohair with ± 9 mm pile", "",
		"1.13", "0",
		"1", 1,
		"cm", "1",
		"", "pd-1063020492.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[611] = new Element(
		611, "assets/thumb/4167-kl.jpg",
		142, 107,
		"4167", "Mohair with ± 9 mm pile",
		"4167 Mohair with ± 9 mm pile", "",
		"1.13", "0",
		"1", 1,
		"cm", "1",
		"", "pd866945410.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[612] = new Element(
		612, "assets/thumb/132-kl.jpg",
		142, 107,
		"132", "Woolvelt",
		"132 Woolvelt", "",
		"1.5", "0",
		"1", 1,
		"piece", "12",
		"Size;025 × 017 cm@", "pd-702524544.htm",
		"", 1,
		"1-n", "0",
		 0)
	
		Entry[613] = new Element(
		613, "assets/thumb/5355-kl.jpg",
		142, 107,
		"5355", "Eye yarn",
		"Eye yarn beige, thickness 20 = 200 Mtr.", "",
		"5.4", "0",
		"1", 1,
		"piece", "32",
		"", "pd922067535.htm",
		"", 1,
		"7-c", "0",
		 0)
	
		Entry[614] = new Element(
		614, "assets/thumb/4187-kl.jpg",
		142, 107,
		"4187", "Mohair with ± 14 mm pile",
		"4187 Mohair with ± 14 mm pile", "",
		"0.98", "0",
		"1", 1,
		"cm", "2",
		"", "pd1753853205.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[615] = new Element(
		615, "assets/thumb/Dodo-kl.jpg",
		100, 142,
		"6076 Green/Green", "Dodo ± 27 cm",
		"6076 Do it yourself kit Dodo ± 27 cm", "",
		"26.4", "0",
		"1", 1,
		"piece", "35",
		"Colour;Green/Green@", "pd-1100513167.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[616] = new Element(
		616, "assets/thumb/Slomo-kl.jpg",
		100, 142,
		"6075", "Slomo ± 22 cm",
		"6075 Do it yourself kit Slomo ± 22 cm", "",
		"21.1", "0",
		"1", 1,
		"piece", "35",
		"", "pd-1986882614.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[617] = new Element(
		617, "assets/thumb/Fito-kl.jpg",
		100, 142,
		"6074", "Fito ± 25 cm",
		"6074 Do it yourself kit Fito ± 25 cm", "",
		"23.2", "0",
		"1", 1,
		"piece", "35",
		"", "pd-2143451384.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[618] = new Element(
		618, "assets/thumb/rbs-02-kl.jpg",
		142, 107,
		"RBS-02", "Rainbowseries with ± 7 mm pile",
		"Rainbowseries brightred mohair with ± 7 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "1",
		"", "pd1466908088.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[619] = new Element(
		619, "assets/thumb/rbs-01-kl.jpg",
		142, 107,
		"RBS-01", "Rainbowseries with ± 7 mm pile",
		"Rainbowseries darkred mohair with ± 7 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "1",
		"", "pd312097446.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[620] = new Element(
		620, "assets/thumb/228-kl.jpg",
		142, 107,
		"228", "Suédine",
		"228 Suédine: Imitation leather for the paws of the bears.", "",
		"1.2", "0",
		"1", 1,
		"piece", "11",
		"Size;025 × 017 cm@", "pd-1327924924.htm",
		"", 1,
		"1-m", "0",
		 0)
	
		Entry[621] = new Element(
		621, "assets/thumb/227-kl.jpg",
		142, 107,
		"227", "Suédine",
		"227 Suédine: Imitation leather for the paws of the bears.", "",
		"1.2", "0",
		"1", 1,
		"piece", "11",
		"Size;025 × 017 cm@", "pd-1522708125.htm",
		"", 1,
		"1-m", "0",
		 0)
	
		Entry[622] = new Element(
		622, "assets/thumb/230-kl.jpg",
		142, 107,
		"230", "Suédine",
		"230 Suédine/miniature fabric: Short, dense wooven structured fabric, used for miniature bears and as Pawmaterial.", "",
		"2", "0",
		"1", 1,
		"piece", "11",
		"Size;023 × 025 cm@", "pd913063534.htm",
		"", 1,
		"1-m", "0",
		 0)
	
		Entry[623] = new Element(
		623, "assets/thumb/4205-kl.jpg",
		142, 107,
		"4205", "Mohair with 30% viscose with ± 8 mm pile",
		"4205 Mohair with 30% viscose with ± 8 mm pile", "",
		"0.82", "0",
		"1", 1,
		"cm", "1",
		"", "pd-899574571.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[624] = new Element(
		624, "assets/thumb/2015-2090-kl.jpg",
		142, 107,
		"2055", "Plywood discs",
		"Plywood discs single per piece", "",
		"0.11", "0",
		"1", 1,
		"piece", "25",
		"Size;55 mm@", "pd1091265585.htm",
		"", 1,
		"04", "0",
		 0)
	
		Entry[625] = new Element(
		625, "assets/thumb/1315-1420-kl.jpg",
		142, 107,
		"1355", "Cardboard discs",
		"Cardboard discs single  per piece", "",
		"0.11", "0",
		"1", 1,
		"piece", "25",
		"Size;55 mm@", "pd493045046.htm",
		"", 1,
		"04", "0",
		 0)
	
		Entry[626] = new Element(
		626, "assets/thumb/224-kl.jpg",
		142, 107,
		"224", "Suédine",
		"224 Suédine: Imitation leather for the paws of the bears.", "",
		"1.2", "0",
		"1", 1,
		"piece", "11",
		"Size;025 × 017 cm@", "pd-1004987462.htm",
		"", 1,
		"1-m", "0",
		 0)
	
		Entry[627] = new Element(
		627, "assets/thumb/MS338-kl.jpg",
		142, 107,
		"MS338", "Miniature fabrics",
		"MS338 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd-1354203631.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[628] = new Element(
		628, "assets/thumb/MS339-kl.jpg",
		142, 107,
		"MS339", "Miniature fabrics",
		"MS339 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd1577334196.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[629] = new Element(
		629, "assets/thumb/MS340-kl.jpg",
		142, 107,
		"MS340", "Miniature fabrics",
		"MS340 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd1112518291.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[630] = new Element(
		630, "assets/thumb/MS341-kl.jpg",
		142, 107,
		"MS341", "Miniature fabrics",
		"MS341 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd-1098060962.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[631] = new Element(
		631, "assets/thumb/MS342-kl.jpg",
		142, 107,
		"MS342", "Miniature fabrics",
		"MS342 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd-1450742651.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[632] = new Element(
		632, "assets/thumb/rbs-05-kl.jpg",
		142, 107,
		"RBS-05", "Rainbowseries with ± 7 mm pile",
		"Rainbowseries brightyellow mohair with ± 7 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "1",
		"", "pd1985944614.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[633] = new Element(
		633, "assets/thumb/rbs-32-kl.jpg",
		142, 107,
		"RBS-32", "Rainbowseries with ± 7 mm pile",
		"Rainbowseries mohair with ± 7 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "1",
		"", "pd-1057016124.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[634] = new Element(
		634, "assets/thumb/rbs-31-kl.jpg",
		142, 107,
		"RBS-31", "Rainbowseries with ± 7 mm pile",
		"Rainbowseries mohair with ± 7 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "1",
		"", "pd2060942096.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[635] = new Element(
		635, "assets/thumb/rbs-30-kl.jpg",
		142, 107,
		"RBS-30", "Rainbowseries with ± 7 mm pile",
		"Rainbowseries mohair with ± 7 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "1",
		"", "pd-715981796.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[636] = new Element(
		636, "assets/thumb/rbs-42-kl.jpg",
		142, 107,
		"RBS-42", "Rainbowseries with ± 7 mm pile",
		"Rainbowseries mohair with ± 7 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "1",
		"", "pd-901446168.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[637] = new Element(
		637, "assets/thumb/rbs-06-kl.jpg",
		142, 107,
		"RBS-06", "Rainbowseries with ± 7 mm pile",
		"Rainbowseries brightgreen mohair with ± 7 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "1",
		"", "pd-984969268.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[638] = new Element(
		638, "assets/thumb/rbs-40-kl.jpg",
		142, 107,
		"RBS-40", "Rainbowseries with ± 7 mm pile",
		"Rainbowseries mohair with ± 7 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "1",
		"", "pd1859950479.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[639] = new Element(
		639, "assets/thumb/rbs-39-kl.jpg",
		142, 107,
		"RBS-39", "Rainbowseries with ± 7 mm pile",
		"Rainbowseries mohair with ± 7 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "1",
		"", "pd-600320373.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[640] = new Element(
		640, "assets/thumb/231-kl.jpg",
		142, 107,
		"231", "Suédine",
		"231 Suédine/miniature fabric: Short, dense wooven structured fabric, used for miniature bears and as Pawmaterial.", "",
		"2", "0",
		"1", 1,
		"piece", "11",
		"Size;023 × 025 cm@", "pd1699507121.htm",
		"", 1,
		"1-m", "0",
		 0)
	
		Entry[641] = new Element(
		641, "assets/thumb/232-kl.jpg",
		142, 107,
		"232", "Suédine",
		"232 Suédine/miniature fabric: Short, dense wooven structured fabric, used for miniature bears and as Pawmaterial.", "",
		"2", "0",
		"1", 1,
		"piece", "11",
		"Size;023 × 025 cm@", "pd-1217092652.htm",
		"", 1,
		"1-m", "0",
		 0)
	
		Entry[642] = new Element(
		642, "assets/thumb/MS385-kl.jpg",
		142, 107,
		"MS385", "High pile miniature fabrics",
		"MS385 Very dense flockfabrics with two times longer pile (2 mm) than the normal miniature fabrics (1 mm).", "",
		"3", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd1425491345.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[643] = new Element(
		643, "assets/thumb/233-kl.jpg",
		142, 107,
		"233", "Suédine",
		"233 Suédine/miniature fabric: Short, dense wooven structured fabric, used for miniature bears and as Pawmaterial.", "",
		"2", "0",
		"1", 1,
		"piece", "11",
		"Size;023 × 025 cm@", "pd-2119707852.htm",
		"", 1,
		"1-m", "0",
		 0)
	
		Entry[644] = new Element(
		644, "assets/thumb/Tim-kl.jpg",
		100, 142,
		"Tim", "Tim",
		"Pattern Tim ± 20 cm", "",
		"3", "0",
		"2", 1,
		"piece", "36",
		"", "pd-806233581.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[645] = new Element(
		645, "assets/thumb/Dirkje-kl.jpg",
		100, 142,
		"Dirkje", "Dirkje",
		"Pattern Dirkje ± 17 cm", "",
		"3", "0",
		"2", 1,
		"piece", "36",
		"", "pd1549482617.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[646] = new Element(
		646, "assets/thumb/Eelco-kl.jpg",
		142, 107,
		"Eelco", "Eelco",
		"Pattern Eelco ± 16 cm", "",
		"4", "0",
		"2", 1,
		"piece", "36",
		"", "pd955672911.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[647] = new Element(
		647, "assets/thumb/Tom-kl.jpg",
		100, 142,
		"6052 - RBS-01", "Tom ± 20 cm",
		"6052 Do it yourself kit Tom ± 20 cm", "",
		"15.5", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;RBS-01@", "pd397659157.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[648] = new Element(
		648, "assets/thumb/234-kl.jpg",
		142, 107,
		"234", "Suédine",
		"234 Suédine/miniature fabric: Short, dense wooven structured fabric, used for miniature bears and as Pawmaterial.", "",
		"2", "0",
		"1", 1,
		"piece", "11",
		"Size;023 × 025 cm@", "pd699334054.htm",
		"", 1,
		"1-m", "0",
		 0)
	
		Entry[649] = new Element(
		649, "assets/thumb/235-kl.jpg",
		142, 107,
		"235", "Suédine",
		"235 Suédine/miniature fabric: Short, dense wooven structured fabric, used for miniature bears and as Pawmaterial.", "",
		"2", "0",
		"1", 1,
		"piece", "11",
		"Size;023 × 025 cm@", "pd1731278957.htm",
		"", 1,
		"1-m", "0",
		 0)
	
		Entry[650] = new Element(
		650, "assets/thumb/2450-2457-kl.jpg",
		142, 107,
		"2454", "Miniature fibre discs",
		"Miniature fibre discs with 2,1 mm hole", "",
		"4.5", "0",
		"1", 1,
		"50 pieces", "25",
		"Size;15 mm@", "pd-580181650.htm",
		"", 1,
		"04", "0",
		 0)
	
		Entry[651] = new Element(
		651, "assets/thumb/2460-2467-kl.jpg",
		142, 107,
		"2464", "Miniature sets",
		"Miniature sets with cotterpins no. 2469", "",
		"1.5", "0",
		"1", 1,
		"piece", "25",
		"Size;15 mm@", "pd-1131750888.htm",
		"", 1,
		"04", "0",
		 0)
	
		Entry[652] = new Element(
		652, "assets/thumb/rbs-38-kl.jpg",
		142, 107,
		"RBS-38", "Rainbowseries with ± 7 mm pile",
		"Rainbowseries mohair with ± 7 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "1",
		"", "pd-1056313872.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[653] = new Element(
		653, "assets/thumb/rbs-37-kl.jpg",
		142, 107,
		"RBS-37", "Rainbowseries with ± 7 mm pile",
		"Rainbowseries mohair with ± 7 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "1",
		"", "pd-1303814916.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[654] = new Element(
		654, "assets/thumb/Robin-kl.jpg",
		142, 106,
		"6061 - RBS-01", "Part for Robin",
		"6061 Part for Robin", "",
		"5.4", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;RBS-01@", "pd1133130952.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[655] = new Element(
		655, "assets/thumb/Nino-kl.jpg",
		106, 142,
		"6058", "Nino ± 22 cm",
		"6058 Do it yourself kit Nino ± 22 cm", "",
		"21.1", "0",
		"1", 1,
		"piece", "35",
		"", "pd277999165.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[656] = new Element(
		656, "assets/thumb/Carlo-kl.jpg",
		106, 142,
		"6059", "Carlo ± 22 cm",
		"6059 Do it yourself kit Carlo ± 22 cm", "",
		"18.9", "0",
		"1", 1,
		"piece", "35",
		"", "pd16175795.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[657] = new Element(
		657, "assets/thumb/Tumbly-kl.jpg",
		106, 142,
		"6064 Blue/Green", "Tumbly ± 21 cm",
		"6064 Do it yourself kit Tumbly ± 21 cm", "",
		"24.4", "0",
		"1", 1,
		"piece", "35",
		"Colour;Blue/Green@", "pd-354982887.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[658] = new Element(
		658, "assets/thumb/Robin-kl.jpg",
		142, 106,
		"6060", "Robin",
		"6060 Do it yourself kit Robin with 4 parts", "",
		"25.4", "0",
		"1", 1,
		"piece", "35",
		"", "pd-1064623918.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[659] = new Element(
		659, "assets/thumb/Paco-kl.jpg",
		106, 142,
		"6057", "Paco ± 22 cm",
		"6057 Do it yourself kit Paco ± 22 cm", "",
		"18.9", "0",
		"1", 1,
		"piece", "35",
		"", "pd-316409008.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[660] = new Element(
		660, "assets/thumb/rbs-43-kl.jpg",
		142, 107,
		"RBS-43", "Rainbowseries with ± 7 mm pile",
		"Rainbowseries mohair with ± 7 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "1",
		"", "pd-316014500.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[661] = new Element(
		661, "assets/thumb/rbs-41-kl.jpg",
		142, 107,
		"RBS-41", "Rainbowseries with ± 7 mm pile",
		"Rainbowseries mohair with ± 7 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "1",
		"", "pd91672104.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[662] = new Element(
		662, "assets/thumb/MS384-kl.jpg",
		142, 107,
		"MS384", "High pile miniature fabrics",
		"MS384 Very dense flockfabrics with two times longer pile (2 mm) than the normal miniature fabrics (1 mm).", "",
		"3", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd-279969642.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[663] = new Element(
		663, "assets/thumb/236-kl.jpg",
		142, 107,
		"236", "Suédine",
		"236 Suédine/miniature fabric: Short, dense wooven structured fabric, used for miniature bears and as Pawmaterial.", "",
		"2", "0",
		"1", 1,
		"piece", "11",
		"Size;023 × 025 cm@", "pd-905503203.htm",
		"", 1,
		"1-m", "0",
		 0)
	
		Entry[664] = new Element(
		664, "assets/thumb/4204-kl.jpg",
		142, 107,
		"4204", "Mohair with 30% viscose with ± 8 mm pile",
		"4204 Mohair with 30% viscose with ± 8 mm pile", "",
		"0.82", "0",
		"1", 1,
		"cm", "1",
		"", "pd68761776.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[665] = new Element(
		665, "assets/thumb/Charly-kl.jpg",
		94, 142,
		"Charly", "Charly",
		"Pattern Charly ± 25 cm", "",
		"4", "0",
		"2", 1,
		"piece", "36",
		"", "pd1275988805.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[666] = new Element(
		666, "assets/thumb/Koko-kl.jpg",
		102, 142,
		"Koko", "Koko",
		"Pattern Koko ± 31 cm", "",
		"4", "0",
		"2", 1,
		"piece", "36",
		"", "pd-894459487.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[667] = new Element(
		667, "assets/thumb/Funny-Guys-kl.jpg",
		95, 142,
		"Funny-Guys", "Funny-Guys",
		"Pattern Funny-Guys ± 26 cm", "",
		"6", "0",
		"2", 1,
		"piece", "36",
		"", "pd-166042061.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[668] = new Element(
		668, "assets/thumb/Funny-Guys-kl.jpg",
		95, 142,
		"6160-1", "Funny-Guys  Sheep",
		"Kit funny-Guys sheep ± 26 cm", "",
		"7.9", "0",
		"1", 1,
		"piece", "35",
		"Art;Sheep@", "pd218167151.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[669] = new Element(
		669, "assets/thumb/4078-kl.jpg",
		142, 106,
		"4078", "Viscose white, with ± 7 mm pile",
		"4078 Viscose with ± 7 mm pile", "",
		"0.59", "0",
		"1", 1,
		"cm", "6",
		"", "pd1277296050.htm",
		"", 10,
		"1-h", "0",
		 0)
	
		Entry[670] = new Element(
		670, "assets/thumb/152-060-kl.jpg",
		142, 107,
		"152-060", "Mohair with ± 13 mm pile (autumn series)",
		"152-060 Mohair with ± 13 mm pile", "",
		"0.74", "0",
		"1", 1,
		"cm", "2",
		"", "pd1286269555.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[671] = new Element(
		671, "assets/thumb/152-061-kl.jpg",
		142, 107,
		"152-061", "Mohair with ± 13 mm pile (autumn series)",
		"152-060 Mohair with ± 13 mm pile", "",
		"0.74", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1710978778.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[672] = new Element(
		672, "assets/thumb/152-062-kl.jpg",
		142, 107,
		"152-062", "Mohair with ± 13 mm pile (autumn series)",
		"152-062 Mohair with ± 13 mm pile", "",
		"0.74", "0",
		"1", 1,
		"cm", "2",
		"", "pd-6755859.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[673] = new Element(
		673, "assets/thumb/152-063-kl.jpg",
		142, 107,
		"152-063", "Mohair with ± 13 mm pile (autumn series)",
		"152-063 Mohair with ± 13 mm pile", "",
		"0.74", "0",
		"1", 1,
		"cm", "2",
		"", "pd1194454210.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[674] = new Element(
		674, "assets/thumb/152-064-kl.jpg",
		142, 107,
		"152-064", "Mohair with ± 13 mm pile (autumn series)",
		"152-064 Mohair with ± 13 mm pile", "",
		"0.74", "0",
		"1", 1,
		"cm", "2",
		"", "pd239331777.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[675] = new Element(
		675, "assets/thumb/152-065-kl.jpg",
		142, 107,
		"152-065", "Mohair with ± 13 mm pile (autumn series)",
		"152-065 Mohair with ± 13 mm pile", "",
		"0.74", "0",
		"1", 1,
		"cm", "2",
		"", "pd280798412.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[676] = new Element(
		676, "assets/thumb/152-066-kl.jpg",
		142, 107,
		"152-066", "Mohair with ± 13 mm pile (autumn series)",
		"152-066 Mohair with ± 13 mm pile", "",
		"0.74", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1170735789.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[677] = new Element(
		677, "assets/thumb/152-067-kl.jpg",
		142, 107,
		"152-067", "Mohair with ± 13 mm pile (autumn series)",
		"152-067 Mohair with ± 13 mm pile", "",
		"0.74", "0",
		"1", 1,
		"cm", "2",
		"", "pd93976966.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[678] = new Element(
		678, "assets/thumb/151-041-kl.jpg",
		142, 107,
		"151-041-2", "Mohair with ± 16 mm pile 25 x 70 cm",
		"151-041 Mohair with ± 16 mm pile", "",
		"9", "0",
		"1", 1,
		"piece", "17",
		"", "pd-33584808.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[679] = new Element(
		679, "assets/thumb/151-047-kl.jpg",
		142, 107,
		"151-047-2", "Mohair with ± 16 mm pile 25 x 70 cm",
		"151-047 Mohair with ± 16 mm pile", "",
		"9", "0",
		"1", 1,
		"piece", "17",
		"", "pd1628133750.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[680] = new Element(
		680, "assets/thumb/151-048-kl.jpg",
		142, 107,
		"151-048-2", "Mohair with ± 16 mm pile 25 x 70 cm",
		"151-048 Mohair with ± 16 mm pile", "",
		"9", "0",
		"1", 1,
		"piece", "17",
		"", "pd-272108027.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[681] = new Element(
		681, "assets/thumb/151-049-kl.jpg",
		142, 107,
		"151-049-2", "Mohair with ± 16 mm pile 25 x 70 cm",
		"151-049 Mohair with ± 16 mm pile", "",
		"9", "0",
		"1", 1,
		"piece", "17",
		"", "pd-890292768.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[682] = new Element(
		682, "assets/thumb/151-050-kl.jpg",
		142, 107,
		"151-050-2", "Mohair with ± 16 mm pile 25 x 70 cm",
		"151-050 Mohair with ± 16 mm pile", "",
		"9", "0",
		"1", 1,
		"piece", "17",
		"", "pd1845868919.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[683] = new Element(
		683, "assets/thumb/151-053-kl.jpg",
		142, 107,
		"151-053-2", "Mohair with ± 16 mm pile 25 x 70 cm",
		"151-053 Mohair with ± 16 mm pile", "",
		"9", "0",
		"1", 1,
		"piece", "17",
		"", "pd1177957956.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[684] = new Element(
		684, "assets/thumb/151-054-kl.jpg",
		142, 107,
		"151-054-2", "Mohair with ± 16 mm pile 25 x 70 cm",
		"151-054 Mohair with ± 16 mm pile", "",
		"9", "0",
		"1", 1,
		"piece", "17",
		"", "pd939298091.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[685] = new Element(
		685, "assets/thumb/151-052-kl.jpg",
		142, 107,
		"151-052-2", "Mohair with ± 16 mm pile 25 x 70 cm",
		"151-052 Mohair with ± 16 mm pile", "",
		"9", "0",
		"1", 1,
		"piece", "17",
		"", "pd-1374170535.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[686] = new Element(
		686, "assets/thumb/rbs-09-kl.jpg",
		142, 107,
		"RBS-09", "Rainbowseries with ± 7 mm pile",
		"Rainbowseries brightblue mohair with ± 7 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "1",
		"", "pd-1824944546.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[687] = new Element(
		687, "assets/thumb/rbs-10-kl.jpg",
		142, 107,
		"RBS-10", "Rainbowseries with ± 7 mm pile",
		"Rainbowseries pink mohair with ± 7 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "1",
		"", "pd544789436.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[688] = new Element(
		688, "assets/thumb/rbs-11-kl.jpg",
		142, 107,
		"RBS-11", "Rainbowseries with ± 7 mm pile",
		"Rainbowseries purple mohair with ± 7 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "1",
		"", "pd304697418.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[689] = new Element(
		689, "assets/thumb/rbs-07-kl.jpg",
		142, 107,
		"RBS-07", "Rainbowseries with ± 7 mm pile",
		"Rainbowseries green mohair with ± 7 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "1",
		"", "pd1249667318.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[690] = new Element(
		690, "assets/thumb/Duco-kl.jpg",
		106, 142,
		"6056", "Duco ± 22 cm",
		"6056 Do it yourself kit Duco ± 22 cm", "",
		"18.9", "0",
		"1", 1,
		"piece", "35",
		"", "pd-921975710.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[691] = new Element(
		691, "assets/thumb/rbs-36-kl.jpg",
		142, 107,
		"RBS-36", "Rainbowseries with ± 7 mm pile",
		"Rainbowseries mohair with ± 7 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "1",
		"", "pd-2004776608.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[692] = new Element(
		692, "assets/thumb/rbs-35-kl.jpg",
		142, 107,
		"RBS-35", "Rainbowseries with ± 7 mm pile",
		"Rainbowseries mohair with ± 7 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "1",
		"", "pd-119730324.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[693] = new Element(
		693, "assets/thumb/4203-kl.jpg",
		142, 107,
		"4203", "Mohair with 30% viscose with ± 8 mm pile",
		"4203 Mohair with 30% viscose with ± 8 mm pile", "",
		"0.82", "0",
		"1", 1,
		"cm", "1",
		"", "pd34648954.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[694] = new Element(
		694, "assets/thumb/4202-kl.jpg",
		142, 107,
		"4202", "Mohair with 30% viscose with ± 8 mm pile",
		"4202 Mohair with 30% viscose with ± 8 mm pile", "",
		"0.82", "0",
		"1", 1,
		"cm", "1",
		"", "pd1826713144.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[695] = new Element(
		695, "assets/thumb/rbs-34-kl.jpg",
		142, 107,
		"RBS-34", "Rainbowseries with ± 7 mm pile",
		"Rainbowseries mohair with ± 7 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "1",
		"", "pd-1946076482.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[696] = new Element(
		696, "assets/thumb/rbs-33-kl.jpg",
		142, 107,
		"RBS-33", "Rainbowseries with ± 7 mm pile",
		"Rainbowseries mohair with ± 7 mm pile", "",
		"0.91", "0",
		"1", 1,
		"cm", "1",
		"", "pd-37256534.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[697] = new Element(
		697, "assets/thumb/1201-kl.jpg",
		142, 106,
		"1201", "Assortemnt box",
		"Assortment box 12 compartments", "",
		"18", "0",
		"1", 1,
		"pieces", "38",
		"", "pd1783243458.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[698] = new Element(
		698, "assets/thumb/1202-kl.jpg",
		142, 106,
		"1202", "Assortemnt box",
		"Assortment box 24 compartments", "",
		"24", "0",
		"1", 1,
		"pieces", "38",
		"", "pd2071236288.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[699] = new Element(
		699, "assets/thumb/Tom-kl.jpg",
		100, 142,
		"Tom", "Tom",
		"Pattern Tom ± 20 cm", "",
		"3", "0",
		"2", 1,
		"piece", "36",
		"", "pd-2079174778.htm",
		"", 1,
		"9-b", "0",
		 0)
	
		Entry[700] = new Element(
		700, "assets/thumb/MS383-kl.jpg",
		142, 107,
		"MS383", "High pile miniature fabrics",
		"MS383 Very dense flockfabrics with two times longer pile (2 mm) than the normal miniature fabrics (1 mm).", "",
		"3", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd-1183730702.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[701] = new Element(
		701, "assets/thumb/4220-kl.jpg",
		142, 106,
		"4220", "Mohair with 30% viscose with ± 24 mm pile",
		"4220 Mohair with 30% viscose with ± 24 mm pile", "",
		"0.86", "0",
		"1", 1,
		"cm", "3",
		"", "pd126493509.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[702] = new Element(
		702, "assets/thumb/MS376-kl.jpg",
		142, 107,
		"MS376", "High pile miniature fabrics",
		"MS376 Very dense flockfabrics with two times longer pile (2 mm) than the normal miniature fabrics (1 mm).", "",
		"3", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd-8048901.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[703] = new Element(
		703, "assets/thumb/MS375-kl.jpg",
		142, 107,
		"MS375", "High pile miniature fabrics",
		"MS375 Very dense flockfabrics with two times longer pile (2 mm) than the normal miniature fabrics (1 mm).", "",
		"3", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd-957648922.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[704] = new Element(
		704, "assets/thumb/MS374-kl.jpg",
		142, 107,
		"MS374", "High pile miniature fabrics",
		"MS374 Very dense flockfabrics with two times longer pile (2 mm) than the normal miniature fabrics (1 mm).", "",
		"3", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd-831981651.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[705] = new Element(
		705, "assets/thumb/MS373-kl.jpg",
		142, 107,
		"MS373", "High pile miniature fabrics",
		"MS373 Very dense flockfabrics with two times longer pile (2 mm) than the normal miniature fabrics (1 mm).", "",
		"3", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd-1323816576.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[706] = new Element(
		706, "assets/thumb/MS372-kl.jpg",
		142, 107,
		"MS372", "High pile miniature fabrics",
		"MS372 Very dense flockfabrics with two times longer pile (2 mm) than the normal miniature fabrics (1 mm).", "",
		"3", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd984821839.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[707] = new Element(
		707, "assets/thumb/MS371-kl.jpg",
		142, 107,
		"MS371", "High pile miniature fabrics",
		"MS371 Very dense flockfabrics with two times longer pile (2 mm) than the normal miniature fabrics (1 mm).", "",
		"3", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd-348374582.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[708] = new Element(
		708, "assets/thumb/MS370-kl.jpg",
		142, 107,
		"MS370", "High pile miniature fabrics",
		"MS370 Very dense flockfabrics with two times longer pile (2 mm) than the normal miniature fabrics (1 mm).", "",
		"3", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd-1816736415.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[709] = new Element(
		709, "assets/thumb/Momo-kl.jpg",
		107, 142,
		"6066", "Momo ± 37 cm",
		"6066 Do it yourself kit Momo ± 37 cm", "",
		"24.4", "0",
		"1", 1,
		"piece", "35",
		"", "pd1380137872.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[710] = new Element(
		710, "assets/thumb/Tim-kl.jpg",
		100, 142,
		"6051 - RBS-01", "Tim ± 20 cm",
		"6051 Do it yourself kit Tim ± 20 cm", "",
		"15.5", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;RBS-01@", "pd-444412866.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[711] = new Element(
		711, "assets/thumb/Dirkje-kl.jpg",
		100, 142,
		"6054 - RBS-01", "Dirkje ± 17 cm",
		"6054 Do it yourself kit Dirkje ± 17 cm", "",
		"15.5", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;RBS-01@", "pd-1998597419.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[712] = new Element(
		712, "assets/thumb/Eelco-kl.jpg",
		142, 107,
		"6053 - RBS-01", "Eelco ± 16 cm",
		"6053 Do it yourself kit Eelco ± 16 cm", "",
		"15.5", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;RBS-01@", "pd1311942264.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[713] = new Element(
		713, "assets/thumb/Jelle-kl.jpg",
		142, 106,
		"6055", "Jelle ± 40 cm",
		"6055 Do it yourself kit Jelle ± 40 cm", "",
		"54.6", "0",
		"1", 1,
		"piece", "35",
		"", "pd-1803422441.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[714] = new Element(
		714, "assets/thumb/Benno-Menno-kl.jpg",
		142, 107,
		"6049", "Benno ± 30 cm + Menno ± 20 cm",
		"6049 Do it yourself kit Benno ± 30 cm + Menno ± 20 cm", "",
		"54.6", "0",
		"1", 1,
		"piece", "35",
		"", "pd-716677859.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[715] = new Element(
		715, "assets/thumb/Justin-kl.jpg",
		142, 107,
		"6050", "Justin ± 27 cm",
		"6050 Do it yourself kit Justin ± 27 cm", "",
		"35.6", "0",
		"1", 1,
		"piece", "35",
		"", "pd-1395499885.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[716] = new Element(
		716, "assets/thumb/4227-kl.jpg",
		142, 106,
		"4227", "Mohair with 30% viscose with ± 24 mm pile",
		"4227 Mohair with 30% viscose with ± 24 mm pile", "",
		"0.86", "0",
		"1", 1,
		"cm", "3",
		"", "pd1316492239.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[717] = new Element(
		717, "assets/thumb/4228-kl.jpg",
		142, 106,
		"4228", "Mohair with 30% viscose with ± 24 mm pile",
		"4228 Mohair with 30% viscose with ± 24 mm pile", "",
		"0.86", "0",
		"1", 1,
		"cm", "3",
		"", "pd1726446229.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[718] = new Element(
		718, "assets/thumb/MS382-kl.jpg",
		142, 107,
		"MS382", "High pile miniature fabrics",
		"MS382 Very dense flockfabrics with two times longer pile (2 mm) than the normal miniature fabrics (1 mm).", "",
		"3", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd1770766825.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[719] = new Element(
		719, "assets/thumb/MS381-kl.jpg",
		142, 107,
		"MS381", "High pile miniature fabrics",
		"MS381 Very dense flockfabrics with two times longer pile (2 mm) than the normal miniature fabrics (1 mm).", "",
		"3", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd-268227988.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[720] = new Element(
		720, "assets/thumb/MS380-kl.jpg",
		142, 107,
		"MS380", "High pile miniature fabrics",
		"MS380 Very dense flockfabrics with two times longer pile (2 mm) than the normal miniature fabrics (1 mm).", "",
		"3", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd-1941310037.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[721] = new Element(
		721, "assets/thumb/MS379-kl.jpg",
		142, 107,
		"MS379", "High pile miniature fabrics",
		"MS379 Very dense flockfabrics with two times longer pile (2 mm) than the normal miniature fabrics (1 mm).", "",
		"3", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd-1763244970.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[722] = new Element(
		722, "assets/thumb/MS378-kl.jpg",
		142, 107,
		"MS378", "High pile miniature fabrics",
		"MS378 Very dense flockfabrics with two times longer pile (2 mm) than the normal miniature fabrics (1 mm).", "",
		"3", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd1619070173.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[723] = new Element(
		723, "assets/thumb/MS377-kl.jpg",
		142, 107,
		"MS377", "High pile miniature fabrics",
		"MS377 Very dense flockfabrics with two times longer pile (2 mm) than the normal miniature fabrics (1 mm).", "",
		"3", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd-1201344912.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[724] = new Element(
		724, "assets/thumb/4221-kl.jpg",
		142, 106,
		"4221", "Mohair with 30% viscose with ± 24 mm pile",
		"4221 Mohair with 30% viscose with ± 24 mm pile", "",
		"0.86", "0",
		"1", 1,
		"cm", "3",
		"", "pd-1640300545.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[725] = new Element(
		725, "assets/thumb/4217-kl.jpg",
		142, 107,
		"4217", "Mohair with 30% viscose with ± 8 mm pile",
		"4217 Mohair with 30% viscose with ± 8 mm pile", "",
		"0.82", "0",
		"1", 1,
		"cm", "1",
		"", "pd1820262981.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[726] = new Element(
		726, "assets/thumb/Aiko-kl.jpg",
		106, 142,
		"6077 - 4202", "Aiko ± 16 cm",
		"6077 Do it yourself kit Aiko ± 16 cm", "",
		"12.6", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;4202 (Peach)@", "pd-666825539.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[727] = new Element(
		727, "assets/thumb/ms343-kl.jpg",
		142, 107,
		"MS343", "Miniature fabrics",
		"MS343 Miniature flockfabrics: not only used for miniature bears, but also as pawmaterial.", "",
		"2.5", "0",
		"1", 1,
		"piece", "10",
		"Size;023 × 025 cm@", "pd-551042625.htm",
		"", 1,
		"1-l", "0",
		 0)
	
		Entry[728] = new Element(
		728, "assets/thumb/4222-kl.jpg",
		142, 106,
		"4222", "Mohair with 30% viscose with ± 24 mm pile",
		"4222 Mohair with 30% viscose with ± 24 mm pile", "",
		"0.86", "0",
		"1", 1,
		"cm", "3",
		"", "pd-62353414.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[729] = new Element(
		729, "assets/thumb/4223-kl.jpg",
		142, 106,
		"4223", "Mohair with 30% viscose with ± 24 mm pile",
		"4223 Mohair with 30% viscose with ± 24 mm pile", "",
		"0.86", "0",
		"1", 1,
		"cm", "3",
		"", "pd473865912.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[730] = new Element(
		730, "assets/thumb/4224-kl.jpg",
		142, 106,
		"4224", "Mohair with 30% viscose with ± 24 mm pile",
		"4224 Mohair with 30% viscose with ± 24 mm pile", "",
		"0.86", "0",
		"1", 1,
		"cm", "3",
		"", "pd173835174.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[731] = new Element(
		731, "assets/thumb/4225-kl.jpg",
		142, 106,
		"4225", "Mohair with 30% viscose with ± 24 mm pile",
		"4225 Mohair with 30% viscose with ± 24 mm pile", "",
		"0.86", "0",
		"1", 1,
		"cm", "3",
		"", "pd-1956058556.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[732] = new Element(
		732, "assets/thumb/4211-kl.jpg",
		142, 107,
		"4211", "Mohair with 30% viscose with ± 8 mm pile",
		"4211 Mohair with 30% viscose with ± 8 mm pile", "",
		"0.82", "0",
		"1", 1,
		"cm", "1",
		"", "pd-1856018800.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[733] = new Element(
		733, "assets/thumb/4212-kl.jpg",
		142, 107,
		"4212", "Mohair with 30% viscose with ± 8 mm pile",
		"4212 Mohair with 30% viscose with ± 8 mm pile", "",
		"0.82", "0",
		"1", 1,
		"cm", "1",
		"", "pd-867766466.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[734] = new Element(
		734, "assets/thumb/4213-kl.jpg",
		142, 107,
		"4213", "Mohair with 30% viscose with ± 8 mm pile",
		"4213 Mohair with 30% viscose with ± 8 mm pile", "",
		"0.82", "0",
		"1", 1,
		"cm", "1",
		"", "pd1879875484.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[735] = new Element(
		735, "assets/thumb/4214-kl.jpg",
		142, 107,
		"4214", "Mohair with 30% viscose with ± 8 mm pile",
		"4214 Mohair with 30% viscose with ± 8 mm pile", "",
		"0.82", "0",
		"1", 1,
		"cm", "1",
		"", "pd-1896513750.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[736] = new Element(
		736, "assets/thumb/4215-kl.jpg",
		142, 107,
		"4215", "Mohair with 30% viscose with ± 8 mm pile",
		"4215 Mohair with 30% viscose with ± 8 mm pile", "",
		"0.82", "0",
		"1", 1,
		"cm", "1",
		"", "pd-444866200.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[737] = new Element(
		737, "assets/thumb/4216-kl.jpg",
		142, 107,
		"4216", "Mohair with 30% viscose with ± 8 mm pile",
		"4216 Mohair with 30% viscose with ± 8 mm pile", "",
		"0.82", "0",
		"1", 1,
		"cm", "1",
		"", "pd-855620138.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[738] = new Element(
		738, "assets/thumb/Nico-kl.jpg",
		100, 142,
		"6067 - 4210", "Nico ± 23 cm",
		"6067 Do it yourself kit Nico ± 23 cm", "",
		"19.9", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;4210@", "pd1969567732.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[739] = new Element(
		739, "assets/thumb/Julio-kl.jpg",
		100, 142,
		"6068 - 789", "Julio ± 17 cm",
		"6068 Do it yourself kit Julio ± 17 cm", "",
		"13.7", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;789@", "pd1996282458.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[740] = new Element(
		740, "assets/thumb/Emilio-kl.jpg",
		100, 142,
		"6069", "Emilio ± 21 cm",
		"6069 Do it yourself kit Emilio ± 21 cm", "",
		"17.9", "0",
		"1", 1,
		"piece", "35",
		"", "pd591983061.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[741] = new Element(
		741, "assets/thumb/Domino-kl.jpg",
		100, 142,
		"6070", "Domino ± 33 cm",
		"6070 Do it yourself kit Domino ± 33 cm", "",
		"25.3", "0",
		"1", 1,
		"piece", "35",
		"", "pd-1164386293.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[742] = new Element(
		742, "assets/thumb/Bobby-kl.jpg",
		100, 142,
		"6071 - 4212", "Bobby ± 23 cm",
		"6071 Do it yourself kit Bobby ± 23 cm", "",
		"15.8", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;4212@", "pd1741381955.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[743] = new Element(
		743, "assets/thumb/4226-kl.jpg",
		142, 106,
		"4226", "Mohair with 30% viscose with ± 24 mm pile",
		"4226 Mohair with 30% viscose with ± 24 mm pile", "",
		"0.86", "0",
		"1", 1,
		"cm", "3",
		"", "pd-10227259.htm",
		"", 10,
		"1-c", "0",
		 0)
	
		Entry[744] = new Element(
		744, "assets/thumb/5465-kl.jpg",
		142, 106,
		"5465", "Alpaca with ± 22 mm pile",
		"5465 Alpaca with ± 22 mm pile", "",
		"1.32", "0",
		"1", 1,
		"cm", "8",
		"", "pd-253913360.htm",
		"", 10,
		"1-j", "0",
		 0)
	
		Entry[745] = new Element(
		745, "assets/thumb/5464-kl.jpg",
		142, 106,
		"5464", "Alpaca with ± 22 mm pile",
		"5464 Alpaca with ± 22 mm pile", "",
		"1.32", "0",
		"1", 1,
		"cm", "8",
		"", "pd-1501161826.htm",
		"", 10,
		"1-j", "0",
		 0)
	
		Entry[746] = new Element(
		746, "assets/thumb/5463-kl.jpg",
		142, 106,
		"5463", "Alpaca with ± 22 mm pile",
		"5463 Alpaca with ± 22 mm pile", "",
		"1.32", "0",
		"1", 1,
		"cm", "8",
		"", "pd183604732.htm",
		"", 10,
		"1-j", "0",
		 0)
	
		Entry[747] = new Element(
		747, "assets/thumb/5462-kl.jpg",
		142, 106,
		"5462", "Alpaca with ± 22 mm pile",
		"5462 Alpaca with ± 22 mm pile", "",
		"1.32", "0",
		"1", 1,
		"cm", "8",
		"", "pd1397808266.htm",
		"", 10,
		"1-j", "0",
		 0)
	
		Entry[748] = new Element(
		748, "assets/thumb/5461-kl.jpg",
		142, 106,
		"5461", "Alpaca with ± 22 mm pile",
		"5461 Alpaca with ± 22 mm pile", "",
		"1.32", "0",
		"1", 1,
		"cm", "8",
		"", "pd267386312.htm",
		"", 10,
		"1-j", "0",
		 0)
	
		Entry[749] = new Element(
		749, "assets/thumb/5460-kl.jpg",
		142, 106,
		"5460", "Alpaca with ± 22 mm pile",
		"5460 Alpaca with ± 22 mm pile", "",
		"1.32", "0",
		"1", 1,
		"cm", "8",
		"", "pd1633106230.htm",
		"", 10,
		"1-j", "0",
		 0)
	
		Entry[750] = new Element(
		750, "assets/thumb/Timo-kl.jpg",
		106, 142,
		"6079 - 4220", "Timo ± 31 cm",
		"6079 Do it yourself kit Timo ± 31 cm", "",
		"30.7", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;4220@", "pd1204542022.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[751] = new Element(
		751, "assets/thumb/Snowflake-kl.jpg",
		106, 142,
		"6081", "Snowflake ± 30 cm",
		"6081 Do it yourself kit Snowflake ± 30 cm", "",
		"36", "0",
		"1", 1,
		"piece", "35",
		"", "pd1205752303.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[752] = new Element(
		752, "assets/thumb/Schlappi-I-kl.jpg",
		106, 142,
		"6082", "Schlappi I ± 50 cm",
		"6082 Do it yourself kit Schlappi I ± 50 cm", "",
		"31.7", "0",
		"1", 1,
		"piece", "35",
		"", "pd1210059501.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[753] = new Element(
		753, "assets/thumb/Schlappi-II-kl.jpg",
		106, 142,
		"6083", "Schlappi II ± 50 cm",
		"6083 Do it yourself kit Schlappi II ± 50 cm", "",
		"31.7", "0",
		"1", 1,
		"piece", "35",
		"", "pd-1535181085.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[754] = new Element(
		754, "assets/thumb/Jule-kl.jpg",
		106, 142,
		"6084", "Jule ± 50 cm",
		"6084 Do it yourself kit Jule ± 50 cm", "",
		"31.7", "0",
		"1", 1,
		"piece", "35",
		"", "pd381037513.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[755] = new Element(
		755, "assets/thumb/4105-kl.jpg",
		142, 106,
		"4105", "Mohair with ± 85 mm pile",
		"4105 Mohair with ± 85 mm pile", "",
		"2.12", "0",
		"1", 1,
		"cm", "4",
		"", "pd1213195583.htm",
		"", 10,
		"1-f", "0",
		 0)
	
		Entry[756] = new Element(
		756, "assets/thumb/5467-kl.jpg",
		142, 106,
		"5467", "Alpaca with ± 22 mm pile",
		"5467 Alpaca with ± 22 mm pile", "",
		"1.32", "0",
		"1", 1,
		"cm", "8",
		"", "pd665936865.htm",
		"", 10,
		"1-j", "0",
		 0)
	
		Entry[757] = new Element(
		757, "assets/thumb/152-068-kl.jpg",
		142, 107,
		"152-068", "Mohair with ± 13 mm pile (autumn series)",
		"152-068 Mohair with ± 13 mm pile", "",
		"0.74", "0",
		"1", 1,
		"cm", "2",
		"", "pd-362973867.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[758] = new Element(
		758, "assets/thumb/152-069-kl.jpg",
		142, 107,
		"152-069", "Mohair with ± 13 mm pile (autumn series)",
		"152-069 Mohair with ± 13 mm pile", "",
		"0.74", "0",
		"1", 1,
		"cm", "2",
		"", "pd-991126160.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[759] = new Element(
		759, "assets/thumb/152-070-kl.jpg",
		142, 107,
		"152-070", "Mohair with ± 13 mm pile (autumn series)",
		"152-070 Mohair with ± 13 mm pile", "",
		"0.74", "0",
		"1", 1,
		"cm", "2",
		"", "pd-791304633.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[760] = new Element(
		760, "assets/thumb/152-071-kl.jpg",
		142, 107,
		"152-071", "Mohair with ± 13 mm pile (autumn series)",
		"152-071 Mohair with ± 13 mm pile", "",
		"0.74", "0",
		"1", 1,
		"cm", "2",
		"", "pd577826570.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[761] = new Element(
		761, "assets/thumb/152-072-kl.jpg",
		142, 107,
		"152-072", "Mohair with ± 13 mm pile (autumn series)",
		"152-072 Mohair with ± 13 mm pile", "",
		"0.74", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1414561623.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[762] = new Element(
		762, "assets/thumb/152-073-kl.jpg",
		142, 107,
		"152-073", "Mohair with ± 13 mm pile (autumn series)",
		"152-073 Mohair with ± 13 mm pile", "",
		"0.74", "0",
		"1", 1,
		"cm", "2",
		"", "pd1054185684.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[763] = new Element(
		763, "assets/thumb/152-074-kl.jpg",
		142, 107,
		"152-074", "Mohair with ± 13 mm pile (autumn series)",
		"152-074 Mohair with ± 13 mm pile", "",
		"0.74", "0",
		"1", 1,
		"cm", "2",
		"", "pd1759031547.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[764] = new Element(
		764, "assets/thumb/152-075-kl.jpg",
		142, 107,
		"152-075", "Mohair with ± 13 mm pile (autumn series)",
		"152-075 Mohair with ± 13 mm pile", "",
		"0.74", "0",
		"1", 1,
		"cm", "2",
		"", "pd1864315214.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[765] = new Element(
		765, "assets/thumb/151-040-kl.jpg",
		142, 107,
		"151-040-2", "Mohair with ± 16 mm pile 25 x 70 cm",
		"151-040 Mohair with ± 16 mm pile", "",
		"9", "0",
		"1", 1,
		"piece", "17",
		"", "pd983324829.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[766] = new Element(
		766, "assets/thumb/151-042-kl.jpg",
		142, 107,
		"151-042-2", "Mohair with ± 16 mm pile 25 x 70 cm",
		"151-042 Mohair with ± 16 mm pile", "",
		"9", "0",
		"1", 1,
		"piece", "17",
		"", "pd1973154639.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[767] = new Element(
		767, "assets/thumb/151-043-kl.jpg",
		142, 107,
		"151-043-2", "Mohair with ± 16 mm pile 25 x 70 cm",
		"151-043 Mohair with ± 16 mm pile", "",
		"9", "0",
		"1", 1,
		"piece", "17",
		"", "pd-2146119758.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[768] = new Element(
		768, "assets/thumb/151-044-kl.jpg",
		142, 107,
		"151-044-2", "Mohair with ± 16 mm pile 25 x 70 cm",
		"151-044 Mohair with ± 16 mm pile", "",
		"9", "0",
		"1", 1,
		"piece", "17",
		"", "pd-151008911.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[769] = new Element(
		769, "assets/thumb/151-045-kl.jpg",
		142, 107,
		"151-045-2", "Mohair with ± 16 mm pile 25 x 70 cm",
		"151-045 Mohair with ± 16 mm pile", "",
		"9", "0",
		"1", 1,
		"piece", "17",
		"", "pd-820369348.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[770] = new Element(
		770, "assets/thumb/151-046-kl.jpg",
		142, 107,
		"151-046-2", "Mohair with ± 16 mm pile 25 x 70 cm",
		"151-046 Mohair with ± 16 mm pile", "",
		"9", "0",
		"1", 1,
		"piece", "17",
		"", "pd-366872701.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[771] = new Element(
		771, "assets/thumb/151-051-kl.jpg",
		142, 107,
		"151-051-2", "Mohair with ± 16 mm pile 25 x 70 cm",
		"151-051 Mohair with ± 16 mm pile", "",
		"9", "0",
		"1", 1,
		"piece", "17",
		"", "pd-1328202758.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[772] = new Element(
		772, "assets/thumb/151-055-kl.jpg",
		142, 107,
		"151-055-2", "Mohair with ± 16 mm pile 25 x 70 cm",
		"151-055 Mohair with ± 16 mm pile", "",
		"9", "0",
		"1", 1,
		"piece", "17",
		"", "pd1092606782.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[773] = new Element(
		773, "assets/thumb/152-071-kl.jpg",
		142, 107,
		"152-071-2", "Mohair with ± 13 mm pile 25 x 70 cm (autumn series)",
		"152-071 Mohair with ± 13 mm pile", "",
		"9.5", "0",
		"1", 1,
		"piece", "17",
		"", "pd-1511005804.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[774] = new Element(
		774, "assets/thumb/152-070-kl.jpg",
		142, 107,
		"152-070-2", "Mohair with ± 13 mm pile 25 x 70 cm (autumn series)",
		"152-070 Mohair with ± 13 mm pile", "",
		"9.5", "0",
		"1", 1,
		"piece", "17",
		"", "pd2029153897.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[775] = new Element(
		775, "assets/thumb/152-069-kl.jpg",
		142, 107,
		"152-069-2", "Mohair with ± 13 mm pile 25 x 70 cm (autumn series)",
		"152-069 Mohair with ± 13 mm pile", "",
		"9.5", "0",
		"1", 1,
		"piece", "17",
		"", "pd-250753590.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[776] = new Element(
		776, "assets/thumb/152-072-kl.jpg",
		142, 107,
		"152-072-2", "Mohair with ± 13 mm pile 25 x 70 cm (autumn series)",
		"152-072 Mohair with ± 13 mm pile", "",
		"9.5", "0",
		"1", 1,
		"piece", "17",
		"", "pd-688648005.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[777] = new Element(
		777, "assets/thumb/152-075-kl.jpg",
		142, 107,
		"152-075-2", "Mohair with ± 13 mm pile 25 x 70 cm (autumn series)",
		"152-075 Mohair with ± 13 mm pile", "",
		"9.5", "0",
		"1", 1,
		"piece", "17",
		"", "pd-2109503560.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[778] = new Element(
		778, "assets/thumb/152-074-kl.jpg",
		142, 107,
		"152-074-2", "Mohair with ± 13 mm pile 25 x 70 cm (autumn series)",
		"152-074 Mohair with ± 13 mm pile", "",
		"9.5", "0",
		"1", 1,
		"piece", "17",
		"", "pd129433981.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[779] = new Element(
		779, "assets/thumb/152-073-kl.jpg",
		142, 107,
		"152-073-2", "Mohair with ± 13 mm pile 25 x 70 cm (autumn series)",
		"152-073 Mohair with ± 13 mm pile", "",
		"9.5", "0",
		"1", 1,
		"piece", "17",
		"", "pd-665283570.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[780] = new Element(
		780, "assets/thumb/152-067-kl.jpg",
		142, 107,
		"152-067-2", "Mohair with ± 13 mm pile 25 x 70 cm (autumn series)",
		"152-067 Mohair with ± 13 mm pile", "",
		"9.5", "0",
		"1", 1,
		"piece", "17",
		"", "pd1122976304.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[781] = new Element(
		781, "assets/thumb/152-062-kl.jpg",
		142, 107,
		"152-062-2", "Mohair with ± 13 mm pile 25 x 70 cm (autumn series)",
		"152-062 Mohair with ± 13 mm pile", "",
		"9.5", "0",
		"1", 1,
		"piece", "17",
		"", "pd-419074175.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[782] = new Element(
		782, "assets/thumb/152-063-kl.jpg",
		142, 107,
		"152-063-2", "Mohair with ± 13 mm pile 25 x 70 cm (autumn series)",
		"152-063 Mohair with ± 13 mm pile", "",
		"9.5", "0",
		"1", 1,
		"piece", "17",
		"", "pd1375102348.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[783] = new Element(
		783, "assets/thumb/152-060-kl.jpg",
		142, 107,
		"152-060-2", "Mohair with ± 13 mm pile 25 x 70 cm (autumn series)",
		"152-060 Mohair with ± 13 mm pile", "",
		"9.5", "0",
		"1", 1,
		"piece", "17",
		"", "pd1287047080.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[784] = new Element(
		784, "assets/thumb/152-061-kl.jpg",
		142, 107,
		"152-061-2", "Mohair with ± 13 mm pile 25 x 70 cm (autumn series)",
		"152-061 Mohair with ± 13 mm pile", "",
		"9.5", "0",
		"1", 1,
		"piece", "17",
		"", "pd-23329918.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[785] = new Element(
		785, "assets/thumb/152-066-kl.jpg",
		142, 107,
		"152-066-2", "Mohair with ± 13 mm pile 25 x 70 cm (autumn series)",
		"152-066 Mohair with ± 13 mm pile", "",
		"9.5", "0",
		"1", 1,
		"piece", "17",
		"", "pd-70136043.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[786] = new Element(
		786, "assets/thumb/152-065-kl.jpg",
		142, 107,
		"152-065-2", "Mohair with ± 13 mm pile 25 x 70 cm (autumn series)",
		"152-065 Mohair with ± 13 mm pile", "",
		"9.5", "0",
		"1", 1,
		"piece", "17",
		"", "pd-539814842.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[787] = new Element(
		787, "assets/thumb/152-064-kl.jpg",
		142, 107,
		"152-064-2", "Mohair with ± 13 mm pile 25 x 70 cm (autumn series)",
		"152-064 Mohair with ± 13 mm pile", "",
		"9.5", "0",
		"1", 1,
		"piece", "17",
		"", "pd1523135763.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[788] = new Element(
		788, "assets/thumb/152-068-kl.jpg",
		142, 107,
		"152-068-2", "Mohair with ± 13 mm pile 25 x 70 cm (autumn series)",
		"152-068 Mohair with ± 13 mm pile", "",
		"9.5", "0",
		"1", 1,
		"piece", "17",
		"", "pd1000149511.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[789] = new Element(
		789, "assets/thumb/01-kl.jpg",
		142, 107,
		"150-001-2", "Mohair with ± 12 mm pile 25 x 70 cm",
		"150-001 Mohair with ± 12 mm pile", "",
		"8", "0",
		"1", 1,
		"Stück", "17",
		"", "pd1212948909.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[790] = new Element(
		790, "assets/thumb/02-kl.jpg",
		142, 107,
		"150-002-2", "Mohair with ± 12 mm pile 25 x 70 cm",
		"150-002 Mohair with ± 12 mm pile", "",
		"8", "0",
		"1", 1,
		"Stück", "17",
		"", "pd1942746019.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[791] = new Element(
		791, "assets/thumb/03-kl.jpg",
		142, 107,
		"150-003-2", "Mohair with ± 12 mm pile 25 x 70 cm",
		"150-003 Mohair with ± 12 mm pile", "",
		"8", "0",
		"1", 1,
		"Stück", "17",
		"", "pd667365001.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[792] = new Element(
		792, "assets/thumb/04-kl.jpg",
		142, 107,
		"150-004-2", "Mohair with ± 12 mm pile 25 x 70 cm",
		"150-004 Mohair with ± 12 mm pile", "",
		"8", "0",
		"1", 1,
		"Stück", "17",
		"", "pd-555631649.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[793] = new Element(
		793, "assets/thumb/05-kl.jpg",
		142, 107,
		"150-005-2", "Mohair with ± 12 mm pile 25 x 70 cm",
		"150-005 Mohair with ± 12 mm pile", "",
		"8", "0",
		"1", 1,
		"Stück", "17",
		"", "pd-564682459.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[794] = new Element(
		794, "assets/thumb/06-kl.jpg",
		142, 107,
		"150-006-2", "Mohair with ± 12 mm pile 25 x 70 cm",
		"150-006 Mohair with ± 12 mm pile", "",
		"8", "0",
		"1", 1,
		"Stück", "17",
		"", "pd1621778395.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[795] = new Element(
		795, "assets/thumb/07-kl.jpg",
		142, 107,
		"150-007-2", "Mohair with ± 12 mm pile 25 x 70 cm",
		"150-007 Mohair with ± 12 mm pile", "",
		"8", "0",
		"1", 1,
		"Stück", "17",
		"", "pd-1450355327.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[796] = new Element(
		796, "assets/thumb/08-kl.jpg",
		142, 107,
		"150-008-2", "Mohair with ± 12 mm pile 25 x 70 cm",
		"150-008 Mohair with ± 12 mm pile", "",
		"8", "0",
		"1", 1,
		"Stück", "17",
		"", "pd1093213079.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[797] = new Element(
		797, "assets/thumb/09-kl.jpg",
		142, 107,
		"150-009-2", "Mohair with ± 12 mm pile 25 x 70 cm",
		"150-009 Mohair with ± 12 mm pile", "",
		"8", "0",
		"1", 1,
		"Stück", "17",
		"", "pd579725213.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[798] = new Element(
		798, "assets/thumb/10-kl.jpg",
		142, 107,
		"150-010-2", "Mohair with ± 12 mm pile 25 x 70 cm",
		"150-010 Mohair with ± 12 mm pile", "",
		"8", "0",
		"1", 1,
		"Stück", "17",
		"", "pd-320017645.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[799] = new Element(
		799, "assets/thumb/11-kl.jpg",
		142, 107,
		"150-011-2", "Mohair with ± 12 mm pile 25 x 70 cm",
		"150-011 Mohair with ± 12 mm pile", "",
		"8", "0",
		"1", 1,
		"Stück", "17",
		"", "pd284210041.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[800] = new Element(
		800, "assets/thumb/12-kl.jpg",
		142, 107,
		"150-012-2", "Mohair with ± 12 mm pile 25 x 70 cm",
		"150-012 Mohair with ± 12 mm pile", "",
		"8", "0",
		"1", 1,
		"Stück", "17",
		"", "pd-213087665.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[801] = new Element(
		801, "assets/thumb/13-kl.jpg",
		142, 107,
		"150-013-2", "Mohair with ± 12 mm pile 25 x 70 cm",
		"150-013 Mohair with ± 12 mm pile", "",
		"8", "0",
		"1", 1,
		"Stück", "17",
		"", "pd56284437.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[802] = new Element(
		802, "assets/thumb/14-kl.jpg",
		142, 107,
		"150-014-2", "Mohair with ± 12 mm pile 25 x 70 cm",
		"150-014 Mohair with ± 12 mm pile", "",
		"8", "0",
		"1", 1,
		"Stück", "17",
		"", "pd1080194379.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[803] = new Element(
		803, "assets/thumb/15-kl.jpg",
		142, 107,
		"150-015-2", "Mohair with ± 12 mm pile 25 x 70 cm",
		"150-015 Mohair with ± 12 mm pile", "",
		"8", "0",
		"1", 1,
		"Stück", "17",
		"", "pd-1982125967.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[804] = new Element(
		804, "assets/thumb/16-kl.jpg",
		142, 107,
		"150-016-2", "Mohair with ± 12 mm pile 25 x 70 cm",
		"150-016 Mohair with ± 12 mm pile", "",
		"8", "0",
		"1", 1,
		"Stück", "17",
		"", "pd-825694201.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[805] = new Element(
		805, "assets/thumb/17-kl.jpg",
		142, 107,
		"150-017-2", "Mohair with ± 12 mm pile 25 x 70 cm",
		"150-017 Mohair with ± 12 mm pile", "",
		"8", "0",
		"1", 1,
		"Stück", "17",
		"", "pd-1375319667.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[806] = new Element(
		806, "assets/thumb/18-kl.jpg",
		142, 107,
		"150-018-2", "Mohair with ± 12 mm pile 25 x 70 cm",
		"150-018 Mohair with ± 12 mm pile", "",
		"8", "0",
		"1", 1,
		"Stück", "17",
		"", "pd-854204797.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[807] = new Element(
		807, "assets/thumb/19-kl.jpg",
		142, 107,
		"150-019-2", "Mohair with ± 12 mm pile 25 x 70 cm",
		"150-019 Mohair with ± 12 mm pile", "",
		"8", "0",
		"1", 1,
		"Stück", "17",
		"", "pd80909417.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[808] = new Element(
		808, "assets/thumb/20-kl.jpg",
		142, 107,
		"150-020-2", "Mohair with ± 12 mm pile 25 x 70 cm",
		"150-020 Mohair with ± 12 mm pile", "",
		"8", "0",
		"1", 1,
		"Stück", "17",
		"", "pd-216591169.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[809] = new Element(
		809, "assets/thumb/21-kl.jpg",
		142, 107,
		"150-021-2", "Mohair with ± 12 mm pile 25 x 70 cm",
		"150-021 Mohair with ± 12 mm pile", "",
		"8", "0",
		"1", 1,
		"Stück", "17",
		"", "pd1983128837.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[810] = new Element(
		810, "assets/thumb/22-kl.jpg",
		142, 107,
		"150-022-2", "Mohair with ± 12 mm pile 25 x 70 cm",
		"150-022 Mohair with ± 12 mm pile", "",
		"8", "0",
		"1", 1,
		"Stück", "17",
		"", "pd-2100427077.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[811] = new Element(
		811, "assets/thumb/23-kl.jpg",
		142, 107,
		"150-023-2", "Mohair with ± 12 mm pile 25 x 70 cm",
		"150-023 Mohair with ± 12 mm pile", "",
		"8", "0",
		"1", 1,
		"Stück", "17",
		"", "pd-1770465439.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[812] = new Element(
		812, "assets/thumb/24-kl.jpg",
		142, 107,
		"150-024-2", "Mohair with ± 12 mm pile 25 x 70 cm",
		"150-024 Mohair with ± 12 mm pile", "",
		"8", "0",
		"1", 1,
		"Stück", "17",
		"", "pd824963191.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[813] = new Element(
		813, "assets/thumb/25-kl.jpg",
		142, 107,
		"150-025-2", "Mohair with ± 12 mm pile 25 x 70 cm",
		"150-025 Mohair with ± 12 mm pile", "",
		"8", "0",
		"1", 1,
		"Stück", "17",
		"", "pd761546621.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[814] = new Element(
		814, "assets/thumb/26-kl.jpg",
		142, 107,
		"150-026-2", "Mohair with ± 12 mm pile 25 x 70 cm",
		"150-026 Mohair with ± 12 mm pile", "",
		"8", "0",
		"1", 1,
		"Stück", "17",
		"", "pd-225587725.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[815] = new Element(
		815, "assets/thumb/27-kl.jpg",
		142, 107,
		"150-027-2", "Mohair with ± 12 mm pile 25 x 70 cm",
		"150-027 Mohair with ± 12 mm pile", "",
		"8", "0",
		"1", 1,
		"Stück", "17",
		"", "pd1191956825.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[816] = new Element(
		816, "assets/thumb/28-kl.jpg",
		142, 107,
		"150-028-2", "Mohair with ± 12 mm pile 25 x 70 cm",
		"150-028 Mohair with ± 12 mm pile", "",
		"8", "0",
		"1", 1,
		"Stück", "17",
		"", "pd1727552303.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[817] = new Element(
		817, "assets/thumb/29-kl.jpg",
		142, 107,
		"150-029-2", "Mohair with ± 12 mm pile 25 x 70 cm",
		"150-029 Mohair with ± 12 mm pile", "",
		"8", "0",
		"1", 1,
		"Stück", "17",
		"", "pd-361590539.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[818] = new Element(
		818, "assets/thumb/30-kl.jpg",
		142, 107,
		"150-030-2", "Mohair with ± 12 mm pile 25 x 70 cm",
		"150-030 Mohair with ± 12 mm pile", "",
		"8", "0",
		"1", 1,
		"Stück", "17",
		"", "pd1645483051.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[819] = new Element(
		819, "assets/thumb/31-kl.jpg",
		142, 107,
		"150-031-2", "Mohair with ± 12 mm pile 25 x 70 cm",
		"150-031 Mohair with ± 12 mm pile", "",
		"8", "0",
		"1", 1,
		"Stück", "17",
		"", "pd1373987409.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[820] = new Element(
		820, "assets/thumb/32-kl.jpg",
		142, 107,
		"150-032-2", "Mohair with ± 12 mm pile 25 x 70 cm",
		"150-032 Mohair with ± 12 mm pile", "",
		"8", "0",
		"1", 1,
		"Stück", "17",
		"", "pd-890686233.htm",
		"", 1,
		"1-q2", "0",
		 0)
	
		Entry[821] = new Element(
		821, "assets/thumb/rbs-02-kl.jpg",
		142, 107,
		"RBS-02-2", "Rainbowseries 15 cm × 70 cm",
		"Rainbowseries brightred mohair 15 cm × 70 cm", "",
		"7.5", "0",
		"1", 1,
		"pieces", "16",
		"", "pd-1684656146.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[822] = new Element(
		822, "assets/thumb/rbs-03-kl.jpg",
		142, 107,
		"RBS-03-2", "Rainbowseries 15 cm × 70 cm",
		"Rainbowseries orange mohair 15 cm × 70 cm", "",
		"7.5", "0",
		"1", 1,
		"pieces", "16",
		"", "pd111359559.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[823] = new Element(
		823, "assets/thumb/rbs-04-kl.jpg",
		142, 107,
		"RBS-04-2", "Rainbowseries 15 cm × 70 cm",
		"Rainbowseries yellow mohair 15 cm × 70 cm", "",
		"7.5", "0",
		"1", 1,
		"pieces", "16",
		"", "pd-1095582100.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[824] = new Element(
		824, "assets/thumb/rbs-05-kl.jpg",
		142, 107,
		"RBS-05-2", "Rainbowseries 15 cm × 70 cm",
		"Rainbowseries brightyellow mohair 15 cm × 70 cm", "",
		"7.5", "0",
		"1", 1,
		"pieces", "16",
		"", "pd-515894328.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[825] = new Element(
		825, "assets/thumb/rbs-06-kl.jpg",
		142, 107,
		"RBS-06-2", "Rainbowseries 15 cm × 70 cm",
		"Rainbowseries brightgreen mohair 15 cm × 70 cm", "",
		"7.5", "0",
		"1", 1,
		"pieces", "16",
		"", "pd151425044.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[826] = new Element(
		826, "assets/thumb/rbs-07-kl.jpg",
		142, 107,
		"RBS-07-2", "Rainbowseries 15 cm × 70 cm",
		"Rainbowseries green mohair 15 cm × 70 cm", "",
		"7.5", "0",
		"1", 1,
		"pieces", "16",
		"", "pd671458240.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[827] = new Element(
		827, "assets/thumb/rbs-08-kl.jpg",
		142, 107,
		"RBS-08-2", "Rainbowseries 15 cm × 70 cm",
		"Rainbowseries blue mohair 15 cm × 70 cm", "",
		"7.5", "0",
		"1", 1,
		"pieces", "16",
		"", "pd227996827.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[828] = new Element(
		828, "assets/thumb/rbs-09-kl.jpg",
		142, 107,
		"RBS-09-2", "Rainbowseries 15 cm × 70 cm",
		"Rainbowseries brightblue mohair 15 cm × 70 cm", "",
		"7.5", "0",
		"1", 1,
		"pieces", "16",
		"", "pd1980738266.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[829] = new Element(
		829, "assets/thumb/rbs-10-kl.jpg",
		142, 107,
		"RBS-10-2", "Rainbowseries 15 cm × 70 cm",
		"Rainbowseries pink mohair 15 cm × 70 cm", "",
		"7.5", "0",
		"1", 1,
		"pieces", "16",
		"", "pd1687459720.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[830] = new Element(
		830, "assets/thumb/rbs-11-kl.jpg",
		142, 107,
		"RBS-11-2", "Rainbowseries 15 cm × 70 cm",
		"Rainbowseries purple mohair 15 cm × 70 cm", "",
		"7.5", "0",
		"1", 1,
		"pieces", "16",
		"", "pd197994204.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[831] = new Element(
		831, "assets/thumb/rbs-30-kl.jpg",
		142, 107,
		"RBS-30-2", "Rainbowseries 15 cm × 70 cm",
		"Rainbowseries mohair 15 cm × 70 cm", "",
		"7.5", "0",
		"1", 1,
		"pieces", "16",
		"", "pd-1900079170.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[832] = new Element(
		832, "assets/thumb/rbs-31-kl.jpg",
		142, 107,
		"RBS-31-2", "Rainbowseries 15 cm × 70 cm",
		"Rainbowseries mohair 15 cm × 70 cm", "",
		"7.5", "0",
		"1", 1,
		"pieces", "16",
		"", "pd1307150994.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[833] = new Element(
		833, "assets/thumb/rbs-32-kl.jpg",
		142, 107,
		"RBS-32-2", "Rainbowseries 15 cm × 70 cm",
		"Rainbowseries mohair 15 cm × 70 cm", "",
		"7.5", "0",
		"1", 1,
		"pieces", "16",
		"", "pd721084276.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[834] = new Element(
		834, "assets/thumb/rbs-33-kl.jpg",
		142, 107,
		"RBS-33-2", "Rainbowseries 15 cm × 70 cm",
		"Rainbowseries mohair 15 cm × 70 cm", "",
		"7.5", "0",
		"1", 1,
		"pieces", "16",
		"", "pd-678570212.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[835] = new Element(
		835, "assets/thumb/rbs-34-kl.jpg",
		142, 107,
		"RBS-34-2", "Rainbowseries 15 cm × 70 cm",
		"Rainbowseries mohair 15 cm × 70 cm", "",
		"7.5", "0",
		"1", 1,
		"pieces", "16",
		"", "pd1136764432.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[836] = new Element(
		836, "assets/thumb/rbs-35-kl.jpg",
		142, 107,
		"RBS-35-2", "Rainbowseries 15 cm × 70 cm",
		"Rainbowseries mohair 15 cm × 70 cm", "",
		"7.5", "0",
		"1", 1,
		"pieces", "16",
		"", "pd896994958.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[837] = new Element(
		837, "assets/thumb/rbs-36-kl.jpg",
		142, 107,
		"RBS-36-2", "Rainbowseries 15 cm × 70 cm",
		"Rainbowseries mohair 15 cm × 70 cm", "",
		"7.5", "0",
		"1", 1,
		"pieces", "16",
		"", "pd-1549141110.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[838] = new Element(
		838, "assets/thumb/rbs-37-kl.jpg",
		142, 107,
		"RBS-37-2", "Rainbowseries 15 cm × 70 cm",
		"Rainbowseries mohair 15 cm × 70 cm", "",
		"7.5", "0",
		"1", 1,
		"pieces", "16",
		"", "pd-603568738.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[839] = new Element(
		839, "assets/thumb/rbs-38-kl.jpg",
		142, 107,
		"RBS-38-2", "Rainbowseries 15 cm × 70 cm",
		"Rainbowseries mohair 15 cm × 70 cm", "",
		"7.5", "0",
		"1", 1,
		"pieces", "16",
		"", "pd1134230130.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[840] = new Element(
		840, "assets/thumb/rbs-39-kl.jpg",
		142, 107,
		"RBS-39-2", "Rainbowseries 15 cm × 70 cm",
		"Rainbowseries mohair 15 cm × 70 cm", "",
		"7.5", "0",
		"1", 1,
		"pieces", "16",
		"", "pd-164191147.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[841] = new Element(
		841, "assets/thumb/rbs-40-kl.jpg",
		142, 107,
		"RBS-40-2", "Rainbowseries 15 cm × 70 cm",
		"Rainbowseries mohair 15 cm × 70 cm", "",
		"7.5", "0",
		"1", 1,
		"pieces", "16",
		"", "pd-874361159.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[842] = new Element(
		842, "assets/thumb/rbs-41-kl.jpg",
		142, 107,
		"RBS-41-2", "Rainbowseries 15 cm × 70 cm",
		"Rainbowseries mohair 15 cm × 70 cm", "",
		"7.5", "0",
		"1", 1,
		"pieces", "16",
		"", "pd-1837314582.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[843] = new Element(
		843, "assets/thumb/rbs-42-kl.jpg",
		142, 107,
		"RBS-42-2", "Rainbowseries 15 cm × 70 cm",
		"Rainbowseries mohair 15 cm × 70 cm", "",
		"7.5", "0",
		"1", 1,
		"pieces", "16",
		"", "pd-1979371606.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[844] = new Element(
		844, "assets/thumb/rbs-43-kl.jpg",
		142, 107,
		"RBS-43-2", "Rainbowseries 15 cm × 70 cm",
		"Rainbowseries mohair 15 cm × 70 cm", "",
		"7.5", "0",
		"1", 1,
		"pieces", "16",
		"", "pd1226347006.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[845] = new Element(
		845, "assets/thumb/4202-kl.jpg",
		142, 107,
		"4202-1", "Mohair with 30% viscose 20 × 70 cm",
		"4202 Mohair with 30% viscose with ± 8 mm pile", "",
		"8.5", "0",
		"1", 1,
		"piece", "16",
		"", "pd-398583094.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[846] = new Element(
		846, "assets/thumb/4203-kl.jpg",
		142, 107,
		"4203-1", "Mohair with 30% viscose 20 × 70 cm",
		"4203 Mohair with 30% viscose with ± 8 mm pile", "",
		"8.5", "0",
		"1", 1,
		"piece", "16",
		"", "pd-658544639.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[847] = new Element(
		847, "assets/thumb/4204-kl.jpg",
		142, 107,
		"4204-1", "Mohair with 30% viscose 20 × 70 cm",
		"4204 Mohair with 30% viscose with ± 8 mm pile", "",
		"8.5", "0",
		"1", 1,
		"piece", "16",
		"", "pd-2077321360.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[848] = new Element(
		848, "assets/thumb/4205-kl.jpg",
		142, 107,
		"4205-1", "Mohair with 30% viscose 20 × 70 cm",
		"4205 Mohair with 30% viscose with ± 8 mm pile", "",
		"8.5", "0",
		"1", 1,
		"piece", "16",
		"", "pd-294788143.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[849] = new Element(
		849, "assets/thumb/4206-kl.jpg",
		142, 107,
		"4206-1", "Mohair with 30% viscose 20 × 70 cm",
		"4206 Mohair with 30% viscose with ± 8 mm pile", "",
		"8.5", "0",
		"1", 1,
		"piece", "16",
		"", "pd2080084583.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[850] = new Element(
		850, "assets/thumb/4207-kl.jpg",
		142, 107,
		"4207-1", "Mohair with 30% viscose 20 × 70 cm",
		"4207 Mohair with 30% viscose with ± 8 mm pile", "",
		"8.5", "0",
		"1", 1,
		"piece", "16",
		"", "pd-1540851186.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[851] = new Element(
		851, "assets/thumb/4208-kl.jpg",
		142, 107,
		"4208-1", "Mohair with 30% viscose 20 × 70 cm",
		"4208 Mohair with 30% viscose with ± 8 mm pile", "",
		"8.5", "0",
		"1", 1,
		"piece", "16",
		"", "pd1084909292.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[852] = new Element(
		852, "assets/thumb/4209-kl.jpg",
		142, 107,
		"4209-1", "Mohair with 30% viscose 20 × 70 cm",
		"4209 Mohair with 30% viscose with ± 8 mm pile", "",
		"8.5", "0",
		"1", 1,
		"piece", "16",
		"", "pd1358484361.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[853] = new Element(
		853, "assets/thumb/4210-kl.jpg",
		142, 107,
		"4210-1", "Mohair with 30% viscose 20 × 70 cm",
		"4210 Mohair with 30% viscose with ± 8 mm pile", "",
		"8.5", "0",
		"1", 1,
		"piece", "16",
		"", "pd-1526034127.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[854] = new Element(
		854, "assets/thumb/4211-kl.jpg",
		142, 107,
		"4211-1", "Mohair with 30% viscose 20 × 70 cm",
		"4211 Mohair with 30% viscose with ± 8 mm pile", "",
		"8.5", "0",
		"1", 1,
		"piece", "16",
		"", "pd1305575111.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[855] = new Element(
		855, "assets/thumb/4212-kl.jpg",
		142, 107,
		"4212-1", "Mohair with 30% viscose 20 × 70 cm",
		"4212 Mohair with 30% viscose with ± 8 mm pile", "",
		"8.5", "0",
		"1", 1,
		"piece", "16",
		"", "pd2038677069.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[856] = new Element(
		856, "assets/thumb/4213-kl.jpg",
		142, 107,
		"4213-1", "Mohair with 30% viscose 20 × 70 cm",
		"4213 Mohair with 30% viscose with ± 8 mm pile", "",
		"8.5", "0",
		"1", 1,
		"piece", "16",
		"", "pd-924999301.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[857] = new Element(
		857, "assets/thumb/4214-kl.jpg",
		142, 107,
		"4214-1", "Mohair with 30% viscose 20 × 70 cm",
		"4214 Mohair with 30% viscose with ± 8 mm pile", "",
		"8.5", "0",
		"1", 1,
		"piece", "16",
		"", "pd-1880821727.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[858] = new Element(
		858, "assets/thumb/4215-kl.jpg",
		142, 107,
		"4215-1", "Mohair with 30% viscose 20 × 70 cm",
		"4215 Mohair with 30% viscose with ± 8 mm pile", "",
		"8.5", "0",
		"1", 1,
		"piece", "16",
		"", "pd-2055162057.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[859] = new Element(
		859, "assets/thumb/4216-kl.jpg",
		142, 107,
		"4216-1", "Mohair with 30% viscose 20 × 70 cm",
		"4216 Mohair with 30% viscose with ± 8 mm pile", "",
		"8.5", "0",
		"1", 1,
		"piece", "16",
		"", "pd1774808125.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[860] = new Element(
		860, "assets/thumb/4217-kl.jpg",
		142, 107,
		"4217-1", "Mohair with 30% viscose 20 × 70 cm",
		"4217 Mohair with 30% viscose with ± 8 mm pile", "",
		"8.5", "0",
		"1", 1,
		"piece", "16",
		"", "pd-2127396685.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[861] = new Element(
		861, "assets/thumb/5450-kl.jpg",
		142, 106,
		"5450-1", "Alpaca ±6 mm 15 cm × 70 cm",
		"Alpaca ±6 mm 15 cm × 70 cm", "",
		"8", "0",
		"1", 1,
		"pieces", "18",
		"", "pd1287066272.htm",
		"", 1,
		"1-q3", "0",
		 0)
	
		Entry[862] = new Element(
		862, "assets/thumb/5456-kl.jpg",
		142, 106,
		"5456-1", "Alpaca ±6 mm 15 cm × 70 cm",
		"Alpaca ±6 mm 15 cm × 70 cm", "",
		"8", "0",
		"1", 1,
		"pieces", "18",
		"", "pd870627790.htm",
		"", 1,
		"1-q3", "0",
		 0)
	
		Entry[863] = new Element(
		863, "assets/thumb/5452-kl.jpg",
		142, 106,
		"5452-1", "Alpaca ±6 mm 15 cm × 70 cm",
		"Alpaca ±6 mm 15 cm × 70 cm", "",
		"8", "0",
		"1", 1,
		"pieces", "18",
		"", "pd579316908.htm",
		"", 1,
		"1-q3", "0",
		 0)
	
		Entry[864] = new Element(
		864, "assets/thumb/5455-kl.jpg",
		142, 106,
		"5455-1", "Alpaca ±6 mm 15 cm × 70 cm",
		"Alpaca ±6 mm 15 cm × 70 cm", "",
		"8", "0",
		"1", 1,
		"pieces", "18",
		"", "pd952734394.htm",
		"", 1,
		"1-q3", "0",
		 0)
	
		Entry[865] = new Element(
		865, "assets/thumb/5451-kl.jpg",
		142, 106,
		"5451-1", "Alpaca ±6 mm 15 cm × 70 cm",
		"Alpaca ±6 mm 15 cm × 70 cm", "",
		"8", "0",
		"1", 1,
		"pieces", "18",
		"", "pd303718264.htm",
		"", 1,
		"1-q3", "0",
		 0)
	
		Entry[866] = new Element(
		866, "assets/thumb/5454-kl.jpg",
		142, 106,
		"5454-1", "Alpaca ±6 mm 15 cm × 70 cm",
		"Alpaca ±6 mm 15 cm × 70 cm", "",
		"8", "0",
		"1", 1,
		"pieces", "18",
		"", "pd1112093286.htm",
		"", 1,
		"1-q3", "0",
		 0)
	
		Entry[867] = new Element(
		867, "assets/thumb/5453-kl.jpg",
		142, 106,
		"5453-1", "Alpaca ±6 mm 15 cm × 70 cm",
		"Alpaca ±6 mm 15 cm × 70 cm", "",
		"8", "0",
		"1", 1,
		"pieces", "18",
		"", "pd-1077397756.htm",
		"", 1,
		"1-q3", "0",
		 0)
	
		Entry[868] = new Element(
		868, "assets/thumb/5457-kl.jpg",
		142, 106,
		"5457-1", "Alpaca ±6 mm 15 cm × 70 cm",
		"Alpaca ±6 mm 15 cm × 70 cm", "",
		"8", "0",
		"1", 1,
		"pieces", "18",
		"", "pd1259570386.htm",
		"", 1,
		"1-q3", "0",
		 0)
	
		Entry[869] = new Element(
		869, "assets/thumb/WM-19-kl.jpg",
		142, 107,
		"WM-19", "Once only Mohair with ± 14 mm pile",
		"Once only Mohair with ± 14 mm pile", "",
		"0.72", "0",
		"1", 1,
		"cm", "14",
		"", "pd51463260.htm",
		"", 10,
		"1-o", "0",
		 0)
	
		Entry[870] = new Element(
		870, "assets/thumb/hoernchen1.jpg",
		106, 142,
		"WA-02", "Alpaca with ± 10 mm pile",
		"WA-02 alpaca with ± 10 mm pile", "",
		"0.86", "0",
		"1", 1,
		"cm", "14",
		"", "pd1269376560.htm",
		"", 10,
		"1-o", "0",
		 0)
	
		Entry[871] = new Element(
		871, "assets/thumb/Viktor-kl.jpg",
		111, 142,
		"Viktor 060", "Viktor ± 34 cm",
		"Do it yourself kit Viktor ± 34 cm", "",
		"27.9", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;152-060@", "pd1674681243.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[872] = new Element(
		872, "assets/thumb/Cookie-kl.jpg",
		117, 141,
		"Cookie", "Cookie ± 16 cm",
		"Do it yourself kit cookie ± 16 cm", "",
		"14", "0",
		"1", 1,
		"piece", "35",
		"", "pd1436875943.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[873] = new Element(
		873, "assets/thumb/5489-kl.jpg",
		142, 106,
		"WA-11", "Dense alpaca, ± 10 mm pile",
		"WA-11 dense alpaca with ± 10 mm pile", "",
		"0.8", "0",
		"1", 1,
		"cm", "14",
		"", "pd1291369854.htm",
		"", 10,
		"1-o", "0",
		 0)
	
		Entry[874] = new Element(
		874, "assets/thumb/Billy-kl.jpg",
		106, 142,
		"6105-064", "Billy ± 30 cm 152-064",
		"6105 Do it yourself kit Billy ± 30 cm", "",
		"32.9", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;152-064@", "pd1891899356.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[875] = new Element(
		875, "assets/thumb/Bill-kl.jpg",
		98, 142,
		"6106-064", "Bill ± 50 cm 152-064",
		"6106 Do it yourself kit Bill ± 50 cm", "",
		"59.9", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;152-064@", "pd-187898104.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[876] = new Element(
		876, "assets/thumb/Siem-kl.jpg",
		142, 116,
		"6107-441", "Siem ± 18 cm 441",
		"Do it yourself kit Siem ± 18 cm", "",
		"12", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;441@", "pd375449332.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[877] = new Element(
		877, "assets/thumb/462-kl.jpg",
		142, 106,
		"440", "Synthetic with ± 6 mm pile",
		"440 Synthetic with ± 6 mm pile", "",
		"0.66", "0",
		"1", 1,
		"cm", "7",
		"", "pd-1925326102.htm",
		"", 10,
		"1-i", "0",
		 0)
	
		Entry[878] = new Element(
		878, "assets/thumb/461-kl.jpg",
		142, 107,
		"442", "Synthetic with ± 6 mm pile",
		"442 Synthetic with ± 6 mm pile", "",
		"0.66", "0",
		"1", 1,
		"cm", "7",
		"", "pd1370661672.htm",
		"", 10,
		"1-i", "0",
		 0)
	
		Entry[879] = new Element(
		879, "assets/thumb/465-kl.jpg",
		142, 107,
		"443", "Synthetic with ± 6 mm pile",
		"443 Synthetic with ± 6 mm pile", "",
		"0.66", "0",
		"1", 1,
		"cm", "7",
		"", "pd-475800170.htm",
		"", 10,
		"1-i", "0",
		 0)
	
		Entry[880] = new Element(
		880, "assets/thumb/456-kl.jpg",
		142, 107,
		"441", "Synthetic with ± 6 mm pile",
		"441 Synthetic with ± 6 mm pile", "",
		"0.66", "0",
		"1", 1,
		"cm", "7",
		"", "pd584684980.htm",
		"", 10,
		"1-i", "0",
		 0)
	
		Entry[881] = new Element(
		881, "assets/thumb/Wilja-5-kl.jpg",
		142, 95,
		"Wilja-A", "Wilja ± 23cm (alpaca 5489)",
		"Do it yourself kit Wilja ± 23cm", "",
		"19.9", "0",
		"1", 1,
		"piece", "35",
		"Number;A@", "pd-2061891176.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[882] = new Element(
		882, "assets/thumb/5460-kl.jpg",
		142, 106,
		"WA-13", "Dense alpaca, ± 25 mm pile",
		"WA-13 dense alpaca with ± 25 mm pile", "",
		"1.37", "0",
		"1", 1,
		"cm", "14",
		"", "pd848370377.htm",
		"", 10,
		"1-o", "0",
		 0)
	
		Entry[883] = new Element(
		883, "assets/thumb/MH001kl.jpg",
		142, 107,
		"MH001", "Dense Helmbold tipped mohair, ± 4 mm pile",
		"MH001 tipped mohair ± 4 mm", "",
		"0.79", "0",
		"1", 1,
		"cm", "14",
		"", "pd1302607215.htm",
		"", 10,
		"1-o", "0",
		 0)
	
		Entry[884] = new Element(
		884, "assets/thumb/MH002kl.jpg",
		142, 107,
		"MH002", "Dense Helmbold tipped mohair, ± 4 mm pile",
		"MH002 tipped mohair ± 4 mm", "",
		"0.79", "0",
		"1", 1,
		"cm", "14",
		"", "pd-463276747.htm",
		"", 10,
		"1-o", "0",
		 0)
	
		Entry[885] = new Element(
		885, "assets/thumb/MH004kl.jpg",
		142, 106,
		"MH004", "Dense Helmbold tipped mohair, ± 4 mm pile",
		"MH004 tipped mohair ± 4 mm", "",
		"0.79", "0",
		"1", 1,
		"cm", "14",
		"", "pd780569233.htm",
		"", 10,
		"1-o", "0",
		 0)
	
		Entry[886] = new Element(
		886, "assets/thumb/MH005kl.jpg",
		142, 106,
		"MH005", "Dense Helmbold tipped mohair, ± 4 mm pile",
		"MH005 tipped mohair ± 4 mm", "",
		"0.79", "0",
		"1", 1,
		"cm", "14",
		"", "pd2101843751.htm",
		"", 10,
		"1-o", "0",
		 0)
	
		Entry[887] = new Element(
		887, "assets/thumb/MH006kl.jpg",
		142, 106,
		"MH006", "Dense Helmbold tipped mohair, ± 4 mm pile",
		"MH006 tipped mohair ± 4 mm", "",
		"0.79", "0",
		"1", 1,
		"cm", "14",
		"", "pd-1893921363.htm",
		"", 10,
		"1-o", "0",
		 0)
	
		Entry[888] = new Element(
		888, "assets/thumb/MH008kl.jpg",
		142, 107,
		"MH008", "Dense Helmbold tipped mohair, ± 4 mm pile",
		"MH008 tipped mohair ± 4 mm", "",
		"0.79", "0",
		"1", 1,
		"cm", "14",
		"", "pd-656483703.htm",
		"", 10,
		"1-o", "0",
		 0)
	
		Entry[889] = new Element(
		889, "assets/thumb/MH009kl.jpg",
		142, 107,
		"MH009", "Dense Helmbold tipped mohair, ± 4 mm pile",
		"MH009 tipped mohair ± 4 mm", "",
		"0.79", "0",
		"1", 1,
		"cm", "14",
		"", "pd-84850721.htm",
		"", 10,
		"1-o", "0",
		 0)
	
		Entry[890] = new Element(
		890, "assets/thumb/MH010kl.jpg",
		142, 107,
		"MH010", "Dense Helmbold tipped mohair, ± 4 mm pile",
		"MH010 tipped mohair ± 4 mm", "",
		"0.79", "0",
		"1", 1,
		"cm", "14",
		"", "pd-1583215323.htm",
		"", 10,
		"1-o", "0",
		 0)
	
		Entry[891] = new Element(
		891, "assets/thumb/MH011kl.jpg",
		142, 107,
		"MH011", "Dense Helmbold tipped mohair, ± 4 mm pile",
		"MH011 tipped mohair ± 4 mm", "",
		"0.79", "0",
		"1", 1,
		"cm", "14",
		"", "pd220900315.htm",
		"", 10,
		"1-o", "0",
		 0)
	
		Entry[892] = new Element(
		892, "assets/thumb/MH012kl.jpg",
		142, 107,
		"MH012", "Dense Helmbold tipped mohair, ± 4 mm pile",
		"MH012 tipped mohair ± 4 mm", "",
		"0.79", "0",
		"1", 1,
		"cm", "14",
		"", "pd-575241855.htm",
		"", 10,
		"1-o", "0",
		 0)
	
		Entry[893] = new Element(
		893, "assets/thumb/Clever-kl.jpg",
		106, 141,
		"Clever", "Clever ± 36 cm",
		"Do it yourself kit Clever ± 36 cm", "",
		"32.9", "0",
		"1", 1,
		"piece", "35",
		"", "pd1302609380.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[894] = new Element(
		894, "assets/thumb/Dummy-Rapid-Jolly-kl.jpg",
		142, 107,
		"Dummy", "Dummy ± 24 cm",
		"Do it yourself kit Dummy ± 24 cm", "",
		"15", "0",
		"1", 1,
		"piece", "35",
		"Art;Dummy@", "pd1302610033.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[895] = new Element(
		895, "assets/thumb/Clever-kl.jpg",
		106, 141,
		"Clever-1", "Clever ± 36 cm",
		"Do it yourself kit Clever ± 36 cm", "",
		"32.9", "0",
		"1", 1,
		"piece", "39",
		"", "pd2091179901.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[896] = new Element(
		896, "assets/thumb/11-04-kl.jpg",
		104, 148,
		"04/2011 BärReport", "BärReport",
		"BärReport 04/2011", "",
		"6.4", "0",
		"2", 1,
		"piece", "37",
		"Issue;2011/04@", "pd1303557028.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[897] = new Element(
		897, "assets/thumb/teddy-co-12-02-kl.jpg",
		104, 140,
		"02/2012 Teddy u Co.", "Teddy und Co",
		"Teddy und Co", "",
		"5.9", "0",
		"2", 1,
		"piece", "37",
		"Issue;2012/02@", "pd-288276753.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[898] = new Element(
		898, "assets/thumb/TeddysKreativ-12-01-kl.jpg",
		104, 147,
		"01/2012 Teddys Kreativ", "Teddys Kreativ",
		"Teddys Kreativ", "",
		"6.5", "0",
		"2", 1,
		"piece", "37",
		"Issue;2012/01@", "pd-1050123882.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[899] = new Element(
		899, "assets/thumb/1180-kl.jpg",
		142, 107,
		"1180-04", "Squinting eyes",
		"Squinting eyes 4 mm", "",
		"1.2", "0",
		"1", 1,
		"pair", "21",
		"Size;04 mm@", "pd1306324508.htm",
		"", 1,
		"2-a", "0",
		 0)
	
		Entry[900] = new Element(
		900, "assets/thumb/1180-kl.jpg",
		142, 107,
		"1180-04", "Squinting eyes",
		"Squinting eyes 4 mm", "",
		"1.2", "0",
		"1", 1,
		"pair", "39",
		"Size;04 mm@", "pd-1660934564.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[901] = new Element(
		901, "assets/thumb/Lazy-kl.jpg",
		120, 142,
		"Lazy", "Lazy",
		"Do it yourself kit Lazy ± 22 cm", "",
		"14", "0",
		"1", 1,
		"piece", "35",
		"", "pd1310470665.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[902] = new Element(
		902, "assets/thumb/HansiSchleppSchlakse-kl.jpg",
		110, 142,
		"Hansi-408", "Schlepp Schlaks Hansi ± 35 cm",
		"Do it yourself kit Hansi ± 35 cm, green", "",
		"12", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;408@", "pd791431425.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[903] = new Element(
		903, "assets/thumb/Witzies8-kl.jpg",
		104, 142,
		"die Witzies-080", "die Witzies ± 14 cm",
		"Do it yourself kit Witzies ± 35 cm, back green, hair purple", "",
		"9.9", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;153-080@", "pd2117008572.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[904] = new Element(
		904, "assets/thumb/Lazy-kl.jpg",
		120, 142,
		"Lazy-1", "Lazy",
		"Do it yourself kit Lazy ± 22 cm", "",
		"14", "0",
		"1", 1,
		"piece", "39",
		"", "pd1310542744.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[905] = new Element(
		905, "assets/thumb/Witzies8-kl.jpg",
		104, 142,
		"die Witzies-080", "die Witzies ± 14 cm",
		"Do it yourself kit Witzies ± 35 cm, back green, hair purple", "",
		"9.9", "0",
		"1", 1,
		"piece", "39",
		"Fabric-no.;153-080@", "pd-583137720.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[906] = new Element(
		906, "assets/thumb/153-080-kl.jpg",
		142, 85,
		"153-080", "Bicolor Mohair with ± 5 mm pile",
		"153-080 Mohair with ± 5 mm pile", "",
		"0.6", "0",
		"1", 1,
		"cm", "1",
		"", "pd-2123765315.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[907] = new Element(
		907, "assets/thumb/153-080-kl.jpg",
		142, 85,
		"153-080-1", "Bicolor Mohair with ± 5 mm pile",
		"153-080 Mohair 15cm x 70cm", "",
		"5", "0",
		"1", 1,
		"piece", "16",
		"", "pd1314005010.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[908] = new Element(
		908, "assets/thumb/153-081-kl.jpg",
		142, 85,
		"153-081-1", "Bicolor Mohair with ± 5 mm pile",
		"153-081 Mohair 15cm x 70cm", "",
		"5", "0",
		"1", 1,
		"piece", "16",
		"", "pd-728232816.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[909] = new Element(
		909, "assets/thumb/153-082-kl.jpg",
		142, 85,
		"153-082-1", "Bicolor Mohair with ± 5 mm pile",
		"153-082 Mohair 15cm x 70cm", "",
		"5", "0",
		"1", 1,
		"piece", "16",
		"", "pd1846019390.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[910] = new Element(
		910, "assets/thumb/153-083-kl.jpg",
		142, 85,
		"153-083-1", "Bicolor Mohair with ± 5 mm pile",
		"153-083 Mohair 15cm x 70cm", "",
		"5", "0",
		"1", 1,
		"piece", "16",
		"", "pd-682908260.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[911] = new Element(
		911, "assets/thumb/153-084-kl.jpg",
		142, 85,
		"153-084-1", "Bicolor Mohair with ± 5 mm pile",
		"153-084 Mohair 15cm x 70cm", "",
		"5", "0",
		"1", 1,
		"piece", "16",
		"", "pd564393258.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[912] = new Element(
		912, "assets/thumb/153-085-kl.jpg",
		142, 85,
		"153-085-1", "Bicolor Mohair with ± 5 mm pile",
		"153-085 Mohair 15cm x 70cm", "",
		"5", "0",
		"1", 1,
		"piece", "16",
		"", "pd-1863891096.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[913] = new Element(
		913, "assets/thumb/TeddysKreativ-12-01-kl.jpg",
		104, 147,
		"01/2012 Teddys Kreativ", "Teddys Kreativ",
		"Teddys Kreativ", "",
		"6.5", "0",
		"2", 1,
		"piece", "39",
		"Issue;2012/01@", "pd-1731987083.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[914] = new Element(
		914, "assets/thumb/teddy-co-12-02-kl.jpg",
		104, 140,
		"02/2012 Teddy u Co.", "Teddy und Co",
		"Teddy und Co", "",
		"5.9", "0",
		"2", 1,
		"piece", "39",
		"Issue;2012/02@", "pd1326194904.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[915] = new Element(
		915, "assets/thumb/1181-kl.jpg",
		104, 101,
		"1181-08", "Cat&rsquo;s eyes",
		"Cat&rsquo;s eyes 8 - 14 mm", "",
		"1.8", "0",
		"1", 1,
		"pair", "21",
		"Size;08 mm@", "pd-1194848379.htm",
		"", 1,
		"2-a", "0",
		 0)
	
		Entry[916] = new Element(
		916, "assets/thumb/153-081-kl.jpg",
		142, 85,
		"153-081", "Bicolor Mohair with ± 5 mm pile",
		"153-081 Mohair with ± 5 mm pile", "",
		"0.6", "0",
		"1", 1,
		"cm", "1",
		"", "pd-1349699021.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[917] = new Element(
		917, "assets/thumb/153-082-kl.jpg",
		142, 85,
		"153-082", "Bicolor Mohair with ± 5 mm pile",
		"153-082 Mohair with ± 5 mm pile", "",
		"0.6", "0",
		"1", 1,
		"cm", "1",
		"", "pd-1786636391.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[918] = new Element(
		918, "assets/thumb/153-083-kl.jpg",
		142, 85,
		"153-083", "Bicolor Mohair with ± 5 mm pile",
		"153-083 Mohair with ± 5 mm pile", "",
		"0.6", "0",
		"1", 1,
		"cm", "1",
		"", "pd1172900719.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[919] = new Element(
		919, "assets/thumb/153-084-kl.jpg",
		142, 85,
		"153-084", "Bicolor Mohair with ± 5 mm pile",
		"153-084 Mohair with ± 5 mm pile", "",
		"0.6", "0",
		"1", 1,
		"cm", "1",
		"", "pd-590628043.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[920] = new Element(
		920, "assets/thumb/153-085-kl.jpg",
		142, 85,
		"153-085", "Bicolor Mohair with ± 5 mm pile",
		"153-085 Mohair with ± 5 mm pile", "",
		"0.6", "0",
		"1", 1,
		"cm", "1",
		"", "pd-357414805.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[921] = new Element(
		921, "assets/thumb/153-086-kl.jpg",
		142, 85,
		"153-086", "Bicolor Mohair with ± 5 mm pile",
		"153-086 Mohair with ± 5 mm pile", "",
		"0.6", "0",
		"1", 1,
		"cm", "1",
		"", "pd1597485201.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[922] = new Element(
		922, "assets/thumb/153-087-kl.jpg",
		142, 85,
		"153-087", "Bicolor Mohair with ± 5 mm pile",
		"153-087 Mohair with ± 5 mm pile", "",
		"0.6", "0",
		"1", 1,
		"cm", "1",
		"", "pd456469799.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[923] = new Element(
		923, "assets/thumb/408-kl.jpg",
		142, 113,
		"408", "Cotton with ± 9 mm pile",
		"408 Cotton with ± 9 mm pile", "",
		"0.4", "0",
		"1", 1,
		"cm", "5",
		"", "pd-262368339.htm",
		"", 10,
		"1-g", "0",
		 0)
	
		Entry[924] = new Element(
		924, "assets/thumb/409-kl.jpg",
		142, 107,
		"409", "Cotton with ± 9 mm pile",
		"409 Cotton with ± 9 mm pile", "",
		"0.4", "0",
		"1", 1,
		"cm", "5",
		"", "pd-1478904413.htm",
		"", 10,
		"1-g", "0",
		 0)
	
		Entry[925] = new Element(
		925, "assets/thumb/410-kl.jpg",
		142, 115,
		"410", "Cotton with ± 9 mm pile",
		"410 Cotton with ± 9 mm pile", "",
		"0.4", "0",
		"1", 1,
		"cm", "5",
		"", "pd-1554857847.htm",
		"", 10,
		"1-g", "0",
		 0)
	
		Entry[926] = new Element(
		926, "assets/thumb/411-kl.jpg",
		142, 97,
		"411", "Cotton with ± 9 mm pile",
		"411 Cotton with ± 9 mm pile", "",
		"0.4", "0",
		"1", 1,
		"cm", "5",
		"", "pd996122079.htm",
		"", 10,
		"1-g", "0",
		 0)
	
		Entry[927] = new Element(
		927, "assets/thumb/412-kl.jpg",
		142, 104,
		"412", "Cotton with ± 9 mm pile",
		"412 Cotton with ± 9 mm pile", "",
		"0.4", "0",
		"1", 1,
		"cm", "5",
		"", "pd340808485.htm",
		"", 10,
		"1-g", "0",
		 0)
	
		Entry[928] = new Element(
		928, "assets/thumb/413-kl.jpg",
		142, 106,
		"413", "Cotton with ± 9 mm pile",
		"413 Cotton with ± 9 mm pile", "",
		"0.4", "0",
		"1", 1,
		"cm", "5",
		"", "pd-1378197029.htm",
		"", 10,
		"1-g", "0",
		 0)
	
		Entry[929] = new Element(
		929, "assets/thumb/190-901-kl.jpg",
		142, 85,
		"190-901", "Viscose with ± 6 mm pile",
		"190-901 Viscose with ± 6 mm pile", "",
		"0.4", "0",
		"1", 1,
		"cm", "6",
		"", "pd1678059393.htm",
		"", 10,
		"1-h", "0",
		 0)
	
		Entry[930] = new Element(
		930, "assets/thumb/190-902-kl.jpg",
		142, 85,
		"190-902", "Viscose with ± 6 mm pile",
		"190-902 Viscose with ± 6 mm pile", "",
		"0.4", "0",
		"1", 1,
		"cm", "6",
		"", "pd1600994711.htm",
		"", 10,
		"1-h", "0",
		 0)
	
		Entry[931] = new Element(
		931, "assets/thumb/190-903-kl.jpg",
		142, 85,
		"190-903", "Viscose with ± 6 mm pile",
		"190-903 Viscose with ± 6 mm pile", "",
		"0.4", "0",
		"1", 1,
		"cm", "6",
		"", "pd-2135500387.htm",
		"", 10,
		"1-h", "0",
		 0)
	
		Entry[932] = new Element(
		932, "assets/thumb/190-904-kl.jpg",
		142, 85,
		"190-904", "Viscose with ± 6 mm pile",
		"190-904 Viscose with ± 6 mm pile", "",
		"0.4", "0",
		"1", 1,
		"cm", "6",
		"", "pd-1765331693.htm",
		"", 10,
		"1-h", "0",
		 0)
	
		Entry[933] = new Element(
		933, "assets/thumb/190-905-kl.jpg",
		142, 85,
		"190-905", "Viscose with ± 6 mm pile",
		"190-905 Viscose with ± 6 mm pile", "",
		"0.4", "0",
		"1", 1,
		"cm", "6",
		"", "pd421315961.htm",
		"", 10,
		"1-h", "0",
		 0)
	
		Entry[934] = new Element(
		934, "assets/thumb/190-906-kl.jpg",
		142, 85,
		"190-906", "Viscose with ± 6 mm pile",
		"190-906 Viscose with ± 6 mm pile", "",
		"0.4", "0",
		"1", 1,
		"cm", "6",
		"", "pd-1621169073.htm",
		"", 10,
		"1-h", "0",
		 0)
	
		Entry[935] = new Element(
		935, "assets/thumb/190-907-kl.jpg",
		142, 85,
		"190-907", "Viscose with ± 6 mm pile",
		"190-907 Viscose with ± 6 mm pile", "",
		"0.4", "0",
		"1", 1,
		"cm", "6",
		"", "pd1425803029.htm",
		"", 10,
		"1-h", "0",
		 0)
	
		Entry[936] = new Element(
		936, "assets/thumb/190-908-kl.jpg",
		142, 85,
		"190-908", "Viscose with ± 6 mm pile",
		"190-908 Viscose with ± 6 mm pile", "",
		"0.4", "0",
		"1", 1,
		"cm", "6",
		"", "pd594474827.htm",
		"", 10,
		"1-h", "0",
		 0)
	
		Entry[937] = new Element(
		937, "assets/thumb/190-909-kl.jpg",
		142, 85,
		"190-909", "Viscose with ± 6 mm pile",
		"190-909 Viscose with ± 6 mm pile", "",
		"0.4", "0",
		"1", 1,
		"cm", "6",
		"", "pd797145713.htm",
		"", 10,
		"1-h", "0",
		 0)
	
		Entry[938] = new Element(
		938, "assets/thumb/153-086-kl.jpg",
		142, 85,
		"153-086-1", "Bicolor Mohair with ± 5 mm pile",
		"153-086 Mohair 15cm x 70cm", "",
		"5", "0",
		"1", 1,
		"piece", "16",
		"", "pd1160911830.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[939] = new Element(
		939, "assets/thumb/153-087-kl.jpg",
		142, 85,
		"153-087-1", "Bicolor Mohair with ± 5 mm pile",
		"153-087 Mohair 15cm x 70cm", "",
		"5", "0",
		"1", 1,
		"piece", "16",
		"", "pd58916340.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[940] = new Element(
		940, "assets/thumb/Sharif-kl.jpg",
		104, 122,
		"Sharif", "Sharif the camel",
		"Do it yourself kit Sharif ± 25 cm", "",
		"19.9", "0",
		"1", 1,
		"piece", "35",
		"", "pd1319029270.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[941] = new Element(
		941, "assets/thumb/Rico-kl.jpg",
		107, 142,
		"Rico", "Rico the mouse",
		"Do it yourself kit Rico ± 28 cm", "",
		"10.9", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;190-901@", "pd331795931.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[942] = new Element(
		942, "assets/thumb/Ruby-kl.jpg",
		100, 142,
		"Ruby", "Ruby",
		"Do it yourself kit Ruby ± 15 cm", "",
		"9.9", "0",
		"1", 1,
		"piece", "35",
		"Fabric-no.;190-901@", "pd348359590.htm",
		"", 1,
		"9-a", "0",
		 0)
	
		Entry[943] = new Element(
		943, "assets/thumb/Ruby-kl.jpg",
		100, 142,
		"Ruby", "Ruby",
		"Do it yourself kit Ruby ± 15 cm", "",
		"9.9", "0",
		"1", 1,
		"piece", "39",
		"Fabric-no.;190-901@", "pd-592169143.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[944] = new Element(
		944, "assets/thumb/Sharif-kl.jpg",
		104, 122,
		"Sharif-1", "Sharif the camel",
		"Do it yourself kit Sharif ± 25 cm", "",
		"19.9", "0",
		"1", 1,
		"piece", "39",
		"", "pd-1841088959.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[945] = new Element(
		945, "assets/thumb/Rico-kl.jpg",
		107, 142,
		"Rico", "Rico the mouse",
		"Do it yourself kit Rico ± 28 cm", "",
		"10.9", "0",
		"1", 1,
		"piece", "39",
		"Fabric-no.;190-901@", "pd-592882595.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[946] = new Element(
		946, "assets/thumb/TeddysKreativSchnittmuster01-kl.jpg",
		104, 147,
		"Teddys Schnittmuster", "Teddys Kreativ Schnittmuster",
		"Teddys Kreativ Schnittmuster", "",
		"9.8", "0",
		"2", 1,
		"piece", "37",
		"", "pd1321353523.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[947] = new Element(
		947, "assets/thumb/TeddysKreativSchnittmuster01-kl.jpg",
		104, 147,
		"Teddys Schnittm.", "Teddys Kreativ Schnittmuster",
		"Teddys Kreativ Schnittmuster", "",
		"9.8", "0",
		"2", 1,
		"piece", "39",
		"", "pd1848958857.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[948] = new Element(
		948, "assets/thumb/11-04-kl.jpg",
		104, 148,
		"04/2011 BärReport", "BärReport",
		"BärReport 04/2011", "",
		"6.4", "0",
		"2", 1,
		"piece", "39",
		"Issue;2011/04@", "pd1321976023.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[949] = new Element(
		949, "assets/thumb/1181-kl.jpg",
		104, 101,
		"1181-08", "Cat&rsquo;s eyes",
		"Cat&rsquo;s eyes 8 - 14 mm", "",
		"1.8", "0",
		"1", 1,
		"pair", "39",
		"Size;08 mm@", "pd-165792807.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[950] = new Element(
		950, "assets/thumb/190-901-kl.jpg",
		142, 85,
		"190-901-1", "Viscose with ± 6 mm pile",
		"190-901 Viscose piece 15 x 70 cm", "",
		"4", "0",
		"1", 1,
		"piece", "19",
		"", "pd1356085776.htm",
		"", 1,
		"1-q4", "0",
		 0)
	
		Entry[951] = new Element(
		951, "assets/thumb/190-902-kl.jpg",
		142, 85,
		"190-902-1", "Viscose with ± 6 mm pile",
		"190-902 Viscose 15 x 70 cm", "",
		"4", "0",
		"1", 1,
		"piece", "19",
		"", "pd-81400130.htm",
		"", 1,
		"1-q4", "0",
		 0)
	
		Entry[952] = new Element(
		952, "assets/thumb/190-903-kl.jpg",
		142, 85,
		"190-903-1", "Viscose with ± 6 mm pile",
		"190-903 Viscose 15 x 70 cm", "",
		"4", "0",
		"1", 1,
		"piece", "19",
		"", "pd462531356.htm",
		"", 1,
		"1-q4", "0",
		 0)
	
		Entry[953] = new Element(
		953, "assets/thumb/190-904-kl.jpg",
		142, 85,
		"190-904-1", "Viscose with ± 6 mm pile",
		"190-904 Viscose 15 x 70 cm", "",
		"4", "0",
		"1", 1,
		"piece", "19",
		"", "pd1514108586.htm",
		"", 1,
		"1-q4", "0",
		 0)
	
		Entry[954] = new Element(
		954, "assets/thumb/190-905-kl.jpg",
		142, 85,
		"190-905-1", "Viscose with ± 6 mm pile",
		"190-905 Viscose 15 x 70 cm", "",
		"4", "0",
		"1", 1,
		"piece", "19",
		"", "pd675587304.htm",
		"", 1,
		"1-q4", "0",
		 0)
	
		Entry[955] = new Element(
		955, "assets/thumb/190-906-kl.jpg",
		142, 85,
		"190-906-1", "Viscose with ± 6 mm pile",
		"190-906 Viscose 15 x 70 cm", "",
		"4", "0",
		"1", 1,
		"piece", "19",
		"", "pd-1324042922.htm",
		"", 1,
		"1-q4", "0",
		 0)
	
		Entry[956] = new Element(
		956, "assets/thumb/190-907-kl.jpg",
		142, 85,
		"190-907-1", "Viscose with ± 6 mm pile",
		"190-907 Viscose 15 x 70 cm", "",
		"4", "0",
		"1", 1,
		"piece", "19",
		"", "pd819802996.htm",
		"", 1,
		"1-q4", "0",
		 0)
	
		Entry[957] = new Element(
		957, "assets/thumb/190-908-kl.jpg",
		142, 85,
		"190-908-1", "Viscose with ± 6 mm pile",
		"190-908 Viscose 15 x 70 cm", "",
		"4", "0",
		"1", 1,
		"piece", "19",
		"", "pd-2050713918.htm",
		"", 1,
		"1-q4", "0",
		 0)
	
		Entry[958] = new Element(
		958, "assets/thumb/190-909-kl.jpg",
		142, 85,
		"190-909-1", "Viscose with ± 6 mm pile",
		"190-909 Viscose 15 x 70 cm", "",
		"4", "0",
		"1", 1,
		"piece", "19",
		"", "pd-1564204352.htm",
		"", 1,
		"1-q4", "0",
		 0)
	
		Entry[959] = new Element(
		959, "assets/thumb/MH110-kl.jpg",
		140, 80,
		"MH110", "Mohair with ± 2 mm pile",
		"MH110 Mohair with ± 2 mm pile.", "",
		"0.46", "0",
		"1", 1,
		"cm", "1",
		"", "pd-912996626.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[960] = new Element(
		960, "assets/thumb/MH111-kl.jpg",
		104, 80,
		"MH111", "Mohair with ± 2 mm pile",
		"MH111 Mohair with ± 2 mm pile.", "",
		"0.46", "0",
		"1", 1,
		"cm", "1",
		"", "pd-840499508.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[961] = new Element(
		961, "assets/thumb/MH112-kl.jpg",
		104, 80,
		"MH112", "Mohair with ± 2 mm pile",
		"MH112 Mohair with ± 2 mm pile.", "",
		"0.46", "0",
		"1", 1,
		"cm", "1",
		"", "pd1323151834.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[962] = new Element(
		962, "assets/thumb/MH113-kl.jpg",
		104, 80,
		"MH113", "Mohair with ± 2 mm pile",
		"MH113 Mohair with ± 2 mm pile.", "",
		"0.46", "0",
		"1", 1,
		"cm", "1",
		"", "pd2089030552.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[963] = new Element(
		963, "assets/thumb/MH114-kl.jpg",
		104, 80,
		"MH114", "Mohair with ± 2 mm pile",
		"MH114 Mohair with ± 2 mm pile.", "",
		"0.46", "0",
		"1", 1,
		"cm", "1",
		"", "pd-709459066.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[964] = new Element(
		964, "assets/thumb/MH115-kl.jpg",
		104, 80,
		"MH115", "Mohair with ± 2 mm pile",
		"MH115 Mohair with ± 2 mm pile.", "",
		"0.46", "0",
		"1", 1,
		"cm", "1",
		"", "pd-4821724.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[965] = new Element(
		965, "assets/thumb/MH116-kl.jpg",
		104, 80,
		"MH116", "Mohair with ± 2 mm pile",
		"MH116 Mohair with ± 2 mm pile.", "",
		"0.46", "0",
		"1", 1,
		"cm", "1",
		"", "pd-1688131598.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[966] = new Element(
		966, "assets/thumb/MH117-kl.jpg",
		104, 80,
		"MH117", "Mohair with ± 2 mm pile",
		"MH117 Mohair with ± 2 mm pile.", "",
		"0.46", "0",
		"1", 1,
		"cm", "1",
		"", "pd2093078384.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[967] = new Element(
		967, "assets/thumb/MH118-kl.jpg",
		104, 60,
		"MH118", "Mohair with ± 2 mm pile",
		"MH118 Mohair with ± 2 mm pile.", "",
		"0.46", "0",
		"1", 1,
		"cm", "1",
		"", "pd410405662.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[968] = new Element(
		968, "assets/thumb/MH119-kl.jpg",
		104, 80,
		"MH119", "Mohair with ± 2 mm pile",
		"MH119 Mohair with ± 2 mm pile.", "",
		"0.46", "0",
		"1", 1,
		"cm", "1",
		"", "pd119463548.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[969] = new Element(
		969, "assets/thumb/MH120-kl.jpg",
		104, 80,
		"MH120", "Mohair with ± 2 mm pile",
		"MH120 Mohair with ± 2 mm pile.", "",
		"0.46", "0",
		"1", 1,
		"cm", "1",
		"", "pd1506892042.htm",
		"", 10,
		"1-a", "0",
		 0)
	
		Entry[970] = new Element(
		970, "assets/thumb/MH120-kl.jpg",
		104, 44,
		"MH120-1", "Mohair with ± 2 mm pile",
		"MH120 Mohair 15 x 70 cm", "",
		"4", "0",
		"1", 1,
		"piece", "16",
		"", "pd-750334392.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[971] = new Element(
		971, "assets/thumb/MH119-kl.jpg",
		104, 46,
		"MH119-1", "Mohair with ± 2 mm pile",
		"MH119 Mohair 15 x 70 cm", "",
		"4", "0",
		"1", 1,
		"piece", "16",
		"", "pd540835254.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[972] = new Element(
		972, "assets/thumb/MH118-kl.jpg",
		104, 43,
		"MH118-1", "Mohair with ± 2 mm pile",
		"MH118 Mohair 15 x 70 cm", "",
		"4", "0",
		"1", 1,
		"piece", "16",
		"", "pd-1908428076.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[973] = new Element(
		973, "assets/thumb/MH117-kl.jpg",
		104, 46,
		"MH117-1", "Mohair with ± 2 mm pile",
		"MH117 15 x 70 cm", "",
		"4", "0",
		"1", 1,
		"piece", "16",
		"", "pd-1294162654.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[974] = new Element(
		974, "assets/thumb/MH116-kl.jpg",
		104, 42,
		"MH116-1", "Mohair with ± 2 mm pile",
		"MH116 Mohair 15 x 70 cm", "",
		"4", "0",
		"1", 1,
		"piece", "16",
		"", "pd-1511499744.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[975] = new Element(
		975, "assets/thumb/MH115-kl.jpg",
		104, 47,
		"MH115-1", "Mohair with ± 2 mm pile",
		"MH115 Mohair 15 x 70 cm", "",
		"4", "0",
		"1", 1,
		"piece", "16",
		"", "pd274561870.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[976] = new Element(
		976, "assets/thumb/MH114-kl.jpg",
		104, 46,
		"MH114-1", "Mohair with ± 2 mm pile",
		"MH114 Mohair 15 x 70 cm", "",
		"4", "0",
		"1", 1,
		"piece", "16",
		"", "pd235162156.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[977] = new Element(
		977, "assets/thumb/MH113-kl.jpg",
		104, 48,
		"MH113-1", "Mohair with ± 2 mm pile",
		"MH113 Mohair 15 x 70 cm", "",
		"4", "0",
		"1", 1,
		"piece", "16",
		"", "pd-354587590.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[978] = new Element(
		978, "assets/thumb/MH112-kl.jpg",
		104, 44,
		"MH112-1", "Mohair with ± 2 mm pile",
		"MH112 Mohair 15 x 70 cm", "",
		"4", "0",
		"1", 1,
		"piece", "16",
		"", "pd-838347528.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[979] = new Element(
		979, "assets/thumb/MH111-kl.jpg",
		104, 44,
		"MH111-1", "Mohair with ± 2 mm pile",
		"MH111 Mohair 15 x 70 cm", "",
		"4", "0",
		"1", 1,
		"piece", "16",
		"", "pd-1701207066.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[980] = new Element(
		980, "assets/thumb/MH110-kl.jpg",
		104, 41,
		"MH110-1", "Mohair with ± 2 mm pile",
		"MH110 Mohair 15 x 70 cm", "",
		"4", "0",
		"1", 1,
		"piece", "16",
		"", "pd1671693444.htm",
		"", 1,
		"1-q1", "0",
		 0)
	
		Entry[981] = new Element(
		981, "assets/thumb/Wm37-kl.jpg",
		104, 66,
		"WM37", "Once only mohair with black hair",
		"WM 37 once only mohair with black hair, 10mm pile", "",
		"0.69", "0",
		"1", 1,
		"cm", "14",
		"", "pd-212201902.htm",
		"", 10,
		"1-o", "0",
		 0)
	
		Entry[982] = new Element(
		982, "assets/thumb/Wm38-kl.jpg",
		104, 69,
		"WM38", "Once only mohair with black hair",
		"WM38 once only mohair with black hair, 10mm pile", "",
		"0.69", "0",
		"1", 1,
		"cm", "14",
		"", "pd-971856688.htm",
		"", 10,
		"1-o", "0",
		 0)
	
		Entry[983] = new Element(
		983, "assets/thumb/Wm39-kl.jpg",
		104, 68,
		"WM39", "Once only mohair with black hair",
		"WM39 once only mohair with black hair, 10mm pile", "",
		"0.69", "0",
		"1", 1,
		"cm", "14",
		"", "pd-1466083458.htm",
		"", 10,
		"1-o", "0",
		 0)
	
		Entry[984] = new Element(
		984, "assets/thumb/450-kl.jpg",
		142, 107,
		"450", "Synthetic with ± 11 mm pile",
		"450 Synthetic with ± 11 mm pile", "",
		"0.74", "0",
		"1", 1,
		"cm", "13",
		"", "pd-406400447.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[985] = new Element(
		985, "assets/thumb/451-kl.jpg",
		142, 107,
		"451", "Synthetic with ± 11 mm pile",
		"451 Synthetic with ± 11 mm pile", "",
		"0.74", "0",
		"1", 1,
		"cm", "13",
		"", "pd-1541806505.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[986] = new Element(
		986, "assets/thumb/592-kl.jpg",
		142, 107,
		"592", "Mohair with ± 23 mm pile",
		"592 Mohair with ± 23 mm pile", "",
		"0.92", "0",
		"1", 1,
		"cm", "13",
		"", "pd1503078654.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[987] = new Element(
		987, "assets/thumb/711-kl.jpg",
		142, 107,
		"711", "Mohair with ± 14 mm pile",
		"711 Mohair with ± 14 mm pile", "",
		"0.99", "0",
		"1", 1,
		"cm", "13",
		"", "pd839441234.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[988] = new Element(
		988, "assets/thumb/715-kl.jpg",
		142, 107,
		"715", "Mohair with ± 9 mm pile",
		"715 Mohair with ± 9 mm pile", "",
		"0.94", "0",
		"1", 1,
		"cm", "13",
		"", "pd739175669.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[989] = new Element(
		989, "assets/thumb/827-kl.jpg",
		142, 107,
		"827", "Mohair with ± 23 mm pile",
		"827 Mohair with ± 23 mm pile", "",
		"0.82", "0",
		"1", 1,
		"cm", "13",
		"", "pd774755294.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[990] = new Element(
		990, "assets/thumb/828-kl.jpg",
		142, 107,
		"828", "Mohair with ± 23 mm pile",
		"828 Mohair with ± 23 mm pile", "",
		"0.82", "0",
		"1", 1,
		"cm", "13",
		"", "pd-1066625732.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[991] = new Element(
		991, "assets/thumb/829-kl.jpg",
		142, 107,
		"829", "Mohair with ± 23 mm pile",
		"829 Mohair with ± 23 mm pile", "",
		"0.82", "0",
		"1", 1,
		"cm", "13",
		"", "pd-107418166.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[992] = new Element(
		992, "assets/thumb/831-kl.jpg",
		142, 107,
		"831", "Mohair with ± 23 mm pile",
		"831 Mohair with ± 23 mm pile", "",
		"0.82", "0",
		"1", 1,
		"cm", "13",
		"", "pd-539791096.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[993] = new Element(
		993, "assets/thumb/832-kl.jpg",
		142, 107,
		"832", "Mohair with ± 23 mm pile",
		"832 Mohair with ± 23 mm pile", "",
		"0.82", "0",
		"1", 1,
		"cm", "13",
		"", "pd1066196598.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[994] = new Element(
		994, "assets/thumb/833-kl.jpg",
		142, 107,
		"833", "Mohair with ± 23 mm pile",
		"833 Mohair with ± 23 mm pile", "",
		"0.76", "0",
		"1", 1,
		"cm", "13",
		"", "pd2135438406.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[995] = new Element(
		995, "assets/thumb/834-kl.jpg",
		142, 107,
		"834", "Mohair with ± 14 mm pile",
		"834 Mohair with ± 14 mm pile", "",
		"0.93", "0",
		"1", 1,
		"cm", "13",
		"", "pd1250937336.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[996] = new Element(
		996, "assets/thumb/842-kl.jpg",
		142, 107,
		"842", "Mohair with ± 17 mm pile",
		"842 Mohair with ± 17 mm pile", "",
		"1", "0",
		"1", 1,
		"cm", "13",
		"", "pd1219562270.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[997] = new Element(
		997, "assets/thumb/845-kl.jpg",
		142, 107,
		"845", "Mohair with ± 17 mm pile",
		"845 Mohair with ± 17 mm pile", "",
		"1", "0",
		"1", 1,
		"cm", "13",
		"", "pd81239676.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[998] = new Element(
		998, "assets/thumb/847-kl.jpg",
		142, 107,
		"847", "Mohair with ± 17 mm pile",
		"847 Mohair with ± 17 mm pile", "",
		"1", "0",
		"1", 1,
		"cm", "13",
		"", "pd423106826.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[999] = new Element(
		999, "assets/thumb/849-kl.jpg",
		142, 107,
		"849", "Mohair with ± 17 mm pile",
		"849 Mohair with ± 17 mm pile", "",
		"1", "0",
		"1", 1,
		"cm", "13",
		"", "pd604737096.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[1000] = new Element(
		1000, "assets/thumb/862-kl.jpg",
		142, 107,
		"862", "Mohair with ± 9 mm pile",
		"862 Mohair with ± 9 mm pile", "",
		"0.86", "0",
		"1", 1,
		"cm", "13",
		"", "pd885701997.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[1001] = new Element(
		1001, "assets/thumb/882-kl.jpg",
		142, 107,
		"882", "Sheepwool with ± 12 mm pile",
		"882 Sheepwool with ± 12 mm pile", "",
		"0.68", "0",
		"1", 1,
		"cm", "13",
		"", "pd1042443935.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[1002] = new Element(
		1002, "assets/thumb/883-kl.jpg",
		142, 107,
		"883", "Sheepwool with ± 12 mm pile",
		"883 Sheepwool with ± 12 mm pile", "",
		"0.68", "0",
		"1", 1,
		"cm", "13",
		"", "pd767201765.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[1003] = new Element(
		1003, "assets/thumb/884-kl.jpg",
		142, 107,
		"884", "Sheepwool with ± 12 mm pile",
		"884 Sheepwool with ± 12 mm pile", "",
		"0.68", "0",
		"1", 1,
		"cm", "13",
		"", "pd-1271808357.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[1004] = new Element(
		1004, "assets/thumb/894-kl.jpg",
		142, 107,
		"894", "Mohair with ± 14 mm pile",
		"894Mohair with ± 14 mm pile", "",
		"0.93", "0",
		"1", 1,
		"cm", "13",
		"", "pd1396525444.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[1005] = new Element(
		1005, "assets/thumb/903-kl.jpg",
		142, 107,
		"903", "Mohair with ± 23 mm pile",
		"903 Mohair with ± 23 mm pile", "",
		"0.79", "0",
		"1", 1,
		"cm", "13",
		"", "pd-1563633600.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[1006] = new Element(
		1006, "assets/thumb/904-kl.jpg",
		142, 107,
		"904", "Mohair with ± 23 mm pile",
		"904 Mohair with ± 23 mm pile", "",
		"0.79", "0",
		"1", 1,
		"cm", "13",
		"", "pd1215461486.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[1007] = new Element(
		1007, "assets/thumb/905-kl.jpg",
		142, 107,
		"905", "Mohair with ± 23 mm pile",
		"905 Mohair with ± 23 mm pile", "",
		"0.79", "0",
		"1", 1,
		"cm", "13",
		"", "pd-938341300.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[1008] = new Element(
		1008, "assets/thumb/906-kl.jpg",
		142, 107,
		"906", "Mohair with ± 23 mm pile",
		"906 Mohair with ± 23 mm pile", "",
		"0.79", "0",
		"1", 1,
		"cm", "13",
		"", "pd-888833190.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[1009] = new Element(
		1009, "assets/thumb/907-kl.jpg",
		142, 107,
		"907", "Mohair with ± 23 mm pile",
		"907 Mohair with ± 23 mm pile", "",
		"0.79", "0",
		"1", 1,
		"cm", "13",
		"", "pd628290109.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[1010] = new Element(
		1010, "assets/thumb/908-kl.jpg",
		142, 107,
		"908", "Mohair with ± 23 mm pile",
		"908 Mohair with ± 23 mm pile", "",
		"0.79", "0",
		"1", 1,
		"cm", "13",
		"", "pd1481602739.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[1011] = new Element(
		1011, "assets/thumb/919-kl.jpg",
		142, 107,
		"919", "Mohair with ± 15 mm pile",
		"919 Mohair with ± 15 mm pile", "",
		"0.67", "0",
		"1", 1,
		"cm", "13",
		"", "pd-228331098.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[1012] = new Element(
		1012, "assets/thumb/920-kl.jpg",
		142, 107,
		"920", "Mohair with ± 15 mm pile",
		"920 Mohair with ± 15 mm pile", "",
		"0.61", "0",
		"1", 1,
		"cm", "13",
		"", "pd-301361671.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[1013] = new Element(
		1013, "assets/thumb/925-kl.jpg",
		142, 107,
		"925", "Mohair with ± 15 mm pile",
		"925 Mohair with ± 15 mm pile", "",
		"0.72", "0",
		"1", 1,
		"cm", "13",
		"", "pd-336364132.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[1014] = new Element(
		1014, "assets/thumb/934-kl.jpg",
		142, 107,
		"934", "Mohair with ± 9 mm pile",
		"934 Mohair with ± 9 mm pile", "",
		"0.81", "0",
		"1", 1,
		"cm", "13",
		"", "pd-816241795.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[1015] = new Element(
		1015, "assets/thumb/935-kl.jpg",
		142, 107,
		"935", "Mohair with ± 9 mm pile",
		"935 Mohair with ± 9 mm pile", "",
		"0.81", "0",
		"1", 1,
		"cm", "13",
		"", "pd696125939.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[1016] = new Element(
		1016, "assets/thumb/4068-kl.jpg",
		142, 106,
		"4068", "Cotton with ± 9 mm pile",
		"4068 Cotton with ± 9 mm pile", "",
		"0.53", "0",
		"1", 1,
		"cm", "13",
		"", "pd1640720773.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[1017] = new Element(
		1017, "assets/thumb/4069-kl.jpg",
		142, 106,
		"4069", "Cotton with ± 9 mm pile",
		"4069 Cotton with ± 9 mm pile", "",
		"0.53", "0",
		"1", 1,
		"cm", "13",
		"", "pd-1690771653.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[1018] = new Element(
		1018, "assets/thumb/4151-kl.jpg",
		142, 107,
		"4151", "Mohair with ± 9 mm pile",
		"4151 Mohair with ± 9 mm pile", "",
		"0.82", "0",
		"1", 1,
		"cm", "13",
		"", "pd1938473027.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[1019] = new Element(
		1019, "assets/thumb/4152-kl.jpg",
		142, 107,
		"4152", "Mohair with ± 9 mm pile",
		"4152 Mohair with ± 9 mm pile", "",
		"0.82", "0",
		"1", 1,
		"cm", "13",
		"", "pd-1268691927.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[1020] = new Element(
		1020, "assets/thumb/4153-kl.jpg",
		142, 107,
		"4153", "Mohair with ± 9 mm pile",
		"4153 Mohair with ± 9 mm pile", "",
		"0.82", "0",
		"1", 1,
		"cm", "13",
		"", "pd-873753985.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[1021] = new Element(
		1021, "assets/thumb/4135-kl.jpg",
		142, 107,
		"4135", "Mohair with ± 2 mm pile",
		"4135 Mohair with ± 2 mm pile", "",
		"0.49", "0",
		"1", 1,
		"cm", "13",
		"", "pd-1429141721.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[1022] = new Element(
		1022, "assets/thumb/4136-kl.jpg",
		142, 107,
		"4136", "Mohair with ± 2 mm pile",
		"4136 Mohair with ± 2 mm pile", "",
		"0.49", "0",
		"1", 1,
		"cm", "13",
		"", "pd-1618739795.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[1023] = new Element(
		1023, "assets/thumb/4137-kl.jpg",
		142, 107,
		"4137", "Mohair with ± 2 mm pile",
		"4137 Mohair with ± 2 mm pile", "",
		"0.49", "0",
		"1", 1,
		"cm", "13",
		"", "pd230109091.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[1024] = new Element(
		1024, "assets/thumb/4138-kl.jpg",
		142, 107,
		"4138", "Mohair with ± 2 mm pile",
		"4138 Mohair with ± 2 mm pile", "",
		"0.49", "0",
		"1", 1,
		"cm", "13",
		"", "pd85248649.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[1025] = new Element(
		1025, "assets/thumb/4139-kl.jpg",
		142, 107,
		"4139", "Mohair with ± 2 mm pile",
		"4139 Mohair with ± 2 mm pile", "",
		"0.49", "0",
		"1", 1,
		"cm", "13",
		"", "pd-304370523.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[1026] = new Element(
		1026, "assets/thumb/790-kl.jpg",
		142, 106,
		"790", "Sheepwool with ± 6 mm pile",
		"789 Sheepwool with ± 6 mm pile", "",
		"0.54", "0",
		"1", 1,
		"cm", "13",
		"", "pd1286445631.htm",
		"", 10,
		"1-na", "0",
		 0)
	
		Entry[1027] = new Element(
		1027, "assets/thumb/154-091-kl.jpg",
		140, 107,
		"154-091", "Mohair with ± 20 mm pile",
		"154-091 Mohair with ± 20 mm pile", "",
		"0.92", "0",
		"1", 1,
		"cm", "2",
		"", "pd1327493825.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[1028] = new Element(
		1028, "assets/thumb/154-092-kl.jpg",
		140, 107,
		"154-092", "Mohair with ± 20 mm pile",
		"154-092 Mohair with ± 20 mm pile", "",
		"0.92", "0",
		"1", 1,
		"cm", "2",
		"", "pd-102874676.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[1029] = new Element(
		1029, "assets/thumb/154-093-kl.jpg",
		140, 107,
		"154-093", "Mohair with ± 20 mm pile",
		"154-093 Mohair with ± 20 mm pile", "",
		"0.92", "0",
		"1", 1,
		"cm", "2",
		"", "pd-850117037.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[1030] = new Element(
		1030, "assets/thumb/154-094-kl.jpg",
		140, 107,
		"154-094", "Mohair with ± 20 mm pile",
		"154-094 Mohair with ± 20 mm pile", "",
		"0.92", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1001836922.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[1031] = new Element(
		1031, "assets/thumb/154-095-kl.jpg",
		140, 107,
		"154-095", "Mohair with ± 20 mm pile",
		"154-095 Mohair with ± 20 mm pile", "",
		"0.92", "0",
		"1", 1,
		"cm", "2",
		"", "pd586427989.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[1032] = new Element(
		1032, "assets/thumb/154-096-kl.jpg",
		140, 107,
		"154-096", "Mohair with ± 20 mm pile",
		"154-096 Mohair with ± 20 mm pile", "",
		"0.92", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1154962832.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[1033] = new Element(
		1033, "assets/thumb/154-097-kl.jpg",
		140, 107,
		"154-097", "Mohair with ± 20 mm pile",
		"154-097 Mohair with ± 20 mm pile", "",
		"0.92", "0",
		"1", 1,
		"cm", "2",
		"", "pd1819219783.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[1034] = new Element(
		1034, "assets/thumb/154-098-kl.jpg",
		140, 107,
		"154-098", "Mohair with ± 20 mm pile",
		"154-098 Mohair with ± 20 mm pile", "",
		"0.92", "0",
		"1", 1,
		"cm", "2",
		"", "pd-1260448758.htm",
		"", 10,
		"1-b", "0",
		 0)
	
		Entry[1035] = new Element(
		1035, "assets/thumb/154-099-kl.jpg",
		140, 107,
		"154-099", "Mohair with ± 20 mm pile",
		"154-099 Mohair with ± 20 mm pile", "",
		"0.92", "0",
		"1", 1,
		"cm", "2",
		"", "pd-290330199.htm",
		"", 10,
		"1-b", "0",
		 0)
	
// ** 1109
	function SetupSearchEngineForm(){
		mySearchEngine = xmlConfig.getFirstItem("SearchEngine");
		if(mySearchEngine.term!="null") document.SearchEngine.Term.value = mySearchEngine.term;
		for(var i=0;i<document.SearchEngine.Mode.length;i++){
			if(i==mySearchEngine.mode) document.SearchEngine.Mode[i].selected = true;
			};
		if(mySearchEngine.maxPrice>0) document.SearchEngine.Maxprice.value = mySearchEngine.maxPrice;
		else{
			document.SearchEngine.Maxprice.value="";
			mySearchEngine.maxPrice = -1;
			};
		if(xmlConfig.getFirstItem("SearchEngine").ByCategory=="1"){
			for(var i=0;i<document.SearchEngine.navselect.length; i++){
				if(document.SearchEngine.navselect[i].value.split(';;')[2]==mySearchEngine.categoryId){
					xmlConfig.getFirstItem("SearchEngine").categoryIndex = document.SearchEngine.navselect[i].value.split(';;')[0];
					document.SearchEngine.navselect[i].selected = true;
					};
				};
			}
		else{
			xmlConfig.getFirstItem("SearchEngine").categoryIndex = "null";
			};
		};
// enable smartstore to display amount of found products ...
	var counter = 0;
// ** 1111b
	function SearchFor(Term,Mode){
	var foundItems = new Array();
	var itemPrice = 0; var currentCategory = 0;
		mySearchEngine = xmlConfig.getFirstItem("SearchEngine");
		if((Term!="null" && Term!="")||mySearchEngine.maxPrice>=0){
			if(Mode=="") Mode=0;
			Term = Term.toLowerCase();
			var result = "<form name=\"ProductIndex\" onSubmit=\"return false;\">";
			var matchCategory = true;
			var productCategory;
			for(var i=0;i<Entry.length;i++){
				if(xmlConfig.getFirstItem("SearchEngine").ByCategory=="1"){
					// Search for matching categories
					if(xmlConfig.getFirstItem("SearchEngine").categoryIndex!="null"&&xmlConfig.getFirstItem("SearchEngine").categoryIndex!="nada"){
						for(var j=0; j<Entry[i].Category.split(",").length; j++){
							matchCategory = (navigation[mySearchEngine.categoryIndex].categoryId == Entry[i].Category.split(",")[j]) ? true : false;
							if(matchCategory!=true){
								productCategory = getNavElementByCatID(Entry[i].Category.split(",")[j]);
								while(productCategory!=null&&matchCategory==false){
									if(productCategory.parentId!=null){
										if(navigation[productCategory.parentId].categoryId==xmlConfig.getFirstItem("SearchEngine").categoryId){
											currentCategory = Entry[i].Category.split(",")[j];
											matchCategory=true;
											break;
											}
										else productCategory = navigation[productCategory.parentId];
										}
									else{
										currentCategory = Entry[i].Category.split(",")[j];
										productCategory = null;
										};
									};
								}
							else{
								currentCategory = Entry[i].Category.split(",")[j];
								break;
								};
							};
						}
					else{
						currentCategory = Entry[i].Category.split(",")[0];
						matchCategory = true;
						};
					}
				else{
					currentCategory = Entry[i].Category.split(",")[0];
					matchCategory = true;
					};
				// Update current Category
				Entry[i].NavIndex = getNavElementByCatID(currentCategory).id;
				// Continue
				var foundDesc1 = Entry[i].Title.toLowerCase().indexOf(Term)!=-1;
				var foundDesc2 = Entry[i].Subtitle.toLowerCase().indexOf(Term)!=-1;
				var foundProdId = Entry[i].Prod_nr.toLowerCase().indexOf(Term)!=-1;
				var foundManufac = Entry[i].Manufac.toLowerCase().indexOf(Term)!=-1;
				// SearchFor All
				itemPrice = Entry[i].Price
				if(Entry[i].catDiscount!=0&&Entry[i].Discount==""){
					itemPrice = Entry[i].Price * (1 - Entry[i].catDiscount / 100 );
					};
				//
				itemPrice = displPrice(itemPrice, Entry[i].Tax);
				//
				if(Mode==0){
					if((foundDesc1 || foundDesc2 || foundProdId || foundManufac || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				// SearchFor Description
				if(Mode==1){
					if((foundDesc1 || foundDesc2 || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				// SearchFor ProdId
				if(Mode==2){
					if((foundProdId || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				// SearchFor Manufac
				if(Mode==3){
					if((foundManufac || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				};
			// found elements: foundItems.length
			for(var i=0; i<foundItems.length;i++){
				result += foundItems[i].Print();
				};
			result += "</form>";
			if(counter>0){
				mySearchEngine.init="false";
				return result;
				}
			else{
				if(mySearchEngine.init=="false")	return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap>Sorry, no matching product was found. Please try again...</TD></TR>"
				else return("");
				};
			};
		if(mySearchEngine.init=="false") return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap>You did not enter any search criteria. Please enter your search term.</TD></TR>"
		else return("");
		};
// ** 11112
	function chkMaxprice(aPrice,aMaxPrice){
		aMaxPrice = replace(aMaxPrice.toString(),",",".");
		aPrice = calculateCurrencyAmount(aPrice, objPriCurrency);
		if(parseFloat(aMaxPrice)>0){
			if(parseFloat(aPrice)<=parseFloat(aMaxPrice)) return(true)
			else return(false);
			}
		else return(true);
		};
// ** 1111b
	function displPrice(aPrice,aTaxindex){
		var taxamount = taxarea[xmlConfig.taxarea][parseInt(aTaxindex) + 1];
		if(boolDisplTaxIncl){
			if(boolPriceTaxIncl) return(aPrice)
			else return(aPrice * ( 1 + taxamount/100 ) );
			}
		else{
			if(boolPriceTaxIncl) return(aPrice * ( 1 - taxamount/( 100 + taxamount ) ) )
			else return(aPrice);
			};
		};
// ** 1113
	function callpage(address, defValues, NavIndex){
		xmlConfig.getFirstItem("QueryStringData").putValue(defValues);
		xmlConfig.navIndex = NavIndex.toString();
		safeData();
		location.href = address;
		};
// ** 1114
	function newSearch(){
	var queryString = ""; var site = "";
	var xmlSearchEngine = xmlConfig.getFirstItem("SearchEngine");
		xmlSearchEngine.init='false';
		safeData();
		queryString += "mode=" + xmlSearchEngine.mode
			+ "&term=" + escape(xmlSearchEngine.term)
			+ "&maxPrice=" + escape(xmlSearchEngine.maxPrice)
			+ "&categoryId=" + escape(xmlSearchEngine.categoryIndex);
		if(location.href.indexOf("?")==-1) location.href = "search.htm?" + queryString
		else location.href = location.href.substring(0, location.href.indexOf("?")) + "?" + queryString;
		};
// ** 1115
	function searchOnEnter(){
		if(window.event.keyCode==13){
			xmlConfig.getFirstItem('SearchEngine').maxPrice=valNumber(document.SearchEngine.Maxprice.value,'0','');
			xmlConfig.getFirstItem('SearchEngine').term=document.SearchEngine.Term.value;
			newSearch();
			};
		};
