	// 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/cart.jpg" width="19" height="15" alt="Artikel in den Warenkorb legen!" 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/anhaenger_schriftzug_small.jpg",
		90, 90,
		"66100-000.000.000", "Schlüsselanhänger",
		"Feuerwehr-Schriftzug, Metall", "",
		"5", "0.03",
		"1", 1,
		"Stück", "14",
		"", "pd-415518203.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/anhaenger_kelle_small.jpg",
		90, 90,
		"46100-000.000.000", "Schlüsselanhänger",
		"Feuerwehrkelle", "",
		"1.5", "0.01",
		"1", 1,
		"Stück", "14",
		"", "pd-561309249.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/anhaenger_fwmann_small.jpg",
		90, 90,
		"56100-000.000.000", "Schlüsselanhänger",
		"Feuerwehrmann", "",
		"2.6", "0.03",
		"1", 1,
		"Stück", "14",
		"", "pd1088180585.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/vipband_small.jpg",
		90, 90,
		"07100-016.000.000", "Schlüsselanhänger",
		"VIP-Band Feuerwehr", "",
		"2.6", "0.04",
		"1", 1,
		"Stück", "14",
		"", "pd1780057443.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/bodywarmer_feuerwehr_small.jpg",
		90, 90,
		"60000-006.006.000", "Arbeitsweste",
		"FEUERWEHR reflekt-silber roter Streifen", "",
		"57", "0.53",
		"1", 1,
		"Stück", "0",
		"Grösse;XL@", "pd989126927.htm",
		"", 1,
		"1", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/lineal_small.jpg",
		90, 90,
		"72100-000.031.000", "Lineal",
		"Flori 15cm", "",
		"0.8", "0.01",
		"1", 1,
		"Stück", "15",
		"", "pd-1522782031.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/cap_fdny_small.jpg",
		90, 90,
		"64000-006.000.000", "Cap",
		"FDNY", "",
		"6.5", "0.08",
		"1", 1,
		"Stück", "1",
		"", "pd-708505105.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/cap_grisu_small.jpg",
		90, 90,
		"05000-004.000.000", "Cap",
		"Grisu", "",
		"12", "0.08",
		"1", 1,
		"Stück", "1",
		"", "pd-602573789.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/cap_feuerwehr1_small.jpg",
		90, 90,
		"84000-006.000.000", "Cap",
		"FEUERWEHR reflekt-silber", "",
		"8", "0.08",
		"1", 1,
		"Stück", "1",
		"", "pd943358887.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/cap_feuerwehrschrift_small.jpg",
		90, 90,
		"41200-006.000.000", "Cap",
		"Feuerwehr neonrot", "",
		"8", "0.08",
		"1", 1,
		"Stück", "1",
		"", "pd-940847571.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/cap_rennen_small.jpg",
		90, 90,
		"15000-008.000.000", "Cap",
		"Hausbesuche", "",
		"11.9", "0.08",
		"1", 1,
		"Stück", "1",
		"", "pd843596895.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/cap_brooklyn_small.jpg",
		90, 90,
		"54000-008.000.000", "Cap",
		"Brooklyn &quot;Feuerwehr&quot;", "",
		"11", "0.07",
		"1", 1,
		"Stück", "1",
		"", "pd1374312985.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/tshirt_feuerwehrschrift_small.jpg",
		90, 90,
		"21200-006.005.000", "T-Shirt",
		"Feuerwehr neonrot", "",
		"12.9", "0.18",
		"1", 1,
		"Stück", "5",
		"Grösse;L@", "pd-328387715.htm",
		"", 1,
		"8", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/enjoy_small.jpg",
		90, 90,
		"49100-016.005.000", "T-Shirt",
		"Enjoy Firefighting", "",
		"12.9", "0.18",
		"1", 1,
		"Stück", "5",
		"Grösse;L@", "pd1300355585.htm",
		"", 1,
		"8", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/tshirt_ff1_small.jpg",
		90, 90,
		"99100-006.005.000", "T-Shirt",
		"FEUERWEHR reflekt-silber", "",
		"13", "0.18",
		"1", 1,
		"Stück", "5",
		"Grösse;L@", "pd-1427072525.htm",
		"", 1,
		"8", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/tshirt_notrufblau_small.jpg",
		90, 90,
		"89100-006.004.000", "T-Shirt",
		"Feuerwehr Notruf 112", "",
		"14", "0.18",
		"1", 1,
		"Stück", "5",
		"", "pd-990577419.htm",
		"", 1,
		"8", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/tshirt_ffrot_small.jpg",
		90, 90,
		"79100-016.005.000", "T-Shirt",
		"Feuerwehr (F)", "",
		"11.9", "0.18",
		"1", 1,
		"Stück", "5",
		"Grösse;L@", "pd601587033.htm",
		"", 1,
		"8", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/tshirt_rennen_small.jpg",
		90, 90,
		"50200-008.005.000", "T-Shirt",
		"Hausbesuche", "",
		"14", "0.18",
		"1", 1,
		"Stück", "5",
		"Grösse;L@", "pd-661888981.htm",
		"", 1,
		"8", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/tshirt_feuerwehrrot_small.jpg",
		90, 90,
		"20200-006.005.000", "T-Shirt",
		"Feuerwehr, roter Streifen", "",
		"14.9", "0.18",
		"1", 1,
		"Stück", "5",
		"Grösse;L@", "pd-1669989257.htm",
		"", 1,
		"8", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/tshirt_112_small.jpg",
		90, 90,
		"40200-006.005.000", "T-Shirt",
		"Freiwillige Feuerwehr 112", "",
		"18.5", "0.18",
		"1", 1,
		"Stück", "5",
		"Grösse;L@", "pd2018746559.htm",
		"", 1,
		"8", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/sweatshirt_rennen_small.jpg",
		90, 90,
		"68100-008.005.000", "Sweatshirt",
		"Hausbesuche", "",
		"29", "0.45",
		"1", 1,
		"Stück", "4",
		"Grösse;L@", "pd1201979723.htm",
		"", 1,
		"7", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/sweatshirt_notruf_small.jpg",
		90, 90,
		"38100-006.007.000", "Sweatshirt",
		"Feuerwehr Notruf 112", "",
		"29", "0.45",
		"1", 1,
		"Stück", "4",
		"Grösse;XXL@", "pd-1676197611.htm",
		"", 1,
		"7", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/sweatshirt_ff_normal_small.jpg",
		90, 90,
		"48100-006.005.000", "Sweatshirt",
		"FEUERWEHR reflekt-silber", "",
		"25", "0.45",
		"1", 1,
		"Stück", "4",
		"Grösse;L@", "pd1274943055.htm",
		"", 1,
		"7", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/sweatshirt_feuerwehrrot_small.jpg",
		90, 90,
		"62200-008.005.000", "Sweatshirt",
		"Feuerwehr, roter Streifen", "",
		"42", "0.45",
		"1", 1,
		"Stück", "4",
		"Grösse;L@", "pd-1294354669.htm",
		"", 1,
		"7", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/poloshirt_ff_small.jpg",
		90, 90,
		"65100-006.005.000", "Poloshirt",
		"FEUERWEHR reflekt-silber", "",
		"17", "0.24",
		"1", 1,
		"Stück", "3",
		"Grösse;L@", "pd-833690691.htm",
		"", 1,
		"5", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/geschenk_small.jpg",
		90, 90,
		"75000-000.000.000", "Einpackservice",
		"inkl. Geschenkpapier", "",
		"3", "0.08",
		"1", 1,
		"Stück", "21",
		"", "pd1368907071.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/bodywarmer_feuerwehr2_small.jpg",
		90, 90,
		"50000-006.006.000", "Arbeitsweste",
		"FEUERWEHR reflekt-silber Reflektorstreifen", "",
		"69", "0.53",
		"1", 1,
		"Stück", "0",
		"Grösse;XL@", "pd1093684549.htm",
		"", 1,
		"1", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/koppel_small.jpg",
		90, 90,
		"70100-008.001.000", "Koppelgürtel",
		"Feuerwehr, Leder, Einheitsgröße", "",
		"19.95", "0.51",
		"1", 1,
		"Stück", "7",
		"", "pd-1175344436.htm",
		"", 1,
		"6", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/etui_small.jpg",
		90, 90,
		"80100-004.000.000", "Kosmetiktasche",
		"mit Schlüsselanhänger Feuerwehrkelle", "",
		"3.5", "0.08",
		"1", 1,
		"Stück", "15",
		"", "pd-93758442.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/tshirt_fdnyworker_small.jpg",
		90, 90,
		"51200-006.005.000", "T-Shirt",
		"FDNY Work", "",
		"14.9", "0.18",
		"1", 1,
		"Stück", "5",
		"Grösse;L@", "pd1095951900.htm",
		"", 1,
		"8", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/tshirt_fdny2_small.jpg",
		90, 90,
		"71200-008.005.000", "T-Shirt",
		"FDNY Harley-Design", "",
		"14.9", "0.18",
		"1", 1,
		"Stück", "5",
		"Grösse;L@", "pd851212071.htm",
		"", 1,
		"8", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/anhaengerffbaer_small.jpg",
		90, 90,
		"36100-000.000.000", "Schlüsselanhänger",
		"Feuerwehrbär", "",
		"4.4", "0.06",
		"1", 1,
		"Stück", "14",
		"", "pd-180767843.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/krawattenclip_small.jpg",
		90, 90,
		"01100-010.000.000", "Krawattennadel",
		"FEUERWEHR", "",
		"13.9", "0.02",
		"1", 1,
		"Stück", "7",
		"Farbe;Gold@", "pd703336311.htm",
		"", 1,
		"6", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/krawatte_small.jpg",
		90, 90,
		"90100-006.000.000", "Krawatte",
		"Dienstkrawatte mit Emblem", "",
		"7.95", "0.24",
		"1", 1,
		"Stück", "7",
		"", "pd1140388660.htm",
		"", 1,
		"6", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/flaschenoeffnerkupplung_small.jpg",
		90, 90,
		"96100-000.000.000", "Schlüsselanhänger",
		"Kupplungsschlüssel als Flaschenöffner, Edelstahl", "",
		"4.25", "0.02",
		"1", 1,
		"Stück", "14",
		"", "pd-1475519358.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/schal_small.jpg",
		90, 90,
		"06000-020.046.000", "Fan-Schal",
		"FEUERWEHR", "",
		"14.95", "0.25",
		"1", 1,
		"Stück", "7",
		"", "pd1103668759.htm",
		"", 1,
		"6", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/schluesselanhaengerhelm_small.jpg",
		90, 90,
		"76100-000.000.000", "Schlüsselanhänger",
		"Helm 112", "",
		"1.25", "0.08",
		"1", 1,
		"Stück", "14",
		"", "pd-382291237.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/cap_notruf_112_small.jpg",
		90, 90,
		"94000-020.000.000", "Cap",
		"FEUERWEHR Notruf 112 mit Abzeichen gestickt", "",
		"12.5", "0.08",
		"1", 1,
		"Stück", "1",
		"", "pd-749395299.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/tshirtrenner_small.jpg",
		90, 90,
		"15200-008.005.000", "T-Shirt",
		"Feuerwehrrenner", "",
		"12.5", "0.18",
		"1", 1,
		"Stück", "5",
		"Grösse;L@", "pd1627427728.htm",
		"", 1,
		"8", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/saflf_small.jpg",
		90, 90,
		"25200-000.000.000", "Schlüsselanhänger",
		"Flugfeldlöschfahrzeug", "",
		"3", "0.03",
		"1", 1,
		"Stück", "14",
		"", "pd-1242127056.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/babytshirt_small.jpg",
		90, 90,
		"92000-001.014.000", "Baby-T-Shirt",
		"&quot;To The Rescue&quot;", "",
		"5", "0.1",
		"1", 1,
		"Stück", "6",
		"Grösse;68@", "pd-1760190130.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/tshirt_ff1_small.jpg",
		90, 90,
		"10200-006.018.000", "T-Shirt",
		"FEUERWEHR reflekt-silber", "",
		"10", "0.15",
		"1", 1,
		"Stück", "6",
		"Grösse;116@", "pd-236528351.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/babysockegruen_small.jpg",
		90, 90,
		"82000-007.011.000", "Baby-Socken",
		"Feuerwehr, Doppelpack, grün", "",
		"3.9", "0.05",
		"1", 1,
		"Stück", "6",
		"Grösse;62/68@", "pd176317678.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/babysockegrau_small.jpg",
		90, 90,
		"72000-021.011.000", "Baby-Socken",
		"Feuerwehr, Doppelpack, grau", "",
		"3.9", "0.05",
		"1", 1,
		"Stück", "6",
		"Grösse;62/68@", "pd-964839067.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/lampenguerteltasche_small.jpg",
		90, 90,
		"98000-008.000.000", "Gürteltasche",
		"für Arbeitslampe UK 4AA", "",
		"9.95", "0.2",
		"1", 1,
		"Stück", "11",
		"", "pd-565750901.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/lampen_halterungplastik_small.jpg",
		90, 90,
		"39000-000.000.000", "Helmhalterung",
		"für Arbeitslampe UK 4AA, Kunststoff", "",
		"24.9", "0.25",
		"1", 1,
		"Stück", "11",
		"", "pd638828883.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/tasse_small.jpg",
		90, 90,
		"09100-019.000.000", "Tasse",
		"FEUERWEHR", "",
		"6.5", "0.51",
		"1", 1,
		"Stück", "13",
		"", "pd-1305725555.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/wuppie_small.jpg",
		90, 90,
		"83200-024.058.000", "Wuppie",
		"Feuerwehrmann", "",
		"1.75", "0.05",
		"1", 1,
		"Stück", "17",
		"", "pd2092343012.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/nummernschildverstaerker_small.jpg",
		90, 90,
		"73200-008.000.000", "Nummernschildverstärker",
		"mit FEUERWEHR-Werbung", "",
		"11.45", "0.6",
		"1", 1,
		"Stück", "13",
		"", "pd645428505.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/blaulicht_small.jpg",
		90, 90,
		"43000-000.000.000", "Blaulicht",
		"Mini", "",
		"4.95", "0.51",
		"1", 1,
		"Stück", "19",
		"", "pd1121888496.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/feuerwehrmannfredmagnet_small.jpg",
		90, 90,
		"36200-020.063.000", "Magnet",
		"Feuerwehrmann Fred", "",
		"4.2", "0.1",
		"1", 1,
		"Stück", "13",
		"", "pd112440006.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/gutschein_small.jpg",
		90, 90,
		"08000-000.000.000", "Geschenkgutschein",
		"feuerwehronlineshop.de", "",
		"1", "0",
		"1", 1,
		"Stück", "20",
		"", "pd-605160719.htm",
		"", 1,
		"17", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/brillen_small.jpg",
		90, 90,
		"12100-000.000.000", "Leuchtartikel",
		"Brille", "",
		"2.5", "0.1",
		"1", 1,
		"Stück", "16",
		"Farbe;Blau@", "pd1138643936.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/matchbox_dennis_small.jpg",
		90, 90,
		"46200-000.000.000", "Modellauto",
		"MATCHBOX Drehleiter", "",
		"1.95", "0.1",
		"1", 1,
		"Stück", "17",
		"", "pd1139340157.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/bleistiftset_small.jpg",
		90, 90,
		"44200-006.062.000", "Bleistift",
		"Feuerwehr", "",
		"0.5", "0.05",
		"1", 1,
		"Stück", "15",
		"Farbe;Blau@", "pd-2026085779.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/aufkleber_ortsname_small.jpg",
		90, 90,
		"86200-020.041.000", "Aufkleber",
		"mit Ortsnamen und Wappen -Sonderanfertigung-", "",
		"5.74", "1",
		"1", 1,
		"Stück", "9",
		"Artikel;Außen@", "pd-567018291.htm",
		"", 25,
		"10", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/kalender_Feuerwehrfrauen_2011_small.jpg",
		90, 90,
		"60400-000.000.000", "Kalender",
		"Feuerwehr-Frauen 2011", "",
		"14.95", "0.25",
		"1", 1,
		"Stück", "12",
		"", "pd-1664285877.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/leuchtschnuller_small.jpg",
		90, 90,
		"42100-000.000.000", "Leuchtartikel",
		"Schnuller", "",
		"3", "0.1",
		"1", 1,
		"Stück", "16",
		"", "pd-2066908954.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/leuchtpfeife_small.jpg",
		90, 90,
		"62100-000.000.000", "Leuchtartikel",
		"Trillerpfeife", "",
		"3", "0.1",
		"1", 1,
		"Stück", "16",
		"", "pd58610128.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/leuchtstab_small.jpg",
		90, 90,
		"52100-000.000.000", "Leuchtartikel",
		"Stab", "",
		"3.5", "0.1",
		"1", 1,
		"Stück", "16",
		"", "pd34258652.htm",
		"", 1,
		"14", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/workparka_small.jpg",
		90, 90,
		"01200-006.005.000", "Workparka",
		"mit Reflektorstreifen", "",
		"59.95", "1",
		"1", 1,
		"Stück", "2",
		"Grösse;L@", "pd1345644624.htm",
		"", 1,
		"3", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/bodywarmer3_feuerwehr_small.jpg",
		90, 90,
		"96200-006.005.000", "Arbeitsweste",
		"Wende-Bodywarmer", "",
		"39", "0.8",
		"1", 1,
		"Stück", "0",
		"Grösse;L@", "pd-643348738.htm",
		"", 1,
		"1", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/tshirt_fdny_kb_small.jpg",
		90, 90,
		"67200-004.005.000", "T-Shirt",
		"FDNY &quot;Keep Back&quot;", "",
		"14.9", "0.2",
		"1", 1,
		"Stück", "5",
		"Grösse;L@", "pd-672367542.htm",
		"", 1,
		"8", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/buch_fit_for_fire_fighting_small_neu.jpg",
		90, 90,
		"77200-000.000.000", "Buch",
		"&quot;Fit for Fire Fighting&quot;", "",
		"9.9", "0.4",
		"1", 1,
		"Stück", "12",
		"", "pd1151093657.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/led_kugelschreiber_small.jpg",
		90, 90,
		"97200-011.000.000", "Kugelschreiber",
		"LED-Leucht-Kuli", "",
		"3.95", "0.03",
		"1", 1,
		"Stück", "15",
		"", "pd994759148.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/sa_lf_small.jpg",
		90, 90,
		"08200-004.000.000", "Schlüsselanhänger",
		"Löschfahrzeug", "",
		"3", "0.03",
		"1", 1,
		"Stück", "14",
		"", "pd1835940346.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/sostrack_small.jpg",
		90, 90,
		"28200-000.000.000", "Dickie",
		"SOS Track Set", "",
		"5.5", "0.6",
		"1", 1,
		"Stück", "17",
		"", "pd-58667610.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/sosteam_small.jpg",
		90, 90,
		"38200-000.000.000", "Dickie",
		"S.O.S. Team Plus", "",
		"5.5", "0.6",
		"1", 1,
		"Stück", "17",
		"", "pd-1542568892.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/pin_nyfd_small.jpg",
		90, 90,
		"87200-020.000.000", "Pin",
		"FDNY-Emblem", "",
		"2.5", "0.03",
		"1", 1,
		"Stück", "8",
		"", "pd1157213454.htm",
		"", 1,
		"9", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/mdl_small.jpg",
		90, 90,
		"68200-000.067.000", "Modellauto",
		"Feuerwehrfahrzeug Drehleiter", "",
		"4.5", "0.51",
		"1", 1,
		"Stück", "17",
		"", "pd1181490288.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/mlf1612_small.jpg",
		90, 90,
		"78200-000.067.000", "Modellauto",
		"Feuerwehrfahrzeug Löschfahrzeug", "",
		"4.5", "0.51",
		"1", 1,
		"Stück", "17",
		"", "pd-476178402.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/spardose_lf16_small.jpg",
		90, 90,
		"09200-000.051.000", "Spardose",
		"Feuerwehrauto &quot;Für der nächsten Brand&quot;", "",
		"10.95", "1",
		"1", 1,
		"Stück", "19",
		"", "pd1752692234.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/spardose_kuh_small.jpg",
		90, 90,
		"98200-000.051.000", "Spardose",
		"Feuerwehrkuh", "",
		"12.95", "0.7",
		"1", 1,
		"Stück", "19",
		"", "pd170046280.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/koppel_neutral_small.jpg",
		90, 90,
		"19200-008.001.000", "Koppelgürtel",
		"Leder, Einheitsgröße", "",
		"17.5", "0.51",
		"1", 1,
		"Stück", "7",
		"", "pd-831591754.htm",
		"", 1,
		"6", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/t-shirt_fdny_black_emblem_small.jpg",
		90, 90,
		"29200-008.005.000", "T-Shirt",
		"FDNY-Emblem, KEEP BACK - 200 FT.", "",
		"14.9", "0.18",
		"1", 1,
		"Stück", "5",
		"Grösse;L@", "pd885778388.htm",
		"", 1,
		"8", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/sa_fdny_blau_small.jpg",
		90, 90,
		"49200-006.000.000", "Schlüsselanhänger",
		"FDNY, Plastik", "",
		"3.95", "0.3",
		"1", 1,
		"Stück", "14",
		"", "pd1779337294.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/sa_fdny_rot_small.jpg",
		90, 90,
		"39200-004.000.000", "Schlüsselanhänger",
		"FDNY, Plastik", "",
		"3.95", "0.3",
		"1", 1,
		"Stück", "14",
		"", "pd-1833951444.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/sa_fdny_rot_lang_small.jpg",
		90, 90,
		"59200-004.000.000", "Schlüsselanhänger",
		"FDNY lang, Plastik", "",
		"3.95", "0.3",
		"1", 1,
		"Stück", "14",
		"", "pd-1927198406.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/sa_fdny_blau_lang_small.jpg",
		90, 90,
		"69200-006.000.000", "Schlüsselanhänger",
		"FDNY lang, Plastik", "",
		"3.95", "0.3",
		"1", 1,
		"Stück", "14",
		"", "pd-826082824.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/spiel_ fvdf_small.jpg",
		90, 90,
		"9200-000.000.000", "Spiel",
		"Freddy von der Feuerwehr", "",
		"9.95", "0.6",
		"1", 1,
		"Stück", "17",
		"", "pd1195943451.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/sweatshirt_fdnyhd_small.jpg",
		90, 90,
		"10300-008.005.008", "Sweatshirt",
		"FDNY Harley-Design", "",
		"24.9", "0.45",
		"1", 1,
		"Stück", "4",
		"Grösse;L@", "pd-912230088.htm",
		"", 1,
		"7", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/SA_Feuerwehr_small.jpg",
		90, 90,
		"20300-000.000.000", "Schlüsselanhänger",
		"FEUERWEHR", "",
		"3", "0.02",
		"1", 1,
		"Stück", "14",
		"", "pd1200231015.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/Armbanduhr_Feuerwehr_small.jpg",
		90, 90,
		"30300-019.000.000", "Armbanduhr",
		"Feuerwehrsignet", "",
		"12.95", "0.2",
		"1", 1,
		"Stück", "18",
		"", "pd837352173.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/aufkleber_helm_rot_silber_small.jpg",
		90, 90,
		"40300-004.000.000", "Aufkleber",
		"Feuerwehrhelm reflektierend", "",
		"2.6", "0.05",
		"1", 1,
		"Stück", "9",
		"Farbe;Rot@", "pd-2039604279.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/kennzeichnungsschil_feuerwehr_small.jpg",
		90, 90,
		"50300-008.000.000", "Nummernschildverstärker",
		"Feuerwehr 112", "",
		"4.5", "0.6",
		"1", 1,
		"Stück", "13",
		"", "pd1244621599.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/buch_kai_spielt_feuerwehr_small.jpg",
		90, 90,
		"60300-000.000.000", "Buch",
		"Kai spielt Feuerwehr", "",
		"3.95", "0.35",
		"1", 1,
		"Stück", "12",
		"", "pd1200240271.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/fotoclip_small.jpg",
		90, 90,
		"97000-000.000.000", "Fotoclip",
		"Feuerwehrmann Fred", "",
		"4.95", "0.3",
		"1", 1,
		"Stück", "13",
		"", "pd-849205281.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/tasse_wenns_brennt_small.jpg",
		90, 90,
		"99300-001.000.000", "Tasse",
		"Feuerwehr &quot;Wenn´s brennt&quot;", "",
		"7.5", "0.51",
		"1", 1,
		"Stück", "13",
		"", "pd1201448849.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/Glueckwunschkarte_drehleiter_small.jpg",
		90, 90,
		"70300-000.000.000", "Glückwunschkarte",
		"Drehleiter", "",
		"1.95", "0.05",
		"1", 1,
		"Stück", "19",
		"", "pd1203435524.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/Glueckwunschkarte_kerzen_small.jpg",
		90, 90,
		"80300-000.000.000", "Glückwunschkarte",
		"Kerzen", "",
		"3", "0.05",
		"1", 1,
		"Stück", "19",
		"", "pd-1138217518.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/puzzle_fdny_small.jpg",
		90, 90,
		"90300-000.000.000", "Puzzle",
		"FDNY", "",
		"39.95", "0.9",
		"1", 1,
		"Stück", "17",
		"", "pd362532944.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/feuerwehrbaer_orange_small.jpg",
		90, 90,
		"01300-003.000.000", "Plüschfigur",
		"Feuerwehr-Teddy", "",
		"7.5", "0.07",
		"1", 1,
		"Stück", "17",
		"", "pd-469209346.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/fingerpuppe_Feuerwehrbaer_small.jpg",
		90, 90,
		"11300-000.028.000", "Plüschfigur",
		"Fingerpuppe Feuerwehrbär", "",
		"2.5", "0.05",
		"1", 1,
		"Stück", "17",
		"", "pd-965663396.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/anspitzer_small.jpg",
		90, 90,
		"21300-004.000.000", "Anspitzer",
		"&quot;Wenn´s brennt 112&quot;", "",
		"1.55", "0.1",
		"1", 1,
		"Stück", "13",
		"", "pd1705132840.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/kombinotizstaender_small.jpg",
		90, 90,
		"31300-000.000.000", "Kombinotizständer",
		"Feuerwehrszene", "",
		"4.5", "0.51",
		"1", 1,
		"Stück", "13",
		"", "pd60587414.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/PKW_Sichtschutz_small.jpg",
		90, 90,
		"41300-000.000.000", "Sichtschutzfensterblenden",
		"Feuerwehrkids", "",
		"6", "0.51",
		"1", 1,
		"Stück", "13",
		"", "pd839071156.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/cap_strickmuetze_small.jpg",
		90, 90,
		"51300-006.001.000", "Cap",
		"Strickmütze Direktbestickung", "",
		"8.5", "0.25",
		"1", 1,
		"Stück", "1",
		"", "pd1205581916.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/tasse_feuerwehrrenner_small.jpg",
		90, 90,
		"61300.008.000.000", "Tasse",
		"Feuerwehrrenner", "",
		"7.8", "0.51",
		"1", 1,
		"Stück", "13",
		"", "pd1205582900.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/thumb/teddy_fdny_small.jpg",
		90, 90,
		"71300.006.000.000", "Plüschfigur",
		"FDNY-Teddy", "",
		"8.95", "0.5",
		"1", 1,
		"Stück", "17",
		"", "pd1571900802.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/bierkrugset_small.jpg",
		90, 90,
		"81300-015.030.000", "Bierkrug",
		"Set", "",
		"14.9", "0.95",
		"1", 1,
		"Stück", "13",
		"", "pd507688832.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/thumb/cap_notruf112_small.jpg",
		90, 90,
		"91300.008.000.000", "Cap",
		"FEUERWEHR Notruf 112 mit Abzeichen", "",
		"8", "0.1",
		"1", 1,
		"Stück", "1",
		"", "pd347105710.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/Magnettafel_small.jpg",
		90, 90,
		"02300.000.000.000", "Magnet",
		"Tafel lustige Feuerwehrmänner", "",
		"19.5", "0.51",
		"1", 1,
		"Stück", "13",
		"", "pd-1436655732.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[102] = new Element(
		102, "assets/thumb/ts_inside_small.jpg",
		90, 90,
		"12300.008.005.000", "T-Shirt",
		"Feuerwehr inside", "",
		"11", "0.2",
		"1", 1,
		"Stück", "5",
		"Grösse;L@", "pd563101254.htm",
		"", 1,
		"8", "0",
		 0)
	
		Entry[103] = new Element(
		103, "assets/thumb/ts_lmw_small.jpg",
		90, 90,
		"22300-008.005.000", "T-Shirt",
		"Löschen mit Wasser", "",
		"12.5", "0.2",
		"1", 1,
		"Stück", "5",
		"Grösse;L@", "pd-126245404.htm",
		"", 1,
		"8", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/ts_fire_small.jpg",
		90, 90,
		"32300-004.005.000", "T-Shirt",
		"Fire", "",
		"11", "0.2",
		"1", 1,
		"Stück", "5",
		"Grösse;L@", "pd-490136098.htm",
		"", 1,
		"8", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/sweatshirt_fr_small.jpg",
		90, 90,
		"42300-006.005.000", "Sweatshirt",
		"Feuerwehr nostalgisch", "",
		"24", "0.45",
		"1", 1,
		"Stück", "4",
		"", "pd1972607892.htm",
		"", 1,
		"7", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/thumb/sweatshirt_lf_small.jpg",
		90, 90,
		"52300-008.005.000", "Sweatshirt",
		"Feuerwehrrenner", "",
		"21", "0.45",
		"1", 1,
		"Stück", "4",
		"", "pd911441422.htm",
		"", 1,
		"7", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/lego_city_feuerwehr_II_small.jpg",
		90, 90,
		"72300-000.000.000", "Lego",
		"City Feuerwehr II", "",
		"3.95", "0.1",
		"1", 1,
		"Stück", "17",
		"", "pd1495335161.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/Fensterbildpostkarte_fred_small.jpg",
		90, 90,
		"82300-020.000.000", "Aufkleber",
		"Fensterbild-Postkarte &quot;Feuerwehrmann Fred&quot;", "",
		"1.5", "0.01",
		"1", 1,
		"Stück", "9",
		"", "pd1221998901.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/Buch_Mein_Feuerwehrauto_small.jpg",
		90, 90,
		"92300-000.000.000", "Buch",
		"&quot;Mein Feuerwehrauto&quot;", "",
		"2.95", "0.25",
		"1", 1,
		"Stück", "12",
		"", "pd-1510410645.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/thumb/City_Fun_Car_small.jpg",
		90, 90,
		"03300-000.000.000", "Dickie",
		"City Fun Cars", "",
		"3.95", "0.6",
		"1", 1,
		"Stück", "17",
		"", "pd1456869009.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[111] = new Element(
		111, "assets/thumb/City_Track_Set_small.jpg",
		90, 90,
		"13300-000.000.000", "Dickie",
		"City Track Set", "",
		"3.95", "0.7",
		"1", 1,
		"Stück", "17",
		"", "pd2142419751.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/set_feuerwehrmann_sam_small.JPG",
		90, 90,
		"53300-006.001.000", "Feuerwehrmann Sam",
		"Schal, Mütze, Handschuhe", "",
		"9.9", "0.4",
		"1", 1,
		"Stück", "6",
		"", "pd1232885661.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/thumb/pin_small.jpg",
		90, 90,
		"04100-000.000.000", "Pin",
		"Feuerwehrauto blinkend", "",
		"3.7", "0.03",
		"1", 1,
		"Stück", "8",
		"", "pd1122141438.htm",
		"", 1,
		"9", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/thumb/pin_feuerwehrhelm_mit_axt_small.jpg",
		90, 90,
		"23300-025.000.000", "Pin",
		"Feuerwehremblem", "",
		"2", "0.03",
		"1", 1,
		"Stück", "8",
		"Farbe;Bronze@", "pd184128600.htm",
		"", 1,
		"9", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/thumb/kinderkarte_mit_abzeichen_small.jpg",
		90, 90,
		"63300-020.000.000", "Glückwunschkarte",
		"für Kinder mit Stickaufnäher", "",
		"3.95", "0.1",
		"1", 1,
		"Stück", "19",
		"", "pd-2124638971.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/thumb/kindertasche_small.jpg",
		90, 90,
		"73300-020.069.000", "Geschenktasche",
		"Feuerwehrauto", "",
		"4.95", "0.6",
		"1", 1,
		"Stück", "19",
		"", "pd1173092027.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[117] = new Element(
		117, "assets/thumb/ministeck_bausteine_feuerwehrhelikopter_small.jpg",
		90, 90,
		"55300-000.000.000", "Ministeck",
		"Bausteine Feuerwehrhelikopter", "",
		"5.95", "0.51",
		"1", 1,
		"Stück", "17",
		"", "pd1233411845.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[118] = new Element(
		118, "assets/thumb/ministeck_bausteine_feuerwehrgelaendewagen_small.jpg",
		90, 90,
		"65300-000.000.000", "Ministeck",
		"Bausteine Feuerwehrgeländewagen", "",
		"4.95", "0.51",
		"1", 1,
		"Stück", "17",
		"", "pd1111543995.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[119] = new Element(
		119, "assets/thumb/puzzle_benjamin_bluemchen_small.jpg",
		90, 90,
		"753000-000.000.000", "Puzzle",
		"Benjamin Blümchen als Feuerwehrmann", "",
		"1.95", "0.1",
		"1", 1,
		"Stück", "17",
		"", "pd655405409.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[120] = new Element(
		120, "assets/thumb/Klickcap_small.jpg",
		90, 90,
		"83300-006.000.000", "Cap",
		"Klick-Cap Feuerwehr", "",
		"6", "0.08",
		"1", 1,
		"Stück", "1",
		"", "pd1233488010.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[121] = new Element(
		121, "assets/thumb/krawattennadelset_feuerwehremblem_small.jpg",
		90, 90,
		"93300-010.000.000", "Krawattennadel",
		"Set Feuerwehremblem", "",
		"9.5", "0.1",
		"1", 1,
		"Stück", "7",
		"Farbe;Gold@", "pd-97906431.htm",
		"", 1,
		"6", "0",
		 0)
	
		Entry[122] = new Element(
		122, "assets/thumb/krawattennadelset_helm_axt_small.jpg",
		90, 90,
		"14300-010.000.000", "Krawattennadel",
		"Set Helm-Axt-Strahlrohr", "",
		"9.5", "0.1",
		"1", 1,
		"Stück", "7",
		"Farbe;Gold@", "pd269632279.htm",
		"", 1,
		"6", "0",
		 0)
	
		Entry[123] = new Element(
		123, "assets/thumb/magnetpin_small.jpg",
		90, 90,
		"34300-004.000.000", "Magnet",
		"Telefon 112 Feuerwehr", "",
		"0.75", "0.05",
		"1", 1,
		"Stück", "13",
		"", "pd376670867.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[124] = new Element(
		124, "assets/thumb/coffepad_small.jpg",
		90, 90,
		"44300-000.000.000", "Untersetzer",
		"FEUERWEHR retten-löschen-bergen-schützen", "",
		"1.95", "0.1",
		"1", 1,
		"Stück", "13",
		"", "pd31874809.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[125] = new Element(
		125, "assets/thumb/Kindersicherheitsrucksack_small.jpg",
		90, 90,
		"54300-002.000.000", "Kinder-Rucksack",
		"Sicherheitsrucksack mit reflektierenden Elementen", "",
		"5", "0.1",
		"1", 1,
		"Stück", "17",
		"", "pd1341661647.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[126] = new Element(
		126, "assets/thumb/RettungshammerII_small.jpg",
		90, 90,
		"64300-000.000.000", "Rettungshammer",
		"3 in 1", "",
		"9.5", "0.9",
		"1", 1,
		"Stück", "13",
		"", "pd-1461831531.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[127] = new Element(
		127, "assets/thumb/squeezie_small.jpg",
		90, 90,
		"74300-000.000.000", "Figur",
		"Anti-Stress Feuerwehrmann", "",
		"5.9", "0.25",
		"1", 1,
		"Stück", "19",
		"", "pd-63798069.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[128] = new Element(
		128, "assets/thumb/Sa-Einsatzshirt_small.jpg",
		90, 90,
		"84300-019.000.000", "Schlüsselanhänger",
		"Einsatz-Shirt", "",
		"1.5", "0.02",
		"1", 1,
		"Stück", "14",
		"", "pd2113389553.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[129] = new Element(
		129, "assets/thumb/Haftnotizen_small.jpg",
		90, 90,
		"94300-015.000.000", "Haftnotizen",
		"Einsatz-Shirt", "",
		"1.95", "0.03",
		"1", 1,
		"Stück", "15",
		"", "pd1354035079.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[130] = new Element(
		130, "assets/thumb/Usb_Feuerwehrmann_small.jpg",
		90, 90,
		"15300-019.070.000", "USB-Stick",
		"Feuerwehrmann", "",
		"24.5", "0",
		"1", 1,
		"Stück", "19",
		"", "pd378363395.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[131] = new Element(
		131, "assets/thumb/rucksackdrache_small.jpg",
		90, 90,
		"25300-016.000.000", "Kinder-Rucksack",
		"Feuerwehrdrache", "",
		"2.95", "0.1",
		"1", 1,
		"Stück", "17",
		"", "pd1234347199.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[132] = new Element(
		132, "assets/thumb/geschenkpapier_helmaxt_small.jpg",
		90, 90,
		"35300-000.000.000", "Geschenkpapier",
		"retten-löschen-bergen-schützen", "",
		"0.95", "0.06",
		"1", 1,
		"Stück", "19",
		"", "pd1234427489.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[133] = new Element(
		133, "assets/thumb/waschbeutel_small.jpg",
		90, 90,
		"45300-019.000.000", "Waschbeutel",
		"FEUERWEHR", "",
		"19.95", "0.5",
		"1", 1,
		"Stück", "19",
		"", "pd-1988772227.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[134] = new Element(
		134, "assets/thumb/abzeichen_grisu_small.jpg",
		90, 90,
		"06300-000.060.000", "Stickabzeichen",
		"Grisu", "",
		"4", "0.05",
		"1", 1,
		"Stück", "8",
		"", "pd1237122887.htm",
		"", 1,
		"9", "0",
		 0)
	
		Entry[135] = new Element(
		135, "assets/thumb/pocketclip_uk_4aa_small.jpg",
		90, 90,
		"16300-008.000.000", "Gürtelclip",
		"UK 4AA", "",
		"7.5", "0.2",
		"1", 1,
		"Stück", "11",
		"", "pd1338847949.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[136] = new Element(
		136, "assets/thumb/teelichthalter_ feuerwehrmann_2_small.jpg",
		90, 90,
		"26300-000.000.000", "Teelichthalter",
		"Feuerwehrmann mit Glas", "",
		"5.3", "0.7",
		"1", 1,
		"Stück", "19",
		"", "pd-587994685.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[137] = new Element(
		137, "assets/thumb/flaschenoeffner_ feuerwehrmann_small.jpg",
		90, 90,
		"36300-000.000.000", "Flaschenöffnerhalter",
		"Feuerwehrmann", "",
		"5.7", "1",
		"1", 1,
		"Stück", "19",
		"", "pd853840297.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[138] = new Element(
		138, "assets/thumb/Tasse_brand_small.jpg",
		90, 90,
		"67300-000.000.000", "Tasse",
		"Brand auf Kaffee", "",
		"7.95", "0.51",
		"1", 1,
		"Stück", "13",
		"", "pd1252234020.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[139] = new Element(
		139, "assets/thumb/Tasse_extra_heisser_kaffee_small.jpg",
		90, 90,
		"77300-000.000.000", "Tasse",
		"Extra heißer Kaffee", "",
		"7.95", "0.51",
		"1", 1,
		"Stück", "13",
		"", "pd1307229682.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[140] = new Element(
		140, "assets/thumb/sa_feuerloescher_small.jpg",
		90, 90,
		"97300-004.000.000", "Schlüsselanhänger",
		"Feuerlöscher", "",
		"2.25", "0.04",
		"1", 1,
		"Stück", "14",
		"", "pd-201499280.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[141] = new Element(
		141, "assets/thumb/handstrick_stirnband_small.jpg",
		90, 90,
		"37300-027.000.000", "Handstrick-Stirnband",
		"Jugendfeuerwehr", "",
		"6.5", "0.1",
		"1", 1,
		"Stück", "6",
		"", "pd494223646.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[142] = new Element(
		142, "assets/thumb/handstrick_feuerwehrhelm_small.jpg",
		90, 90,
		"47300-030.000.000", "Handstrick-Mütze",
		"Feuerwehrhelm", "",
		"9.5", "0.1",
		"1", 1,
		"Stück", "6",
		"", "pd525255804.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[143] = new Element(
		143, "assets/thumb/Handstrick_schal_small.JPG",
		90, 90,
		"17300-027.000.000", "Handstrick-Schal",
		"Jugendfeuerwehr", "",
		"6.5", "0.1",
		"1", 1,
		"Stück", "6",
		"", "pd240889610.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[144] = new Element(
		144, "assets/thumb/handstrick_faeustlinge_small.JPG",
		90, 90,
		"27300-027.000.000", "Handstrick-Fäustlinge",
		"Jugendfeuerwehr", "",
		"8.5", "0.1",
		"1", 1,
		"Stück", "6",
		"", "pd-948890552.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[145] = new Element(
		145, "assets/thumb/handstrick_muetze_small.JPG",
		90, 90,
		"07300-027.000.000", "Handstrick-Mütze",
		"Jugendfeuerwehr", "",
		"8.5", "0.1",
		"1", 1,
		"Stück", "6",
		"", "pd-1899482186.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[146] = new Element(
		146, "assets/thumb/handstrick_grisu_small.JPG",
		90, 90,
		"57300-028.000.000", "Handstrick-Mütze",
		"Grisu rot/grün", "",
		"10.5", "0.15",
		"1", 1,
		"Stück", "6",
		"", "pd-2050336556.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[147] = new Element(
		147, "assets/thumb/handstrick_grisu_II_small.JPG",
		90, 90,
		"57300-029.000.000", "Handstrick-Mütze",
		"Grisu grün/rot", "",
		"10.5", "0.15",
		"1", 1,
		"Stück", "6",
		"", "pd692042530.htm",
		"", 1,
		"4", "0",
		 0)
	
		Entry[148] = new Element(
		148, "assets/thumb/dvd_2_1_small.jpg",
		90, 90,
		"08300-000.000.000", "DVD",
		"Jede Sekunde zählt &amp; Im Feuer", "",
		"12.95", "0.1",
		"1", 1,
		"Stück", "12",
		"", "pd1252695561.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[149] = new Element(
		149, "assets/thumb/dvd410_small.jpg",
		90, 90,
		"18300-000.000.000", "DVD",
		"Feuerwehr Reporter Vol. 2", "",
		"19.95", "0.1",
		"1", 1,
		"Stück", "12",
		"", "pd1255182729.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[150] = new Element(
		150, "assets/thumb/dvd406_small.jpg",
		90, 90,
		"28300-000.000.000", "DVD",
		"Unfall Reporter", "",
		"19.95", "0.1",
		"1", 1,
		"Stück", "12",
		"", "pd-248129825.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[151] = new Element(
		151, "assets/thumb/dvd407_small.jpg",
		90, 90,
		"38300-000.000.000", "DVD",
		"Feuerwehr Reporter Vol. 1", "",
		"19.95", "0.1",
		"1", 1,
		"Stück", "12",
		"", "pd1557476389.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[152] = new Element(
		152, "assets/thumb/dvd242_small.jpg",
		90, 90,
		"48300-000.000.000", "DVD",
		"Einsatz für Christoph", "",
		"24.95", "0.1",
		"1", 1,
		"Stück", "12",
		"", "pd1984834267.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[153] = new Element(
		153, "assets/thumb/dvd427_small.jpg",
		90, 90,
		"58300-000.000.000", "DVD",
		"ICE-Crash - Feuerwehr im Großeinsatz", "",
		"19.99", "0.1",
		"1", 1,
		"Stück", "12",
		"", "pd-1801316223.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[154] = new Element(
		154, "assets/thumb/SA_feuerwehrmann_AS_small.jpg",
		90, 90,
		"68300-000.000.000", "Schlüsselanhänger",
		"Feuerwehrmann-Atemschutz", "",
		"5.9", "0.1",
		"1", 1,
		"Stück", "14",
		"", "pd1258050825.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[155] = new Element(
		155, "assets/thumb/Haustuerschild_Feuerwehrfrau_small.jpg",
		90, 90,
		"78300-000.000.000", "Haustürschild",
		"&quot;Hier wohnt eine Feuerwehrfrau&quot;", "",
		"3.95", "0.02",
		"1", 1,
		"Stück", "10",
		"", "pd-43694497.htm",
		"", 1,
		"11", "0",
		 0)
	
		Entry[156] = new Element(
		156, "assets/thumb/Ausstechform_small.jpg",
		90, 90,
		"88300-000.000.000", "Ausstechform",
		"Drehleiter", "",
		"3.75", "0.1",
		"1", 1,
		"Stück", "13",
		"", "pd-1981796443.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[157] = new Element(
		157, "assets/thumb/Schluesseletui_small.jpg",
		90, 90,
		"09300-008.000.000", "Schlüsseletui",
		"Samsonite &quot;Feuerwehrprägung&quot;", "",
		"12.95", "0.2",
		"1", 1,
		"Stück", "19",
		"", "pd-1471180197.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[158] = new Element(
		158, "assets/thumb/Fensterbildpostkarte_small.jpg",
		90, 90,
		"98300-020.000.000", "Aufkleber",
		"Fensterbild-Postkarte &quot;Feuerwehr&quot;", "",
		"1.5", "0.01",
		"1", 1,
		"Stück", "9",
		"", "pd-1129329663.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[159] = new Element(
		159, "assets/thumb/kugelschreiber_excklusiv_small.jpg",
		90, 90,
		"19300-000.000.000", "Kugelschreiber",
		"Feuerwehr &quot;Exclusive&quot;", "",
		"1", "0.02",
		"1", 1,
		"Stück", "15",
		"", "pd1822062103.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[160] = new Element(
		160, "assets/thumb/dvd_ddr_fahrzeuge_small.jpg",
		90, 90,
		"29300-000.000.000", "DVD",
		"DDR Feuerwehrfahrzeuge", "",
		"19.95", "0.1",
		"1", 1,
		"Stück", "12",
		"", "pd-1309096419.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[161] = new Element(
		161, "assets/thumb/dvd_feuerwehrexoten_small.jpg",
		90, 90,
		"39300-000.000.000", "DVD",
		"Feuerwehr-Exoten", "",
		"19.95", "0.1",
		"1", 1,
		"Stück", "12",
		"", "pd-1971524205.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[162] = new Element(
		162, "assets/thumb/dvd_feuerwehrgiganten_small.jpg",
		90, 90,
		"49300-000.000.000", "DVD",
		"Feuerwehr-Giganten", "",
		"19.95", "0.1",
		"1", 1,
		"Stück", "12",
		"", "pd-851805703.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[163] = new Element(
		163, "assets/thumb/sa_feuerwehrauto_small.jpg",
		90, 90,
		"99300-000.000.000", "Schlüsselanhänger",
		"Feuerwehrauto", "",
		"2.15", "0.04",
		"1", 1,
		"Stück", "14",
		"", "pd1260039556.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[164] = new Element(
		164, "assets/thumb/sa_flaschenoeffner_feuerwehrhelm_small.jpg",
		90, 90,
		"89300-000.000.000", "Schlüsselanhänger",
		"Flaschenöffner Feuerwehrhelm", "",
		"2.45", "0.04",
		"1", 1,
		"Stück", "14",
		"", "pd1781849938.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[165] = new Element(
		165, "assets/thumb/sa_flaschenoeffner_schriftzug_small.jpg",
		90, 90,
		"79300-000.000.000", "Schlüsselanhänger",
		"Flaschenöffner Schriftzug", "",
		"1.95", "0.04",
		"1", 1,
		"Stück", "14",
		"", "pd-1366434352.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[166] = new Element(
		166, "assets/thumb/sa_mini-squeezie_small.jpg",
		90, 90,
		"69300-000.000.000", "Schlüsselanhänger",
		"Mini-Squeezie", "",
		"2.95", "0.04",
		"1", 1,
		"Stück", "14",
		"", "pd1481586814.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[167] = new Element(
		167, "assets/thumb/handytasche_small.jpg",
		90, 90,
		"20400-000.000.000", "Handytasche",
		"Feuerwehr", "",
		"6.95", "0.5",
		"1", 1,
		"Stück", "19",
		"", "pd577910969.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[168] = new Element(
		168, "assets/thumb/sticker_small.JPG",
		90, 90,
		"30400-000.000.000", "Aufkleber",
		"Sticker Feuerwehr", "",
		"2.3", "0.02",
		"1", 1,
		"Stück", "9",
		"", "pd1277025349.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[169] = new Element(
		169, "assets/thumb/glueckwunsch_postkarte_small.jpg",
		90, 90,
		"40400-000.000.000", "Glückwunschkarte",
		"Postkarte Uli Stein", "",
		"1", "0.1",
		"1", 1,
		"Stück", "19",
		"", "pd1279305618.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[170] = new Element(
		170, "assets/thumb/feuerwehrente_small.jpg",
		90, 90,
		"50400-000.000.000", "Quietsche-Entchen",
		"Feuerwehrmann", "",
		"3.69", "0.1",
		"1", 1,
		"Stück", "19",
		"", "pd1524097040.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[171] = new Element(
		171, "assets/thumb/dvd_grisu_I_small.jpg",
		90, 90,
		"70400-000.000.000", "DVD",
		"Grisu - Der kleine Drache 1", "",
		"7.95", "0.1",
		"1", 1,
		"Stück", "12",
		"", "pd-1935014722.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[172] = new Element(
		172, "assets/thumb/dvd_grisu_II_small.jpg",
		90, 90,
		"80400-000.000.000", "DVD",
		"Grisu - Der kleine Drache 2", "",
		"7.95", "0.1",
		"1", 1,
		"Stück", "12",
		"", "pd-1538543332.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[173] = new Element(
		173, "assets/thumb/dvd_grisu_III_small.jpg",
		90, 90,
		"90400-000.000.000", "DVD",
		"Grisu - Der kleine Drache 3", "",
		"7.95", "0.1",
		"1", 1,
		"Stück", "12",
		"", "pd1994452138.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[174] = new Element(
		174, "assets/thumb/dvd_grisu_IV_small.jpg",
		90, 90,
		"01400-000.000.000", "DVD",
		"Grisu - Der kleine Drache 4", "",
		"7.95", "0.1",
		"1", 1,
		"Stück", "12",
		"", "pd-623179032.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[175] = new Element(
		175, "assets/thumb/abzeichenff_small.jpg",
		90, 90,
		"21400-020.000.000", "Pin",
		"Abzeichen FF Bad Karlshafen", "",
		"3.95", "0.03",
		"1", 1,
		"Stück", "8",
		"", "pd1280497039.htm",
		"", 1,
		"9", "0",
		 0)
	
		Entry[176] = new Element(
		176, "assets/thumb/abzeichenv_small.jpg",
		90, 90,
		"31400-020.000.000", "Pin",
		"Abzeichen Verein FF Bad Karlshafen e.V.", "",
		"3.95", "0.03",
		"1", 1,
		"Stück", "8",
		"", "pd2010059349.htm",
		"", 1,
		"9", "0",
		 0)
	
		Entry[177] = new Element(
		177, "assets/thumb/buch_feuer_flamme_small.jpg",
		90, 90,
		"41400-000.000.000", "Buch",
		"Kochen mit Feuer &amp; Flamme", "",
		"19.9", "0.7",
		"1", 1,
		"Stück", "12",
		"", "pd1281266791.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[178] = new Element(
		178, "assets/thumb/plueschfigur_grisu_small.jpg",
		90, 90,
		"51400-000.000.000", "Plüschfigur",
		"Grisu", "",
		"9.45", "0.5",
		"1", 1,
		"Stück", "17",
		"", "pd1282057642.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[179] = new Element(
		179, "assets/thumb/abzeichen_deutscher_feuerwehrtag_2010_small.jpg",
		90, 90,
		"61400-000.000.000", "Abzeichen",
		"28. Deutscher Feuerwehrtag 2010", "",
		"4.95", "0.05",
		"1", 1,
		"Stück", "8",
		"", "pd1282126762.htm",
		"", 1,
		"9", "0",
		 0)
	
		Entry[180] = new Element(
		180, "assets/thumb/aschenbecher_fwm_aussen_small.jpg",
		90, 90,
		"71400-000.000.000", "Aschenbecher",
		"Feuerwehrmann raus", "",
		"4", "0.51",
		"1", 1,
		"Stück", "13",
		"", "pd1282317182.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[181] = new Element(
		181, "assets/thumb/kantensitzer_jacke_offen_small.jpg",
		90, 90,
		"81400-000.000.000", "Kantensitzer",
		"Fwm. Jacke offen", "",
		"2.95", "0.51",
		"1", 1,
		"Stück", "19",
		"", "pd249898460.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[182] = new Element(
		182, "assets/thumb/kantensitzer_haende_vorne_small.jpg",
		90, 90,
		"914000-000.000.000", "Kantensitzer",
		"Fwm. Hände vorne", "",
		"2.95", "0.51",
		"1", 1,
		"Stück", "19",
		"", "pd-1240305814.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[183] = new Element(
		183, "assets/thumb/Kantensitzer_hand_an_jacke_small.jpg",
		90, 90,
		"02400-000.000.000", "Kantensitzer",
		"Fwm. Hand an Jacke", "",
		"2.95", "0.51",
		"1", 1,
		"Stück", "19",
		"", "pd-992261208.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[184] = new Element(
		184, "assets/thumb/kantensitzer_fwm_haende_hinten_small.jpg",
		90, 90,
		"12400-000.000.000", "Kantensitzer",
		"Fwm. Hände hinten", "",
		"2.95", "0.51",
		"1", 1,
		"Stück", "19",
		"", "pd-1693533674.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[185] = new Element(
		185, "assets/thumb/lampe_uk_4aa_drehschalter_small.jpg",
		90, 90,
		"22400-002.000.000", "Arbeitslampe",
		"UK 4AA-EN Drehkopfschalter", "",
		"26.95", "0.85",
		"1", 1,
		"Stück", "11",
		"Farbe;Neongelb@", "pd1653007515.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[186] = new Element(
		186, "assets/thumb/lampe_uk_4aa_dksf_small.jpg",
		90, 90,
		"32400-002.000.000", "Arbeitslampe",
		"UK 4AA-EN &quot;Feuerwehr&quot;", "",
		"27.95", "0.85",
		"1", 1,
		"Stück", "11",
		"", "pd1274570817.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[187] = new Element(
		187, "assets/thumb/lampe_uk_4aa_FSF_small.jpg",
		90, 90,
		"42400-002.000.000", "Arbeitslampe",
		"UK 4AA-ES &quot;Feuerwehr&quot;", "",
		"29.95", "0.85",
		"1", 1,
		"Stück", "11",
		"", "pd-985830313.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[188] = new Element(
		188, "assets/thumb/lampe_uk_4aa_es_small.jpg",
		90, 90,
		"52400-002.000.000", "Arbeitslampe",
		"UK 4 AA ES Frontschalter", "",
		"28.95", "0.85",
		"1", 1,
		"Stück", "11",
		"Farbe;Neongelb@", "pd1122142198.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[189] = new Element(
		189, "assets/thumb/lampe_uk_2aaa_penlight_small.jpg",
		90, 90,
		"62400-002.000.000", "Arbeitslampe",
		"UK 2AAA Pen light", "",
		"18.95", "0.85",
		"1", 1,
		"Stück", "11",
		"Farbe;Neongelb@", "pd608223457.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[190] = new Element(
		190, "assets/thumb/fruehstuecksbrett_small.jpg",
		90, 90,
		"72400-000.000.000", "Frühstücksbrett",
		"Feuerwehrauto", "",
		"6.5", "0.4",
		"1", 1,
		"Stück", "13",
		"", "pd-835979785.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[191] = new Element(
		191, "assets/thumb/spardose_feuermelder_small.jpg",
		90, 90,
		"82400-004.000.000", "Spardose",
		"Feuermelder rot", "",
		"9.95", "0.51",
		"1", 1,
		"Stück", "19",
		"", "pd1282824773.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[192] = new Element(
		192, "assets/thumb/schueleretui_small.jpg",
		90, 90,
		"17100-000.000.000", "Schüleretui",
		"Feuerwehr, mit Inhalt", "",
		"7.5", "0.3",
		"1", 1,
		"Stück", "15",
		"", "pd1122202385.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[193] = new Element(
		193, "assets/thumb/kugelschreiber_transparent_small.jpg",
		90, 90,
		"31100-000.000.000", "Kugelschreiber",
		"Feuerwehr, transparent", "",
		"1.5", "0.02",
		"1", 1,
		"Stück", "15",
		"", "pd1130589136.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[194] = new Element(
		194, "assets/thumb/fleeceschal_small.jpg",
		90, 90,
		"92200-006.055.000", "Fleece-Schal",
		"&quot;Wenn&rsquo;s brennt 112&quot;", "",
		"17.25", "0.12",
		"1", 1,
		"Stück", "7",
		"", "pd103961462.htm",
		"", 1,
		"6", "0",
		 0)
	
		Entry[195] = new Element(
		195, "assets/thumb/clip1_small.jpg",
		90, 90,
		"03200-000.000.000", "Schlüsselanhänger",
		"EKW-Chip &quot;Helm-Äxte-Flammen&quot;", "",
		"1.2", "0.05",
		"1", 1,
		"Stück", "14",
		"", "pd-225935724.htm",
		"", 1,
		"19", "0",
		 0)
	
		Entry[196] = new Element(
		196, "assets/thumb/lampen_halterungmetall_small.jpg",
		90, 90,
		"49000-000.000.000", "Helmhalterung",
		"für Arbeitslampe UK 4AA, Metall", "",
		"19.9", "0.25",
		"1", 1,
		"Stück", "11",
		"", "pd1261396957.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[197] = new Element(
		197, "assets/thumb/messertasche_small.jpg",
		90, 90,
		"12200-008.000.000", "Gürteltasche",
		"für Messer", "",
		"7.95", "0.05",
		"1", 1,
		"Stück", "11",
		"", "pd-1808861530.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[198] = new Element(
		198, "assets/thumb/messer_blitzknive_small.jpg",
		90, 90,
		"82100-000.029.000", "Messer",
		"Blitz-Knive mit Einhandmechanismus", "",
		"21", "0.2",
		"1", 1,
		"Stück", "11",
		"", "pd-1742617405.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[199] = new Element(
		199, "assets/thumb/messer_firefighter_small.jpg",
		90, 90,
		"02200-004.052.006", "Messer",
		"Firefighter", "",
		"15.5", "0.11",
		"1", 1,
		"Stück", "11",
		"Farbe;Rot@", "pd244619704.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[200] = new Element(
		200, "assets/thumb/multitool_small.jpg",
		90, 90,
		"92100-000.000.000", "Messer",
		"Multitool mit Tasche", "",
		"7.5", "0.51",
		"1", 1,
		"Stück", "11",
		"", "pd702381613.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[201] = new Element(
		201, "assets/thumb/beilhalter_small.jpg",
		90, 90,
		"16000-008.000.000", "Feuerwehrbeil",
		"Beiltasche, Leder", "",
		"7.95", "0.5",
		"1", 1,
		"Stück", "11",
		"", "pd-2092128703.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[202] = new Element(
		202, "assets/thumb/beilchrom_small.jpg",
		90, 90,
		"36000-013.000.001", "Feuerwehrbeil",
		"nach DIN 14924 mit Dreikantschlüssel, verchromt", "",
		"23.95", "1.5",
		"1", 1,
		"Stück", "11",
		"", "pd-678923621.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[203] = new Element(
		203, "assets/thumb/beilrot_small.jpg",
		90, 90,
		"26000-004.000.001", "Feuerwehrbeil",
		"nach DIN 14924 mit Dreikantschlüssel, rot", "",
		"19.95", "1.5",
		"1", 1,
		"Stück", "11",
		"", "pd-337388969.htm",
		"", 1,
		"12", "0",
		 0)
	
		Entry[204] = new Element(
		204, "assets/thumb/abzeichenv_small.jpg",
		90, 90,
		"01000-000.000.000", "Ärmelabzeichen",
		"Verein FF Bad Karlshafen e.V.", "",
		"5", "0.05",
		"1", 1,
		"Stück", "8",
		"", "pd882015573.htm",
		"", 1,
		"9", "0",
		 0)
	
		Entry[205] = new Element(
		205, "assets/thumb/abzeichenjf_small.jpg",
		90, 90,
		"90000-000.000.000", "Ärmelabzeichen",
		"JF Bad Karlshafen", "",
		"5", "0.05",
		"1", 1,
		"Stück", "8",
		"", "pd1464797327.htm",
		"", 1,
		"9", "0",
		 0)
	
		Entry[206] = new Element(
		206, "assets/thumb/abzeichenff_small.jpg",
		90, 90,
		"80000-000.000.000", "Ärmelabzeichen",
		"FF Bad Karlshafen", "",
		"5", "0.05",
		"1", 1,
		"Stück", "8",
		"", "pd-2087741511.htm",
		"", 1,
		"9", "0",
		 0)
	
		Entry[207] = new Element(
		207, "assets/thumb/fensterbild_small.jpg",
		90, 90,
		"91000-020.000.000", "Aufkleber",
		"Fensterbild-Postkarte &quot;Drehleiter&quot;", "",
		"1.5", "0.01",
		"1", 1,
		"Stück", "9",
		"", "pd1130351989.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[208] = new Element(
		208, "assets/thumb/aufkleberdiefeuerwehr_small.jpg",
		90, 90,
		"84200-020.053.000", "Aufkleber",
		"&quot;Die Feuerwehr&quot;", "",
		"1.5", "0.05",
		"1", 1,
		"Stück", "9",
		"", "pd1137764632.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[209] = new Element(
		209, "assets/thumb/aufkleberjfjunge_small.jpg",
		90, 90,
		"64200-020.063.000", "Aufkleber",
		"Feuerwehrjunge", "",
		"1", "0.05",
		"1", 1,
		"Stück", "9",
		"", "pd844741555.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[210] = new Element(
		210, "assets/thumb/aufkleberdrache_small.jpg",
		90, 90,
		"54200-020.063.000", "Aufkleber",
		"Feuerwehrdrache", "",
		"1", "0.05",
		"1", 1,
		"Stück", "9",
		"", "pd1137787681.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[211] = new Element(
		211, "assets/thumb/aufkleber_signet_small.jpg",
		90, 90,
		"32000-020.028.000", "Aufkleber",
		"FEUERWEHR Signet", "",
		"1.5", "0.005",
		"1", 1,
		"Stück", "9",
		"", "pd1951799783.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[212] = new Element(
		212, "assets/thumb/aufkleberfeuerwehrauto_small.jpg",
		90, 90,
		"94200-020.053.000", "Aufkleber",
		"Feuerwehrauto 112", "",
		"1.5", "0.05",
		"1", 1,
		"Stück", "9",
		"", "pd1958276925.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[213] = new Element(
		213, "assets/thumb/aufkleber_ffwappen_small.jpg",
		90, 90,
		"42000-020.035.000", "Aufkleber",
		"FEUERWEHR Wappen", "",
		"1.5", "0.005",
		"1", 1,
		"Stück", "9",
		"", "pd1718836725.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[214] = new Element(
		214, "assets/thumb/aufkleberwennsbrennt_small.jpg",
		90, 90,
		"74200-020.053.000", "Aufkleber",
		"&quot;Wenn´s brennt 112&quot;", "",
		"1.5", "0.05",
		"1", 1,
		"Stück", "9",
		"", "pd1899053623.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[215] = new Element(
		215, "assets/thumb/aufkleber_feuerwehr_small.jpg",
		90, 90,
		"02000-016.040.000", "Aufkleber",
		"FEUERWEHR", "",
		"1.5", "0.005",
		"1", 1,
		"Stück", "9",
		"", "pd2121777907.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[216] = new Element(
		216, "assets/thumb/aufkleber_freizeit_small.jpg",
		90, 90,
		"41000-019.037.000", "Aufkleber",
		"&quot;Feuerwehr - Unsere Freizeit...&quot;", "",
		"2.5", "0.005",
		"1", 1,
		"Stück", "9",
		"", "pd-661280469.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[217] = new Element(
		217, "assets/thumb/aufkleber_ihrefeuerwehr_small.jpg",
		90, 90,
		"11200-015.037.000", "Aufkleber",
		"112 Ihre Feuerwehr", "",
		"1", "0.005",
		"1", 1,
		"Stück", "9",
		"", "pd-1728774319.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[218] = new Element(
		218, "assets/thumb/tatoos_small.jpg",
		90, 90,
		"52000-020.000.000", "Aufkleber",
		"Tattoos Feuerwehr", "",
		"1.3", "0.003",
		"1", 1,
		"Stück", "9",
		"", "pd-1701887895.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[219] = new Element(
		219, "assets/thumb/aufkleber_ueberholen_small.jpg",
		90, 90,
		"81000-019.037.000", "Aufkleber",
		"&quot;Überholen Sie ruhig&quot;", "",
		"2.5", "0.005",
		"1", 1,
		"Stück", "9",
		"", "pd-467687607.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[220] = new Element(
		220, "assets/thumb/aufkleber_feuerwehr1_small.jpg",
		90, 90,
		"12000-014.038.000", "Aufkleber",
		"FEUERWEHR mit Flammensymbol", "",
		"2.5", "0.51",
		"1", 1,
		"Stück", "9",
		"", "pd389729881.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[221] = new Element(
		221, "assets/thumb/aufkleberschnell_small.jpg",
		72, 72,
		"51000-020.041.000", "Aufkleber",
		"&quot;Feuerwehr schnell-kompetent-zuverlässig&quot;", "",
		"3", "0.51",
		"1", 1,
		"Stück", "9",
		"", "pd440148245.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[222] = new Element(
		222, "assets/thumb/tuerschild_small.jpg",
		90, 90,
		"29000-020.047.000", "Haustürschild",
		"&quot;Hier wohnt ein Feuerwehrmann&quot;", "",
		"3.95", "0.02",
		"1", 1,
		"Stück", "10",
		"", "pd-193857456.htm",
		"", 1,
		"11", "0",
		 0)
	
		Entry[223] = new Element(
		223, "assets/thumb/kennzeichnungsschild_small.jpg",
		90, 90,
		"89000-000.000.000", "Kennzeichnungsschild",
		"&quot;Feuerwehr im Einsatz&quot; mit Saugnapf", "",
		"6", "0.06",
		"1", 1,
		"Stück", "10",
		"", "pd388584805.htm",
		"", 1,
		"11", "0",
		 0)
	
		Entry[224] = new Element(
		224, "assets/thumb/kochbuch_small.jpg",
		90, 90,
		"14000-000.000.000", "Buch",
		"Feuerwehrkochbuch &quot;Blitzschnell auf den Tisch&quot;", "",
		"7.5", "0.4",
		"1", 1,
		"Stück", "12",
		"", "pd-598648188.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[225] = new Element(
		225, "assets/thumb/buch_zeigmirdiewelt_small.jpg",
		90, 90,
		"93000-000.000.000", "Buch",
		"&quot;Zeig mir die Welt: Feuerwehr&quot;", "",
		"8.5", "0.42",
		"1", 1,
		"Stück", "12",
		"", "pd-407343831.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[226] = new Element(
		226, "assets/thumb/buch_kaffekalt_small.jpg",
		90, 90,
		"53000-000.000.000", "Buch",
		"&quot;Bei der Feuerwehr wird der Kaffee kalt&quot;", "",
		"8", "0.36",
		"1", 1,
		"Stück", "12",
		"", "pd1568225603.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[227] = new Element(
		227, "assets/thumb/buch_feuerwehrmaenner_small.jpg",
		90, 90,
		"63000-000.000.000", "Buch",
		"&quot;Die Feuerwehrmänner&quot;", "",
		"5.95", "0.3",
		"1", 1,
		"Stück", "12",
		"", "pd1120112639.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[228] = new Element(
		228, "assets/thumb/bastellbuch_small.jpg",
		90, 90,
		"04000-000.000.000", "Buch",
		"Feuerwehr Bastelbuch", "",
		"4.5", "0.51",
		"1", 1,
		"Stück", "12",
		"", "pd-1250303329.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[229] = new Element(
		229, "assets/thumb/buch_feuerspritze_small.jpg",
		90, 90,
		"73000-000.000.000", "Buch",
		"&quot;Die kleine Feuerspritze&quot;", "",
		"8", "0.35",
		"1", 1,
		"Stück", "12",
		"", "pd-813618895.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[230] = new Element(
		230, "assets/thumb/lesezeichenwasser_small.jpg",
		90, 90,
		"81100-000.000.000", "Lesezeichen",
		"Wasser marsch", "",
		"1.6", "0.005",
		"1", 1,
		"Stück", "12",
		"", "pd-1888908325.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[231] = new Element(
		231, "assets/thumb/magnetlesezeichen_small.jpg",
		90, 90,
		"34200-020.061.000", "Lesezeichen",
		"FEUERWEHR, magnetisch", "",
		"1.7", "0.1",
		"1", 1,
		"Stück", "12",
		"", "pd-972662359.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[232] = new Element(
		232, "assets/thumb/lesezeichenauto_small.jpg",
		90, 90,
		"71100-000.000.000", "Lesezeichen",
		"Feuerwehrauto", "",
		"1.6", "0.005",
		"1", 1,
		"Stück", "12",
		"", "pd-1057100507.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[233] = new Element(
		233, "assets/thumb/warnweste_small.jpg",
		90, 90,
		"80200-002.001.000", "Warnweste",
		"mit Reflektorstreifen, Einheitsgröße", "",
		"4.9", "0.2",
		"1", 1,
		"Stück", "13",
		"Farbe;Neongelb@", "pd1448080975.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[234] = new Element(
		234, "assets/thumb/rauchmelder_small.jpg",
		90, 90,
		"06100-000.000.000", "Rauchmelder",
		"RM 120 C", "",
		"7.5", "0.21",
		"1", 1,
		"Stück", "13",
		"", "pd1656436079.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[235] = new Element(
		235, "assets/thumb/parkscheibe_small.jpg",
		90, 90,
		"93200-006.059.000", "Parkscheibe",
		"FEUERWEHR", "",
		"2.5", "0.1",
		"1", 1,
		"Stück", "13",
		"", "pd2093176708.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[236] = new Element(
		236, "assets/thumb/soscutter_small.jpg",
		90, 90,
		"09000-003.000.000", "Gurttrenner",
		"SOS-Cutter", "",
		"4.95", "0.15",
		"1", 1,
		"Stück", "13",
		"", "pd-42882085.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[237] = new Element(
		237, "assets/thumb/wecker_small.jpg",
		90, 90,
		"90200-000.029.000", "Wecker",
		"Blaulicht", "",
		"12.5", "0.51",
		"1", 1,
		"Stück", "18",
		"", "pd2015832450.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[238] = new Element(
		238, "assets/thumb/kinderuhr_small.jpg",
		90, 90,
		"60100-002.000.000", "Kinder-Wanduhr",
		"Disney Feuerwehrmann Mickey", "",
		"6.5", "0.51",
		"1", 1,
		"Stück", "18",
		"", "pd-767814190.htm",
		"", 1,
		"22", "0",
		 0)
	
		Entry[239] = new Element(
		239, "assets/thumb/geschenkpapier_fahrzeuge_small.jpg",
		90, 90,
		"18000-000.000.000", "Geschenkpapier",
		"Historische Löschfahrzeuge", "",
		"1.5", "0.06",
		"1", 1,
		"Stück", "19",
		"", "pd87302533.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[240] = new Element(
		240, "assets/thumb/geschenkpapier_loeschi_small.jpg",
		90, 90,
		"28000-000.000.000", "Geschenkpapier",
		"Löschi", "",
		"1.5", "0.06",
		"1", 1,
		"Stück", "19",
		"", "pd-1867491525.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[241] = new Element(
		241, "assets/thumb/spardose_small.jpg",
		90, 90,
		"47100-000.000.000", "Spardose",
		"Bierkrug mit Feuerwehrmann", "",
		"8.8", "0.75",
		"1", 1,
		"Stück", "19",
		"", "pd-746053457.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[242] = new Element(
		242, "assets/thumb/teelichthalter_small.jpg",
		90, 90,
		"39100-000.000.000", "Teelichthalter",
		"Feuerwehrmann", "",
		"4.5", "0.51",
		"1", 1,
		"Stück", "19",
		"", "pd885881561.htm",
		"", 1,
		"18", "0",
		 0)
	
		Entry[243] = new Element(
		243, "assets/thumb/puzzle_playmobil_einsatz_small.jpg",
		90, 90,
		"64100-000.026.000", "Playmobil",
		"Puzzle + Figur", "",
		"8.15", "0.51",
		"1", 1,
		"Stück", "17",
		"", "pd82214476.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[244] = new Element(
		244, "assets/thumb/playmobil3set_small.jpg",
		90, 90,
		"34100-000.000.000", "Playmobil",
		"Feuerwehrmänner", "",
		"8.5", "0.08",
		"1", 1,
		"Stück", "17",
		"", "pd1779675656.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[245] = new Element(
		245, "assets/thumb/playmobilchef_small.jpg",
		90, 90,
		"44100-000.000.000", "Playmobil",
		"Feuerwehrhauptmann", "",
		"2.9", "0.025",
		"1", 1,
		"Stück", "17",
		"", "pd1669252946.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[246] = new Element(
		246, "assets/thumb/playmobilzubehoer_small.jpg",
		90, 90,
		"05100-000.000.000", "Playmobil",
		"Zubehörset Feuerwehr", "",
		"2.9", "0.04",
		"1", 1,
		"Stück", "17",
		"", "pd-1143360804.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[247] = new Element(
		247, "assets/thumb/alarmalarm_small.jpg",
		90, 90,
		"84100-000.000.000", "Playmobil",
		"Spiel &quot;Alarm! Alarm!&quot;", "",
		"7.5", "0.5",
		"1", 1,
		"Stück", "17",
		"", "pd2092221499.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[248] = new Element(
		248, "assets/thumb/sparky_small.jpg",
		90, 90,
		"55100-000.000.000", "Plüschfigur",
		"Sparky", "",
		"9", "1.5",
		"1", 1,
		"Stück", "17",
		"", "pd-460661928.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[249] = new Element(
		249, "assets/thumb/plueschtier_teddynomex_small.jpg",
		90, 90,
		"35100-000.051.000", "Plüschfigur",
		"Feuerwehr-Teddy", "",
		"7.5", "0.07",
		"1", 1,
		"Stück", "17",
		"", "pd1422356385.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[250] = new Element(
		250, "assets/thumb/benjamin_bluemchen_small.jpg",
		90, 90,
		"42200-020.051.000", "Plüschfigur",
		"Benjamin Blümchen Feuerwehrmann", "",
		"7.95", "0.5",
		"1", 1,
		"Stück", "17",
		"", "pd1470869426.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[251] = new Element(
		251, "assets/thumb/plueschauto_small.jpg",
		90, 90,
		"25100-000.000.000", "Plüschfigur",
		"Feuerwehrauto", "",
		"14.9", "0.51",
		"1", 1,
		"Stück", "17",
		"", "pd1238671691.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[252] = new Element(
		252, "assets/thumb/plueschtier_teddyjfw_small.jpg",
		90, 90,
		"45100-000.051.000", "Plüschfigur",
		"Jugendfeuerwehr-Teddy", "",
		"7.5", "0.09",
		"1", 1,
		"Stück", "17",
		"", "pd764015867.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[253] = new Element(
		253, "assets/thumb/feuerteufel_small.jpg",
		90, 90,
		"15100-004.000.000", "Plüschfigur",
		"Feuerteufel", "",
		"7.9", "0.75",
		"1", 1,
		"Stück", "17",
		"", "pd1111070975.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[254] = new Element(
		254, "assets/thumb/saugnapfbaer_small.jpg",
		90, 90,
		"22200-014.051.000", "Plüschfigur",
		"mit Saugnäpfen", "",
		"3.6", "0.11",
		"1", 1,
		"Stück", "17",
		"Artikel;Feuerwehrbär@", "pd11044317.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[255] = new Element(
		255, "assets/thumb/puzzle_small.jpg",
		90, 90,
		"75100-000.024.000", "Puzzle",
		"Feuerwehr", "",
		"2.8", "0.08",
		"1", 1,
		"Stück", "17",
		"", "pd-1450155647.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[256] = new Element(
		256, "assets/thumb/quarttet_small.jpg",
		90, 90,
		"85100-000.000.000", "Quartett",
		"Feuerwehr", "",
		"2.5", "0.08",
		"1", 1,
		"Stück", "17",
		"", "pd1216000409.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[257] = new Element(
		257, "assets/thumb/pylone_small.jpg",
		90, 90,
		"33000-016.000.000", "Big",
		"Pylon", "",
		"6.2", "0.51",
		"1", 1,
		"Stück", "17",
		"", "pd-39664589.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[258] = new Element(
		258, "assets/thumb/bobbycar_small.jpg",
		90, 90,
		"23000-004.000.000", "Big",
		"Bobby Car Mini", "",
		"3.5", "0.04",
		"1", 1,
		"Stück", "17",
		"", "pd-1140386349.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[259] = new Element(
		259, "assets/thumb/blecheimer_small.jpg",
		90, 90,
		"43200-004.057.000", "Blecheimer",
		"mit Holzgriff", "",
		"3.95", "0.1",
		"1", 1,
		"Stück", "13",
		"", "pd-1226256503.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[260] = new Element(
		260, "assets/thumb/aschenbecher1_small.jpg",
		90, 90,
		"11000-004.000.000", "Aschenbecher",
		"FEUERWEHR", "",
		"3", "0.2",
		"1", 1,
		"Stück", "13",
		"", "pd-3566217.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[261] = new Element(
		261, "assets/thumb/aschenbecher_small.jpg",
		90, 90,
		"21000-000.000.000", "Aschenbecher",
		"Feuerwehrmann rein", "",
		"4", "0.51",
		"1", 1,
		"Stück", "13",
		"", "pd246922099.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[262] = new Element(
		262, "assets/thumb/tragetaschegelb_small.jpg",
		90, 90,
		"82200-002.054.000", "BW-Tragetasche",
		"&quot;Wenn&rsquo;s brennt 112&quot;", "",
		"2.4", "0.1",
		"1", 1,
		"Stück", "13",
		"", "pd1137516040.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[263] = new Element(
		263, "assets/thumb/baumwolltasche_small.jpg",
		90, 90,
		"44000-004.000.000", "BW-Tragetasche",
		"Notruf 112", "",
		"2.4", "0.1",
		"1", 1,
		"Stück", "13",
		"", "pd-399563291.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[264] = new Element(
		264, "assets/thumb/set_pylon_small.jpg",
		90, 90,
		"25000-016.000.000", "Dickie",
		"Pylone 4er-Set", "",
		"5.9", "0.51",
		"1", 1,
		"Stück", "17",
		"", "pd1121665228.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[265] = new Element(
		265, "assets/thumb/einsatzset2_small.jpg",
		90, 90,
		"52200-000.000.000", "Dickie",
		"Feuerwehrfahrzeuge-Set", "",
		"2.95", "0.6",
		"1", 1,
		"Stück", "17",
		"", "pd-37302458.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[266] = new Element(
		266, "assets/thumb/einkaufswagenchip_small.jpg",
		90, 90,
		"95000-016.000.000", "EKW-Chip",
		"Feuerwehr / Notruf 112", "",
		"0.5", "0.005",
		"1", 1,
		"Stück", "13",
		"", "pd-347180965.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[267] = new Element(
		267, "assets/thumb/feuerzeug_feuerloescher_small.jpg",
		90, 90,
		"56000-004.000.000", "Feuerzeug",
		"Feuerlöscher", "",
		"4.5", "0.3",
		"1", 1,
		"Stück", "13",
		"", "pd-701287401.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[268] = new Element(
		268, "assets/thumb/feuerzeugnormal_small.jpg",
		90, 90,
		"66000-016.000.000", "Feuerzeug",
		"FEUERWEHR", "",
		"1", "0.02",
		"1", 1,
		"Stück", "13",
		"", "pd1095147524.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[269] = new Element(
		269, "assets/thumb/figur_schlumpf_small.jpg",
		90, 90,
		"27000-000.000.000", "Figur",
		"Feuerwehrschlumpf", "",
		"4.3", "0.03",
		"1", 1,
		"Stück", "17",
		"", "pd-752869241.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[270] = new Element(
		270, "assets/thumb/figur_mickymouse_small.jpg",
		90, 90,
		"37000-000.000.000", "Figur",
		"Mickey Mouse", "",
		"3.6", "0.04",
		"1", 1,
		"Stück", "17",
		"", "pd-1205875471.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[271] = new Element(
		271, "assets/thumb/taz_small.jpg",
		90, 90,
		"47000-000.043.000", "Figur",
		"Tasmanischer Teufel", "",
		"2.5", "0.03",
		"1", 1,
		"Stück", "17",
		"", "pd-652415571.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[272] = new Element(
		272, "assets/thumb/flaschenhalter_small.jpg",
		90, 90,
		"57000-000.044.000", "Flaschenhalter",
		"Feuerwehrmann", "",
		"8.8", "1",
		"1", 1,
		"Stück", "13",
		"", "pd1118603060.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[273] = new Element(
		273, "assets/thumb/flaschenoeffner_small.jpg",
		90, 90,
		"87000-000.000.000", "Flaschenöffner",
		"Feuerwehrkelle", "",
		"3.8", "0.04",
		"1", 1,
		"Stück", "13",
		"", "pd-829055229.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[274] = new Element(
		274, "assets/thumb/flaschenoeffnerhupf_small.jpg",
		90, 90,
		"24200-019.029.000", "Flaschenöffner",
		"Nomex-Anzug", "",
		"6.5", "0.1",
		"1", 1,
		"Stück", "13",
		"", "pd-736273409.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[275] = new Element(
		275, "assets/thumb/heizkoerperschluessel_small.jpg",
		90, 90,
		"63200-023.000.000", "Flaschenöffner",
		"FEUERWEHR, mit Heizkörperschlüssel", "",
		"1.95", "0.1",
		"1", 1,
		"Stück", "13",
		"Farbe;weiß/blau@", "pd774471398.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[276] = new Element(
		276, "assets/thumb/multiklammer_small.jpg",
		90, 90,
		"33200-000.000.000", "Fotoclip",
		"&quot;Wenn´s brennt 112&quot;", "",
		"2.4", "0.1",
		"1", 1,
		"Stück", "13",
		"", "pd-1054806877.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[277] = new Element(
		277, "assets/thumb/feuerloescher_small.jpg",
		90, 90,
		"99000-000.034.000", "Kinder-Feuerlöscher",
		"Wasserspielzeug", "",
		"5.9", "0.51",
		"1", 1,
		"Stück", "17",
		"", "pd1338586225.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[278] = new Element(
		278, "assets/thumb/kinderhelm_small.jpg",
		90, 90,
		"10100-009.000.000", "Kinder-Feuerwehrhelm",
		"deutsch, mit Klappvisier", "",
		"6.5", "0.51",
		"1", 1,
		"Stück", "17",
		"", "pd1108477573.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[279] = new Element(
		279, "assets/thumb/feuerwehrkelleblinkend_small.jpg",
		90, 90,
		"20100-000.048.000", "Kinder-Feuerwehrkelle",
		"mit Blinklicht, Batteriebetrieb", "",
		"7.5", "0.3",
		"1", 1,
		"Stück", "17",
		"", "pd2031473671.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[280] = new Element(
		280, "assets/thumb/megafon_small.jpg",
		90, 90,
		"30100-000.000.000", "Kinder-Megafon",
		"mit Funktion, Batteriebetrieb", "",
		"7.5", "0.51",
		"1", 1,
		"Stück", "17",
		"", "pd-509822327.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[281] = new Element(
		281, "assets/thumb/kinderrucksack_small.jpg",
		90, 90,
		"40100-004.000.000", "Kinder-Rucksack",
		"mit Schlüsselanhänger Feuerwehrkelle", "",
		"4.5", "0.18",
		"1", 1,
		"Stück", "17",
		"", "pd1243979176.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[282] = new Element(
		282, "assets/thumb/kindertaschenlampe_small.jpg",
		90, 90,
		"50100-000.031.000", "Kinder-Taschenlampe",
		"mit Dauer- und Blinkfunktion", "",
		"3.95", "0.1",
		"1", 1,
		"Stück", "17",
		"", "pd1125418989.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[283] = new Element(
		283, "assets/thumb/kissen_small.jpg",
		90, 90,
		"13200-002.056.000", "Kissen",
		"&quot;Wenn´s brennt 112&quot;", "",
		"9.95", "0.6",
		"1", 1,
		"Stück", "13",
		"", "pd-1469451225.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[284] = new Element(
		284, "assets/thumb/lego_city_7241_small.jpg",
		90, 90,
		"61100-000.000.000", "Lego",
		"City Feuerwehr", "",
		"4.5", "0.1",
		"1", 1,
		"Stück", "17",
		"", "pd1129639233.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[285] = new Element(
		285, "assets/thumb/magnete_small.jpg",
		90, 90,
		"45200-020.060.000", "Magnet",
		"Feuerwehrfahrzeuge", "",
		"1.5", "0.1",
		"1", 1,
		"Stück", "13",
		"Artikel;DL retro@", "pd1787523106.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[286] = new Element(
		286, "assets/thumb/massband_small.jpg",
		90, 90,
		"53200-004.000.000", "Maßband",
		"FEUERWEHR", "",
		"2.5", "0.1",
		"1", 1,
		"Stück", "13",
		"", "pd1843049133.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[287] = new Element(
		287, "assets/thumb/mbelw.jpg",
		90, 90,
		"53100-000.000.000", "Modellauto",
		"SIKU MB E290T ELW", "",
		"3.6", "0.07",
		"1", 1,
		"Stück", "17",
		"", "pd1097476679.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[288] = new Element(
		288, "assets/thumb/drehleiter.jpg",
		90, 90,
		"43100-000.000.000", "Modellauto",
		"SIKU MB Drehleiter", "",
		"3", "0.08",
		"1", 1,
		"Stück", "17",
		"", "pd196304293.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[289] = new Element(
		289, "assets/thumb/mbtlf.jpg",
		90, 90,
		"33100-000.000.000", "Modellauto",
		"SIKU MB Actros TLF", "",
		"3", "0.07",
		"1", 1,
		"Stück", "17",
		"", "pd-980789811.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[290] = new Element(
		290, "assets/thumb/gelenkmast.jpg",
		90, 90,
		"63100-000.000.000", "Modellauto",
		"SIKU MB Gelenkarm", "",
		"3", "0.07",
		"1", 1,
		"Stück", "17",
		"", "pd1674201321.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[291] = new Element(
		291, "assets/thumb/vwbus_small.jpg",
		90, 90,
		"13100-000.000.000", "Modellauto",
		"SIKU Gerätewagen", "",
		"3.1", "0.07",
		"1", 1,
		"Stück", "17",
		"", "pd-1729013040.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[292] = new Element(
		292, "assets/thumb/serviette_small.jpg",
		90, 90,
		"83100-000.000.000", "Papierservietten",
		"Feuerwehrauto", "",
		"1.8", "0.09",
		"1", 1,
		"Stück", "13",
		"", "pd-412776969.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[293] = new Element(
		293, "assets/thumb/skatspiel_small.jpg",
		90, 90,
		"37100-000.000.000", "Skat-Spiel",
		"Historische Feuerwehruniformen", "",
		"3", "0.09",
		"1", 1,
		"Stück", "17",
		"", "pd-2001535618.htm",
		"", 1,
		"21", "0",
		 0)
	
		Entry[294] = new Element(
		294, "assets/thumb/becherohnekugelschreiber_small.jpg",
		90, 90,
		"08100-016.000.000", "Stiftebecher",
		"ohne Inhalt", "",
		"3.5", "0.51",
		"1", 1,
		"Stück", "15",
		"", "pd-2087225730.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[295] = new Element(
		295, "assets/thumb/schirm_small.jpg",
		90, 90,
		"18100-004.000.000", "Stockschirm",
		"&quot;Wasser marsch&quot;", "",
		"5", "0.53",
		"1", 1,
		"Stück", "13",
		"", "pd-842713036.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[296] = new Element(
		296, "assets/thumb/taschenschirm_small.jpg",
		90, 90,
		"23200-006.000.000", "Taschenschirm",
		"FEUERWEHR", "",
		"12.45", "0.51",
		"1", 1,
		"Stück", "13",
		"Farbe;Blau@", "pd-1836261487.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[297] = new Element(
		297, "assets/thumb/tasse1_small.jpg",
		90, 90,
		"98100-015.000.000", "Tasse",
		"&quot;FEUERWEHR - Ohne uns...&quot;", "",
		"7.8", "0.51",
		"1", 1,
		"Stück", "13",
		"", "pd601729667.htm",
		"", 1,
		"15", "0",
		 0)
	
		Entry[298] = new Element(
		298, "assets/thumb/kaffeetasse_rot_small.jpg",
		90, 90,
		"19100-016.000.000", "Tasse",
		"FEUERWEHR 112, mit Geschenkkarton", "",
		"6.5", "0.51",
		"1", 1,
		"Stück", "13",
		"", "pd1107342247.htm",
		"", 1,
		"15", "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();
			};
		};