	// 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/artikel-merken.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>Preis vorher:&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>Jetzt nur noch:&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 += "Preis auf Anfrage";
			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/5Scraps-gruen.jpg",
		100, 100,
		"6-007", "Kaffe Fassett Scraps grün",
		"Sortiment aus 5 Stoffen zu je 25 cm x 25 cm, Pro Packung", "Farbstoff",
		"5.5", "0.062",
		"1", 1,
		"Stück", "119,2,99",
		"", "pd1172996717.htm",
		"", 1,
		"6,11,25", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/GP95-BL_thumb.jpg",
		100, 100,
		"11-GP95-BL", "Kaffe Fassett, GP95-BL, Russian Rose, black",
		"großflächiger Rosendruck auf schwarz, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,101,103,107,109,56",
		"", "pd1265470244.htm",
		"", 1,
		"11,114,27,30,32,33-2,11-GP95", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/blumentoepfe.JPG",
		100, 100,
		"42-7", "Nähanleitung Kecke Sprossen",
		"90 cm x 90 cm", "Farbstoff",
		"7.99", "0.125",
		"1", 1,
		"Stück", "114",
		"", "pd-1763164969.htm",
		"", 1,
		"41", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/MOG.jpg",
		100, 135,
		"4-14", "Materialset für den Quilt &quot;My opulent Green&quot;",
		"Kniedecke, ca.148 cm x 148 cm", "Farbstoff",
		"59", "1.5",
		"1", 1,
		"Stück", "113,2",
		"", "pd1273586223.htm",
		"", 1,
		"4,11", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/DM_GJ_25946-477.jpg",
		100, 100,
		"141-03", "Plaid, Light Blue Multi",
		"Karostoff, blau, grün, gelb aus der Serie &quot;GARDENER&rsquo;S JOURNAL&quot; von Debbie Mumm, Preis pro Meter 11,80 Euro", "South Sea Imports /  Debbie Mumm",
		"11.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "80,110,79,119",
		"", "pd414569569.htm",
		"1::1::30;", 1,
		"141,35,14,6", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/DM_GJ_25944-777.jpg",
		100, 100,
		"141-07", "Stripe, Green",
		"Grüner Streifen aus der Serie &quot;GARDENER&rsquo;S JOURNAL&quot; von Debbie Mumm, Preis pro Meter 11,80 Euro", "South Sea Imports /  Debbie Mumm",
		"11.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "80,99,110,106,79,119",
		"", "pd1995539103.htm",
		"1::1::30;", 1,
		"141,25,35,31,14,6", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/GP105-YE_thumb.jpg",
		100, 100,
		"11-GP105-YE", "Kaffe Fassett, GP105-YE,  Suzani, Yellow",
		"Blumenkreise, gelb, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,94,107,109,28",
		"", "pd221024090.htm",
		"", 1,
		"11,114,21,32,33-2,11-GP105", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/GP54-SP_thumb.jpg",
		100, 100,
		"11-GP54-SP", "Kaffe Fassett, GP54-SP, Dahlia Blooms, Spring",
		"floraler Druck in blau-gelb, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,94,102,107,109,39",
		"", "pd-73976462.htm",
		"", 1,
		"11,114,21,28,32,33-2,11-GP54", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/Apron.jpg",
		100, 79,
		"Apron", "Schürzenvordruck von Dena Design für Free Spirit",
		"Leankia, Preis pro Stück 26,00 Euro", "Farbstoff",
		"26", "0.5",
		"1", 1,
		"Stück", "83,0,113",
		"", "pd1280067170.htm",
		"", 1,
		"16,01,4", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/Tote bag.jpg",
		100, 78,
		"Bag", "Taschenvordruck von Dena Design für Free Spirit",
		"Leankia, Preis pro Stück 26,00 Euro", "Farbstoff",
		"26", "0.5",
		"1", 1,
		"Stück", "83,0,113",
		"", "pd265531534.htm",
		"", 1,
		"16,01,4", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/NP70k.jpg",
		100, 100,
		"12-070", "Jinny Beyer Palette, Moss Green Alligator, NP#70",
		"Flaschengrüner Basic, 9414-26, Preis pro Meter 15,80 Euro", "RJR / Jinny Beyer",
		"15.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "77,99,106",
		"", "pd-1541459410.htm",
		"", 1,
		"12,25,31", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/GP95-GR_thumb.jpg",
		100, 100,
		"11-GP95-GR", "Kaffe Fassett, GP95-GR, Russian Rose, green",
		"großflächiger Rosendruck, blaugrün, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "56,2,23,98,99,107,109",
		"", "pd998598410.htm",
		"", 1,
		"11-GP95,11,114,24,25,32,33-2", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/GP95-YE_thumb.jpg",
		100, 100,
		"11-GP95-YE", "Kaffe Fassett, GP95-YE, Russian Rose, yellow",
		"großflächiger Rosendruck auf gelb, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "56,23,94,103,107,109",
		"", "pd-279131909.htm",
		"", 1,
		"11-GP95,114,21,30,32,33-2", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/BeachHouse_thumb.jpg",
		100, 100,
		"6-017", "&quot;Beach House&quot; von Robin Randolph für RJR",
		"Sortiment aus 35 verschiedenen Stoffen zu je 12,7 cm x 12,7 cm, Pro Packung", "Farbstoff",
		"14.5", "0.25",
		"1", 1,
		"Stück", "121,83,102,107",
		"", "pd652963176.htm",
		"", 1,
		"6-2,16,28,32", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/Birne.JPG",
		100, 100,
		"10-1-3", "Grundlagen Paperpiecing",
		"Schritt-für-Schritt-Anleitung zum Nähen von Paperpiecingblöcken", "",
		"3", "0.001",
		"1", 1,
		"Stück", "90,89",
		"", "pd1267954425.htm",
		"", 1,
		"10-1,10", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/DM_GJ_25944-555.jpg",
		100, 100,
		"141-08", "Stripe, Yellow",
		"Gelber Streifen aus der Serie &quot;GARDENER&rsquo;S JOURNAL&quot; von Debbie Mumm, Preis pro Meter 11,80 Euro", "South Sea Imports /  Debbie Mumm",
		"11.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "80,94,110,106,79,119",
		"", "pd959219520.htm",
		"1::1::30;", 1,
		"141,21,35,31,14,6", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/DM_CC_25667-771.jpg",
		100, 100,
		"142-03", "Debbie Mumm Basic, grün-beige gestreift",
		"Preis pro Meter 13,00 Euro", "South Sea Imports /  Debbie Mumm",
		"13", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "81,99,106,110,79,119",
		"", "pd-718244275.htm",
		"1::1::30;", 1,
		"142,25,31,35,14,6", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/GP100-RE_thumb.jpg",
		100, 100,
		"11-GP100-RE", "Kaffe Fassett, GP100-RE, Persian Vase, Red",
		"Blumenbouquet, rot, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,96,107,108,109,26",
		"", "pd-280397851.htm",
		"", 1,
		"11,114,22,32,33-1,33-2,11-GP100", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/GP100-GR_thumb.jpg",
		100, 100,
		"11-GP100-GR", "Kaffe Fassett, GP100-GR, Persian Vase, Grey",
		"Blumenbouquet, grau, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "26,2,23,101,107,108,109",
		"", "pd-1261439021.htm",
		"", 1,
		"11-GP100,11,114,27,32,33-1,33-2", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/barHarbor_thumb.jpg",
		100, 100,
		"6-023", "&quot;Bar Harbor&quot; von Minick&amp;Simpson für Moda",
		"Sortiment aus 42 verschiedenen Stoffen zu je 12,7 cm x 12,7 cm, Pro Packung", "Farbstoff",
		"14.5", "0.25",
		"1", 1,
		"Stück", "121,84,103,107,108",
		"", "pd1779915586.htm",
		"", 1,
		"6-2,17,30,32,33-1", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/AB23-PI_thumb.jpg",
		100, 100,
		"AB23-PI", "Amy Butler, Garden Maze Pink",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "78,94,97,102,109",
		"", "pd1240657227.htm",
		"", 1,
		"13,21,23,28,33-2", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/NP8k.jpg",
		100, 100,
		"12-008", "Jinny Beyer Palette, Tobacco Marble, NP#8",
		"Dunkelbrauner Marble-Basic, 9812-10, Preis pro Meter 15,80 Euro", "RJR / Jinny Beyer",
		"15.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "77,106,100",
		"", "pd1945529446.htm",
		"", 1,
		"12,31,26", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/NP3k.jpg",
		100, 100,
		"12-003", "Jinny Beyer Palette, Pewter Fine Dot, NP#3",
		"Pudergrauer Pünktchen-Basic, 4734-02, Preis pro Meter 15,80 Euro", "RJR / Jinny Beyer",
		"15.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "77,100,106",
		"", "pd1142160805.htm",
		"", 1,
		"12,26,31", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/NP40k.jpg",
		100, 100,
		"12-040", "Jinny Beyer Palette, Petal Pink Paisly, NP#40",
		"Roséfarbener Paisly-Basic, 2767-10, Preis pro Meter 15,80 Euro", "RJR / Jinny Beyer",
		"15.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "77,106,102",
		"", "pd445498941.htm",
		"", 1,
		"12,31,28", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/make-life_thumb.jpg",
		100, 100,
		"6-025", "&quot;make life&quot; von Swetwater für Moda",
		"Sortiment aus 42 verschiedenen Stoffen zu je 12,7 cm x 12,7 cm, Pro Packung", "Farbstoff",
		"14.5", "0.25",
		"1", 1,
		"Stück", "121,84,103,112,108",
		"", "pd2057078877.htm",
		"", 1,
		"6-2,17,30,Punkte,33-1", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/Verna_thumb.jpg",
		100, 100,
		"6-026", "&quot;verna&quot; von Kate Spain für Moda",
		"Sortiment aus 42 verschiedenen Stoffen zu je 12,7 cm x 12,7 cm, Pro Packung", "Farbstoff",
		"14.5", "0.25",
		"1", 1,
		"Stück", "121,84,102,107,108",
		"", "pd1795808676.htm",
		"", 1,
		"6-2,17,28,32,33-1", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/NP44k.jpg",
		100, 100,
		"12-044", "Jinny Beyer Palette, Silver Florentine, NP#44",
		"Mauvefarbener Blumen-Basic, 4731-04, Preis pro Meter 15,80 Euro", "RJR / Jinny Beyer",
		"15.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "77,102,106",
		"", "pd917071121.htm",
		"", 1,
		"12,28,31", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/NP89k.jpg",
		100, 100,
		"12-089", "Jinny Beyer Palette, Nile Florentine, NP#89",
		"Saphirblauer Blumen-Basic, 4731-10, Preis pro Meter 15,80 Euro", "RJR / Jinny Beyer",
		"15.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "77,98,106",
		"", "pd1131843629.htm",
		"", 1,
		"12,24,31", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/NC_01_k.jpg",
		100, 100,
		"11-NC01", "Kaffe Fassett, NC01, Narrow Check",
		"gleichmäßiges Karo mit schmalen Streifen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,8,97,110,10",
		"", "pd1905308241.htm",
		"", 1,
		"11,112,23,35,1122", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/NS_13.jpg",
		100, 100,
		"11-NS13", "Kaffe Fassett, NS13, Narrow Stripe",
		"gleichmäßige Streifen in blau/pink, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "4,2,3,98,110",
		"", "pd-1042076094.htm",
		"", 1,
		"1114,11,111,24,35", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/GP100-LI_thumb.jpg",
		100, 100,
		"11-GP100-LI", "Kaffe Fassett, GP100-LI, Persian Vase, Lime",
		"Blumenbouquet, zartgelb, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "26,2,23,94,107,108,109",
		"", "pd2143696368.htm",
		"", 1,
		"11-GP100,11,114,21,32,33-1,33-2", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/Victoria_thumb.jpg",
		100, 100,
		"6-027", "&quot;Victoria&quot; bei Nikki Russel für  Benartex",
		"Sortiment aus 52 verschiedenen Stoffen zu je 12,7 cm x 12,7 cm, Pro Packung", "Farbstoff",
		"17.5", "0.25",
		"1", 1,
		"Stück", "121,83,100,102,107",
		"", "pd-1132397881.htm",
		"", 1,
		"6-2,16,26,28,32", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/authentic_thumbs.jpg",
		100, 100,
		"6-028", "&quot;authentic&quot; von Sweetwater  für  Moda",
		"Sortiment aus 42 verschiedenen Stoffen zu je 12,7 cm x 12,7 cm, Pro Packung", "Farbstoff",
		"14.5", "0.25",
		"1", 1,
		"Stück", "121,84,100,101,112,108",
		"", "pd1435941430.htm",
		"", 1,
		"6-2,17,26,27,Punkte,33-1", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/charm play.JPG",
		100, 100,
		"42-6", "Nähanleitung für den Tablerunner &quot;Das Haus um die Ecke&quot; ",
		" ca. 76 cm x 76 cm", "Farbstoff",
		"5.99", "0.2",
		"1", 1,
		"Stück", "117,114",
		"", "pd1284884430.htm",
		"", 1,
		"42,41", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/helldunkel.jpg",
		100, 100,
		"10-7-3", "Farbübungen zur Harmonielehre, PDF-Datei",
		"Erklärung und Übung für Hell-Dunkel-Kontrast", "",
		"3", "0",
		"1", 1,
		"Stück", "92,0,89",
		"", "pd-1635027590.htm",
		"", 1,
		"10-3,01,10", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/GP01_BW.jpg",
		100, 100,
		"11-GP01-BW", "Kaffe Fassett, GP01-BW, Roman Glass, Blue",
		"Kringel auf kleinen Pünktchen in Blautönen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,11,98,108,13",
		"", "pd303186375.htm",
		"", 1,
		"11,113,24,33-1,11-GP01", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/GP01_Rk.jpg",
		100, 100,
		"11-GP01-R", "Kaffe Fassett, GP01-R, Roman Glass, Red",
		"Kringel auf kleinen Pünktchen in Rottönen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,11,96,108,13",
		"", "pd-537854814.htm",
		"", 1,
		"11,113,22,33-1,11-GP01", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/GP01_G.jpg",
		100, 100,
		"11-GP01-G", "Kaffe Fassett, GP01-G, Roman Glass, Yellow",
		"Kringel auf kleinen Pünktchen in Gelbtönen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,11,94,108,13",
		"", "pd-794581588.htm",
		"", 1,
		"11,113,21,33-1,11-GP01", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/GP01_Lk.jpg",
		100, 100,
		"11-GP01-L", "Kaffe Fassett, GP01-L, Roman Glass, Green",
		"Kringel auf kleinen Pünktchen in Olivegrüntönen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,11,99,108,13",
		"", "pd-455220378.htm",
		"", 1,
		"11,113,25,33-1,11-GP01", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/5Scraps-gelb.jpg",
		100, 100,
		"6-003", "Kaffe Fassett Scraps gelb",
		"Sortiment aus 5 Stoffen zu je 25 cm x 25 cm, Pro Packung", "Farbstoff",
		"5.5", "0.062",
		"1", 1,
		"Stück", "119,2,94",
		"", "pd1069999329.htm",
		"", 1,
		"6,11,21", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/4Scraps-rot.jpg",
		100, 100,
		"6-002", "Kaffe Fassett Scraps rot",
		"Sortiment aus 4 Stoffen zu je 25 cm x 25 cm, Pro Packung", "Farbstoff",
		"4.4", "0.062",
		"1", 1,
		"Stück", "119,2,96",
		"", "pd1117400317.htm",
		"", 1,
		"6,11,22", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/AB26-GO_thumb.jpg",
		100, 100,
		"AB26-GO", "Amy Butler, Martini Gold",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "78,94,97,102,108",
		"", "pd124715405.htm",
		"", 1,
		"13,21,23,28,33-1", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/recipe for friendship.jpg",
		100, 100,
		"6-011", "Recipe for Friendship Charm Pack, Mary Engelbreit für Moda",
		"Sortiment aus 37 verschiedenen Stoffen zu je 12,7 cm x 12,7 cm, Pro Packung", "Farbstoff",
		"14.5", "0.3",
		"1", 1,
		"Stück", "121,103,108,107,84,119",
		"", "pd1180790796.htm",
		"", 1,
		"6-2,30,33-1,32,17,6", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/Saettigung.jpg",
		100, 67,
		"10-7-4", "Farbübungen zur Harmonielehre, PDF-Datei",
		"Erklärung und Übung für Sättigung", "",
		"3", "0",
		"1", 1,
		"Stück", "92,0,89",
		"", "pd-1330882087.htm",
		"", 1,
		"10-3,01,10", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/GP80-CR_thumb.jpg",
		100, 100,
		"11-GP80-CR", "Kaffe Fassett, GP80-CR, Daisy Cream",
		"floraler Druck in cremegelb, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "48,2,23,94,102,107,108",
		"", "pd-2147002098.htm",
		"", 1,
		"11-GP80,11,114,21,28,32,33-1", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/GP61-PB_thumb.jpg",
		100, 100,
		"11-GP61-PB", "Kaffe Fassett, GP61-PB, Verbena Powder blue",
		"floraler Symmetriedruck in Blautönen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "43,2,23,98,107,109",
		"", "pd1370097199.htm",
		"", 1,
		"11-GP61,11,114,24,32,33-2", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/GP74-RE_thumb.jpg",
		100, 100,
		"11-GP74-RE", "Kaffe Fassett, GP74-RE, Persimmon red",
		"Blumendruck in Rot, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,96,103,107,108,46",
		"", "pd-1701495850.htm",
		"", 1,
		"11,114,22,30,32,33-1,11-GP74", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/GP81-JE_thumb.jpg",
		100, 100,
		"11-GP81-JE", "Kaffe Fassett, GP81-JE, Turkish Delight Jewel",
		"großflächiger Ornamentdruck auf Schwarz, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "49,2,23,101,103,107,109",
		"", "pd1002602583.htm",
		"", 1,
		"11-GP81,11,114,27,30,32,33-2", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/Red-Heritage_thumb.jpg",
		100, 100,
		"B316611", "Berantex Bandana Beauties Floral red",
		"Preis pro Meter 15,00 Euro", "Rhintex / Kaffe Fassett",
		"15", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "119,83,96,107,108",
		"", "pd1268811934.htm",
		"1::1::30;", 1,
		"6,16,22,32,33-1", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/AB49-WI.jpg",
		100, 100,
		"AB49-WI", "Amy Butler, Love Garden Paradise Wine",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "78,96,107,109",
		"", "pd1269152805.htm",
		"", 1,
		"13,22,32,33-2", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/AB14-CO_thumb.jpg",
		100, 100,
		"AB14-CO", "Amy Butler, Morning Glory, coral",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "78,97,103,107,109",
		"", "pd7468964.htm",
		"", 1,
		"13,23,30,32,33-2", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/BWS_01K.jpg",
		100, 100,
		"11-BWS-01", "Kaffe Fassett, BWS-01, Blue &amp; White Stripe",
		"feine gleichmäßige Streifen in Blau-Weiß, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "3,2,98,110,5",
		"", "pd-1280384850.htm",
		"", 1,
		"111,11,24,35,1116", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/GP92-RE_thumb.jpg",
		100, 100,
		"11-GP92-RE", "Kaffe Fassett, GP92-RE, Millefiore Red",
		"kleiner verspielter Pünktchendruck, rot, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,11,96,108,19",
		"", "pd-1288136547.htm",
		"", 1,
		"11,113,22,33-1,11-GP92", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/AB29-YE_thumb.jpg",
		100, 100,
		"AB29-YE", "Amy Butler, Happy Dots Yellow",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "78,94,99,102,106,108",
		"", "pd-122286913.htm",
		"", 1,
		"13,21,25,28,31,33-1", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/BWS_02K.jpg",
		100, 100,
		"11-BWS-02", "Kaffe Fassett, BWS-02, Blue &amp; White Stripe",
		"feine gleichmäßige Streifen in Blau-Weiß, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "3,2,98,110,5",
		"", "pd-425509032.htm",
		"", 1,
		"111,11,24,35,1116", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/DM_CC_25678-159.jpg",
		100, 100,
		"142-04", "Debbie Mumm Basic, orange-braun gestreift",
		"Preis pro Meter 13,00 Euro", "South Sea Imports /  Debbie Mumm",
		"13", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "81,94,110,95,79,119",
		"", "pd-411715618.htm",
		"1::1::30;", 1,
		"142,21,35,211,14,6", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/Remeber.jpg",
		100, 136,
		"4-04-1", "Nähanleitung für den Quilt &quot;Remember&quot; ",
		"ca. 168 cm x 208 cm", "Farbstoff",
		"3.99", "0.2",
		"1", 1,
		"Stück", "115",
		"", "pd1792246099.htm",
		"", 1,
		"41-2", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/GP65-GR_thumb.jpg",
		100, 100,
		"11-GP65-GR", "Kaffe Fassett, GP65-GR, Jungle Stripe Green",
		"vier verschiende Musterstreifen in Grüntönen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "67,2,62,99,107,109",
		"", "pd-180511976.htm",
		"", 1,
		"GP65,11,115,25,32,33-2", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/Book5k.jpg",
		100, 141,
		"5-05", "A Colourful Journey",
		"Rowan Book No. 5  mit Entwürfen von Kaffe Fassett u. a.", "Rhintex / Kaffe Fassett",
		"21", "0.6",
		"2", 1,
		"Stück", "118,2",
		"", "pd-853897135.htm",
		"", 1,
		"5,11", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/100_0058.jpg",
		100, 75,
		"4-05-2", "Nähanleitung für den Quilt &quot;we play&quot;",
		"ca. 113 cm x 113 cm", "Farbstoff",
		"3.99", "0.2",
		"1", 1,
		"Stück", "115",
		"", "pd-200657991.htm",
		"", 1,
		"41-2", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/GP60-PU_thumb.jpg",
		100, 100,
		"11-GP60-PU", "Kaffe Fassett, GP60-PU, Paisley Jungle Purple",
		"großformatiger Paisley, Violett, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "42,2,23,97,107,109",
		"", "pd8449122.htm",
		"", 1,
		"11-GP60,11,114,23,32,33-2", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/Elegance2.jpg",
		100, 100,
		"15-32", "Elegance 3",
		"Blümchenallover mit goldenen Akzenten,  Preis pro Meter 14,60 Euro", "Printconcept",
		"14.6", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "82,100,107,108,119",
		"", "pd648233097.htm",
		"1::1::40;", 1,
		"15,26,32,33-1,6", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/Elegance4.jpg",
		100, 100,
		"15-42", "Elegance 4",
		"Floraler Allover mit goldenen Akzenten,  Preis pro Meter 14,60 Euro", "Printconcept",
		"14.6", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "82,100,107,108,119",
		"", "pd484893147.htm",
		"1::1::40;", 1,
		"15,26,32,33-1,6", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/Elegance5.jpg",
		100, 100,
		"15-52", "Elegance 5",
		"Floraler Allover mit goldenen Akzenten,  Preis pro Meter 14,60 Euro", "Printconcept",
		"14.6", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "82,100,107,108,119",
		"", "pd1805605277.htm",
		"1::1::40;", 1,
		"15,26,32,33-1,6", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/Pure_White.jpg",
		100, 134,
		"4-06-1-1", "Nähanleitung für den Quilt &quot;Pure White&quot; ",
		"ca. 200 cm x 200 cm, pro Packung", "Farbstoff",
		"3.99", "0.2",
		"1", 1,
		"Stück", "115",
		"", "pd523961487.htm",
		"", 1,
		"41-2", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/The-Berries_thumb.jpg",
		100, 117,
		"42-2-1", "Nähanleitung für den Scrapquilt &quot;The Berries&quot; ",
		"Kniedecke, ca. 90 cm x 105 cm", "Farbstoff",
		"4.99", "0.2",
		"1", 1,
		"Stück", "115",
		"", "pd-1697719979.htm",
		"", 1,
		"41-2", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/Fig-Plum_thumb.jpg",
		100, 136,
		"42-4-1", "Nähanleitung für den Scrapquilt &quot;Feigen und Pflaumen&quot; ",
		"Bettüberwurf, ca. 210 cm x 135 cm", "Farbstoff",
		"4.99", "0.2",
		"1", 1,
		"Stück", "115",
		"", "pd-1514204277.htm",
		"", 1,
		"41-2", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/charm play.JPG",
		100, 100,
		"42-6-1", "Nähanleitung für den Tablerunner &quot;Das Haus um die Ecke&quot; ",
		" ca. 76 cm x 76 cm", "Farbstoff",
		"5.99", "0.2",
		"1", 1,
		"Stück", "115",
		"", "pd1618604209.htm",
		"", 1,
		"41-2", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/FigandPlum.jpg",
		100, 100,
		"6-012", "Fig &amp; Plum by Joanna Figueroa für Moda",
		"Sortiment aus 40 Stoffen zu je 12,7 cm x 12,7 cm, Pro Packung", "Farbstoff",
		"14.5", "0.21",
		"1", 1,
		"Stück", "103,121,84,107,119",
		"", "pd-2143261191.htm",
		"", 1,
		"30,6-2,17,32,6", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/5Scraps-blau.jpg",
		100, 100,
		"6-004", "Kaffe Fassett Scraps blau",
		"Sortiment aus 5 Stoffen zu je 25 cm x 25 cm, Pro Packung", "Farbstoff",
		"5.5", "0.062",
		"1", 1,
		"Stück", "119,2,98",
		"", "pd1070304924.htm",
		"", 1,
		"6,11,24", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/S4506_thumb.jpg",
		100, 100,
		"11-LHS-4506", "Kaffe Fassett, LHS-4506, Light Haze Stripe Cobalt",
		"feine ungleichmäßige Streifen in blau/aubergine, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,3,97,98,110,7",
		"", "pd-2089131209.htm",
		"", 1,
		"11,111,23,24,35,1119", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/GP54-PI_thumb.jpg",
		100, 100,
		"11-GP54-PI", "Kaffe Fassett, GP54-PI, Dahlia Blooms, Pink",
		"floraler Druck in pink violett, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,97,102,107,109,39",
		"", "pd-2125565373.htm",
		"", 1,
		"11,114,23,28,32,33-2,11-GP54", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/AB46-MI_thumb.jpg",
		100, 100,
		"AB46-MI", "Amy Butler, Love Sunspots Mint",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "78,98,99,106,112,108",
		"", "pd1358778405.htm",
		"", 1,
		"13,24,25,31,Punkte,33-1", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/6Scraps-pastell.jpg",
		100, 100,
		"6-005", "Kaffe Fassett Scraps pastell",
		"Sortiment aus 6 Stoffen zu je 25 cm x 25 cm, Pro Packung", "Farbstoff",
		"6.6", "0.062",
		"1", 1,
		"Stück", "119,2,102",
		"", "pd1034552874.htm",
		"", 1,
		"6,11,28", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/RS02_thumb.jpg",
		100, 100,
		"11-RS-02", "Kaffe Fassett, RS-02, Rowan Stripe",
		"feine gleichmäßige Streifen in türkis, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "6,2,3,98,99,110",
		"", "pd327144990.htm",
		"", 1,
		"1118,11,111,24,25,35", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/5Scraps-RomanGlass.jpg",
		100, 100,
		"6-008", "Kaffe Fassett Scraps Roman Glass",
		"Sortiment aus 5 Stoffen zu je 25 cm x 25 cm, Pro Packung", "Farbstoff",
		"5.5", "0.062",
		"1", 1,
		"Stück", "119,2,103",
		"", "pd811557334.htm",
		"", 1,
		"6,11,30", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/5Scraps-Paperweight.jpg",
		100, 100,
		"6-009", "Kaffe Fassett Scraps Paperweight",
		"Sortiment aus 5 Stoffen zu je 25 cm x 25 cm, Pro Packung", "Farbstoff",
		"5.5", "0.062",
		"1", 1,
		"Stück", "119,2,103",
		"", "pd-116767077.htm",
		"", 1,
		"6,11,30", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/Pillow.JPG",
		100, 100,
		"10-1-1", "Appliqué the easy way, PDF-Datei",
		"Einfaches und schnelles Applizieren mit der Maschine", "",
		"3", "0",
		"1", 1,
		"Zentimeter", "90,89",
		"", "pd1262051623.htm",
		"", 1,
		"10-1,10", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/SC24k.jpg",
		100, 100,
		"11-SC24", "Kaffe Fassett, SC24, Ecru",
		"Unigewebe,weißgrau, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,101,105",
		"", "pd-1430952392.htm",
		"", 1,
		"11,27,29", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/GP20-PTk.jpg",
		100, 100,
		"11-GP20-PT", "Kaffe Fassett, GP20-PT, Paperweight, Pastell",
		"kleine bunte Pünktchen in Pastelltönen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,11,102,108,15",
		"", "pd-1588360221.htm",
		"", 1,
		"11,113,28,33-1,11-GP20", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/Monaco_thumb.jpg",
		100, 178,
		"6-013", "Monaco von Dena Fischbein für Free Spirit",
		"Sortiment aus 22 verschiedenen Stoffen zu je 12,7 cm x 12,7 cm, Pro Packung", "Farbstoff",
		"14.5", "0.3",
		"1", 1,
		"Stück", "83,103,107,121,108",
		"", "pd-977493198.htm",
		"", 1,
		"16,30,32,6-2,33-1", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/GP86-CH.jpg",
		100, 100,
		"11-GP86-CH", "Kaffe Fassett, GP86-CH, Clouds, Charcol",
		"Wolkendruck in dunklen Blau- und Grüntönen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "71,2,99,101,103,109,74",
		"", "pd-1345670512.htm",
		"", 1,
		"118,11,25,27,30,33-2,11-GP86", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/SC17_thumb.jpg",
		100, 100,
		"11-SC17", "Kaffe Fassett, SC17, Sage",
		"Unigewebe, kirschholzfarben, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,100,105",
		"", "pd1065741129.htm",
		"", 1,
		"11,26,29", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/BC01_thumb.jpg",
		100, 100,
		"11-BC01", "Kaffe Fassett, BC01, Broad Check",
		"gleichmäßig breites Karo, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "9,2,8,110",
		"", "pd709126944.htm",
		"", 1,
		"1121,11,112,35", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/100_0058.jpg",
		100, 75,
		"4-05", "Nähanleitung für den Quilt &quot;we play&quot;",
		"ca. 113 cm x 113 cm", "Farbstoff",
		"3.99", "0.2",
		"1", 1,
		"Stück", "117,114",
		"", "pd1262466974.htm",
		"", 1,
		"42,41", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/GP105-RE.jpg",
		100, 100,
		"11-GP105-RE", "Kaffe Fassett, GP105-RE, Suzani, Red",
		"Blumenkreise, rot, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,95,96,107,109,28",
		"", "pd-1789092055.htm",
		"", 1,
		"11,114,211,22,32,33-2,11-GP105", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/MyPage1.jpg",
		100, 138,
		"4-01-2", "Nähanleitung für den Quilt &quot;Flutterby&quot;",
		"ca. 205 cm x 205 cm", "",
		"4.99", "0",
		"1", 1,
		"Stück", "116",
		"", "pd1843259975.htm",
		"", 1,
		"41-3", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/100_0058.jpg",
		100, 75,
		"4-05-1", "Materialset für den Quilt &quot;We play&quot; ",
		"ca. 113 cm x 113 cm", "Farbstoff",
		"45", "1",
		"1", 1,
		"Stück", "113",
		"", "pd-2052579588.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/Olfa Rollschneider 45.jpg",
		100, 79,
		"71-01", "Olfa Rollschneider, 45 mm",
		"RTY-2G", "Rhintex / Kaffe Fassett",
		"14.4", "0.5",
		"1", 1,
		"Zentimeter", "122,123",
		"", "pd-785664203.htm",
		"", 1,
		"7,71", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/Contry garden.jpg",
		100, 100,
		"5-10", "Country Garden Quilts",
		"Rowan Book No. 10  mit Entwürfen von Kaffe Fassett u. a.", "Rhintex / Kaffe Fassett",
		"24.9", "0.6",
		"2", 1,
		"Stück", "118",
		"", "pd-219247222.htm",
		"", 1,
		"5", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/wee play.jpg",
		100, 100,
		"6-018", "Wee Play by American Jane für Moda",
		"Sortiment aus 40 verschiedenen Stoffen zu je 12,7 cm x 12,7 cm, Pro Packung", "Farbstoff",
		"14.5", "0.25",
		"1", 1,
		"Stück", "84,103,108,121",
		"", "pd-1668051515.htm",
		"", 1,
		"17,30,33-1,6-2", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/AB46-WI_thumb.jpg",
		100, 100,
		"AB46-WI", "Amy Butler, Love Sunspots Wine",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "78,96,97,106,112,108",
		"", "pd-1710983523.htm",
		"", 1,
		"13,22,23,31,Punkte,33-1", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/Schneidmatte.jpg",
		100, 75,
		"71-03", "Olfa Schneidmatte, 30 cm x 45 cm",
		"CM-A3", "Rhintex / Kaffe Fassett",
		"16.4", "2",
		"1", 1,
		"Stück", "123,122",
		"", "pd-1016590419.htm",
		"", 1,
		"71,7", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/NP27_thumb.jpg",
		100, 100,
		"12-027", "Jinny Beyer Palette, Paprika Tapestry, NP#27",
		"Tieforangeroter Basic, eine Farbe wie Rosenpaprikapulver,4005-05, Preis pro Meter 15,80 Euro", "RJR / Jinny Beyer",
		"15.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "77,95,106",
		"", "pd1075537329.htm",
		"", 1,
		"12,211,31", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/Babyquilt.jpg",
		100, 115,
		"42-1", "Nähanleitung für den Scrapquilt &quot;Babydecke&quot; ",
		"ca. 76 cm x 87 cm", "Farbstoff",
		"4.99", "0.2",
		"1", 1,
		"Stück", "114,117",
		"", "pd1174640690.htm",
		"", 1,
		"41,42", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/AB46-OL_thumb.jpg",
		100, 100,
		"AB46-OL", "Amy Butler, Love Sunspots Olive",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "78,99,106,112,108",
		"", "pd337527829.htm",
		"", 1,
		"13,25,31,Punkte,33-1", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/Fig-Plum_thumb.jpg",
		100, 136,
		"42-4-2", "Nähanleitung für den Scrapquilt &quot;Feigen und Pflaumen&quot; ",
		"Bettüberwurf, ca. 210 cm x 135 cm", "Farbstoff",
		"4.99", "0.2",
		"1", 1,
		"Stück", "116",
		"", "pd-568060467.htm",
		"", 1,
		"41-3", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/NC03k.jpg",
		100, 100,
		"11-NC03", "Kaffe Fassett, NC03, Narrow Check",
		"gleichmäßiges Karo mit schmalen Streifen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "10,2,8,96,110",
		"", "pd1486058389.htm",
		"", 1,
		"1122,11,112,22,35", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/thumb/SC07k.jpg",
		100, 100,
		"11-SC07", "Kaffe Fassett, SC07, Persimmon",
		"Unigewebe, leuchtendes lachsrot, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,96,105",
		"", "pd-1032636403.htm",
		"", 1,
		"11,22,29", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/GP76-GR_thumb.jpg",
		100, 100,
		"11-GP76-GR", "Kaffe Fassett, GP76-GR, Lichen, Green",
		"Meeresalgen, grün,Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "47,2,23,99,108",
		"", "pd-1081450558.htm",
		"", 1,
		"11-GP76,11,114,25,33-1", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/thumb/GP76-CE_thumb.jpg",
		100, 100,
		"11-GP76-CE", "Kaffe Fassett, GP76-CE, Lichen, Celadon",
		"Meeresalgen, pastell, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "47,2,23,102,108",
		"", "pd-148619555.htm",
		"", 1,
		"11-GP76,11,114,28,33-1", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/AB46-TU_thumb.jpg",
		100, 100,
		"AB46-TU", "Amy Butler, Love Sunspots Turquoise",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "78,98,102,106,112,108",
		"", "pd1273822780.htm",
		"", 1,
		"13,24,28,31,Punkte,33-1", "0",
		 0)
	
		Entry[102] = new Element(
		102, "assets/thumb/scrappy ninepatch.jpg",
		100, 128,
		"42-5", "Nähanleitung für den Quilt &quot;Scrappy Ninepatch&quot; ",
		" ca. 162 cm x 208 cm", "Farbstoff",
		"4.99", "0.2",
		"1", 1,
		"Stück", "117,114",
		"", "pd-1294685524.htm",
		"", 1,
		"42,41", "0",
		 0)
	
		Entry[103] = new Element(
		103, "assets/thumb/Triptrap.JPG",
		100, 100,
		"42-4-3", "Nähanleitung für den Scrapquilt &quot;Trip Trap&quot;, Jelly Roll geeignet",
		"Bettüberwurf, ca. 205 cm x 163 cm", "Farbstoff",
		"7.99", "0.2",
		"1", 1,
		"Stück", "116,114",
		"", "pd1364296899.htm",
		"", 1,
		"41-3,41", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/Lampions.JPG",
		100, 100,
		"42-4-4", "Nähanleitung für den Scrapquilt &quot;Lampions&quot;, Jelly Roll geeignet",
		"Bettüberwurf, ca. 209 cm x 166 cm", "Farbstoff",
		"7.99", "0.2",
		"1", 1,
		"Stück", "116,114",
		"", "pd-850682113.htm",
		"", 1,
		"41-3,41", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/Tomantensalat.JPG",
		100, 100,
		"42-4-5", "Nähanleitung für den Scrapquilt &quot;Tomatensalat&quot;, Jelly Roll geeignet",
		"Kniedecke, ca. 131 cm x 131 cm", "Farbstoff",
		"7.99", "0.2",
		"1", 1,
		"Stück", "116,114",
		"", "pd661763323.htm",
		"", 1,
		"41-3,41", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/thumb/quiltersgarden3.jpg",
		100, 100,
		"Mitgliedschaft", "Mitgliedschaft im Club Quilters Garden",
		"wöchentlich neue kostenlose Tipps und Nähanleitungen, Mitgliederforum, Ereigniskalender", "",
		"4.99", "0.001",
		"1", 1,
		"monatlich", "89",
		"", "pd-1661198575.htm",
		"1::6::5;1::12::10;", 1,
		"10", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/GP71-LI_thumb.jpg",
		100, 100,
		"11-GP71-LI", "Kaffe Fassett, GP71-LI, Aboriginal lime",
		"Pünktchenstoff Zitronengrün, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,11,94,99,108,21",
		"", "pd1239527285.htm",
		"", 1,
		"11,113,21,25,33-1,GP71", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/GP71-RO_thumb.jpg",
		100, 100,
		"11-GP71-RO", "Kaffe Fassett, GP71-RO, Aboriginal rose",
		"Pünktchenstoff hellem rot, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,11,95,96,108,21",
		"", "pd1057640429.htm",
		"", 1,
		"11,113,211,22,33-1,GP71", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/GP92-BL_thumb.jpg",
		100, 100,
		"11-GP92-BL", "Kaffe Fassett, GP92-BL, Millefiore Blue",
		"kleiner verspielter Pünktchendruck, blau, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,11,98,108,19",
		"", "pd888592229.htm",
		"", 1,
		"11,113,24,33-1,11-GP92", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/thumb/GP20-LI_thumb.jpg",
		100, 100,
		"11-GP20-LI", "Kaffe Fassett, GP20-LI, Paperweight, Lime",
		"kleine bunte Pünktchen in zitrusgelb, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "15,2,11,94,99,108",
		"", "pd-76158907.htm",
		"", 1,
		"11-GP20,11,113,21,25,33-1", "0",
		 0)
	
		Entry[111] = new Element(
		111, "assets/thumb/GP20-SL_thumb.jpg",
		100, 100,
		"11-GP20-SL", "Kaffe Fassett, GP20-SL, Paperweight, Sludge",
		"kleine bunte Pünktchen in grau und zartgrün, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "15,2,11,99,101,102,108",
		"", "pd1077962898.htm",
		"", 1,
		"11-GP20,11,113,25,27,28,33-1", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/GP20-CB_thumb.jpg",
		100, 100,
		"11-GP20-CB", "Kaffe Fassett, GP20-CB, Paperweight, Cobalt",
		"kleine bunte Pünktchen auf dunkelblau, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "15,2,11,98,108",
		"", "pd1078341566.htm",
		"", 1,
		"11-GP20,11,113,24,33-1", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/thumb/Caravan of Quilts.jpg",
		100, 143,
		"5-06", "Caravan of Quilts",
		"Rowan Book No. 6  mit Entwürfen von Kaffe Fassett u. a.", "Rhintex / Kaffe Fassett",
		"21.5", "0.6",
		"2", 1,
		"Stück", "118",
		"", "pd1103457180.htm",
		"", 1,
		"5", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/thumb/Calypso-kelp_thumb.jpg",
		100, 100,
		"32180-12", "Moda, Odyssea, Calypso kelp",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "84,103,109",
		"", "pd1267351232.htm",
		"", 1,
		"17,30,33-2", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/thumb/GP20-PU_thumb.jpg",
		100, 100,
		"11-GP20-PU", "Kaffe Fassett, GP20-PU, Paperweight, Pumpkin",
		"kleine bunte Pünktchen in dunklen Orangetönen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "15,2,11,95,100,108",
		"", "pd1077437645.htm",
		"", 1,
		"11-GP20,11,113,211,26,33-1", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/thumb/GP49--BT_thumb.jpg",
		100, 100,
		"11-GP49-BT", "Kaffe Fassett, GP49-BT, Islands, Bottle",
		"organische &quot;Punkte&quot; in dunklem Grün, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,11,98,99,108,17",
		"", "pd1506715621.htm",
		"", 1,
		"11,113,24,25,33-1,11-GP49", "0",
		 0)
	
		Entry[117] = new Element(
		117, "assets/thumb/GP49--ms_thumb.jpg",
		100, 100,
		"11-GP49-MS", "Kaffe Fassett, GP49-MS, Islands, Moss",
		"organische &quot;Punkte&quot; in senfgelb / olivgrün, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "17,2,11,94,99,108",
		"", "pd406155890.htm",
		"", 1,
		"11-GP49,11,113,21,25,33-1", "0",
		 0)
	
		Entry[118] = new Element(
		118, "assets/thumb/Calypso-Driftwood_thumb.jpg",
		100, 100,
		"32180-11", "Moda, Odyssea, Calypso driftwood",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "84,103,109",
		"", "pd1594944986.htm",
		"", 1,
		"17,30,33-2", "0",
		 0)
	
		Entry[119] = new Element(
		119, "assets/thumb/Poseidon-red_thumb.jpg",
		100, 100,
		"32181-15", "Moda, Odyssea, Poseidon Red Coral",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "84,96,103,108",
		"", "pd-1850093937.htm",
		"", 1,
		"17,22,30,33-1", "0",
		 0)
	
		Entry[120] = new Element(
		120, "assets/thumb/Poseidon-kelp_thumb.jpg",
		100, 100,
		"32181-14", "Moda, Odyssea, Poseidon kelp",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "84,99,103,108",
		"", "pd532638385.htm",
		"", 1,
		"17,25,30,33-1", "0",
		 0)
	
		Entry[121] = new Element(
		121, "assets/thumb/AB49-PE.jpg",
		100, 100,
		"AB49-PE", "Amy Butler, Love Garden Paradise Periwinkle",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "78,98,107,109",
		"", "pd-999825769.htm",
		"", 1,
		"13,24,32,33-2", "0",
		 0)
	
		Entry[122] = new Element(
		122, "assets/thumb/GP92-GR_thumb.jpg",
		100, 100,
		"11-GP92-GR", "Kaffe Fassett, GP92-GR, Millefiore Green",
		"kleiner verspielter Pünktchendruck, grün, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,11,99,108,19",
		"", "pd-383982900.htm",
		"", 1,
		"11,113,25,33-1,11-GP92", "0",
		 0)
	
		Entry[123] = new Element(
		123, "assets/thumb/GP92-OR_thumb.jpg",
		100, 100,
		"11-GP92-OR", "Kaffe Fassett, GP92-OR, Millefiore Orange",
		"kleiner verspielter Pünktchendruck ,orange, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,11,95,108,19",
		"", "pd-1783202960.htm",
		"", 1,
		"11,113,211,33-1,11-GP92", "0",
		 0)
	
		Entry[124] = new Element(
		124, "assets/thumb/Penelope-kelp_thumb.jpg",
		100, 100,
		"32185-14", "Moda, Odyssea, Penelope kelp",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "84,99,107",
		"", "pd-1681903933.htm",
		"", 1,
		"17,25,32", "0",
		 0)
	
		Entry[125] = new Element(
		125, "assets/thumb/Homer-kelp_thumb.jpg",
		100, 100,
		"32187-14", "Moda, Odyssea, Homer kelp",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "84,99,108",
		"", "pd1306922708.htm",
		"", 1,
		"17,25,33-1", "0",
		 0)
	
		Entry[126] = new Element(
		126, "assets/thumb/GP21-green_thumb.jpg",
		100, 100,
		"11-GP21-GN", "Kaffe Fassett, GP21, Organic Stripe Green",
		"vier verschiende Musterstreifen in Grüntönen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "65,2,62,99,109",
		"", "pd-1622930833.htm",
		"", 1,
		"GP21,11,115,25,33-2", "0",
		 0)
	
		Entry[127] = new Element(
		127, "assets/thumb/GP82-PE_thumb.jpg",
		100, 100,
		"11-GP82-PE", "Kaffe Fassett, GP82-PE, Stencil Carnation Periwinkle",
		"zweifarbige Blumendruck wie Federzeichnung, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,97,98,107,50",
		"", "pd-1356304740.htm",
		"", 1,
		"11,114,23,24,32,11-GP82", "0",
		 0)
	
		Entry[128] = new Element(
		128, "assets/thumb/Nautica-red_thumb.jpg",
		100, 100,
		"32183-21", "Moda, Odyssea, Nautica red coral",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "84,96,106,108",
		"", "pd2013604257.htm",
		"", 1,
		"17,22,31,33-1", "0",
		 0)
	
		Entry[129] = new Element(
		129, "assets/thumb/Odyssea-Jelly-roll_thumb.jpg",
		104, 104,
		"6-033", "Moda &quot;Odyssea&quot; Jelly Roll",
		"Dieses Set enthält 40 Streifen 2,5&quot; breit", "",
		"44", "501",
		"1", 1,
		"Stück", "120,84,103",
		"", "pd-144200141.htm",
		"", 1,
		"6-1,17,30", "0",
		 0)
	
		Entry[130] = new Element(
		130, "assets/thumb/Quilt Tic und Tac2.JPG",
		100, 100,
		"42-4-6", "Nähanleitung für den Scrapquilt &quot;Tic und Tac&quot;, Jelly Roll geeignet",
		"Tagesdecke, ca. 177 cm x 207 cm", "Farbstoff",
		"7.99", "0.2",
		"1", 1,
		"Stück", "116,114",
		"", "pd-429301628.htm",
		"", 1,
		"41-3,41", "0",
		 0)
	
		Entry[131] = new Element(
		131, "assets/thumb/HST.jpg",
		100, 75,
		"10-1-2", "Perfekte Dreiecksblöcke, PDF-Download",
		"Tipps und Tricks zum exakten und rationellen Nähen von Dreiecksblöcken", "",
		"3", "0",
		"1", 1,
		"Zentimeter", "90,89",
		"", "pd1606231914.htm",
		"", 1,
		"10-1,10", "0",
		 0)
	
		Entry[132] = new Element(
		132, "assets/thumb/HST Nähanleitung Bild.jpg",
		100, 119,
		"45-07", "Nähanleitung Pinwheel in a Square",
		"150 cm x 180 cm", "Farbstoff",
		"7.99", "0.125",
		"1", 1,
		"Stück", "114,117",
		"", "pd1081778988.htm",
		"", 1,
		"41,42", "0",
		 0)
	
		Entry[133] = new Element(
		133, "assets/thumb/Remeber.jpg",
		100, 136,
		"4-04", "Nähanleitung für den Quilt &quot;Remember&quot; ",
		"ca. 168 cm x 208 cm", "Farbstoff",
		"3.99", "0.2",
		"1", 1,
		"Stück", "114,2,117",
		"", "pd1176140799.htm",
		"", 1,
		"41,11,42", "0",
		 0)
	
		Entry[134] = new Element(
		134, "assets/thumb/GP82-TA_thumb.jpg",
		100, 100,
		"11-GP82-TA", "Kaffe Fassett, GP82-TA, Stencil Carnation Taupe",
		"zweifarbige Blumendruck wie Federzeichnung, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "50,2,23,100,107",
		"", "pd-428289819.htm",
		"", 1,
		"11-GP82,11,114,26,32", "0",
		 0)
	
		Entry[135] = new Element(
		135, "assets/thumb/Osterglocke_k.jpg",
		100, 100,
		"10-2-1", "Paperpiecingblock &quot;Spring&quot;, PDF-Datei",
		"Blockmuster in nummerierter Foundation Piecing Technik zum Ausdrucken", "",
		"3", "0",
		"1", 1,
		"Stück", "89,91",
		"", "pd1385493014.htm",
		"", 1,
		"10,10-2", "0",
		 0)
	
		Entry[136] = new Element(
		136, "assets/thumb/siw01_thumb.jpg",
		100, 100,
		"11-SIW01", "Kaffe Fassett, SIW01, Wash, peach",
		"Ikatgewebe mit Farbverlauf, apricot, Preis pro Meter 18,80 Euro", "Rhintex / Kaffe Fassett",
		"18.8", "0.08",
		"1", 4,
		"Einheit von 0,25 m", "2,68,102,110,70",
		"", "pd1719164179.htm",
		"", 1,
		"11,117,28,35,SIW", "0",
		 0)
	
		Entry[137] = new Element(
		137, "assets/thumb/TwoUpTwoDown_m.jpg",
		100, 115,
		"4-02-2", "Materialset &quot;Two up two down&quot; aus dem Rowanbuch &quot;Quilt Romance&quot;",
		"128 cm x 112 cm", "Farbstoff",
		"99", "1",
		"1", 1,
		"Stück", "113",
		"", "pd2082770069.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[138] = new Element(
		138, "assets/thumb/CV-480_thumb.jpg",
		100, 100,
		"CV-480", "Anna&rsquo;s Garden Party Mingling Gold",
		"Preis pro Meter 15,80 Euro", "Rhintex / Kaffe Fassett",
		"15.8", "0.125",
		"1", 4,
		"Einheit von 0,25 m", "87,94,95,107,109",
		"", "pd1712176610.htm",
		"", 1,
		"AH,21,211,32,33-2", "0",
		 0)
	
		Entry[139] = new Element(
		139, "assets/thumb/GP22-multi_thumb.jpg",
		100, 100,
		"11-GP22-AN", "Kaffe Fassett, GP22, Swiggle Stripe Antique",
		"vier verschiende Musterstreifen in braunen Tönen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "66,2,62,109",
		"", "pd1176001840.htm",
		"", 1,
		"GP22,11,115,33-2", "0",
		 0)
	
		Entry[140] = new Element(
		140, "assets/thumb/CV-431_k.jpg",
		100, 100,
		"CV-431", "Anna&rsquo;s Garden Party Dance Floor",
		"Preis pro Meter 15,80 Euro", "Rhintex / Kaffe Fassett",
		"15.8", "0.125",
		"1", 4,
		"Einheit von 0,25 m", "87,95,96,97,106",
		"", "pd1672043770.htm",
		"", 1,
		"AH,211,22,23,31", "0",
		 0)
	
		Entry[141] = new Element(
		141, "assets/thumb/CS810_thumb.jpg",
		100, 100,
		"CS-810", "Anna&rsquo;s Garden Party Polka Dot Olive",
		"Preis pro Meter 15,80 Euro", "Rhintex / Kaffe Fassett",
		"15.8", "0.125",
		"1", 4,
		"Einheit von 0,25 m", "87,95,99,112,108,106",
		"", "pd-273905931.htm",
		"", 1,
		"AH,211,25,Punkte,33-1,31", "0",
		 0)
	
		Entry[142] = new Element(
		142, "assets/thumb/CV-472_thumb.jpg",
		100, 100,
		"CV-472", "Anna&rsquo;s Garden Party Polka Dot Tan",
		"Preis pro Meter 15,80 Euro", "Rhintex / Kaffe Fassett",
		"15.8", "0.125",
		"1", 4,
		"Einheit von 0,25 m", "87,100,106,112,108",
		"", "pd16185899.htm",
		"", 1,
		"AH,26,31,Punkte,33-1", "0",
		 0)
	
		Entry[143] = new Element(
		143, "assets/thumb/CV-451_thumb.jpg",
		100, 100,
		"CV-451", "Anna&rsquo;s Garden Party Table Cloth Brown",
		"Preis pro Meter 15,80 Euro", "Rhintex / Kaffe Fassett",
		"15.8", "0.125",
		"1", 4,
		"Einheit von 0,25 m", "87,97,103,109",
		"", "pd1934712052.htm",
		"", 1,
		"AH,23,30,33-2", "0",
		 0)
	
		Entry[144] = new Element(
		144, "assets/thumb/CT-328_thumb.jpg",
		100, 100,
		"CT-328", "Anna&rsquo;s Garden Party Up All Night Plum",
		"Preis pro Meter 15,80 Euro", "Rhintex / Kaffe Fassett",
		"15.8", "0.125",
		"1", 4,
		"Einheit von 0,25 m", "87,97,103,106,108",
		"", "pd-47720372.htm",
		"", 1,
		"AH,23,30,31,33-1", "0",
		 0)
	
		Entry[145] = new Element(
		145, "assets/thumb/dic02_thumb.jpg",
		100, 100,
		"11-DIC02", "Kaffe Fassett, DIC02, Checkerboard, Magenta",
		"Doppelikatgewebe im Schachbrettmuster,pink/senf, Preis pro Meter 18,80 Euro", "Rhintex / Kaffe Fassett",
		"18.8", "0.08",
		"1", 4,
		"Einheit von 0,25 m", "69,2,68,94,97,110",
		"", "pd-1503275330.htm",
		"", 1,
		"DIC,11,117,21,23,35", "0",
		 0)
	
		Entry[146] = new Element(
		146, "assets/thumb/GP71-LE_thumb.jpg",
		100, 100,
		"11-GP71-LE", "Kaffe Fassett, GP71-LE, Aboriginal leaf",
		"Pünktchenstoff Grün, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,11,99,108,21",
		"", "pd1431137687.htm",
		"", 1,
		"11,113,25,33-1,GP71", "0",
		 0)
	
		Entry[147] = new Element(
		147, "assets/thumb/CV-430_thumb.jpg",
		100, 100,
		"CV-430", "Anna&rsquo;s Garden Party Receiving Line Lime",
		"Preis pro Meter 15,80 Euro", "Rhintex / Kaffe Fassett",
		"15.8", "0.125",
		"1", 4,
		"Einheit von 0,25 m", "87,94,103,107,108",
		"", "pd2133107215.htm",
		"", 1,
		"AH,21,30,32,33-1", "0",
		 0)
	
		Entry[148] = new Element(
		148, "assets/thumb/Tablerunner.JPG",
		100, 193,
		"4-01-0", "Materialset, Tablerunner &quot;Garden Party&quot;",
		"ca. 55 cm x 106 cm", "Farbstoff",
		"37.8", "0.51",
		"1", 1,
		"Stück", "87,113",
		"", "pd-2110077399.htm",
		"", 1,
		"AH,4", "0",
		 0)
	
		Entry[149] = new Element(
		149, "assets/thumb/abhdabs22midnite.jpg",
		100, 101,
		"AB-HD-22-MID", "Amy Butler, Love Garden Paradise Home Dec Midnight",
		"Preis pro Meter 21,40 Euro", "Rhintex / Kaffe Fassett",
		"21.4", "0.5",
		"1", 4,
		"Einheit von 0,25 m", "78,98,103,107,109",
		"", "pd-2108760455.htm",
		"", 1,
		"13,24,30,32,33-2", "0",
		 0)
	
		Entry[150] = new Element(
		150, "assets/thumb/AB-HD-22 Mint.jpg",
		100, 101,
		"AB-HD-22-MIN", "Amy Butler, Love Garden Paradise Home Dec Mint",
		"Preis pro Meter 21,40 Euro", "Rhintex / Kaffe Fassett",
		"21.4", "0.5",
		"1", 4,
		"Einheit von 0,25 m", "78,99,102,103,107,109",
		"", "pd505589071.htm",
		"", 1,
		"13,25,28,30,32,33-2", "0",
		 0)
	
		Entry[151] = new Element(
		151, "assets/thumb/GP112-GR_thumb.jpg",
		100, 100,
		"11-GP112-GR", "Kaffe Fassett, GP112-GR, Rosette Green",
		"gefüllte Rosenbälle, blaugrün, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,98,99,107,109,34",
		"", "pd1900320904.htm",
		"", 1,
		"11,114,24,25,32,33-2,11-GP112", "0",
		 0)
	
		Entry[152] = new Element(
		152, "assets/thumb/GP112-BR_thumb.jpg",
		100, 100,
		"11-GP112-BR", "Kaffe Fassett, GP112-BR, Rosette Brown",
		"gefüllte Rosenbälle,braun, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "34,2,23,100,107,109",
		"", "pd543496078.htm",
		"", 1,
		"11-GP112,11,114,26,32,33-2", "0",
		 0)
	
		Entry[153] = new Element(
		153, "assets/thumb/GP112-PA_thumb.jpg",
		100, 100,
		"11-GP112-PA", "Kaffe Fassett, GP112-PA, Rosette Pastell",
		"gefüllte Rosenbälle,pastell, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "34,2,23,97,102,107,109",
		"", "pd523634726.htm",
		"", 1,
		"11-GP112,11,114,23,28,32,33-2", "0",
		 0)
	
		Entry[154] = new Element(
		154, "assets/thumb/GP112-DA_thumb.jpg",
		100, 100,
		"11-GP112-DA", "Kaffe Fassett, GP112-DA, Rosette dark",
		"gefüllte Rosenbälle,dunkles violett, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "34,2,23,97,107,109",
		"", "pd-221281346.htm",
		"", 1,
		"11-GP112,11,114,23,32,33-2", "0",
		 0)
	
		Entry[155] = new Element(
		155, "assets/thumb/GP112-PI_thumb.jpg",
		100, 100,
		"11-GP112-PI", "Kaffe Fassett, GP112-PI, Rosette Pink",
		"gefüllte Rosenbälle, rot, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "34,2,23,96,97,107,109",
		"", "pd-1955993002.htm",
		"", 1,
		"11-GP112,11,114,22,23,32,33-2", "0",
		 0)
	
		Entry[156] = new Element(
		156, "assets/thumb/GP21-och_thumb.jpg",
		100, 100,
		"11-GP21-OC", "Kaffe Fassett, GP21, Organic Stripe Ochre",
		"vier verschiende Musterstreifen in Ockertönen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "65,2,62,95,100,109",
		"", "pd1655906617.htm",
		"", 1,
		"GP21,11,115,211,26,33-2", "0",
		 0)
	
		Entry[157] = new Element(
		157, "assets/thumb/GP60-TA_thumb.jpg",
		100, 100,
		"11-GP60-TA", "Kaffe Fassett, GP60-TA, Paisley Jungle Tangerine",
		"großformatiger Paisley, Orange, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "42,2,23,95,107,109",
		"", "pd-2039293062.htm",
		"", 1,
		"11-GP60,11,114,211,32,33-2", "0",
		 0)
	
		Entry[158] = new Element(
		158, "assets/thumb/GP60-MO_thumb.jpg",
		100, 100,
		"11-GP60-MO", "Kaffe Fassett, GP60-MO, Paisley Jungle Moss",
		"großformatiger Paisley, dunkel, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "42,2,23,101,107,109",
		"", "pd625845650.htm",
		"", 1,
		"11-GP60,11,114,27,32,33-2", "0",
		 0)
	
		Entry[159] = new Element(
		159, "assets/thumb/GP104-BL_thumb.jpg",
		100, 100,
		"11-GP104-BL", "Kaffe Fassett, GP104-BL, Mirage Stripes, Blue",
		"gezackte Streifen, Blautöne, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,62,98,106,110,64",
		"", "pd-1428571165.htm",
		"", 1,
		"11,115,24,31,35,GP104", "0",
		 0)
	
		Entry[160] = new Element(
		160, "assets/thumb/GP104-RE_thumb.jpg",
		100, 100,
		"11-GP104-RE", "Kaffe Fassett, GP104-RE, Mirage Stripes, Red",
		"gezackte Streifen, Rottöne, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "64,2,62,96,103,106,110",
		"", "pd270661312.htm",
		"", 1,
		"GP104,11,115,22,30,31,35", "0",
		 0)
	
		Entry[161] = new Element(
		161, "assets/thumb/GP20-PP_thumb.jpg",
		100, 100,
		"11-GP20-PP", "Kaffe Fassett, GP20-PP, Paperweight, Paprika",
		"kleine bunte Pünktchen auf warmem Rot, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "15,2,11,96,97,108",
		"", "pd320200396.htm",
		"", 1,
		"11-GP20,11,113,22,23,33-1", "0",
		 0)
	
		Entry[162] = new Element(
		162, "assets/thumb/GP20-TE_thumb.jpg",
		100, 100,
		"11-GP20-TE", "Kaffe Fassett, GP20-TE, Paperweight, Teal",
		"kleine bunte Pünktchen in türkisblau, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "15,2,11,98,99,108",
		"", "pd455167268.htm",
		"", 1,
		"11-GP20,11,113,24,25,33-1", "0",
		 0)
	
		Entry[163] = new Element(
		163, "assets/thumb/GP20-AL_thumb.jpg",
		100, 100,
		"11-GP20-AL", "Kaffe Fassett, GP20-AL, Paperweight, Algae",
		"kleine bunte Pünktchen in pflanzengrün, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "15,2,11,99,108",
		"", "pd-1404715396.htm",
		"", 1,
		"11-GP20,11,113,25,33-1", "0",
		 0)
	
		Entry[164] = new Element(
		164, "assets/thumb/GP34-BR_thumb.jpg",
		100, 100,
		"11-GP34BR", "Kaffe Fassett, GP34-BR, Spools, Brown",
		"Kreise in Herbsttönen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "16,2,11,97,100,108",
		"", "pd-1666319105.htm",
		"", 1,
		"11-GP34,11,113,23,26,33-1", "0",
		 0)
	
		Entry[165] = new Element(
		165, "assets/thumb/GP107-TU_thumb.jpg",
		100, 100,
		"11-GP107-TU", "Kaffe Fassett, GP107-TU, Sprays, Turquoise",
		"Rautenförmige Blumenrispen, türkis, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "30,2,23,98,107,109",
		"", "pd855191219.htm",
		"", 1,
		"11-GP107,11,114,24,32,33-2", "0",
		 0)
	
		Entry[166] = new Element(
		166, "assets/thumb/GP104-YE_thumb.jpg",
		100, 100,
		"11-GP104-YE", "Kaffe Fassett, GP104-YE, Mirage Stripes, Yellow",
		"gezackte Streifen, Gelb, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "64,2,62,94,106,110",
		"", "pd-802896455.htm",
		"", 1,
		"GP104,11,115,21,31,35", "0",
		 0)
	
		Entry[167] = new Element(
		167, "assets/thumb/GP107-BR_thumb.jpg",
		100, 100,
		"11-GP107-BR", "Kaffe Fassett, GP107-BR, Sprays, Brown",
		"Rautenförmige Blumenrispen, braun, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "30,2,23,100,107,109",
		"", "pd1095453931.htm",
		"", 1,
		"11-GP107,11,114,26,32,33-2", "0",
		 0)
	
		Entry[168] = new Element(
		168, "assets/thumb/GP107-BL_thumb.jpg",
		100, 100,
		"11-GP107-BL", "Kaffe Fassett, GP107-BL, Sprays, Black",
		"Rautenförmige Blumenrispen, schwarz, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "30,2,23,101,103,107,109",
		"", "pd1569835555.htm",
		"", 1,
		"11-GP107,11,114,27,30,32,33-2", "0",
		 0)
	
		Entry[169] = new Element(
		169, "assets/thumb/MOG.jpg",
		100, 135,
		"42-8", "Nähanleitung für den Quilt &quot;My opulent Green&quot;",
		"Kniedecke, ca.148 cm x 148 cm", "Farbstoff",
		"7.99", "0.125",
		"1", 1,
		"Stück", "114",
		"", "pd1767607083.htm",
		"", 1,
		"41", "0",
		 0)
	
		Entry[170] = new Element(
		170, "assets/thumb/GP68-OC_thumb.jpg",
		100, 100,
		"11-GP68-OC", "Kaffe Fassett, GP68-OC, Brokate Floral, Ochre",
		"großformatiger Blumendruck in Brauntönen,  Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "60,2,23,100,107,109",
		"", "pd1331949616.htm",
		"", 1,
		"GP68,11,114,26,32,33-2", "0",
		 0)
	
		Entry[171] = new Element(
		171, "assets/thumb/GP90-OC_thumb.jpg",
		100, 100,
		"11-GP90-OC", "Kaffe Fassett, GP90-OC, Chevron Stripes Ochre",
		"diagonale Streifen Multicolor, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,62,103,110,63",
		"", "pd-59901216.htm",
		"", 1,
		"11,115,30,35,11-GP90-OC", "0",
		 0)
	
		Entry[172] = new Element(
		172, "assets/thumb/HB09-FU_thumb.jpg",
		100, 100,
		"HB09-FU", "Free Spirit, Heather Bailey, Bijoux, Swirly Buds Fuchsia",
		"Rosenranken auf Pink, Preis pro Meter 16,80 Euro", "Farbstoff",
		"16.8", "0.125",
		"1", 4,
		"Einheit von 0,25 m", "88,97,107",
		"", "pd-742252928.htm",
		"", 1,
		"HB,23,32", "0",
		 0)
	
		Entry[173] = new Element(
		173, "assets/thumb/GP80-PI_thumb.jpg",
		100, 100,
		"11-GP80-PI", "Kaffe Fassett, GP80-PI, Daisy Pink",
		"floraler Druck in pink, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "48,2,23,97,107,108",
		"", "pd2101797918.htm",
		"", 1,
		"11-GP80,11,114,23,32,33-1", "0",
		 0)
	
		Entry[174] = new Element(
		174, "assets/thumb/GP74-OP_thumb.jpg",
		100, 100,
		"11-GP74-OP", "Kaffe Fassett, GP74-OP, Persimmon opal",
		"Blumendruck in pastelltönen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "46,2,23,102,107,108",
		"", "pd-195006569.htm",
		"", 1,
		"11-GP74,11,114,28,32,33-1", "0",
		 0)
	
		Entry[175] = new Element(
		175, "assets/thumb/Quilt road.jpg",
		100, 145,
		"5-07", "Quilt Road",
		"Rowan Book No. 7  mit Entwürfen von Kaffe Fassett u. a.", "Rhintex / Kaffe Fassett",
		"22.4", "0.6",
		"2", 1,
		"Stück", "118",
		"", "pd1138909337.htm",
		"", 1,
		"5", "0",
		 0)
	
		Entry[176] = new Element(
		176, "assets/thumb/HB09-TA_thumb.jpg",
		100, 100,
		"HB09-TA", "Free Spirit, Heather Bailey, Bijoux, Swirly Buds Tangerine",
		"Rosenranken auf orange, Preis pro Meter 16,80 Euro", "Farbstoff",
		"16.8", "0.125",
		"1", 4,
		"Einheit von 0,25 m", "88,95,107",
		"", "pd-866296163.htm",
		"", 1,
		"HB,211,32", "0",
		 0)
	
		Entry[177] = new Element(
		177, "assets/thumb/GP107-LI_thumb.jpg",
		100, 100,
		"11-GP107-LI", "Kaffe Fassett, GP107-LI, Sprays, Lime",
		"Rautenförmige Blumenrispen, zartgelb, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "30,2,23,94,107,109",
		"", "pd1349804032.htm",
		"", 1,
		"11-GP107,11,114,21,32,33-2", "0",
		 0)
	
		Entry[178] = new Element(
		178, "assets/thumb/GP107-Thumb.jpg",
		100, 100,
		"11-GP107-TA", "Kaffe Fassett, GP107-TA, Sprays, Taupe",
		"Rautenförmige Blumenrispen, grau, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "30,2,23,101,103,107,109",
		"", "pd-1806550824.htm",
		"", 1,
		"11-GP107,11,114,27,30,32,33-2", "0",
		 0)
	
		Entry[179] = new Element(
		179, "assets/thumb/GP74-PI.jpg",
		100, 100,
		"11-GP74-PI", "Kaffe Fassett, GP74-PI, Persimmon pink",
		"Blumendruck in pink, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "46,2,23,97,102,107,108",
		"", "pd536186340.htm",
		"", 1,
		"11-GP74,11,114,23,28,32,33-1", "0",
		 0)
	
		Entry[180] = new Element(
		180, "assets/thumb/GP29-JA_thumb.jpg",
		100, 100,
		"11-GP29-JA", "Kaffe Fassett, GP29-JA, Lotus Leaf, Jade",
		"floraler Druck in grün-gelb-Tönen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,94,99,100,102,107,109,35",
		"", "pd1730360399.htm",
		"", 1,
		"11,114,21,25,26,28,32,33-2,11-GP29", "0",
		 0)
	
		Entry[181] = new Element(
		181, "assets/thumb/GP54AT_thumb.jpg",
		100, 100,
		"11-GP54-AT", "Kaffe Fassett, GP54-AT, Dahlia Blooms, Autumn",
		"floraler Druck in rotgrünen Herbsttönen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,96,97,99,107,109,39",
		"", "pd-734654200.htm",
		"", 1,
		"11,114,22,23,25,32,33-2,11-GP54", "0",
		 0)
	
		Entry[182] = new Element(
		182, "assets/thumb/GP01-DP_thumb.jpg",
		100, 100,
		"11-GP01-DP", "Kaffe Fassett, GP01-DP, Roman Glass, Dusty Pink",
		"Kringel auf kleinen Pünktchen in pudrigen Rosétönen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "13,2,11,97,102,108",
		"", "pd-1495900629.htm",
		"", 1,
		"11-GP01,11,113,23,28,33-1", "0",
		 0)
	
		Entry[183] = new Element(
		183, "assets/thumb/100_0600.jpg",
		100, 141,
		"4-03-2", "Nähanleitung für Handtasche &quot;Flower Bag&quot;",
		"Schritt-für-Schritt-Anleitung für ein Nachmittagsprojekt", "Farbstoff",
		"5.99", "0.02",
		"1", 1,
		"Stück", "114",
		"", "pd-777497871.htm",
		"", 1,
		"41", "0",
		 0)
	
		Entry[184] = new Element(
		184, "assets/thumb/Tablerunner_k.JPG",
		100, 100,
		"41-4", "Nähanleitung für den Appliqué-Tablerunner &quot;Blumentopf&quot;",
		"ca. 89 cm x 89 cm", "Farbstoff",
		"7.99", "0.2",
		"1", 1,
		"Stück", "114",
		"", "pd-1876699521.htm",
		"", 1,
		"41", "0",
		 0)
	
		Entry[185] = new Element(
		185, "assets/thumb/MO5MT_thumb.jpg",
		100, 100,
		"RO-MO5MT", "Rowan, MO5MT, Chicken Scratch, Mint",
		"Mintgrüner Basic, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "75,76,99,106,108",
		"", "pd2070064204.htm",
		"", 1,
		"11A,RO-MO5,25,31,33-1", "0",
		 0)
	
		Entry[186] = new Element(
		186, "assets/thumb/MO5RD_thumb.jpg",
		100, 100,
		"RO-MO5RD", "Rowan, MO5RD, Chicken Scratch, Red",
		"Erdbeerroter Basic, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "75,76,96,97,106,108",
		"", "pd-2050798940.htm",
		"", 1,
		"11A,RO-MO5,22,23,31,33-1", "0",
		 0)
	
		Entry[187] = new Element(
		187, "assets/thumb/HB10-RE_thumb.jpg",
		100, 100,
		"HB10-RE", "Free Spirit, Heather Bailey, Bijoux, Tiled Primrose",
		"kleines geometrisches Muster, rot, Preis pro Meter 16,80 Euro", "Farbstoff",
		"16.8", "0.125",
		"1", 4,
		"Einheit von 0,25 m", "88,95,96,106,108",
		"", "pd-109257402.htm",
		"", 1,
		"HB,211,22,31,33-1", "0",
		 0)
	
		Entry[188] = new Element(
		188, "assets/thumb/GP83-LA_thumb.jpg",
		100, 100,
		"11-GP83-LA", "Kaffe Fassett, GP83-LA, Dancing Leaves Lavender",
		"großflächiger Blätterdruck in Lavendeltönen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,97,102,107,109,51",
		"", "pd-1769092154.htm",
		"", 1,
		"11,114,23,28,32,33-2,11-GP83", "0",
		 0)
	
		Entry[189] = new Element(
		189, "assets/thumb/GP74-BL_thumb.jpg",
		100, 100,
		"11-GP74-BL", "Kaffe Fassett, GP74-BL, Persimmon blau",
		"Blumendruck in Blaultönen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "46,2,23,98,107,108",
		"", "pd2123545997.htm",
		"", 1,
		"11-GP74,11,114,24,32,33-1", "0",
		 0)
	
		Entry[190] = new Element(
		190, "assets/thumb/GP74-OR_thumb.jpg",
		100, 100,
		"11-GP74-OR", "Kaffe Fassett, GP74-OR, Persimmon orange",
		"Blumendruck in Orange, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "46,2,23,95,107,108",
		"", "pd-690808571.htm",
		"", 1,
		"11-GP74,11,114,211,32,33-1", "0",
		 0)
	
		Entry[191] = new Element(
		191, "assets/thumb/GP36-KG_thumb.jpg",
		100, 100,
		"11-GP36-KG", "Kaffe Fassett, GP36-KG, Fan Flower Kelly Green",
		"floraler Druck in blau/grün, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "36,2,23,98,99,103,107",
		"", "pd-55982083.htm",
		"", 1,
		"11-GP36,11,114,24,25,30,32", "0",
		 0)
	
		Entry[192] = new Element(
		192, "assets/thumb/GP80-GO_thumb.jpg",
		100, 100,
		"11-GP80-GO", "Kaffe Fassett, GP80-GO, Daisy Gold",
		"floraler Druck in gelb, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,94,107,108",
		"", "pd-1930611018.htm",
		"", 1,
		"11,114,21,32,33-1", "0",
		 0)
	
		Entry[193] = new Element(
		193, "assets/thumb/GP70-WA_thumb.jpg",
		100, 100,
		"11-GP70-WA", "Kaffe Fassett, GP70-WA, Spots Water",
		"Pünktchenstoff weiß mit mint, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "20,2,11,101,102,106,112,108",
		"", "pd-281896896.htm",
		"", 1,
		"GP70,11,113,27,28,31,Punkte,33-1", "0",
		 0)
	
		Entry[194] = new Element(
		194, "assets/thumb/GP70-TU_thumb.jpg",
		100, 100,
		"11-GP70-TU", "Kaffe Fassett, GP70-TU, Spots Turquoise",
		"Pünktchenstoff türkis mit orange, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "20,2,11,98,106,112,108",
		"", "pd-1530026746.htm",
		"", 1,
		"GP70,11,113,24,31,Punkte,33-1", "0",
		 0)
	
		Entry[195] = new Element(
		195, "assets/thumb/GP70-BL_thumb.jpg",
		100, 100,
		"11-GP70-BL", "Kaffe Fassett, GP70-BL, Spots Black",
		"Pünktchenstoff schwarz mit violett, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "20,2,11,101,106,112,108",
		"", "pd490208199.htm",
		"", 1,
		"GP70,11,113,27,31,Punkte,33-1", "0",
		 0)
	
		Entry[196] = new Element(
		196, "assets/thumb/GP70-GREEN_thumb.jpg",
		100, 100,
		"11-GP70-GR", "Kaffe Fassett, GP70-GR, Spots Green",
		"Pünktchenstoff grün mit blau, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "20,2,11,98,99,106,112,108",
		"", "pd858656852.htm",
		"", 1,
		"GP70,11,113,24,25,31,Punkte,33-1", "0",
		 0)
	
		Entry[197] = new Element(
		197, "assets/thumb/GP37-HOL_thumb.jpg",
		100, 100,
		"11-GP37-HOL", "Kaffe Fassett, GP37-HOL, Beach Balls Holiday",
		"Wasserbälle in kräftigem Multicolor, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,71,103,109,72",
		"", "pd1537647336.htm",
		"", 1,
		"11,118,30,33-2,11-GP37", "0",
		 0)
	
		Entry[198] = new Element(
		198, "assets/thumb/GP37-CON_thumb.jpg",
		100, 100,
		"11-GP37-CON", "Kaffe Fassett, GP37-CON, Beach Balls Contrast",
		"Wasserbälle in Multicolor mit weiß, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "72,2,71,103,109",
		"", "pd96198848.htm",
		"", 1,
		"11-GP37,11,118,30,33-2", "0",
		 0)
	
		Entry[199] = new Element(
		199, "assets/thumb/HB10-TU_thumb.jpg",
		100, 100,
		"HB10-TU", "Free Spirit, Heather Bailey, Bijoux, Tiled Turquoise",
		"kleines geometrisches Muster, türkis, Preis pro Meter 16,80 Euro", "Farbstoff",
		"16.8", "0.125",
		"1", 4,
		"Einheit von 0,25 m", "88,99,106,108",
		"", "pd-1348997263.htm",
		"", 1,
		"HB,25,31,33-1", "0",
		 0)
	
		Entry[200] = new Element(
		200, "assets/thumb/GP83-HE_thumb.jpg",
		100, 100,
		"11-GP83-HE", "Kaffe Fassett, GP83-HE, Dancing Leaves Heather",
		"großflächiger Blätterdruck in Rot/Violett, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,96,97,107,109,51",
		"", "pd-160169081.htm",
		"", 1,
		"11,114,22,23,32,33-2,11-GP83", "0",
		 0)
	
		Entry[201] = new Element(
		201, "assets/thumb/GP70-LA_thumb.jpg",
		100, 100,
		"11-GP70-LA", "Kaffe Fassett, GP70-WA, Spots Lavender",
		"Pünktchenstoff violett mit grün, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "20,2,11,97,106,112,108",
		"", "pd1271662764.htm",
		"", 1,
		"GP70,11,113,23,31,Punkte,33-1", "0",
		 0)
	
		Entry[202] = new Element(
		202, "assets/thumb/GP29-OC_thump.jpg",
		100, 100,
		"11-GP29-OC", "Kaffe Fassett, GP29-OC, Lotus Leaf, Ochre",
		"floraler Druck in rot-orange-Tönen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "35,2,23,95,107,109,100,103",
		"", "pd-927015976.htm",
		"", 1,
		"11-GP29,11,114,211,32,33-2,26,30", "0",
		 0)
	
		Entry[203] = new Element(
		203, "assets/thumb/GP59-BR_thumb.jpg",
		100, 100,
		"11-GP59-BR", "Kaffe Fassett, GP59-BR, Guinea Flowers, Brown",
		"kleingemusterter Druck mit Blüten in Browntönen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,95,100,107,108,41",
		"", "pd1369087195.htm",
		"", 1,
		"11,114,211,26,32,33-1,11-GP59", "0",
		 0)
	
		Entry[204] = new Element(
		204, "assets/thumb/GP52-OV_thumb.jpg",
		100, 100,
		"11-GP52-OV", "Kaffe Fassett, GP52-OV, Auricula Olive",
		"gleichmässig gemusterter Blumendruck in Olivgrün, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "38,2,23,99,100,107,108",
		"", "pd-575130361.htm",
		"", 1,
		"11-GP52,11,114,25,26,32,33-1", "0",
		 0)
	
		Entry[205] = new Element(
		205, "assets/thumb/GP56-BRN_thumb.jpg",
		100, 100,
		"11-GP56-BRN", "Kaffe Fassett, GP56-BRN, Floating Flowers, Braun",
		"floraler Druck in Brauntönen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "40,2,23,96,100,107",
		"", "pd1201404539.htm",
		"", 1,
		"11-GP56,11,114,22,26,32", "0",
		 0)
	
		Entry[206] = new Element(
		206, "assets/thumb/GP56-GRN_thumb.jpg",
		100, 100,
		"11-GP56-GRN", "Kaffe Fassett, GP56-GRN, Floating Flowers, Grün",
		"floraler Druck in Grüntönen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "40,2,23,99,107",
		"", "pd1984494003.htm",
		"", 1,
		"11-GP56,11,114,25,32", "0",
		 0)
	
		Entry[207] = new Element(
		207, "assets/thumb/GP56-PAS_thumb.jpg",
		100, 100,
		"11-GP56-PAS", "Kaffe Fassett, GP56-PAS, Floating Flowers, Pastell",
		"floraler Druck in Pastelltönen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "40,2,23,97,102,107",
		"", "pd-823090222.htm",
		"", 1,
		"11-GP56,11,114,23,28,32", "0",
		 0)
	
		Entry[208] = new Element(
		208, "assets/thumb/Pure_White.jpg",
		100, 134,
		"4-06", "Materialset für den Quilt &quot;Pure White&quot; ",
		"ca. 200 cm x 200 cm, pro Packung", "Farbstoff",
		"55", "1.5",
		"1", 1,
		"Stück", "113",
		"", "pd-2046114602.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[209] = new Element(
		209, "assets/thumb/Porcelain Scraps.jpg",
		100, 100,
		"6-014", "Procelain by Lynne Wilson für Moda",
		"Sortiment aus 42 verschiedenen Stoffen zu je 12,7 cm x 12,7 cm, Pro Packung", "Farbstoff",
		"14.5", "0.21",
		"1", 1,
		"Stück", "107,108,121,84,102",
		"", "pd-58777668.htm",
		"", 1,
		"32,33-1,6-2,17,28", "0",
		 0)
	
		Entry[210] = new Element(
		210, "assets/thumb/AB07-CL_thumb.jpg",
		100, 100,
		"AB07-CL", "Amy Butler, Coriander Clay",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "78,96,107",
		"", "pd24002448.htm",
		"", 1,
		"13,22,32", "0",
		 0)
	
		Entry[211] = new Element(
		211, "assets/thumb/HB11-GR_thumb.jpg",
		100, 100,
		"HB11-GR", "Free Spirit, Heather Bailey, Bijoux, Mod Beads Green",
		"kleines geometrisches Muster, grün, Preis pro Meter 16,80 Euro", "Farbstoff",
		"16.8", "0.125",
		"1", 4,
		"Einheit von 0,25 m", "88,99,106,108",
		"", "pd-655102589.htm",
		"", 1,
		"HB,25,31,33-1", "0",
		 0)
	
		Entry[212] = new Element(
		212, "assets/thumb/AB01-BL_thumb.jpg",
		100, 100,
		"AB01-BL", "Amy Butler, Eyelashes Blue",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "78,100,108",
		"", "pd1954358674.htm",
		"", 1,
		"13,26,33-1", "0",
		 0)
	
		Entry[213] = new Element(
		213, "assets/thumb/GP88-FOThumb.jpg",
		100, 100,
		"11-GP88-FO", "Kaffe Fassett, GP88-FO, Star Flower Forest",
		"Streublümchen auf dunkelgrünem Grund, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "22,2,11,99,103,107,108",
		"", "pd-136544364.htm",
		"", 1,
		"GP88,11,113,25,30,32,33-1", "0",
		 0)
	
		Entry[214] = new Element(
		214, "assets/thumb/GP87-IN_thumb.jpg",
		100, 100,
		"11-GP87-IN", "Kaffe Fassett, GP87-IN, Flower Dot Indigo",
		"Streublümchen auf dunkelblauem Grund, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,11,98,107,108",
		"", "pd270675669.htm",
		"", 1,
		"11,113,24,32,33-1", "0",
		 0)
	
		Entry[215] = new Element(
		215, "assets/thumb/GP87-GR_thumb.jpg",
		100, 100,
		"11-GP87-GR", "Kaffe Fassett, GP87-GR, Flower Dot Grey",
		"Streublümchen auf Grau, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,11,99,101,107,108",
		"", "pd-328042846.htm",
		"", 1,
		"11,113,25,27,32,33-1", "0",
		 0)
	
		Entry[216] = new Element(
		216, "assets/thumb/GP60-GR_thumb.jpg",
		100, 100,
		"11-GP60-GR", "Kaffe Fassett, GP60-GR, Paisley Jungle Green",
		"großformatiger Paisley, Grün, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,107,99,109,42",
		"", "pd1169969611.htm",
		"", 1,
		"11,114,32,25,33-2,11-GP60", "0",
		 0)
	
		Entry[217] = new Element(
		217, "assets/thumb/MummScraps_thumb.jpg",
		100, 100,
		"6-006", "Debbie Mumm Scraps Gardener&rsquo;s journal",
		"Sortiment aus 6 Stoffen zu je 25 cm x 25 cm, Pro Packung", "Farbstoff",
		"6.6", "0.062",
		"1", 1,
		"Stück", "119,79",
		"", "pd612580962.htm",
		"1::1::30;", 1,
		"6,14", "0",
		 0)
	
		Entry[218] = new Element(
		218, "assets/thumb/Sommerliche-Babyblocks_thum.jpg",
		100, 96,
		"4-02-3", "Materialset &quot;Sommerlicher Babyblock&quot; aus dem Rowanbuch &quot;Quilt Romance&quot;",
		"183 cm x 208 cm", "Farbstoff",
		"163", "1",
		"1", 1,
		"Stück", "113,2",
		"", "pd1272702914.htm",
		"", 1,
		"4,11", "0",
		 0)
	
		Entry[219] = new Element(
		219, "assets/thumb/batik-hexagon-1.jpg",
		100, 106,
		"10-1-4", "Hexagons - Handnähehn mit Papierschablonen",
		"Schritt-für-Schritt-Anleitung ", "",
		"3", "0.001",
		"1", 1,
		"Stück", "89,90",
		"", "pd-1723127826.htm",
		"", 1,
		"10,10-1", "0",
		 0)
	
		Entry[220] = new Element(
		220, "assets/thumb/GP93-BL_thumb.jpg",
		100, 100,
		"11-GP93-BL", "Kaffe Fassett, GP93-BL, Lake Blossoms blue",
		"floraler Druck in blau/grünPreis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,98,107,109,54",
		"", "pd2065311180.htm",
		"", 1,
		"11,114,24,32,33-2,11GP93", "0",
		 0)
	
		Entry[221] = new Element(
		221, "assets/thumb/GP64-BR_thumb.jpg",
		100, 100,
		"11-GP64-BR", "Kaffe Fassett, GP64-BR, Potentilla Brown",
		"floraler Druck in Braun, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,94,100,107,109,44",
		"", "pd2114414771.htm",
		"", 1,
		"11,114,21,26,32,33-2,11-GP64", "0",
		 0)
	
		Entry[222] = new Element(
		222, "assets/thumb/HB11-IC_thumb.jpg",
		100, 100,
		"HB11-IC", "Free Spirit, Heather Bailey, Bijoux, Mod Beads Ice",
		"kleines geometrisches Muster, mintgrün, Preis pro Meter 16,80 Euro", "Farbstoff",
		"16.8", "0.125",
		"1", 4,
		"Einheit von 0,25 m", "88,99,106,108,102",
		"", "pd-592626683.htm",
		"", 1,
		"HB,25,31,33-1,28", "0",
		 0)
	
		Entry[223] = new Element(
		223, "assets/thumb/GP90-BL_thumb.jpg",
		100, 100,
		"11-GP90-BL", "Kaffe Fassett, GP90-BL, Chevron Stripes Blue",
		"diagonale Streifen Multicolor, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,62,98,99,110,63",
		"", "pd-1025916331.htm",
		"", 1,
		"11,115,24,25,35,11-GP90-OC", "0",
		 0)
	
		Entry[224] = new Element(
		224, "assets/thumb/Dance-with-me_thumb.jpg",
		100, 100,
		"6-015", "&quot;Dance with me&quot; von Jennifer Paganelli für Free Spirits",
		"Sortiment von 17 verschiedenen Stoffen zu je 12,7 cm x 12,7 cm, Pro Packung", "Farbstoff",
		"14.5", "0.21",
		"1", 1,
		"Stück", "83,103,107,108,121,102",
		"", "pd-817474314.htm",
		"", 1,
		"16,30,32,33-1,6-2,28", "0",
		 0)
	
		Entry[225] = new Element(
		225, "assets/thumb/HB11-LI_thumb.jpg",
		100, 100,
		"HB11-LI", "Free Spirit, Heather Bailey, Bijoux, Mod Beads Lime",
		"kleines geometrisches Muster, limonengrün, Preis pro Meter 16,80 Euro", "Farbstoff",
		"16.8", "0.125",
		"1", 4,
		"Einheit von 0,25 m", "88,99,106,108",
		"", "pd1221316471.htm",
		"", 1,
		"HB,25,31,33-1", "0",
		 0)
	
		Entry[226] = new Element(
		226, "assets/thumb/HB11-PI_thumb.jpg",
		100, 100,
		"HB11-PI", "Free Spirit, Heather Bailey, Bijoux, Mod Beads Pink",
		"kleines geometrisches Muster, pink, Preis pro Meter 16,80 Euro", "Farbstoff",
		"16.8", "0.125",
		"1", 4,
		"Einheit von 0,25 m", "88,97,102,106,108",
		"", "pd2027960409.htm",
		"", 1,
		"HB,23,28,31,33-1", "0",
		 0)
	
		Entry[227] = new Element(
		227, "assets/thumb/HB11-RO_thumb.jpg",
		100, 100,
		"HB11-RO", "Free Spirit, Heather Bailey, Bijoux, Mod Beads Rose",
		"kleines geometrisches Muster, rosé, Preis pro Meter 16,80 Euro", "Farbstoff",
		"16.8", "0.125",
		"1", 4,
		"Einheit von 0,25 m", "88,97,102,106,108",
		"", "pd427403601.htm",
		"", 1,
		"HB,23,28,31,33-1", "0",
		 0)
	
		Entry[228] = new Element(
		228, "assets/thumb/Mary_Engelbreit_Baskets_of_Flowers_ALL.jpg",
		100, 100,
		"6-016", "Basket of Flowers by Mary Engelbreit für Moda",
		"Sortiment aus 37 verschiedenen Stoffen zu je 12,7 cm x 12,7 cm, Pro Packung", "Farbstoff",
		"14.5", "0.25",
		"1", 1,
		"Stück", "121,107,108,84,102",
		"", "pd1262622048.htm",
		"", 1,
		"6-2,32,33-1,17,28", "0",
		 0)
	
		Entry[229] = new Element(
		229, "assets/thumb/The-Berries_thumb.jpg",
		100, 117,
		"42-2", "Nähanleitung für den Scrapquilt &quot;The Berries&quot; ",
		"Kniedecke, ca. 90 cm x 105 cm", "Farbstoff",
		"4.99", "0.2",
		"1", 1,
		"Stück", "117,114",
		"", "pd-962209361.htm",
		"", 1,
		"42,41", "0",
		 0)
	
		Entry[230] = new Element(
		230, "assets/thumb/Water-and-Sky_thumb.jpg",
		100, 115,
		"42-3", "Nähanleitung für den Scrapquilt &quot;Water and Sky&quot; ",
		"Kniedecke, ca. 92 cm x 105 cm", "Farbstoff",
		"4.99", "0.2",
		"1", 1,
		"Stück", "117",
		"", "pd-318080341.htm",
		"", 1,
		"42", "0",
		 0)
	
		Entry[231] = new Element(
		231, "assets/thumb/GP01-PI_thumb.jpg",
		100, 100,
		"11-GP01-PI", "Kaffe Fassett, GP01-PI, Roman Glass, Pink",
		"Kringel auf kleinen Pünktchen in Pinktönen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "13,2,11,97,108",
		"", "pd1181331338.htm",
		"", 1,
		"11-GP01,11,113,23,33-1", "0",
		 0)
	
		Entry[232] = new Element(
		232, "assets/thumb/GP61-R_thumb.jpg",
		100, 100,
		"11-GP61-R", "Kaffe Fassett, GP61-R, Verbena Red",
		"floraler Symmetriedruck in schwarz und pink, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "43,2,23,96,97,107,109",
		"", "pd-1074371910.htm",
		"", 1,
		"11-GP61,11,114,22,23,32,33-2", "0",
		 0)
	
		Entry[233] = new Element(
		233, "assets/thumb/GP61-BR_thumb.jpg",
		100, 100,
		"11-GP61-BR", "Kaffe Fassett, GP61-BR, Verbena Brown",
		"floraler Symmetriedruck in rosa und braun, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "43,2,23,97,100,107,109",
		"", "pd-1276799765.htm",
		"", 1,
		"11-GP61,11,114,23,26,32,33-2", "0",
		 0)
	
		Entry[234] = new Element(
		234, "assets/thumb/GP101-GR_thumb.jpg",
		100, 100,
		"11-GP101-GR", "Kaffe Fassett, GP101-GR, Buttons, Green",
		"Blaugrüne Knöpfe,  Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,11,97,98,99,108,14",
		"", "pd-102328310.htm",
		"", 1,
		"11,113,23,24,25,33-1,11GP101", "0",
		 0)
	
		Entry[235] = new Element(
		235, "assets/thumb/GP61-PI_thumb.jpg",
		100, 100,
		"11-GP61-PI", "Kaffe Fassett, GP61-PI, Verbena Pink",
		"floraler Symmetriedruck in weiß und rosa, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "43,2,23,97,102,107,109",
		"", "pd426222120.htm",
		"", 1,
		"11-GP61,11,114,23,28,32,33-2", "0",
		 0)
	
		Entry[236] = new Element(
		236, "assets/thumb/GP64_GR.jpg",
		100, 100,
		"11-GP64-GR", "Kaffe Fassett, GP64-GR, Potentilla Green",
		"floraler Druck in Grün und Blau, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "44,2,23,99,107,109",
		"", "pd-67366202.htm",
		"", 1,
		"11-GP64,11,114,25,32,33-2", "0",
		 0)
	
		Entry[237] = new Element(
		237, "assets/thumb/GP77-PI_thumb.jpg",
		100, 100,
		"11-GP77-PI", "Kaffe Fassett, GP77-PI, Silhouette, Pink",
		"zweifarbiger Blumendruck in türkis/rosa, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "24,2,23,97,102,107",
		"", "pd-84926506.htm",
		"", 1,
		"11-77,11,114,23,28,32", "0",
		 0)
	
		Entry[238] = new Element(
		238, "assets/thumb/PJ13-TA_thumb.jpg",
		100, 100,
		"PJ13-TA", "Philip Jacobs, PJ13-TA, Grandiose Taupe",
		"Auwändiger Blumenpring, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "75,97,98,99,107,109",
		"", "pd862555936.htm",
		"", 1,
		"11A,23,24,25,32,33-2", "0",
		 0)
	
		Entry[239] = new Element(
		239, "assets/thumb/Hexagonvarianten.jpg",
		101, 100,
		"10-2-2", "Hexagonvarianten, PDF-Datei",
		"Hexagonblöcke, zusammengesetzt aus verschiedenen Elementen, wie Dreieck, Rhomben, etc.", "",
		"3", "0",
		"1", 1,
		"Stück", "91,89",
		"", "pd938667000.htm",
		"", 1,
		"10-2,10", "0",
		 0)
	
		Entry[240] = new Element(
		240, "assets/thumb/GP97-SU_thumb.jpg",
		100, 100,
		"11-GP97-SU", "Kaffe Fassett, GP97-SU, Bubble Flower Summer",
		"Blumenruck in hellorange, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "23,94,95,107,58,2",
		"", "pd1246192815.htm",
		"", 1,
		"114,21,211,32,11-GP97,11", "0",
		 0)
	
		Entry[241] = new Element(
		241, "assets/thumb/GP105-MA_thumb.jpg",
		100, 100,
		"11-GP105-MA", "Kaffe Fassett, GP105-MA, Suzani, Magenta",
		"Blumenkreise, pink, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "28,2,23,97,107,109",
		"", "pd-1831063380.htm",
		"", 1,
		"11-GP105,11,114,23,32,33-2", "0",
		 0)
	
		Entry[242] = new Element(
		242, "assets/thumb/GP77-MI_thumb.jpg",
		100, 100,
		"11-GP77-MI", "Kaffe Fassett, GP77-MI, Silhouette, Mint",
		"zweifarbiger Blumendruck in grün, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,99,107,108,24",
		"", "pd-198800508.htm",
		"", 1,
		"11,114,25,32,33-1,11-77", "0",
		 0)
	
		Entry[243] = new Element(
		243, "assets/thumb/Hibiscus-Linen_thumb.jpg",
		100, 100,
		"4004-11", "Moda, Martinique, Hibiscus Linen",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "84,86,102,107",
		"", "pd1274030914.htm",
		"", 1,
		"17,400,28,32", "0",
		 0)
	
		Entry[244] = new Element(
		244, "assets/thumb/RK04.jpg",
		100, 100,
		"RK04", "Andover, Little Country Posies, Vanilla",
		"Zickzackmuster in beige, Preis pro Meter 14,50 Euro", "Farbstoff",
		"14.5", "0.124",
		"1", 4,
		"Einheit von 0,25 m", "83,100,103,110,108",
		"", "pd1697882001.htm",
		"", 1,
		"16,26,30,35,33-1", "0",
		 0)
	
		Entry[245] = new Element(
		245, "assets/thumb/RK02.jpg",
		100, 100,
		"RK02", "Andover, Little Country Posies, moss green",
		"Zickzackmuster in olivegrün, Preis pro Meter 14,50 Euro", "Farbstoff",
		"14.5", "0.124",
		"1", 4,
		"Einheit von 0,25 m", "83,99,103,110,108",
		"", "pd-1237780340.htm",
		"", 1,
		"16,25,30,35,33-1", "0",
		 0)
	
		Entry[246] = new Element(
		246, "assets/thumb/GP66-PI_thumb.jpg",
		100, 100,
		"11-GP66-PI", "Kaffe Fassett, GP66-PI, Pinking Flower Pink",
		"floraler Druck in Pastelltönen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,97,102,107,45",
		"", "pd-581635468.htm",
		"", 1,
		"11,114,23,28,32,11-GP66", "0",
		 0)
	
		Entry[247] = new Element(
		247, "assets/thumb/GP47-WO.jpg",
		100, 100,
		"11-GP47-WO", "Kaffe Fassett, GP47-WO, Burnt Woodrose Woodstain",
		"großblumiger Druck in terrakotta, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,94,95,100,107,109,37",
		"", "pd-808785551.htm",
		"", 1,
		"11,114,21,211,26,32,33-2,11-GP47", "0",
		 0)
	
		Entry[248] = new Element(
		248, "assets/thumb/Calypso-Driftwood_thumb.jpg",
		100, 100,
		"32180-11-1", "Moda, Odyssea, Calypso driftwood",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "85",
		"", "pd1506190190.htm",
		"", 1,
		"3218", "0",
		 0)
	
		Entry[249] = new Element(
		249, "assets/thumb/NP136k.jpg",
		100, 100,
		"12-136", "Jinny Beyer Palette, Hyacinth Pansy, NP#136",
		"Tintenblauer floraler Basic,  Preis pro Meter 15,80 Euro", "RJR / Jinny Beyer",
		"15.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "77,98,106,107,108",
		"", "pd-952462188.htm",
		"", 1,
		"12,24,31,32,33-1", "0",
		 0)
	
		Entry[250] = new Element(
		250, "assets/thumb/GP68-VE_thumb.jpg",
		100, 100,
		"11-GP68-VE", "Kaffe Fassett, GP68-VE, Brokate Floral, Verdigris",
		"großformatiger Blumendruck in zarten Türkistönen,  Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "60,2,23,99,102,107,109",
		"", "pd-787545767.htm",
		"", 1,
		"GP68,11,114,25,28,32,33-2", "0",
		 0)
	
		Entry[251] = new Element(
		251, "assets/thumb/AB03-OK_thumb.jpg",
		100, 100,
		"AB03-OK", "Amy Butler, Seeds Okra",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "78,99,106,108",
		"", "pd-1480283283.htm",
		"", 1,
		"13,25,31,33-1", "0",
		 0)
	
		Entry[252] = new Element(
		252, "assets/thumb/Calypso-kelp_thumb.jpg",
		100, 100,
		"32180-12-1", "Moda, Odyssea, Calypso kelp",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "85",
		"", "pd-1412550836.htm",
		"", 1,
		"3218", "0",
		 0)
	
		Entry[253] = new Element(
		253, "assets/thumb/GP66-BL_thumb.jpg",
		100, 100,
		"11-GP66-BL", "Kaffe Fassett, GP66-BL, Pinking Flower Blue",
		"floraler Druck blau/grün, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,98,107,45",
		"", "pd641940308.htm",
		"", 1,
		"11,114,24,32,11-GP66", "0",
		 0)
	
		Entry[254] = new Element(
		254, "assets/thumb/GP66-EA_thumb.jpg",
		100, 100,
		"11-GP66-EA", "Kaffe Fassett, GP66-EA, Pinking Flower Earth",
		"floraler Druck in Erdtönen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,97,100,107",
		"", "pd-2098798531.htm",
		"", 1,
		"11,114,23,26,32", "0",
		 0)
	
		Entry[255] = new Element(
		255, "assets/thumb/AB46-TA_thumb.jpg",
		100, 100,
		"AB46-TA", "Amy Butler, Love Sunspots Tangerine",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "95,106,108,112,78",
		"", "pd919434049.htm",
		"", 1,
		"211,31,33-1,Punkte,13", "0",
		 0)
	
		Entry[256] = new Element(
		256, "assets/thumb/Tablerunner.JPG",
		100, 193,
		"4-07", "Nähanleitung, Tablerunner &quot;Garden Party&quot;",
		"ca. 55 cm x 106 cm", "Farbstoff",
		"7.99", "0.2",
		"1", 1,
		"Stück", "87,117,114",
		"", "pd-397553655.htm",
		"", 1,
		"AH,42,41", "0",
		 0)
	
		Entry[257] = new Element(
		257, "assets/thumb/Poseidon-kelp_thumb.jpg",
		100, 100,
		"32181-14-1", "Moda, Odyssea, Poseidon kelp",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "85",
		"", "pd-1068870054.htm",
		"", 1,
		"3218", "0",
		 0)
	
		Entry[258] = new Element(
		258, "assets/thumb/AB15-GY_thumb.jpg",
		100, 100,
		"AB15-GY", "Amy Butler, Water Lilly, Grey",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "78,101,107,109",
		"", "pd-1059146636.htm",
		"", 1,
		"13,27,32,33-2", "0",
		 0)
	
		Entry[259] = new Element(
		259, "assets/thumb/Quilts in the sun Book 9.JPG",
		100, 129,
		"5-09", "Quilts in the sun",
		"Rowan Book No. 9  mit Entwürfen von Kaffe Fassett u. a.", "Rhintex / Kaffe Fassett",
		"24.95", "0.6",
		"2", 1,
		"Stück", "118,2",
		"", "pd1089480331.htm",
		"", 1,
		"5,11", "0",
		 0)
	
		Entry[260] = new Element(
		260, "assets/thumb/AB15-BR_thumb.jpg",
		100, 100,
		"AB15-BR", "Amy Butler, Water Lilly, Brown",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "78,99,100,107,109",
		"", "pd1197480945.htm",
		"", 1,
		"13,25,26,32,33-2", "0",
		 0)
	
		Entry[261] = new Element(
		261, "assets/thumb/GP69-PL_thumb.jpg",
		100, 100,
		"11-GP69-PL", "Kaffe Fassett, GP69-PL, Bekah, Plum",
		"großformatiger Blumendruck in Herbsttönen,  Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,103,107,109,61",
		"", "pd932150576.htm",
		"", 1,
		"11,114,30,32,33-2,GP69", "0",
		 0)
	
		Entry[262] = new Element(
		262, "assets/thumb/GP69-PA_thumb.jpg",
		100, 100,
		"11-GP69-PA", "Kaffe Fassett, GP69-PA, Bekah, Pastell",
		"großformatiger Blumendruck in zarten PastelltönenPreis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "61,2,23,102,107,109",
		"", "pd1278586217.htm",
		"", 1,
		"GP69,11,114,28,32,33-2", "0",
		 0)
	
		Entry[263] = new Element(
		263, "assets/thumb/AB19-SA_thumb.jpg",
		100, 100,
		"AB19-SA", "Amy Butler, Lacework Sage",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "78,99,107,109",
		"", "pd612875986.htm",
		"", 1,
		"13,25,32,33-2", "0",
		 0)
	
		Entry[264] = new Element(
		264, "assets/thumb/AB19-SL_thumb.jpg",
		100, 100,
		"AB19-GR", "Amy Butler, Lacework Grey",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "78,101,107,109",
		"", "pd1654173276.htm",
		"", 1,
		"13,27,32,33-2", "0",
		 0)
	
		Entry[265] = new Element(
		265, "assets/thumb/GP70-RD_thumb.jpg",
		100, 100,
		"11-GP70-RD", "Kaffe Fassett, GP70-RD, Spots Red",
		"Pünktchenstoff Rot/Orange, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,11,95,96,106,108,20",
		"", "pd1963836511.htm",
		"", 1,
		"11,113,211,22,31,33-1,GP70", "0",
		 0)
	
		Entry[266] = new Element(
		266, "assets/thumb/GP70-DU_Thumb.jpg",
		100, 100,
		"11-GP70-DU", "Kaffe Fassett, GP70-DU, Spots Duck Egg",
		"Pünktchenstoff Taubenblau, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "20,2,11,98,102,106,108",
		"", "pd1147745309.htm",
		"", 1,
		"GP70,11,113,24,28,31,33-1", "0",
		 0)
	
		Entry[267] = new Element(
		267, "assets/thumb/Poseidon-red_thumb.jpg",
		100, 100,
		"32181-15-1", "Moda, Odyssea, Poseidon Red Coral",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "85",
		"", "pd407063576.htm",
		"", 1,
		"3218", "0",
		 0)
	
		Entry[268] = new Element(
		268, "assets/thumb/GP69-OR_thumb.jpg",
		100, 100,
		"11-GP69-OR", "Kaffe Fassett, GP69-OR, Bekah, Orange",
		"großformatiger Blumendruck in Goldtönen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "61,2,23,95,107,109",
		"", "pd1552683105.htm",
		"", 1,
		"GP69,11,114,211,32,33-2", "0",
		 0)
	
		Entry[269] = new Element(
		269, "assets/thumb/GP69-GR_thumb.jpg",
		100, 100,
		"11-GP69-GR", "Kaffe Fassett, GP69-GR, Bekah, Grün",
		"großformatiger Blumendruck in Grün, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "61,2,23,99,107,109",
		"", "pd-1041935554.htm",
		"", 1,
		"GP69,11,114,25,32,33-2", "0",
		 0)
	
		Entry[270] = new Element(
		270, "assets/thumb/GP69-CO_thumb.jpg",
		100, 100,
		"11-GP69-CO", "Kaffe Fassett, GP69-CO, Bekah, cobalt",
		"großformatiger Blumendruck in Blaugrün, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "61,2,23,98,99,107,109",
		"", "pd-1180751402.htm",
		"", 1,
		"GP69,11,114,24,25,32,33-2", "0",
		 0)
	
		Entry[271] = new Element(
		271, "assets/thumb/Fig-Plum_thumb.jpg",
		100, 136,
		"42-4", "Nähanleitung für den Scrapquilt &quot;Feigen und Pflaumen&quot; ",
		"Bettüberwurf, ca. 210 cm x 135 cm", "Farbstoff",
		"4.99", "0.2",
		"1", 1,
		"Stück", "114,117",
		"", "pd1711447311.htm",
		"", 1,
		"41,42", "0",
		 0)
	
		Entry[272] = new Element(
		272, "assets/thumb/Fig-Plum_thumb.jpg",
		100, 136,
		"4-13", "Materialset für den Quilt &quot;Feigen und Pflaumen&quot;",
		"Bettüberwurf, ca. 210 cm x 135 cm", "Farbstoff",
		"33", "1.5",
		"1", 1,
		"Stück", "113",
		"", "pd-1666046507.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[273] = new Element(
		273, "assets/thumb/26036-18-thumb.jpg",
		100, 100,
		"26036-18", "Moda, Loft 1800, Orange Smoothie",
		"Preis pro Meter 15,00 Euro", "Rhintex / Kaffe Fassett",
		"15", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "119,84,95,96,107,109",
		"", "pd-23863281.htm",
		"1::1::30;", 1,
		"6,17,211,22,32,33-2", "0",
		 0)
	
		Entry[274] = new Element(
		274, "assets/thumb/Nautica-red_thumb.jpg",
		100, 100,
		"32183-21-1", "Moda, Odyssea, Nautica red coral",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "85",
		"", "pd1071280134.htm",
		"", 1,
		"3218", "0",
		 0)
	
		Entry[275] = new Element(
		275, "assets/thumb/Penelope-kelp_thumb.jpg",
		100, 100,
		"32185-14-1", "Moda, Odyssea, Penelope kelp",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "85",
		"", "pd522071460.htm",
		"", 1,
		"3218", "0",
		 0)
	
		Entry[276] = new Element(
		276, "assets/thumb/Homer-kelp_thumb.jpg",
		100, 100,
		"32187-14-1", "Moda, Odyssea, Homer kelp",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "85",
		"", "pd-360653710.htm",
		"", 1,
		"3218", "0",
		 0)
	
		Entry[277] = new Element(
		277, "assets/thumb/AB03-OL_thumb.jpg",
		100, 100,
		"AB03-OL", "Amy Butler, Seeds Olive",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "78,100,106,108",
		"", "pd-1072149601.htm",
		"", 1,
		"13,26,31,33-1", "0",
		 0)
	
		Entry[278] = new Element(
		278, "assets/thumb/AB17-SK_thumb.jpg",
		100, 100,
		"AB17-SK", "Amy Butler, Wall Flower, Sky",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "78,98,101,102,107,109",
		"", "pd-2131738384.htm",
		"", 1,
		"13,24,27,28,32,33-2", "0",
		 0)
	
		Entry[279] = new Element(
		279, "assets/thumb/GP83-JA_thumb.jpg",
		100, 100,
		"11-GP83-JA", "Kaffe Fassett, GP83-JA, Dancing Leaves Jade",
		"großflächiger Blätterdruck in Grüntönen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "51,2,23,99,107,109",
		"", "pd2015678733.htm",
		"", 1,
		"11-GP83,11,114,25,32,33-2", "0",
		 0)
	
		Entry[280] = new Element(
		280, "assets/thumb/PJ07_thumb.jpg",
		100, 100,
		"PJ07", "Rowan, PJ07, Geranium Duck Egg",
		"Blumenallover, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "75,99,103,107",
		"", "pd-1299076979.htm",
		"", 1,
		"11A,25,30,32", "0",
		 0)
	
		Entry[281] = new Element(
		281, "assets/thumb/S4515_thumb.jpg",
		100, 100,
		"11-LHS-4515", "Kaffe Fassett, LHS-4515, Light Haze Stripe Pewter",
		"feine ungleichmäßige Streifen in braun/olive, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "7,2,3,99,100,110",
		"", "pd-767886401.htm",
		"", 1,
		"1119,11,111,25,26,35", "0",
		 0)
	
		Entry[282] = new Element(
		282, "assets/thumb/S4490_thumb.jpg",
		100, 100,
		"11-LHS-4490", "Kaffe Fassett, LHS-4490, Light Haze Stripe Pine",
		"feine ungleichmäßige Streifen in flaschengrün, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "7,2,3,98,99,110",
		"", "pd897562487.htm",
		"", 1,
		"1119,11,111,24,25,35", "0",
		 0)
	
		Entry[283] = new Element(
		283, "assets/thumb/Red Heritage1.jpg",
		100, 100,
		"41-3", "Nähanleitung für den Quilt &quot;Red Heritage&quot;",
		"ca. 136 cm x 136 cm", "Farbstoff",
		"7.99", "0.2",
		"1", 1,
		"Stück", "114,117",
		"", "pd-1451963535.htm",
		"", 1,
		"41,42", "0",
		 0)
	
		Entry[284] = new Element(
		284, "assets/thumb/GP83-MO_thumb.jpg",
		100, 100,
		"11-GP83-MO", "Kaffe Fassett, GP83-MO, Dancing Leaves Moss",
		"großflächiger Blätterdruck in Erdltönen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,103,107,109,51",
		"", "pd872375404.htm",
		"", 1,
		"11,114,30,32,33-2,11-GP83", "0",
		 0)
	
		Entry[285] = new Element(
		285, "assets/thumb/GP87-CO_thumb.jpg",
		100, 100,
		"11-GP87-CO", "Kaffe Fassett, GP87-CO, Flower Dot Cobalt",
		"Streublümchen auf Blau, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,11,98,108,107,12",
		"", "pd67069134.htm",
		"", 1,
		"11,113,24,33-1,32,11-87", "0",
		 0)
	
		Entry[286] = new Element(
		286, "assets/thumb/LC01_thumb.jpg",
		100, 100,
		"LC01", "Rowan, LC01, Lille Collection Flower Sprays Periwinkle",
		"azurblauer Blumenallover, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "75,98,107",
		"", "pd962078023.htm",
		"", 1,
		"11A,24,32", "0",
		 0)
	
		Entry[287] = new Element(
		287, "assets/thumb/Floral-Bisque_thumb.jpg",
		100, 100,
		"4000-16", "Moda, Martinique, Floral Bisque",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "86,100,103,107,109,84",
		"", "pd-110594046.htm",
		"", 1,
		"400,26,30,32,33-2,17", "0",
		 0)
	
		Entry[288] = new Element(
		288, "assets/thumb/JI17_thumb.jpg",
		100, 100,
		"JI-17", "Japanischer Indigo-Fatquarter, 57,5 x 46 cm",
		"Preis pro Meter 20,85 Euro", "Farbstoff",
		"4.8", "0.05",
		"1", 1,
		"Stück", "83,98,108,111",
		"", "pd-209105900.htm",
		"", 1,
		"16,24,33-1,JP", "0",
		 0)
	
		Entry[289] = new Element(
		289, "assets/thumb/GP77-BL_thumb.jpg",
		100, 100,
		"11-GP77-BL", "Kaffe Fassett, GP77-BL, Silhouette, blue",
		"zweifarbiger Blumendruck in Blau, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,98,107,24",
		"", "pd-586081621.htm",
		"", 1,
		"11,114,24,32,11-77", "0",
		 0)
	
		Entry[290] = new Element(
		290, "assets/thumb/GP77-DU_thumb.jpg",
		100, 100,
		"11-GP77-DU", "Kaffe Fassett, GP77-DU, Silhouette, Duck Egg",
		"zweifarbiger Blumendruck in türkis/rosa, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,97,98,107,24",
		"", "pd-259867416.htm",
		"", 1,
		"11,114,23,24,32,11-77", "0",
		 0)
	
		Entry[291] = new Element(
		291, "assets/thumb/GP77-JA_thumb.jpg",
		100, 100,
		"11-GP77-JA", "Kaffe Fassett, GP77-JA, Silhouette, Jade",
		"zweifarbiger Blumendruck in grün, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,99,107,24",
		"", "pd1488796352.htm",
		"", 1,
		"11,114,25,32,11-77", "0",
		 0)
	
		Entry[292] = new Element(
		292, "assets/thumb/GP77-RO_thumb.jpg",
		100, 100,
		"11-GP77-RO", "Kaffe Fassett, GP77-RO, Silhouette, Rose",
		"zweifarbiger Blumendruck in rot/pink, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,96,107,24",
		"", "pd311269203.htm",
		"", 1,
		"11,114,22,32,11-77", "0",
		 0)
	
		Entry[293] = new Element(
		293, "assets/thumb/GP77-TO_thumb.jpg",
		100, 100,
		"11-GP77-TO", "Kaffe Fassett, GP77-TO, Silhouette, Tortoise Shell",
		"zweifarbiger Blumendruck in gelb/braun, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,100,107",
		"", "pd-729776142.htm",
		"", 1,
		"11,114,26,32", "0",
		 0)
	
		Entry[294] = new Element(
		294, "assets/thumb/GP77-WI_thumb.jpg",
		100, 100,
		"11-GP77-WI", "Kaffe Fassett, GP77-WI, Silhouette, Wine",
		"zweifarbiger Blumendruck in orange/rot, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,95,96,107,24",
		"", "pd-609535027.htm",
		"", 1,
		"11,114,211,22,32,11-77", "0",
		 0)
	
		Entry[295] = new Element(
		295, "assets/thumb/GP79-BR_thumb.jpg",
		100, 100,
		"11-GP79-BR", "Kaffe Fassett, GP79-BR, Stencil, Brown",
		"symmetrischer Blumendruck, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,100,107,109,25",
		"", "pd933362978.htm",
		"", 1,
		"11,114,26,32,33-2,11-79", "0",
		 0)
	
		Entry[296] = new Element(
		296, "assets/thumb/GP79-CR_thumb.jpg",
		100, 100,
		"11-GP79-CR", "Kaffe Fassett, GP79-CR, Stencil, Cream",
		"symmetrischer Blumendruck, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "25,2,23,101,107,109",
		"", "pd273652275.htm",
		"", 1,
		"11-79,11,114,27,32,33-2", "0",
		 0)
	
		Entry[297] = new Element(
		297, "assets/thumb/GP93-GR_thumb.jpg",
		100, 100,
		"11-GP93-GR", "Kaffe Fassett, GP93-GR, Lake Blossoms green",
		"floraler Druck in grün, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "54,2,23,99,107,109",
		"", "pd-1239411061.htm",
		"", 1,
		"11GP93,11,114,25,32,33-2", "0",
		 0)
	
		Entry[298] = new Element(
		298, "assets/thumb/GP93-REThumb.jpg",
		100, 100,
		"11-GP93-RE", "Kaffe Fassett, GP93-RE, Lake Blossoms red",
		"floraler Druck in rot/orange, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "54,2,23,95,96,107,109",
		"", "pd-858658877.htm",
		"", 1,
		"11GP93,11,114,211,22,32,33-2", "0",
		 0)
	
		Entry[299] = new Element(
		299, "assets/thumb/Farbe1.jpg",
		100, 76,
		"10-7-1", "Farbübungen zur Harmonielehre, PDF-Datei",
		"Erklärung und Übung für Ton-in-Ton-Harmonien", "",
		"3", "0",
		"1", 1,
		"Stück", "92,89",
		"", "pd1278264507.htm",
		"", 1,
		"10-3,10", "0",
		 0)
	
		Entry[300] = new Element(
		300, "assets/thumb/GP79-SC_thumb.jpg",
		100, 100,
		"11-GP79-SC", "Kaffe Fassett, GP79-SC, Stencil, Scarlett",
		"symmetrischer Blumendruck, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "25,2,23,96,107,109",
		"", "pd154766611.htm",
		"", 1,
		"11-79,11,114,22,32,33-2", "0",
		 0)
	
		Entry[301] = new Element(
		301, "assets/thumb/AB30-TA_thumb.jpg",
		100, 100,
		"AB30-TA", "Amy Butler, Nouveau Trees Tangerine",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "78,94,95,107,109",
		"", "pd85954610.htm",
		"", 1,
		"13,21,211,32,33-2", "0",
		 0)
	
		Entry[302] = new Element(
		302, "assets/thumb/GP88-RE_thumb.jpg",
		100, 100,
		"11-GP88-RE", "Kaffe Fassett, GP88-RE, Star Flower Red",
		"Streublümchen auf rotem Grund, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,11,96,103,107,108",
		"", "pd-1066494591.htm",
		"", 1,
		"11,113,22,30,32,33-1", "0",
		 0)
	
		Entry[303] = new Element(
		303, "assets/thumb/gefiederte Pfeile.jpg",
		100, 179,
		"4-02-1", "Materialset &quot;Gefiederte Pfeile&quot; aus dem Rowanbuch &quot;Quilt Romance&quot;",
		"134 cm x 176 cm", "Farbstoff",
		"139", "1",
		"1", 1,
		"Stück", "2,113",
		"", "pd372301936.htm",
		"", 1,
		"11,4", "0",
		 0)
	
		Entry[304] = new Element(
		304, "assets/thumb/GP81-MI_thumb.jpg",
		100, 100,
		"11-GP81-MI", "Kaffe Fassett, GP81-MI, Turkish Delight Mink",
		"großflächiger Ornamentdruck in Braun, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,100,107,109,49",
		"", "pd-1738118963.htm",
		"", 1,
		"11,114,26,32,33-2,11-GP81", "0",
		 0)
	
		Entry[305] = new Element(
		305, "assets/thumb/GP81-GO_thumb.jpg",
		100, 100,
		"11-GP81-GO", "Kaffe Fassett, GP81-GO, Turkish Delight Gold",
		"großflächiger Ornamentdruck in Orange, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "49,2,23,95,103,107,109",
		"", "pd672517939.htm",
		"", 1,
		"11-GP81,11,114,211,30,32,33-2", "0",
		 0)
	
		Entry[306] = new Element(
		306, "assets/thumb/GP81-GR.jpg",
		100, 100,
		"11-GP81-GR", "Kaffe Fassett, GP81-GR, Turkish Delight Grey",
		"großflächiger Ornamentdruck in Grau, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,101,102,107,109",
		"", "pd-145609264.htm",
		"", 1,
		"11,114,27,28,32,33-2", "0",
		 0)
	
		Entry[307] = new Element(
		307, "assets/thumb/GP29-GR_thumb.jpg",
		100, 100,
		"11-GP29-GR", "Kaffe Fassett, GP29-GR, Lotus Leaf, Green",
		"floraler Druck in grün-türkis-Tönen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,99,107,109,35",
		"", "pd1221971487.htm",
		"", 1,
		"11,114,25,32,33-2,11-GP29", "0",
		 0)
	
		Entry[308] = new Element(
		308, "assets/thumb/GP80-GR_thumb.jpg",
		100, 100,
		"11-GP80-GR", "Kaffe Fassett, GP80-GR, Daisy Green",
		"floraler Druck in grün, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,99,107,108,48",
		"", "pd-1606636401.htm",
		"", 1,
		"11,114,25,32,33-1,11-GP80", "0",
		 0)
	
		Entry[309] = new Element(
		309, "assets/thumb/GP74-GR_thumb.jpg",
		100, 100,
		"11-GP74-GR", "Kaffe Fassett, GP74-GR, Persimmon green",
		"Blumendruck in OlivegrünPreis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,99,107,46",
		"", "pd-1745780612.htm",
		"", 1,
		"11,114,25,32,11-GP74", "0",
		 0)
	
		Entry[310] = new Element(
		310, "assets/thumb/hexagontasche.jpg",
		100, 75,
		"42-9", "Nähanleitung Utensilientäschchen aus Hexagons",
		"PDF-File, wird portofrei per e-mail versandt", "Farbstoff",
		"5.99", "0.001",
		"1", 1,
		"Stück", "114,89",
		"", "pd-998663904.htm",
		"", 1,
		"41,10", "0",
		 0)
	
		Entry[311] = new Element(
		311, "assets/thumb/GP97-DU_thumb.jpg",
		100, 100,
		"11-GP97-DU", "Kaffe Fassett, GP97-DU, Bubble Flower Dust",
		"Blumenruck in blau/rost, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,98,103,107,58",
		"", "pd46198375.htm",
		"", 1,
		"11,114,24,30,32,11-GP97", "0",
		 0)
	
		Entry[312] = new Element(
		312, "assets/thumb/GP97-PI_thumb.jpg",
		100, 100,
		"11-GP97-PI", "Kaffe Fassett, GP97-PI, Bubble Flower Pink",
		"Blumenruck in pink/grün, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,97,99,107,58",
		"", "pd-1219639521.htm",
		"", 1,
		"11,114,23,25,32,11-GP97", "0",
		 0)
	
		Entry[313] = new Element(
		313, "assets/thumb/GP97-TE_thumb.jpg",
		100, 100,
		"11-GP97-TE", "Kaffe Fassett, GP97-TE, Bubble Flower Teal",
		"Blumenruck in rost/blau, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,95,98,103,107,58",
		"", "pd-527249705.htm",
		"", 1,
		"11,114,211,24,30,32,11-GP97", "0",
		 0)
	
		Entry[314] = new Element(
		314, "assets/thumb/GP94-GR_thumb.jpg",
		100, 100,
		"11-GP94-GR", "Kaffe Fassett, GP94-GR, Cabbage Patch green",
		"großflächiger floraler Druck in grün, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,99,107,109,55",
		"", "pd1905710116.htm",
		"", 1,
		"11,114,25,32,33-2,11-GP94", "0",
		 0)
	
		Entry[315] = new Element(
		315, "assets/thumb/GP94-YE-thumb.jpg",
		100, 100,
		"11-GP94-YE", "Kaffe Fassett, GP94-YE, Cabbage Patch yellow",
		"großflächiger floraler Druck in gelb, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,94,107,109,55",
		"", "pd-819529718.htm",
		"", 1,
		"11,114,21,32,33-2,11-GP94", "0",
		 0)
	
		Entry[316] = new Element(
		316, "assets/thumb/GP94-MA_thumb.jpg",
		100, 100,
		"11-GP94-MA", "Kaffe Fassett, GP94-MA, Cabbage Patch magenta",
		"großflächiger floraler Druck in magenta, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,97,107,109,55",
		"", "pd-1112464350.htm",
		"", 1,
		"11,114,23,32,33-2,11-GP94", "0",
		 0)
	
		Entry[317] = new Element(
		317, "assets/thumb/GP94-BL_thumb.jpg",
		100, 100,
		"11-GP94-BL", "Kaffe Fassett, GP94-BL, Cabbage Patch blue",
		"großflächiger floraler Druck in Blau, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,98,107,109,55",
		"", "pd-76756166.htm",
		"", 1,
		"11,114,24,32,33-2,11-GP94", "0",
		 0)
	
		Entry[318] = new Element(
		318, "assets/thumb/GP96-PI_thumb.jpg",
		100, 100,
		"11-GP96-PI", "Kaffe Fassett, GP96-PI, Henna Pink",
		"Blumenruck auf rosé, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,103,107,109,57",
		"", "pd1835027794.htm",
		"", 1,
		"11,114,30,32,33-2,11-GP96", "0",
		 0)
	
		Entry[319] = new Element(
		319, "assets/thumb/GP96-DU_thumb.jpg",
		100, 100,
		"11-GP96-DU", "Kaffe Fassett, GP96-DU, Henna Dusty",
		"Blumenruck auf rosé, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,95,103,107,109,57",
		"", "pd-683799958.htm",
		"", 1,
		"11,114,211,30,32,33-2,11-GP96", "0",
		 0)
	
		Entry[320] = new Element(
		320, "assets/thumb/GP96-YE_thumb.jpg",
		100, 100,
		"11-GP96-YE", "Kaffe Fassett, GP96-YE, Henna Yellow",
		"Blumenruck auf gelb, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,94,99,107,109,57",
		"", "pd-886694693.htm",
		"", 1,
		"11,114,21,25,32,33-2,11-GP96", "0",
		 0)
	
		Entry[321] = new Element(
		321, "assets/thumb/GP96-DUC_thumb.jpg",
		100, 100,
		"11-GP96-DUC", "Kaffe Fassett, GP96-DUC, Henna Duck Egg",
		"Blumenruck auf hellbalu, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,98,103,107,109,57",
		"", "pd-2441896.htm",
		"", 1,
		"11,114,24,30,32,33-2,11-GP96", "0",
		 0)
	
		Entry[322] = new Element(
		322, "assets/thumb/GP82-RO_thumb.jpg",
		100, 100,
		"11-GP82-RO", "Kaffe Fassett, GP82-RO, Stencil Carnation Rose",
		"zweifarbige Blumendruck wie Federzeichnung, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,97,106,107,50",
		"", "pd-80188047.htm",
		"", 1,
		"11,114,23,31,32,11-GP82", "0",
		 0)
	
		Entry[323] = new Element(
		323, "assets/thumb/GP82-GR_thumb.jpg",
		100, 100,
		"11-GP82-GR", "Kaffe Fassett, GP82-GR, Stencil Carnation Green",
		"zweifarbige Blumendruck wie Federzeichnung, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,99,106,107,50",
		"", "pd1220639081.htm",
		"", 1,
		"11,114,25,31,32,11-GP82", "0",
		 0)
	
		Entry[324] = new Element(
		324, "assets/thumb/GP82-OL_thumb.jpg",
		100, 100,
		"11-GP82-OL", "Kaffe Fassett, GP82-OL, Stencil Carnation Olive",
		"zweifarbige Blumendruck wie Federzeichnung, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,100,106,107,50",
		"", "pd961371233.htm",
		"", 1,
		"11,114,26,31,32,11-GP82", "0",
		 0)
	
		Entry[325] = new Element(
		325, "assets/thumb/GP82-LI._thumbjpg.jpg",
		100, 100,
		"11-GP82-LI", "Kaffe Fassett, GP82-LI, Stencil Carnation Lilac",
		"zweifarbige Blumendruck wie Federzeichnung, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,97,106,107,50",
		"", "pd1134163545.htm",
		"", 1,
		"11,114,23,31,32,11-GP82", "0",
		 0)
	
		Entry[326] = new Element(
		326, "assets/thumb/GP99-GR_thumb.jpg",
		100, 100,
		"11-GP99-GR", "Kaffe Fassett, GP99-GR, Wood Ear Green",
		"zweifarbiges organische Motiv, grün, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,99,106,107,59",
		"", "pd742829886.htm",
		"", 1,
		"11,114,25,31,32,11-GP99", "0",
		 0)
	
		Entry[327] = new Element(
		327, "assets/thumb/GP99-BL_thumb.jpg",
		100, 100,
		"11-GP99-BL", "Kaffe Fassett, GP99-BL, Wood Ear Blue",
		"zweifarbiges organische Motiv, blau, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "59,2,23,98,106,107",
		"", "pd-2011739489.htm",
		"", 1,
		"11-GP99,11,114,24,31,32", "0",
		 0)
	
		Entry[328] = new Element(
		328, "assets/thumb/GP99-RE_thumb.jpg",
		100, 100,
		"11-GP99-RE", "Kaffe Fassett, GP99-RE, Wood Ear Red",
		"zweifarbiges organische Motiv, rot, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "59,2,23,96,106,107",
		"", "pd-1917435305.htm",
		"", 1,
		"11-GP99,11,114,22,31,32", "0",
		 0)
	
		Entry[329] = new Element(
		329, "assets/thumb/GP99-OC_thumb.jpg",
		100, 100,
		"11-GP99-OC", "Kaffe Fassett, GP99-OC, Wood Ear Ochre",
		"zweifarbiges organische Motiv, gelb, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "59,2,23,94,106,107",
		"", "pd731662607.htm",
		"", 1,
		"11-GP99,11,114,21,31,32", "0",
		 0)
	
		Entry[330] = new Element(
		330, "assets/thumb/GP99-PU_thumb.jpg",
		100, 100,
		"11-GP99-PU", "Kaffe Fassett, GP99-PU, Wood Ear Purple",
		"zweifarbiges organische Motiv, violett, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "59,2,23,97,106,107",
		"", "pd-811188537.htm",
		"", 1,
		"11-GP99,11,114,23,31,32", "0",
		 0)
	
		Entry[331] = new Element(
		331, "assets/thumb/AB23-TA_thumb.jpg",
		100, 100,
		"AB23-TA", "Amy Butler, Garden Maze Tan",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "78,95,103,109",
		"", "pd1247397276.htm",
		"", 1,
		"13,211,30,33-2", "0",
		 0)
	
		Entry[332] = new Element(
		332, "assets/thumb/AB23-BR_thumb.jpg",
		100, 100,
		"AB23-BR", "Amy Butler, Garden Maze Brown",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "78,97,100,109",
		"", "pd375339990.htm",
		"", 1,
		"13,23,26,33-2", "0",
		 0)
	
		Entry[333] = new Element(
		333, "assets/thumb/AB32-LI_thumb.jpg",
		100, 100,
		"AB32-LI", "Amy Butler, Fresh Poppies Linen",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "78,100,107,109",
		"", "pd-1996245696.htm",
		"", 1,
		"13,26,32,33-2", "0",
		 0)
	
		Entry[334] = new Element(
		334, "assets/thumb/AB27-GO_thumb.jpg",
		100, 100,
		"AB27-GO", "Amy Butler,Optic Blossom Gold",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "78,95,107,109",
		"", "pd1673523290.htm",
		"", 1,
		"13,211,32,33-2", "0",
		 0)
	
		Entry[335] = new Element(
		335, "assets/thumb/AB31-OR_thumb.jpg",
		100, 100,
		"AB31-OR", "Amy Butler, Ripple Stripe Orange",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "78,95,97,103,110",
		"", "pd1301987742.htm",
		"", 1,
		"13,211,23,30,35", "0",
		 0)
	
		Entry[336] = new Element(
		336, "assets/thumb/Collage.jpg",
		100, 100,
		"10-3-1", "Farbübungen zur Harmonielehre, PDF-Datei",
		"Welche Farben harmonieren warum zusammen, Erklärung zum Aufbau von Farbtönen mit Übung", "",
		"3", "0",
		"1", 1,
		"Stück", "89,92",
		"", "pd-763638083.htm",
		"", 1,
		"10,10-3", "0",
		 0)
	
		Entry[337] = new Element(
		337, "assets/thumb/GP101-GO_thumb.jpg",
		100, 100,
		"11-GP101-GO", "Kaffe Fassett, GP101-GO, Buttons, Gold",
		"Braungelbe Knöpfe,  Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,11,94,100,108,14",
		"", "pd-1910075785.htm",
		"", 1,
		"11,113,21,26,33-1,11GP101", "0",
		 0)
	
		Entry[338] = new Element(
		338, "assets/thumb/GP71-OC_thumb.jpg",
		100, 100,
		"11-GP71-OC", "Kaffe Fassett, GP71-OC, Aboriginal ochre",
		"Pünktchenstoff Senfgelb, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,11,94,100,106,108,21",
		"", "pd-1279477457.htm",
		"", 1,
		"11,113,21,26,31,33-1,GP71", "0",
		 0)
	
		Entry[339] = new Element(
		339, "assets/thumb/AB25-LI_thumb.jpg",
		100, 100,
		"AB25-LI", "Amy Butler, Honeycomb Lime",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "78,99,106,108",
		"", "pd-1876111612.htm",
		"", 1,
		"13,25,31,33-1", "0",
		 0)
	
		Entry[340] = new Element(
		340, "assets/thumb/GP70-SL_thumb.jpg",
		100, 100,
		"11-GP70-SL", "Kaffe Fassett, GP70-SL, Spots Slate",
		"Pünktchenstoff Weiß/Blaugrau, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,11,98,101,106,108,20",
		"", "pd1251629479.htm",
		"", 1,
		"11,113,24,27,31,33-1,GP70", "0",
		 0)
	
		Entry[341] = new Element(
		341, "assets/thumb/GP70-IC_thumb.jpg",
		100, 100,
		"11-GP70-IC", "Kaffe Fassett, GP70-IC, Spots Ice",
		"Pünktchenstoff Gelb/Grau, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,11,94,100,106,108,20",
		"", "pd615570015.htm",
		"", 1,
		"11,113,21,26,31,33-1,GP70", "0",
		 0)
	
		Entry[342] = new Element(
		342, "assets/thumb/GP102-YE_thumb.jpg",
		100, 100,
		"11-GP102-YE", "Kaffe Fassett, GP102-YE, Gothic Yellow",
		"Großformatiger Symmetriedruck, gelb, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,94,107,109,27",
		"", "pd1073628202.htm",
		"", 1,
		"11,114,21,32,33-2,11-GP102", "0",
		 0)
	
		Entry[343] = new Element(
		343, "assets/thumb/GP86-DU_thumb.jpg",
		100, 100,
		"11-GP86-DU", "Kaffe Fassett, GP86-DU, Clouds, Duck Egg",
		"Wolkendruck in Pastelltönen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,71,94,95,99,102,103,109,74",
		"", "pd329776202.htm",
		"", 1,
		"11,118,21,211,25,28,30,33-2,11-GP86", "0",
		 0)
	
		Entry[344] = new Element(
		344, "assets/thumb/GP86-OC_thumb.jpg",
		100, 100,
		"11-GP86-OC", "Kaffe Fassett, GP86-OC, Clouds, Ochre",
		"Wolkendruck in Moosgrün, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,71,99,103,109,74",
		"", "pd-1394114079.htm",
		"", 1,
		"11,118,25,30,33-2,11-GP86", "0",
		 0)
	
		Entry[345] = new Element(
		345, "assets/thumb/GP90-YE_thumb.jpg",
		100, 100,
		"11-GP90-YE", "Kaffe Fassett, GP90-YE, Chevron Stripes Yellow",
		"diagonale Streifen Multicolor, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,62,94,102,110,63",
		"", "pd-647214119.htm",
		"", 1,
		"11,115,21,28,35,11-GP90-OC", "0",
		 0)
	
		Entry[346] = new Element(
		346, "assets/thumb/GP90-GR_thumb.jpg",
		100, 100,
		"11-GP90-GR", "Kaffe Fassett, GP90-GR, Chevron Stripes Green",
		"diagonale Streifen Multicolor, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,62,99,110,63",
		"", "pd-1736332079.htm",
		"", 1,
		"11,115,25,35,11-GP90-OC", "0",
		 0)
	
		Entry[347] = new Element(
		347, "assets/thumb/GP95-PA_thumb.jpg",
		100, 100,
		"11-GP95-PA", "Kaffe Fassett, GP95-PA, Russian Rose, pastel",
		"großflächiger Rosendruck in Pastelltönen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,102,103,107,109,56",
		"", "pd-1554152247.htm",
		"", 1,
		"11,114,28,30,32,33-2,11-GP95", "0",
		 0)
	
		Entry[348] = new Element(
		348, "assets/thumb/MyPage1.jpg",
		100, 138,
		"4-01", "Nähanleitung für den Quilt &quot;Flutterby&quot;",
		"ca. 205 cm x 205 cm", "",
		"4.99", "0",
		"1", 1,
		"Stück", "114,117",
		"", "pd1251631420.htm",
		"", 1,
		"41,42", "0",
		 0)
	
		Entry[349] = new Element(
		349, "assets/thumb/MyPage1.jpg",
		100, 138,
		"4-01-1", "Materialset für den Quilt &quot;Flutterby&quot; mit Stoffen von Moda",
		"ca. 205 cm x 205 cm, nur Top, ohne Vlies und Rückseite", "",
		"75", "0",
		"1", 1,
		"Stück", "113",
		"", "pd-891945720.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[350] = new Element(
		350, "assets/thumb/Pure_White.jpg",
		100, 134,
		"4-06-1", "Nähanleitung für den Quilt &quot;Pure White&quot; ",
		"ca. 200 cm x 200 cm, pro Packung", "Farbstoff",
		"3.99", "0.2",
		"1", 1,
		"Stück", "114,117",
		"", "pd-1640275039.htm",
		"", 1,
		"41,42", "0",
		 0)
	
		Entry[351] = new Element(
		351, "assets/thumb/Spumoni.JPG",
		100, 419,
		"6-020", "Hoffman Bali Batik, Strips, 2,5&quot;, 40 Stück, Farbrichtung &quot;Spumoni&quot;",
		"", "",
		"39.8", "501",
		"1", 1,
		"Stück", "103,120",
		"", "pd-1281257519.htm",
		"", 1,
		"30,6-1", "0",
		 0)
	
		Entry[352] = new Element(
		352, "assets/thumb/AB01-OK_thumb.jpg",
		100, 100,
		"AB01-OK", "Amy Butler, Eyelashes Okra",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "100,108,78",
		"", "pd1275813638.htm",
		"", 1,
		"26,33-1,13", "0",
		 0)
	
		Entry[353] = new Element(
		353, "assets/thumb/AB01-LI_thumb.jpg",
		100, 100,
		"AB01-LI", "Amy Butler, Eyelashes Lime",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "78,99,108",
		"", "pd-1269166233.htm",
		"", 1,
		"13,25,33-1", "0",
		 0)
	
		Entry[354] = new Element(
		354, "assets/thumb/Jelly Mably.jpg",
		100, 68,
		"6-022", "Westminster Brandon Mably Designer Roll",
		"Dieses Set enthält 30 Streifen 2,5&quot; breit, die komplette Collection Mably Collective 2009", "",
		"33", "501",
		"1", 1,
		"Stück", "103,120",
		"", "pd-276731957.htm",
		"", 1,
		"30,6-1", "0",
		 0)
	
		Entry[355] = new Element(
		355, "assets/thumb/Flutterby.jpg",
		100, 100,
		"6-024", "Moda &quot;Flutterby&quot; Jelly Roll",
		"Dieses Set enthält 40 Streifen 2,5&quot; breit", "",
		"44", "501",
		"1", 1,
		"Stück", "120",
		"", "pd1847042307.htm",
		"", 1,
		"6-1", "0",
		 0)
	
		Entry[356] = new Element(
		356, "assets/thumb/AB01-OR_thumb.jpg",
		100, 100,
		"AB01-OR", "Amy Butler, Eyelashes Orange",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "78,94,95,108",
		"", "pd2055174376.htm",
		"", 1,
		"13,21,211,33-1", "0",
		 0)
	
		Entry[357] = new Element(
		357, "assets/thumb/AB01-PI_thumb.jpg",
		100, 100,
		"AB01-PI", "Amy Butler, Eyelashes Pine",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "78,98,100,108",
		"", "pd1094896322.htm",
		"", 1,
		"13,24,26,33-1", "0",
		 0)
	
		Entry[358] = new Element(
		358, "assets/thumb/AB04-BL_thumb.jpg",
		100, 100,
		"AB04-BL", "Amy Butler, Henna Paisley Blue",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "78,100,107,109",
		"", "pd1958580940.htm",
		"", 1,
		"13,26,32,33-2", "0",
		 0)
	
		Entry[359] = new Element(
		359, "assets/thumb/AB04-TU_thumb.jpg",
		100, 100,
		"AB04-TU", "Amy Butler, Henna Paisley Turquoise",
		"Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "78,98,99,107,109",
		"", "pd-808290426.htm",
		"", 1,
		"13,24,25,32,33-2", "0",
		 0)
	
		Entry[360] = new Element(
		360, "assets/thumb/GP108-CH_thumb.jpg",
		100, 100,
		"11-GP108-CH", "Kaffe Fassett, GP108-CH, Rustic Floral, Charcoal",
		"großer Blumendruck, dunkelblau, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,98,103,107,109,31",
		"", "pd1261907239.htm",
		"", 1,
		"11,114,24,30,32,33-2,11-GP108", "0",
		 0)
	
		Entry[361] = new Element(
		361, "assets/thumb/GP108-KI_thumb.jpg",
		100, 100,
		"11-GP108-KI", "Kaffe Fassett, GP108-KI, Rustic Floral, Kiwi",
		"großer Blumendruck, beige, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "31,2,23,102,103,107,109",
		"", "pd2137599251.htm",
		"", 1,
		"11-GP108,11,114,28,30,32,33-2", "0",
		 0)
	
		Entry[362] = new Element(
		362, "assets/thumb/GP108-GR_thumb.jpg",
		100, 100,
		"11-GP108-GR", "Kaffe Fassett, GP108-GR, Rustic Floral, Green",
		"großer Blumendruck, grün, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,99,103,107,109",
		"", "pd2056177017.htm",
		"", 1,
		"11,114,25,30,32,33-2", "0",
		 0)
	
		Entry[363] = new Element(
		363, "assets/thumb/GP108-SA_thumb.jpg",
		100, 100,
		"11-GP108-SA", "Kaffe Fassett, GP108-SA, Rustic Floral, Sand",
		"großer Blumendruck, cremeweiß,  Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "31,2,23,102,103,107,109",
		"", "pd-1297013143.htm",
		"", 1,
		"11-GP108,11,114,28,30,32,33-2", "0",
		 0)
	
		Entry[364] = new Element(
		364, "assets/thumb/GP105-PU_thumb.jpg",
		100, 100,
		"11-GP105-PU", "Kaffe Fassett, GP105-PU, Suzani, Purple",
		"Blumenkreise, lila, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "28,2,23,97,107,109",
		"", "pd1451309828.htm",
		"", 1,
		"11-GP105,11,114,23,32,33-2", "0",
		 0)
	
		Entry[365] = new Element(
		365, "assets/thumb/GP105-PI_thumb.jpg",
		100, 100,
		"11-GP105-PI", "Kaffe Fassett, GP105-PI, Suzani, Pink",
		"Blumenkreise, rosa, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "28,2,23,97,102,107,109",
		"", "pd1799276636.htm",
		"", 1,
		"11-GP105,11,114,23,28,32,33-2", "0",
		 0)
	
		Entry[366] = new Element(
		366, "assets/thumb/B4.jpg",
		100, 65,
		"10-6-1", "Perfektes Binding, PDF-Datei",
		"Saubere Ecken, gleichmäßig breite Einfassung, Schritt-für-Schritt-Anleitung", "",
		"3", "0",
		"1", 1,
		"Zentimeter", "89,90",
		"", "pd1314628168.htm",
		"", 1,
		"10,10-1", "0",
		 0)
	
		Entry[367] = new Element(
		367, "assets/thumb/GP73-LI.jpg",
		100, 100,
		"11-GP73-LI", "Kaffe Fassett, GP73-LI, Clover Lilac",
		"Kleeblättchen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,11,97,102,106,108,18",
		"", "pd-191540637.htm",
		"", 1,
		"11,113,23,28,31,33-1,11-GP73", "0",
		 0)
	
		Entry[368] = new Element(
		368, "assets/thumb/GP109-WH_thumb.jpg",
		100, 100,
		"11-GP109-WH", "Kaffe Fassett, GP109-WH, Plink, White",
		"kleine Blumenkreise, weiß, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,102,103,107,108,32",
		"", "pd-1369763209.htm",
		"", 1,
		"11,114,28,30,32,33-1,11-GP109", "0",
		 0)
	
		Entry[369] = new Element(
		369, "assets/thumb/GP109-SA_thumb.jpg",
		100, 100,
		"11-GP109-SA", "Kaffe Fassett, GP109-SA, Plink, Sand",
		"kleine Blumenkreise, beige, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "32,2,23,102,103,107,108",
		"", "pd-61422859.htm",
		"", 1,
		"11-GP109,11,114,28,30,32,33-1", "0",
		 0)
	
		Entry[370] = new Element(
		370, "assets/thumb/GP109-RU_thumb.jpg",
		100, 100,
		"11-GP109-RU", "Kaffe Fassett, GP109-RU, Plink, Rust",
		"kleine Blumenkreise, rostrot, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "32,2,23,100,103,107,108",
		"", "pd1960145176.htm",
		"", 1,
		"11-GP109,11,114,26,30,32,33-1", "0",
		 0)
	
		Entry[371] = new Element(
		371, "assets/thumb/GP109-GR_thumb.jpg",
		100, 100,
		"11-GP109-GR", "Kaffe Fassett, GP109-GR, Plink, Green",
		"kleine Blumenkreise, grün, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "32,2,23,99,107,108",
		"", "pd-1790747087.htm",
		"", 1,
		"11-GP109,11,114,25,32,33-1", "0",
		 0)
	
		Entry[372] = new Element(
		372, "assets/thumb/GP110-RE_thumb.jpg",
		100, 100,
		"11-GP110-RE", "Kaffe Fassett, GP110-RE, Cogs, Red",
		"kleine Blumengruppen, rot, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "33,2,23,96,97,107,108",
		"", "pd904236087.htm",
		"", 1,
		"11-GP110,11,114,22,23,32,33-1", "0",
		 0)
	
		Entry[373] = new Element(
		373, "assets/thumb/GP110-BL_thumb.jpg",
		100, 100,
		"11-GP110-BL", "Kaffe Fassett, GP110-BL, Cogs, Blue",
		"kleine Blumengruppen, blau, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "33,2,23,98,99,107,108",
		"", "pd-811664892.htm",
		"", 1,
		"11-GP110,11,114,24,25,32,33-1", "0",
		 0)
	
		Entry[374] = new Element(
		374, "assets/thumb/GP110-YE_thumb.jpg",
		100, 100,
		"11-GP110-YE", "Kaffe Fassett, GP110-YE, Cogs, Yellow",
		"kleine Blumengruppen, gelb, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "33,2,23,94,107,108",
		"", "pd645071525.htm",
		"", 1,
		"11-GP110,11,114,21,32,33-1", "0",
		 0)
	
		Entry[375] = new Element(
		375, "assets/thumb/GP110-DU_thumb.jpg",
		100, 100,
		"11-GP110-DU", "Kaffe Fassett, GP110-DU, Cogs, Dusty",
		"kleine Blumengruppen, grau, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "33,2,23,103,107,108",
		"", "pd972355869.htm",
		"", 1,
		"11-GP110,11,114,30,32,33-1", "0",
		 0)
	
		Entry[376] = new Element(
		376, "assets/thumb/bamboo_thumb.jpg",
		100, 174,
		"72-02", "Luna Bambusvlies, 50/50, 240 cm breit",
		"hochwertiges Naturfaservlies, 50% Bambusfaser, 50 % Baumwolle, Preis pro Meter 12,00 Euro", "Rhintex / Kaffe Fassett",
		"12", "0.5",
		"1", 4,
		"Einheit von 0,25 m", "124,122",
		"", "pd-1301330159.htm",
		"", 1,
		"72,7", "0",
		 0)
	
		Entry[377] = new Element(
		377, "assets/thumb/volumen_kjpg.jpg",
		100, 100,
		"72-03", "Freudenberg Volumenvlies, 100 % Polyester, 150  cm breit",
		"Preis pro Meter 8,00 Euro", "Rhintex / Kaffe Fassett",
		"8", "0.5",
		"1", 4,
		"Einheit von 0,25 m", "124,122",
		"", "pd1953403437.htm",
		"", 1,
		"72,7", "0",
		 0)
	
		Entry[378] = new Element(
		378, "assets/thumb/Juni Applique.JPG",
		100, 100,
		"10-2-6", "Appliquéblock &quot;Flower and Bird&quot;, PDF-Datei",
		"Block mit Schablonen", "",
		"3", "0",
		"1", 1,
		"Stück", "91,89",
		"", "pd99985161.htm",
		"", 1,
		"10-2,10", "0",
		 0)
	
		Entry[379] = new Element(
		379, "assets/thumb/Amy-Butler-Tasche_thumb.jpg",
		100, 140,
		"42-10", "Nähanleitung für die Handtasche &quot;Hip to be square&quot;",
		"ca. 30 cm x 30 cm", "Farbstoff",
		"7.99", "0.125",
		"1", 1,
		"Stück", "114",
		"", "pd-375388073.htm",
		"", 1,
		"41", "0",
		 0)
	
		Entry[380] = new Element(
		380, "assets/thumb/GP106-YE_thumb.jpg",
		100, 100,
		"11-GP106-YE", "Kaffe Fassett, GP106-YE, Embroidered Shawl, Yellow",
		"Blumenbouquet, gelb, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "2,23,94,107,109,29",
		"", "pd-1643816037.htm",
		"", 1,
		"11,114,21,32,33-2,11-GP106", "0",
		 0)
	
		Entry[381] = new Element(
		381, "assets/thumb/Amy-Butler-Tasche_thumb.jpg",
		100, 140,
		"4-15", "Materialset für die Handtasche &quot;Hip to be square&quot;",
		"ca. 30 cm x 30 cm", "Farbstoff",
		"34", "1.5",
		"1", 1,
		"Stück", "78,113",
		"", "pd1278600709.htm",
		"", 1,
		"13,4", "0",
		 0)
	
		Entry[382] = new Element(
		382, "assets/thumb/GP73-MI_thumb.jpg",
		100, 100,
		"11-GP73-MI", "Kaffe Fassett, GP73-MI, Clover Mint",
		"Kleeblättchen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "18,2,11,97,102,106,108",
		"", "pd385100353.htm",
		"", 1,
		"11-GP73,11,113,23,28,31,33-1", "0",
		 0)
	
		Entry[383] = new Element(
		383, "assets/thumb/GP73-BLA_thumb.jpg",
		100, 100,
		"11-GP73-BLA", "Kaffe Fassett, GP73-BLA, Clover Black",
		"Kleeblättchen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "18,2,11,101,106,108",
		"", "pd982228998.htm",
		"", 1,
		"11-GP73,11,113,27,31,33-1", "0",
		 0)
	
		Entry[384] = new Element(
		384, "assets/thumb/GP73-RU.jpg",
		100, 100,
		"11-GP73-RU", "Kaffe Fassett, GP73-RU, Clover Rust",
		"Kleeblättchen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "18,2,11,95,106,108",
		"", "pd-538609762.htm",
		"", 1,
		"11-GP73,11,113,211,31,33-1", "0",
		 0)
	
		Entry[385] = new Element(
		385, "assets/thumb/GP73-GR_thumb.jpg",
		100, 100,
		"11-GP73-GR", "Kaffe Fassett, GP73-GR, Clover Grey",
		"Kleeblättchen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "18,2,11,101,102,106,108",
		"", "pd-187188682.htm",
		"", 1,
		"11-GP73,11,113,27,28,31,33-1", "0",
		 0)
	
		Entry[386] = new Element(
		386, "assets/thumb/GP73-BLthumb.jpg",
		100, 100,
		"11-GP73-BL", "Kaffe Fassett, GP73-BL, Clover Blue",
		"Kleeblättchen, Preis pro Meter 16,80 Euro", "Rhintex / Kaffe Fassett",
		"16.8", "0.062",
		"1", 4,
		"Einheit von 0,25 m", "18,2,11,98,106,108",
		"", "pd-1738263753.htm",
		"", 1,
		"11-GP73,11,113,24,31,33-1", "0",
		 0)
	
		Entry[387] = new Element(
		387, "assets/thumb/Hobbs.jpg",
		100, 67,
		"72-01", "Luna Baumwollvlies, 80/20, 240 cm breit",
		"klassisches Baumwollvlies, 80 % Baumwolle, 20% Polyester, Preis pro Meter 8,00 Euro", "Rhintex / Kaffe Fassett",
		"8", "0.5",
		"1", 4,
		"Einheit von 0,25 m", "122,124",
		"", "pd-741427964.htm",
		"", 1,
		"7,72", "0",
		 0)
	
		Entry[388] = new Element(
		388, "assets/thumb/komplementaer.jpg",
		100, 67,
		"10-7-2", "Farbübungen zur Harmonielehre, PDF-Datei",
		"Erklärung und Übung für Komplementärfarben", "",
		"3", "0",
		"1", 1,
		"Stück", "92,89",
		"", "pd1278834197.htm",
		"", 1,
		"10-3,10", "0",
		 0)
	
		Entry[389] = new Element(
		389, "assets/thumb/ABC.jpg",
		100, 119,
		"4-16", "Materialset für den Kinderquilt &quot;A, B und C&quot;",
		"ca. 126 cm x 151 cm", "Farbstoff",
		"42", "1.5",
		"1", 1,
		"Stück", "113,0",
		"", "pd-2115118735.htm",
		"", 1,
		"4,01", "0",
		 0)
	
		Entry[390] = new Element(
		390, "assets/thumb/ABC.jpg",
		100, 119,
		"42-11", "Nähanleitung für den Kinderquilt &quot;A, B und C&quot;",
		"ca. 126 cm x 151 cm", "Farbstoff",
		"5.99", "0.125",
		"1", 1,
		"Stück", "0,114",
		"", "pd1959954634.htm",
		"", 1,
		"01,41", "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>Leider wurde kein entsprechendes Produkt gefunden. Bitte versuchen Sie es erneut...</TD></TR>"
				else return("");
				};
			};
		if(mySearchEngine.init=="false") return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap>Sie haben keine Suchkriterien angegeben. Bitte geben Sie Ihr Suchwort ein!</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();
			};
		};