	// define buildUp Methods for StandAloneElements
	function createLine(){
		myLine = new clsObject("OrderBody")
			myLine.LinePos						=	xmlOHeader.childNodes.length;
			myLine.ProductNo					=	"";
			myLine.Name							=	"";
			myLine.Description					=	"";
			myLine.PriceUserEntry				=	"";
			myLine.PriceUnit					=	"1";
			myLine.MinOrder						=	"1";
			myLine.QuantityUnit					=	"";
			myLine.QuantityAmount				=	"1";
			myLine.TaxClass						=	"0";
			myLine.TaxRate						=	"0";
			myLine.TaxAmountLineTotalLC			=	"0";
			myLine.TaxAmountLineTotalSC			=	"0";
			myLine.DiscountRate					=	"0";
			myLine.DiscountNetSingleUnitLC		=	"0";
			myLine.DiscountGrossSingleUnitLC	=	"0";
			myLine.DiscountNetLineTotalLC		=	"0";
			myLine.DiscountGrossLineTotalLC		=	"0";
			myLine.DiscountNetSingleUnitSC		=	"0";
			myLine.DiscountGrossSingleUnitSC	=	"0";
			myLine.DiscountNetLineTotalSC		=	"0";
			myLine.DiscountGrossLineTotalSC		=	"0";
			myLine.PriceNetSingleUnitLC			=	"0";
			myLine.PriceGrossSingleUnitLC		=	"0";
			myLine.PriceNetLineTotalLC			=	"0";
			myLine.PriceGrossLineTotalLC		=	"0";
			myLine.PriceNetSingleUnitSC			=	"0";
			myLine.PriceGrossSingleUnitSC		=	"0";
			myLine.PriceNetLineTotalSC			=	"0";
			myLine.PriceGrossLineTotalSC		=	"0";
			myLine.WeightUnit					=	"";
			myLine.WeightAmountSingleUnit		=	"0";
			myLine.WeightAmountLineTotal		=	"0";
			// remove
			myLine.addNode("Internal");
	// return Line-Object to Caller
	return myLine;
	};
// 
	function addToBag(anElement,Amount){
		with(this){
			var taxamount = taxarea[parseInt(xmlConfig.taxarea)][parseInt(anElement.Tax) + 1];
			var update = -1;
			myLines = xmlOHeader.childNodes
			for(var i=0;i<myLines.length;i++){
				if(myLines[i].ProductNo==anElement.Prod_nr){
					update = i;
					break;
					};
				};
			// product already in shoppingcard
			if(update>-1){
				// detect position of prod_nr in shoppingcart
				myLines[i].QuantityAmount = Amount;
				if(boolPriceTaxIncl){
					myLines[i].PriceNetLineTotalLC = anElement.Price * Amount * ( 1 - taxamount/( 100 + taxamount ));
					myLines[i].PriceGrossLineTotalLC = anElement.Price * Amount;
					}
				else{
					myLines[i].PriceNetLineTotalLC = anElement.Price * Amount;
					myLines[i].PriceGrossLineTotalLC = anElement.Price * Amount * ( 1 + taxamount/100 );
					};
				}
			// add product to shoppingcart
			else{
				myLine = createLine();
				myLine.ProductNo = anElement.Prod_nr;
				myLine.Name = anElement.Title;
				myLine.Description = anElement.Subtitle;
				myLine.QuantityAmount = Amount;
				myLine.QuantityUnit = anElement.Unitdesc;
				myInternal = myLine.getFirstItem("Internal")
					myInternal.price = anElement.Price;
					myInternal.address = anElement.LnkAdress;
					myInternal.navIndex = anElement.NavIndex;
					myInternal.discount = anElement.Discount;
					myInternal.minOrder = anElement.Minorder;
					myInternal.variants = anElement.Variants;
					myInternal.catDiscount = anElement.catDiscount;
				
				myLine.WeightAmountSingleUnit = parseFloat(anElement.Weight);
				myLine.WeightAmountLineTotal = parseFloat(anElement.Weight) * parseInt(Amount);
				
				myLine.TaxClass = anElement.Tax;
				myLine.TaxRate = taxamount;
				
				myLine.PriceUnit = anElement.PriceUnit;
				
				if(boolPriceTaxIncl){
					myLine.PriceNetSingleUnitLC = parseFloat(anElement.Price) * ( 1 - taxamount/( 100 + taxamount ) );
					myLine.PriceNetLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount) * ( 1 - taxamount/( 100 + taxamount ) );
					myLine.PriceGrossSingleUnitLC = parseFloat(anElement.Price);
					myLine.PriceGrossLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount);
					}
				else{
					myLine.PriceNetSingleUnitLC = parseFloat(anElement.Price);
					myLine.PriceNetLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount);
					myLine.PriceGrossSingleUnitLC = parseFloat(anElement.Price) * ( 1 + taxamount/100 );
					myLine.PriceGrossLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount) * ( 1 + taxamount/100 );
					};
				myLines[myLines.length] = myLine;
				};
			safeData();
			var dummyQueryString = "";
			if(Element){
				dummyQueryString += "productId=" + anElement.Prod_No + "&quantity=" + Amount;
				};
			location.href="orderform.htm?" + dummyQueryString;
			};
		};
// ** 1105
	function TElementPrint(){
		var boolDisplArtId = "true";
		var variants, variantString = "";
		variants = this.Variants.split("@");
		for(var i=0; i<variants.length - 1; i++){
			variantString += "search" + i + "_EQ_" + variants[i].split(";")[1] + "_AND_"; 
			};
		variantString += "{EOL}";
		
		var addToBag = '<img src="assets/images/btnaddtobag.gif" width="99" height="24" alt="Artikel merken" border="0" align="bottom" hspace="0" vspace="0" class="main">';
		var rString = '<TR><TD align="right" class="PROVIEWBODY">';
		if(this.Image!=""){
			if(this.LnkAdress!="#DROP#") rString += "<a href=\"" + this.LnkAdress + "?defaultVariants=" + variantString + "&categoryId=" + this.NavIndex + "\">";
			rString += "<img src='" + this.Image + "' border=0";
			if(this.Width!=0) rString += " width=" + this.Width;
			if(this.Height!=0) rString += " height=" + this.Height;
			rString += " align=\"top\">";
			if(this.LnkAdress!="#DROP#") rString += "</a>";
			};
		
		rString += '</TD><TD class="PROVIEWBODY" valign="top" width="100%"><TABLE border="0" cellpadding="1" cellspacing="0" width="100%">';
		if(boolDisplArtId) rString += '<TR><TD class="PROVIEWARTID">' + this.Prod_nr + "</TD></TR>";
		rString += "<TR><TD class=\"PROVIEWBEZ1\">"
		if(this.LnkAdress!="#DROP#") rString += "<a href=\"" + this.LnkAdress + "?defaultVariants=" + variantString + "&categoryId=" + this.NavIndex + "\">"
		rString += this.Title;
		if(this.LnkAdress!="#DROP#") rString += "</a>";
		rString += "</TD></TR>"
			+ "<TR><TD class=\"PROVIEWBEZ2\">" + this.Subtitle;
		if(variants.length>0) rString += "<br>";
		for(var i=0; i<variants.length - 1; i++){
			rString	+= "<nobr><strong>" + variants[i].split(";")[0] + ": " + variants[i].split(";")[1] + "</strong>"
			if(i<variants.length-2) rString += ", ";
			rString += "</nobr>";
			};
		rString += "</TD></TR>";
		if(this.displMode==0||this.displMode==2){
			rString	+= "<TR><TD>";
			rString += "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">";
			if(this.catDiscount==0){
				rString += "<tr valign=\"top\"><td class=\"PROVIEWPRICE\" nowrap>";
				rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
				if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objSecCurrency);
				rString += "</td></tr>";
				}
			else{
				if(this.Discount==""||this.Discount=="{EOL}"){
					rString += "<tr valign=\"top\">";
					rString += "<td nowrap>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 / Prix sur demande";
			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/RindsfiletCH.jpg",
		29, 100,
		"1023", "Rinds-Filet ",
		"Filet de boeuf", "AR",
		"46.9", "10",
		"1", 1,
		"Kilogramm", "0",
		"", "pd-1042494266.htm",
		"", 10,
		"101", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/US_112.jpg",
		100, 66,
		"1277", "US-Rib Eye Nr. 112",
		"", "USA",
		"47.4", "20",
		"3", 1,
		"Kilogramm", "0",
		"", "pd-383101493.htm",
		"", 20,
		"101", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/USFilet190.jpg",
		100, 75,
		"1290", "US-Filet Nr. 190",
		"", "USA",
		"82.1", "15",
		"3", 1,
		"Kilogramm", "0",
		"", "pd2023398986.htm",
		"", 15,
		"101", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/LammnstNZ.jpg",
		27, 80,
		"3322", "Lamm-Nierstück  ohne Silberhaut",
		"Aloyau d&rsquo; agneau sans peau", "NZ",
		"40.7", "10",
		"1", 1,
		"Kilogramm", "9",
		"", "pd-1200064279.htm",
		"", 10,
		"201", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/LammnstNZ.jpg",
		27, 80,
		"3325", "Lamm-Nierstück o. SH &quot;Ambassador&quot;",
		"Australien", "AU",
		"45.3", "10",
		"1", 1,
		"Kilogramm", "9",
		"", "pd386832118.htm",
		"", 10,
		"201", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/Ovinecoquilles.jpg",
		80, 63,
		"3362", "Ovine-Nierstück",
		"", "AU",
		"35.5", "10",
		"1", 1,
		"Kilogramm", "9",
		"", "pd-1733194433.htm",
		"", 10,
		"201", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/LammracksAU.jpg",
		75, 80,
		"3331", "Lamm-Racks RR",
		"", "AU",
		"39.6", "10",
		"1", 1,
		"Kilogramm", "9",
		"", "pd-963849630.htm",
		"", 10,
		"201", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/LammracksAU.jpg",
		75, 80,
		"3332", "Lamm-Racks RR &quot;Ambassador&quot;",
		"", "AU",
		"43.7", "10",
		"1", 1,
		"Kilogramm", "9",
		"", "pd-1706752197.htm",
		"", 10,
		"201", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/Lammfilet3.jpg",
		80, 61,
		"3337", "Lamm-Filets",
		"", "NZ",
		"32.2", "10",
		"1", 1,
		"Kilogramm", "9",
		"", "pd174147424.htm",
		"", 10,
		"201", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/Lammfilet_IE2.jpg",
		80, 100,
		"3338", "Lamm-Filets",
		"", "AU",
		"32.2", "10",
		"1", 1,
		"Kilogramm", "9",
		"", "pd825871329.htm",
		"", 10,
		"201", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/Huft.jpg",
		75, 58,
		"3339", "Lamm-Huft",
		"", "AU",
		"29.1", "15",
		"1", 1,
		"Kilogramm", "9",
		"", "pd-409666418.htm",
		"", 15,
		"201", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/LammgigotmHuft.jpg",
		45, 80,
		"3343", "Lamm-Gigots m. Huft",
		"", "AU",
		"19.5", "15",
		"1", 1,
		"Kilogramm", "9",
		"", "pd1838676215.htm",
		"", 15,
		"201", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/Lammrueckenvv.jpg",
		49, 80,
		"3349", "Lamm-Rücken",
		"", "AU",
		"24.3", "15",
		"1", 1,
		"Kilogramm", "9",
		"", "pd2015669612.htm",
		"", 15,
		"201", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/Auiguillette.gif",
		30, 100,
		"6507", "Pferde-Aiguillette",
		"USA", "Mexico",
		"14", "20",
		"1", 1,
		"Kilogramm", "11",
		"", "pd-212237958.htm",
		"", 20,
		"007", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/Pferdeentrecote_USA_origina.jpg",
		100, 55,
		"6555", "Pferde-Entrecôte schwer  -   Entrecôte de cheval  lourd  ",
		"", "Mexico",
		"17.5", "25",
		"1", 1,
		"Kilogramm", "11",
		"", "pd-1383113101.htm",
		"", 25,
		"007", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/Pferdefilet_offen.jpg",
		100, 34,
		"6629", "Pferde-Filet  -  Filet de cheval  ",
		"Argentinien", "AR",
		"29.4", "1",
		"1", 1,
		"Kilogramm", "11",
		"", "pd-288429000.htm",
		"", 30,
		"007", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/Entrecôte_3erSchnitt.jpg",
		100, 33,
		"6565", "Pferde-Entrecôte &quot; Premium &quot;   -   Entrecôte de cheval Premium  ",
		"", "Mexico",
		"25.9", "25",
		"1", 1,
		"Kilogramm", "11",
		"", "pd-661006887.htm",
		"", 25,
		"007", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/Pferdefilet.jpg",
		100, 64,
		"6554", "Pferde-Filet 2.3 kg schwer -  Filet de cheval lourd +2,3 kg ",
		"", "Mexico",
		"31", "25",
		"1", 1,
		"Kilogramm", "11",
		"", "pd1496839087.htm",
		"", 25,
		"007", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/Huft_ganz.jpg",
		100, 84,
		"6526", "Pferde-Huft   -   Rumpsteak de Cheval ",
		" Rumpsteak de Cheval / USA", "Mexico",
		"13.2", "25",
		"1", 1,
		"Kilogramm", "11",
		"", "pd1687018869.htm",
		"", 25,
		"007", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/Filetportionenvac.jpg",
		80, 52,
		"8028", "Straussenfilet Portionen",
		"", "ZA",
		"28.1", "10",
		"1", 1,
		"Kilogramm", "16",
		"", "pd-473811797.htm",
		"", 10,
		"401", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/Fanfilet.jpg",
		50, 80,
		"8030", "Straussen- Fanfilet  ",
		"Filet - Large d&rsquo;autruche", "ZA",
		"26.3", "10",
		"1", 1,
		"Kilogramm", "16",
		"", "pd-1741364208.htm",
		"", 10,
		"401", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/Straussen_Steak_ganz.jpg",
		100, 93,
		"8038", "Straussen-Steak",
		"Autruche Steak", "ZA",
		"20", "10",
		"1", 1,
		"Karton kalibriert à 10 kg", "16",
		"", "pd473849191.htm",
		"", 30,
		"401", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/Straussenmoeckli.jpg",
		75, 65,
		"9300a", "Straussen - Möckli geräucht",
		"", "ZA",
		"40", "1",
		"1", 1,
		"Kilogramm", "16",
		"", "pd-1784613604.htm",
		"", 1,
		"401", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/PouletganzCH.jpg",
		71, 80,
		"7012", "Grillers 900 / 1000 / 1100 / 1200 / 1300 / 1400 g",
		"", "CH",
		"6.2", "1",
		"1", 1,
		"Kilogramm", "12",
		"Grösse;1000 g@", "pd-822018623.htm",
		"", 30,
		"601", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/thum_gefluegel.jpg",
		50, 54,
		"7015", "Poulet-Brustschnitzel 120 - 140 g IQF / TK",
		"", "BR",
		"9.2", "1",
		"1", 1,
		"Kilogramm", "12",
		"", "pd-1301806866.htm",
		"", 1,
		"601", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/Stroganoff.jpg",
		68, 100,
		"7041", "Poulet-Brust - Stroganoff IQF",
		"10 x 1 kg", "BR",
		"9.1", "10",
		"1", 1,
		"Kilogramm", "12",
		"", "pd1676836248.htm",
		"", 30,
		"601", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/Trutenschnitzel.jpg",
		100, 73,
		"7068", "Truten-Schnitzel 120 - 140 / TK ",
		"2025 vom 12.7.02", "PL",
		"15.9", "10",
		"1", 1,
		"Kilogramm", "18",
		"", "pd1764949382.htm",
		"0::30::9.9;", 30,
		"602", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/thumb_truten.jpg",
		50, 58,
		"7070", "Truten-Brust TK",
		"", "BR",
		"9.9", "1",
		"1", 1,
		"Kilogramm", "18",
		"", "pd-1858276209.htm",
		"", 1,
		"602", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/Entenbrustfilet.jpg",
		80, 46,
		"7089", "Enten-Brustfilet 170-230g  /  Magret de canard 170-230g",
		"", "FR",
		"21.3", "10",
		"1", 1,
		"Kilogramm", "4",
		"", "pd1530921867.htm",
		"", 10,
		"603", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/Enten_Brustfilet_FR.jpg",
		100, 60,
		"7084", "Enten-Brust 170 - 230 g  /  Poitrine de canard 170 - 230 g",
		"", "PL",
		"19.1", "1",
		"1", 1,
		"Kilogramm", "4",
		"", "pd-114327184.htm",
		"", 1,
		"603", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/Nuggets.jpg",
		80, 51,
		"7043", "Nuggets paniert Premium  /  Nuggets de poulet panés premium",
		"", "DE",
		"11.3", "3",
		"1", 1,
		"Kilogramm", "3",
		"", "pd-30660283.htm",
		"", 30,
		"605", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/Cabillaud.jpg",
		75, 47,
		"7739", "Dorschfilets  /  Filet de Cabillaud 100 - 300 g",
		"", "Island",
		"8.9", "10",
		"1", 1,
		"Kilogramm", "5",
		"", "pd2077999723.htm",
		"", 10,
		"1002", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/St_Pierrefilet.jpg",
		75, 60,
		"7610", "St. Pierrefilet 110 - 170 g  /  Filet de St.Pierre 110 - 170g",
		"", "NZ",
		"13.6", "10",
		"1", 1,
		"Kilogramm", "5",
		"", "pd-1926907247.htm",
		"", 10,
		"1002", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/Redsnapper.jpg",
		75, 47,
		"7615", "Red Snaper 60g - 150g",
		"", "VN",
		"15.8", "10",
		"1", 1,
		"Kilogramm", "5",
		"", "pd-2084944089.htm",
		"", 10,
		"1002", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/Felchen_2.jpg",
		100, 73,
		"7616", "Felchen-Filet m. Haut  /  Filet de féra a peau 30 - 40 g",
		"", "Irland",
		"11.3", "10",
		"1", 1,
		"Kilogramm", "5",
		"", "pd-898921508.htm",
		"", 10,
		"1002", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/Egli_m_Haut.jpg",
		34, 100,
		"7631", "Egli-Filet m.Haut 20-40 g  /  Filet de perche avec peau 20- 40g",
		"", "Estland",
		"16.2", "10",
		"1", 1,
		"Kilogramm", "5",
		"", "pd-544260691.htm",
		"", 10,
		"1002", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/Zander_knusperli_EE.jpg",
		100, 87,
		"7642", "Zander-Knusperli  /  Croustille de sandre en pâte",
		"", "Europa",
		"18.4", "5",
		"1", 1,
		"Kilogramm", "5",
		"", "pd1925452200.htm",
		"", 5,
		"1002", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/Merlan_Knusperli_Teller.jpg",
		100, 57,
		"7641", "Egli-Knusperli   /  Croustille de merlan en pâte",
		"", "Europa",
		"17.9", "5",
		"1", 1,
		"Kilogramm", "5",
		"", "pd1985219209.htm",
		"", 5,
		"1002", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/LammnstNZ.jpg",
		27, 80,
		"3371", "Lamm-Nierstück o. SH / TK",
		"", "NZ",
		"35.3", "10",
		"1", 1,
		"Kilogramm", "10",
		"", "pd58519574.htm",
		"", 10,
		"202", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/LammnstNZ.jpg",
		27, 80,
		"3373", "Lamm-Nierstück o. SH / TK",
		"", "AU",
		"35.3", "10",
		"1", 1,
		"Kilogramm", "10",
		"", "pd-198576161.htm",
		"", 10,
		"202", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/Ovinecoquilles.jpg",
		80, 63,
		"3367", "Ovine-Nierstück / TK",
		"", "AU",
		"27", "1",
		"1", 1,
		"Kilogramm", "10",
		"", "pd2094197812.htm",
		"", 1,
		"202", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/Lammcarre.jpg",
		80, 78,
		"3375", "Lamm-Carrés / TK",
		"", "NZ",
		"15.8", "10",
		"1", 1,
		"Kilogramm", "10",
		"", "pd2051685669.htm",
		"", 10,
		"202", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/FiletAU.jpg",
		75, 56,
		"3383", "Lamm-Filets / TK",
		"", "NZ",
		"29.1", "10",
		"1", 1,
		"Kilogramm", "10",
		"", "pd445441920.htm",
		"", 10,
		"202", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/US180.jpg",
		100, 75,
		"1280", "US-Entrecôte Nr. 180",
		"", "USA",
		"49.4", "20",
		"3", 1,
		"Kilogramm", "0",
		"", "pd1008775523.htm",
		"", 20,
		"101", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/Huft.jpg",
		75, 58,
		"3385", "Lamm-Huft / TK",
		"", "NZ",
		"21", "10",
		"1", 1,
		"Kilogramm", "10",
		"", "pd795137943.htm",
		"", 10,
		"202", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/Gigotob.jpg",
		75, 48,
		"3391", "Lamm-Gigots o. Bein / TK",
		"", "NZ",
		"16.4", "10",
		"1", 1,
		"Kilogramm", "10",
		"", "pd406611731.htm",
		"", 10,
		"202", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/Gigotob.jpg",
		75, 48,
		"3392", "Lamm-Gigots o. Bein / TK",
		"", "AU",
		"15.5", "10",
		"1", 1,
		"Kilogramm", "10",
		"", "pd754528344.htm",
		"", 10,
		"202", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/Ohne-Titel-1.jpg",
		75, 103,
		"3393", "Lamm-Gigotssteaks / TK",
		"", "AU",
		"21.3", "10",
		"1", 1,
		"Kilogramm", "10",
		"", "pd-1882460602.htm",
		"", 10,
		"202", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/thumb_lamm.jpg",
		50, 38,
		"3395", "Lamm-Schenkel / TK",
		"", "NZ",
		"14", "1",
		"1", 1,
		"Kilogramm", "10",
		"", "pd845923919.htm",
		"", 1,
		"202", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/thumb_lamm.jpg",
		50, 38,
		"3394", "Lamm-Wurstfleisch / TK",
		"", "AU",
		"11", "25",
		"1", 1,
		"Kilogramm", "10",
		"", "pd238599858.htm",
		"", 25,
		"202", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/Flundern.jpg",
		100, 84,
		"7764", "Flundern-Filet o.Haut 80 - 120 g   /  Filet de flet sans peau 80 - 120 g",
		"", "Holland",
		"9.9", "10",
		"1", 1,
		"Kilogramm", "5",
		"", "pd1244842988.htm",
		"", 10,
		"1002", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/KalbsNussoSchale.jpg",
		100, 81,
		"5575", "Kalbs-Nuss o. Schale TK  / Noix pâtissière de veau pluchée congelée",
		"", "CH",
		"37.5", "20",
		"1", 1,
		"Kilogramm", "8",
		"", "pd1514981571.htm",
		"", 20,
		"302", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/Kalbssteaklang.jpg",
		46, 100,
		"5562", "Kalbs-Steak lang TK  /  Carré de veau coupe longue congelée",
		"", "CH",
		"42.4", "20",
		"1", 1,
		"Kilogramm", "8",
		"", "pd2107538504.htm",
		"", 20,
		"302", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/Kalbsfilet1.jpg",
		55, 100,
		"5565", "Kalbs-Filet TK",
		"Filet  mignon de veau congelé", "CH",
		"54.2", "10",
		"1", 1,
		"Kilogramm", "8",
		"", "pd579111081.htm",
		"0::100::39;", 10,
		"302", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/Weinaustralien.jpg",
		75, 59,
		"7340a", "J.J. Mc William  Chardonnay",
		"", "AU",
		"12.8", "0",
		"2", 1,
		"Flaschenn 0.75", "19",
		"", "pd1013440373.htm",
		"", 1,
		"152", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/Fetzerrot.jpg",
		58, 75,
		"7315a", "Fetzer Vineyards &quot; ValleyOaks &quot;",
		"", "USA",
		"14.5", "0",
		"2", 1,
		"Flaschenn 0.75", "13",
		"", "pd1162175890.htm",
		"", 12,
		"151", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/Nexus.jpg",
		25, 100,
		"7437a", "Nexus San Simone  Cabernat Squvignon del  Friuli",
		"", "IT",
		"13.1", "0",
		"2", 1,
		"Flaschenn 0.75", "13",
		"", "pd-2027792675.htm",
		"", 12,
		"151", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/Weinsuedafrika.jpg",
		75, 59,
		"7362a", "Cabernet / Merlot Two Oceans",
		"", "ZA",
		"7.8", "0",
		"2", 1,
		"Flaschenn 0.75", "13",
		"", "pd1013589532.htm",
		"", 12,
		"151", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/Kabeliau_RR.jpg",
		75, 56,
		"7612", "Kabeljaufilet Royal o. Haut  /  Filet de cabillaud royal sans peau",
		"", "CN",
		"12.5", "10",
		"1", 1,
		"Kilogramm", "5",
		"", "pd-1906074213.htm",
		"", 10,
		"1002", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/Fleurweiss.jpg",
		63, 75,
		"7320a", "Fleur du Cap Sauvignon Blanc",
		"", "ZA",
		"12.7", "1",
		"2", 1,
		"Flaschenn 0.75", "19",
		"", "pd1016179691.htm",
		"", 1,
		"152", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/Weinrotfranc.jpg",
		75, 58,
		"7339a", "Mc Williams&rsquo;s Chardonay-Colomba",
		"", "AU",
		"8.2", "1",
		"1", 1,
		"Kilogramm", "19",
		"", "pd1016199196.htm",
		"", 1,
		"152", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/Stellenzicht_SauvigonShiraz.jpg",
		27, 100,
		"7342a", "Stellenzicht Shiraz",
		"", "ZA",
		"14.8", "0",
		"2", 1,
		"Flaschenn 0.75", "13",
		"", "pd1167181037.htm",
		"", 12,
		"151", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/Stellenzicht-Cabernet-Sauvi.jpg",
		27, 100,
		"7344a", "Stellenzicht Cabernet Sauvignon",
		"", "ZA",
		"14.8", "0",
		"2", 1,
		"Flaschenn 0.75", "13",
		"", "pd1894729955.htm",
		"", 12,
		"151", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/Weinsuedafrika.jpg",
		75, 59,
		"7360a", "Fleur du Cap",
		"", "ZA",
		"12.7", "0",
		"2", 1,
		"Flaschenn 0.75", "13",
		"", "pd-548683288.htm",
		"", 12,
		"151", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/Weinsuedafrika.jpg",
		75, 59,
		"7364a", "Drosty Hof Cabernet Sauvignon",
		"", "ZA",
		"9.3", "0",
		"2", 1,
		"Flaschenn 0.75", "13",
		"", "pd1116177865.htm",
		"", 12,
		"151", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/Weinsuedafrika.jpg",
		75, 59,
		"7351a", "Conde de Vimioso Reserva Falula 2003",
		"", "Portugal",
		"20.9", "0",
		"2", 1,
		"Flaschenn 0.75", "13",
		"", "pd-1186653610.htm",
		"", 12,
		"151", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/WeinArgchil.jpg",
		75, 60,
		"7410a", "Catena Cabernet Sauvignon",
		"", "AR",
		"18.8", "0",
		"2", 1,
		"Flaschenn 0.75", "13",
		"", "pd1383604340.htm",
		"", 12,
		"151", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/Weinrotfranc.jpg",
		75, 58,
		"7436a", "Michel La roche Trois Grappes",
		"", "FR",
		"7.9", "1",
		"2", 1,
		"Flaschenn 0.75", "19",
		"", "pd1162210405.htm",
		"", 1,
		"152", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/MuseumReal.jpg",
		28, 100,
		"7434a", "Museum Real Cigales Tinto Reserva",
		"", "ES",
		"15.8", "0",
		"2", 1,
		"Flaschenn 0.75", "13",
		"", "pd-538096702.htm",
		"", 12,
		"151", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/Filetportionenvac.jpg",
		100, 94,
		"8043", "Straussen-Filet portionen TK  2 x 150 g / TK",
		"Autruche Filet portion TK 2 x 150 g", "ZA",
		"26.1", "10",
		"1", 1,
		"Kilogramm", "17",
		"", "pd1016609456.htm",
		"", 10,
		"402", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/LammgigotmHuft.jpg",
		45, 80,
		"3387", "Lamm-Gigots m. Huft TK",
		"Gigot d&rsquo;agneau avec quasi", "NZ",
		"13.4", "10",
		"1", 1,
		"Kilogramm", "10",
		"", "pd1254189738.htm",
		"", 10,
		"202", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/RindsfiletCH.jpg",
		29, 100,
		"2150", "Gastro-Filet GV",
		"", "CH",
		"34.4", "20",
		"1", 1,
		"Kilogramm", "0",
		"", "pd-1733486157.htm",
		"", 20,
		"101", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/Geschnezeltes.jpg",
		95, 100,
		"8026", "Straussen-Geschnezeltes",
		"", "ZA",
		"15.1", "10",
		"1", 1,
		"Kilogramm", "16",
		"", "pd1708370611.htm",
		"", 10,
		"401", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/Stroganof.gif",
		100, 87,
		"8017", "Straussen-Stroganoff",
		"", "ZA",
		"17.3", "10",
		"1", 1,
		"Kilogramm", "16",
		"", "pd1029823080.htm",
		"", 10,
		"401", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/Hirschragout.jpg",
		100, 85,
		"8107", "Hirsch-Ragout TK",
		"", "NZ",
		"15.5", "10",
		"1", 1,
		"Kilogramm", "20",
		"", "pd1035365109.htm",
		"", 10,
		"008", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/Hirschschnitzel.jpg",
		75, 44,
		"8109", "Hirsch-Schnitzel 4er TK",
		"", "NZ",
		"23.8", "1",
		"1", 1,
		"Kilogramm", "20",
		"", "pd1326691786.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/Stellenzicht_SauvigonBlanc.jpg",
		50, 100,
		"7343a", "Stellenzicht Sauvignon Blanc",
		"", "ZA",
		"10.8", "0",
		"2", 1,
		"Flaschenn 0.75", "19",
		"", "pd-1949529174.htm",
		"", 12,
		"152", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/MilchferkelRoyal-kurz.jpg",
		144, 100,
		"4447", "Partyferkel &quot; Royal &quot; kurz ( Naturgewürzt )",
		"Cochon de lait Royal ", "Oestereich",
		"31.9", "6",
		"1", 1,
		"Karton", "6",
		"", "pd-1099849406.htm",
		"", 1,
		"501", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/MilchferkelRoyal-lang.jpg",
		150, 77,
		"4442", "Partyferkel &quot; Royal &quot; lang ( Naturgewürzt )",
		"Cochon de lait Royal ", "Oestereich",
		"40.5", "6",
		"1", 1,
		"Karton", "6",
		"", "pd-359517888.htm",
		"", 1,
		"501", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/Huft getrennt  Angus AIBP.gif",
		100, 77,
		"1002", "Rinds-Huft  1/2  &quot;Premium&quot;",
		"Certfied Angus Beef", "Irland",
		"32.5", "20",
		"1", 1,
		"Kilogramm", "0",
		"", "pd1011605829.htm",
		"", 20,
		"101", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/RindsfiletCH.jpg",
		29, 100,
		"1025", "Rinds-Filet &quot;Angus&quot;",
		"Certfied Angus Beef", "Irland",
		"49.4", "20",
		"1", 1,
		"Kilogramm", "0",
		"", "pd-1834477696.htm",
		"", 20,
		"101", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/Rind-Cote Hereford21.jpg",
		100, 66,
		"1037", "Rinds-Côte &quot;Hereford&quot; 21 Tag gel.",
		"Rinds-Côte &quot;Hereford&quot;", "Irland",
		"42.3", "20",
		"1", 1,
		"Kilogramm", "0",
		"", "pd1762970030.htm",
		"", 20,
		"101", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/Stroganoff.jpg",
		100, 97,
		"8055", "Straussen-Stroganoff/ TK",
		"Autruche Stroganoff / conglé", "ZA",
		"17.3", "10",
		"1", 1,
		"Kilogramm", "17",
		"", "pd1222750044.htm",
		"", 10,
		"402", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/Lamm Rack RR Slaney.gif",
		100, 83,
		"3328", "Lamm-Racks RR &quot;Slaney&quot;",
		"", "Irland",
		"40.8", "10",
		"1", 1,
		"Kilogramm", "9",
		"", "pd1240816804.htm",
		"", 10,
		"201", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/Lamm Rack long rib.gif",
		100, 82,
		"3334", "Lamm-Racks Long Rib &quot;Slaney&quot;",
		"", "Irland",
		"37.5", "10",
		"1", 1,
		"Kilogramm", "9",
		"", "pd50832242.htm",
		"", 10,
		"201", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/Kalbshuft.jpg",
		100, 83,
		"5566", "Kalbs-Huft  TK",
		"Quasi de veau pluché congelé", "CH",
		"37.2", "20",
		"1", 1,
		"Kilogramm", "8",
		"", "pd1031832093.htm",
		"", 20,
		"302", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/Kalbsunterspaelte.jpg",
		100, 32,
		"5568", "Kalbs-Unterspälte TK",
		"Longe de veau congelée", "CH",
		"33.6", "20",
		"1", 1,
		"Kilogramm", "8",
		"", "pd-88281830.htm",
		"", 20,
		"302", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/Fisch.jpg",
		100, 28,
		"5569", "Kalbs-Runder Mocken TK",
		"Piece ronde de veau congelée", "CH",
		"40.4", "20",
		"1", 1,
		"Kilogramm", "8",
		"", "pd347802003.htm",
		"", 20,
		"302", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/Fanfilet.jpg",
		63, 100,
		"8040", "Straussen-Fanfilet / TK",
		"Filet - large  d&rsquo;autruche 10 x 1 kg", "ZA",
		"22.2", "10",
		"1", 1,
		"Kilogramm", "17",
		"", "pd1033464519.htm",
		"", 10,
		"402", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/Straussen_Steak_ganz.jpg",
		100, 93,
		"8048", "Straussen-Steak 4 x 2.5 kg / TK",
		"Steak d&rsquo;autruche  4 x 2.5 kg / congele", "ZA",
		"17.6", "10",
		"1", 1,
		"Kilogramm", "17",
		"", "pd-323122611.htm",
		"", 10,
		"402", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/ImpNierstueckZA.jpg",
		100, 61,
		"1036", "Rinds-Nierstück  /  Aloyau de boeuf",
		"", "AR",
		"33.4", "25",
		"1", 1,
		"Kilogramm", "0",
		"", "pd1044340106.htm",
		"", 25,
		"101", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/Cordonbleu_geformt.jpg",
		100, 72,
		"7051", "Poulet-Cordon Bleu Premium,paniert,IQF 150g / Cordon-bleu de poulet premium,pané, IQF ",
		"", "DE",
		"11.3", "3",
		"1", 1,
		"Kilogramm", "3",
		"", "pd1060000148.htm",
		"0::100::14.9;", 30,
		"605", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/Reh_Filet.jpg",
		100, 75,
		"8110", "Hirsch-Filet TK - Filet mignon de cerf congelé  / NZ",
		"", "NZ",
		"47.5", "10",
		"1", 1,
		"Kilogramm", "20",
		"", "pd1036485899.htm",
		"", 10,
		"008", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/Hirschentrecote_o_sh.jpg",
		75, 50,
		"8145", "Hirsch-Entrecôte TK",
		"", "NZ",
		"50.2", "10",
		"1", 1,
		"Kilogramm", "20",
		"", "pd-1143665779.htm",
		"", 10,
		"008", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/Rehgeschnezeltes.jpg",
		74, 80,
		"8120", "Reh-Geschnetzeltes",
		"Emince de Chevreuil", "Europa",
		"37.1", "10",
		"1", 1,
		"Kilogramm", "20",
		"", "pd1034782112.htm",
		"", 10,
		"008", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/Hirschragout.jpg",
		100, 85,
		"8121", "Reh-Ragout o.Schenkel",
		"", "Europa",
		"21.9", "10",
		"1", 1,
		"Kilogramm", "20",
		"", "pd488865323.htm",
		"", 10,
		"008", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/Springbock_schnitzel4er.jpg",
		100, 88,
		"8125", "Reh-Schnitzelfleisch 4 er",
		"", "Europa",
		"41.1", "10",
		"1", 1,
		"Kilogramm", "20",
		"", "pd-162017392.htm",
		"", 10,
		"008", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/Wilddivers.jpg",
		75, 100,
		"8127", "Reh-Entrecôte",
		"", "Europa",
		"66.8", "10",
		"1", 1,
		"Kilogramm", "20",
		"", "pd1173019729.htm",
		"", 10,
		"008", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/thumb/rehragout.jpg",
		100, 80,
		"8210", "Springbock-Ragoût TK",
		"Escalope d&rsquo;antilope 4 piéces", "ZA",
		"12.2", "10",
		"1", 1,
		"Kilogramm", "15",
		"", "pd326604462.htm",
		"", 10,
		"088", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/Springb_Entrecote_Filet_box.jpg",
		100, 92,
		"8204", "Springbock-Entrecôte ",
		"Entrecôte &amp; Filet d&rsquo;antilope ", "ZA",
		"36.2", "10",
		"1", 1,
		"Kilogramm", "15",
		"", "pd1030081932.htm",
		"", 10,
		"088", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/thumb/Springbock_4er_box.jpg",
		100, 85,
		"8197", "Springbock-Schnitzel 4 er Schnitt TK",
		"Escalope d&rsquo;antilope 4 piéces", "ZA",
		"21.6", "10",
		"1", 1,
		"Kilogramm", "15",
		"", "pd-393156195.htm",
		"", 10,
		"088", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/Eyefilet.jpg",
		100, 50,
		"8046", "Straussen-Eyefilet / TK",
		"Autruche Eye Filet / conglé", "ZA",
		"21.2", "10",
		"1", 1,
		"Kilogramm", "17",
		"", "pd1079692320.htm",
		"", 30,
		"402", "0",
		 0)
	
		Entry[102] = new Element(
		102, "assets/thumb/Eyefilet.jpg",
		100, 50,
		"8033", "Straussen- Eyefilet",
		"Autruche Eye Filet", "ZA",
		"23", "10",
		"1", 1,
		"Kilogramm", "16",
		"", "pd344722155.htm",
		"", 10,
		"401", "0",
		 0)
	
		Entry[103] = new Element(
		103, "assets/thumb/Rack_8_Rib.gif",
		100, 67,
		"8234", "Wildschwein-Rack 7-8 rib",
		"", "USA",
		"23.9", "10",
		"1", 1,
		"Kilogramm", "21",
		"", "pd1089380665.htm",
		"", 30,
		"084", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/BisonStriploin.jpg",
		100, 74,
		"2203", "Bison-Entrecôte Mittelstück",
		"", "USA",
		"67", "15",
		"1", 1,
		"Kilogramm", "2",
		"", "pd-1318321070.htm",
		"", 15,
		"103", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/Rib_eyeport.jpg",
		100, 90,
		"2208", "Bison-Rib Eye",
		"", "USA",
		"59.8", "15",
		"1", 1,
		"Kilogramm", "2",
		"", "pd697141968.htm",
		"", 15,
		"103", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/thumb/BisonTender.jpg",
		50, 100,
		"2207", "Bison-Filet",
		"USA", "USA",
		"97", "15",
		"1", 1,
		"Kilogramm", "2",
		"", "pd1701490046.htm",
		"", 15,
		"103", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/Wildschweinfilet.gif",
		42, 100,
		"8218", "Wilschwein Filet",
		"Filet mignon de sanglier", "USA",
		"31.3", "5",
		"1", 1,
		"Kilogramm", "21",
		"", "pd1091522698.htm",
		"", 10,
		"084", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/Shortloin.jpg",
		100, 47,
		"8219", "Wildschwein-Nierstück kurz",
		"Filet court de sanglier", "USA",
		"25.3", "5",
		"1", 1,
		"Kilogramm", "21",
		"", "pd-484208184.htm",
		"", 10,
		"084", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/Swiss_Schulter.jpg",
		100, 68,
		"8222", "Wildschwein-Schulter Braten",
		"Epaule s. os de sanglier", "USA",
		"15.9", "5",
		"1", 1,
		"Kilogramm", "21",
		"", "pd1736764726.htm",
		"", 10,
		"084", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/thumb/Wildschweinhals.gif",
		100, 68,
		"8232", "Wildschwein-Hals",
		"Cou de sanglier", "USA",
		"14.2", "5",
		"1", 1,
		"Kilogramm", "21",
		"", "pd-1341411756.htm",
		"", 10,
		"084", "0",
		 0)
	
		Entry[111] = new Element(
		111, "",
		0, 0,
		"8235", "Wildschwein-Ragout",
		"Ragout de sanglier", "USA",
		"15.4", "5",
		"1", 1,
		"Kilogramm", "21",
		"", "pd-880341854.htm",
		"", 10,
		"084", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/RindshuftCH.jpg",
		100, 72,
		"2205", "Bison-Huft   ",
		"Rumpsteak de bison", "USA",
		"53", "15",
		"1", 1,
		"Kilogramm", "2",
		"", "pd1096635059.htm",
		"", 10,
		"103", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/thumb/Crevetten_200_300.jpg",
		100, 77,
		"7621", "Crevetten-Cocktail  blanchiert 150/250  /  Cocktail de crevettes précuit 150/250g",
		"", "Island",
		"12.9", "10",
		"1", 1,
		"Kilogramm", "5",
		"", "pd1096961772.htm",
		"", 10,
		"1002", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/thumb/Riesencrevetten_m_Schale_va.jpg",
		72, 100,
		"7705", "Riesencrevetten mit Schale ohne Kopf  8/12 Easy Peel  /  Crevette sans tête a.carap. 8/12",
		"", "VN",
		"19.8", "10",
		"1", 1,
		"Kilogramm", "5",
		"", "pd1097489170.htm",
		"", 10,
		"1002", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/thumb/DSC01132.JPG",
		100, 75,
		"7638", "Zander-Filet m. Haut 60 - 80 g  /  Filet de sandre avec peau  60 - 80 g",
		"", "Estland",
		"15.1", "5",
		"1", 1,
		"Kilogramm", "5",
		"", "pd1097742889.htm",
		"", 5,
		"1002", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/thumb/lachs_ganz_verpackt_DK.jpg",
		52, 100,
		"7604", "Lachs geräucht  geschnitten  /  Saumon fumé, tranché  800 - 1200g",
		"", "Irland",
		"30.7", "1",
		"1", 1,
		"Kilogramm", "5",
		"", "pd-1795662213.htm",
		"", 10,
		"1002", "0",
		 0)
	
		Entry[117] = new Element(
		117, "assets/thumb/Pangasius_Filet.jpg",
		100, 72,
		"7603", "Pangasius-Filet 140 - 160 g  /  Filet de pangasius 140 - 160 g",
		"", "VN",
		"6.2", "5",
		"1", 1,
		"Kilogramm", "5",
		"", "pd-1378749151.htm",
		"", 5,
		"1002", "0",
		 0)
	
		Entry[118] = new Element(
		118, "assets/thumb/Seeteufel.jpg",
		100, 59,
		"7618", "Seeteufel o.Haut 100 - 300 g  /  Filet de baudroie s.peau 100 - 300 g",
		"", "CN",
		"12", "5",
		"1", 1,
		"Kilogramm", "5",
		"", "pd833176631.htm",
		"", 5,
		"1002", "0",
		 0)
	
		Entry[119] = new Element(
		119, "assets/thumb/Riesencrevetten_oSchale_o_K.jpg",
		100, 57,
		"7710", "Riesencrevetten ohne Schale ohne Kopf  13/15  /  Crevette géante s.tête s.carap. 13/15",
		"", "VN",
		"18.3", "10",
		"1", 1,
		"Kilogramm", "5",
		"", "pd-205995715.htm",
		"", 10,
		"1002", "0",
		 0)
	
		Entry[120] = new Element(
		120, "assets/thumb/Crevettenspiess.jpg",
		100, 37,
		"7731", "Crevetten Spiess o.Schale roh 100 g  /  Brochette de crevettes 100 g",
		"", "VN",
		"13", "10",
		"1", 1,
		"Kilogramm", "5",
		"", "pd-932848205.htm",
		"", 10,
		"1002", "0",
		 0)
	
		Entry[121] = new Element(
		121, "assets/thumb/Riesencrevetten_oSchale_tai.jpg",
		100, 74,
		"7711", "Riesencrevetten o. Schale o.Kopf 8/12  -   Crevette géante avec queue  8/12",
		"", "VN",
		"20.3", "10",
		"1", 1,
		"Kilogramm", "5",
		"", "pd-508991719.htm",
		"", 10,
		"1002", "0",
		 0)
	
		Entry[122] = new Element(
		122, "assets/thumb/Dicke_Laffe.jpg",
		100, 58,
		"6533", "Pferde &quot;dicke Laffe &quot;  -   Epais d&rsquo;épaule de Cheval ",
		"", "Mexico",
		"14.4", "20",
		"1", 1,
		"Kilogramm", "11",
		"", "pd1099921292.htm",
		"", 20,
		"007", "0",
		 0)
	
		Entry[123] = new Element(
		123, "assets/thumb/Riesencrevetten_Easy_Peel.jpg",
		100, 99,
		"7713", "Riesencrevetten mit Schale o Schale o. Kopf  16/20  /  Crevette . 16/20",
		"", "VN",
		"16.8", "10",
		"1", 1,
		"Kilogramm", "5",
		"", "pd-1546227398.htm",
		"", 10,
		"1002", "0",
		 0)
	
		Entry[124] = new Element(
		124, "assets/thumb/Kalbssteaklang.jpg",
		46, 100,
		"5503", "Kalbs-Steak kurz   /  Carré de veau coupe courte ",
		"", "CH",
		"45.9", "20",
		"1", 1,
		"Kilogramm", "7",
		"", "pd-100264708.htm",
		"", 20,
		"301", "0",
		 0)
	
		Entry[125] = new Element(
		125, "assets/thumb/Kalbsfilet1.jpg",
		55, 100,
		"5508", "Kalbs-Filet ",
		"Filet  mignon de veau congelé", "CH",
		"61.5", "10",
		"1", 1,
		"Kilogramm", "7",
		"", "pd294865731.htm",
		"0::100::39;", 10,
		"301", "0",
		 0)
	
		Entry[126] = new Element(
		126, "assets/thumb/Leber.jpg",
		100, 84,
		"5552", "Kalbs-Leber imp. / Foie de veau",
		"", "Holland",
		"15.7", "10",
		"1", 1,
		"Kilogramm", "7",
		"", "pd1104836147.htm",
		"", 10,
		"301", "0",
		 0)
	
		Entry[127] = new Element(
		127, "assets/thumb/Trutenschnitzel.jpg",
		100, 73,
		"7067", "Truten-Schnitzel 100 - 120 / TK ",
		"", "PL",
		"14.9", "5",
		"1", 1,
		"Kilogramm", "18",
		"", "pd1114419471.htm",
		"0::30::9.9;", 30,
		"602", "0",
		 0)
	
		Entry[128] = new Element(
		128, "assets/thumb/FiletCC.jpg",
		100, 45,
		"1016", "Rinds-Filet CC &quot; Irish Nature &quot;",
		"", "Irland",
		"56.4", "20",
		"1", 1,
		"Kilogramm", "0",
		"", "pd1147757315.htm",
		"", 20,
		"101", "0",
		 0)
	
		Entry[129] = new Element(
		129, "assets/thumb/Entrecote_ch.jpg",
		100, 71,
		"1013", "Rinds-Entrecôtes ",
		"Entrecôte de boeuf ", "AR",
		"36.9", "20",
		"1", 1,
		"Kilogramm", "0",
		"", "pd1199691930.htm",
		"", 20,
		"101", "0",
		 0)
	
		Entry[130] = new Element(
		130, "assets/thumb/HohrueckenIRL.jpg",
		93, 100,
		"1007", "Rinds-Rib Eye &quot;Angus&quot;",
		"Certfied Angus Beef", "Irland",
		"41.5", "20",
		"1", 1,
		"Kilogramm", "0",
		"", "pd-1721221445.htm",
		"", 20,
		"101", "0",
		 0)
	
		Entry[131] = new Element(
		131, "assets/thumb/Entrecote CC Angus1.jpg",
		100, 71,
		"1031", "Rinds-Entrecôte &quot;Angus&quot; Mittelstück",
		"Rinds-Entrecôte  Mittelstück &quot;Certfied Angus Beef&quot;", "Irland",
		"46.3", "20",
		"1", 1,
		"Kilogramm", "0",
		"", "pd1200299060.htm",
		"", 20,
		"101", "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();
			};
		};