	// 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="122" height="17" alt="Artikel merken" border="0" align="bottom" hspace="0" vspace="0" class="main">';
		var rString = '<TR><TD align="right" class="PROVIEWBODY">';
		if(this.Image!=""){
			if(this.LnkAdress!="#DROP#") rString += "<a href=\"" + this.LnkAdress + "?defaultVariants=" + variantString + "&categoryId=" + this.NavIndex + "\">";
			rString += "<img src='" + this.Image + "' border=0";
			if(this.Width!=0) rString += " width=" + this.Width;
			if(this.Height!=0) rString += " height=" + this.Height;
			rString += " align=\"top\">";
			if(this.LnkAdress!="#DROP#") rString += "</a>";
			};
		
		rString += '</TD><TD class="PROVIEWBODY" valign="top" width="100%"><TABLE border="0" cellpadding="1" cellspacing="0" width="100%">';
		if(boolDisplArtId) rString += '<TR><TD class="PROVIEWARTID">' + this.Prod_nr + "</TD></TR>";
		rString += "<TR><TD class=\"PROVIEWBEZ1\">"
		if(this.LnkAdress!="#DROP#") rString += "<a href=\"" + this.LnkAdress + "?defaultVariants=" + variantString + "&categoryId=" + this.NavIndex + "\">"
		rString += this.Title;
		if(this.LnkAdress!="#DROP#") rString += "</a>";
		rString += "</TD></TR>"
			+ "<TR><TD class=\"PROVIEWBEZ2\">" + this.Subtitle;
		if(variants.length>0) rString += "<br>";
		for(var i=0; i<variants.length - 1; i++){
			rString	+= "<nobr><strong>" + variants[i].split(";")[0] + ": " + variants[i].split(";")[1] + "</strong>"
			if(i<variants.length-2) rString += ", ";
			rString += "</nobr>";
			};
		rString += "</TD></TR>";
		if(this.displMode==0||this.displMode==2){
			rString	+= "<TR><TD>";
			rString += "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">";
			if(this.catDiscount==0){
				rString += "<tr valign=\"top\"><td class=\"PROVIEWPRICE\" nowrap>";
				rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
				if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objSecCurrency);
				rString += "</td></tr>";
				}
			else{
				if(this.Discount==""||this.Discount=="{EOL}"){
					rString += "<tr valign=\"top\">";
					rString += "<td nowrap>Preis vorher:&nbsp;</td>";
					rString += "<td class=\"PROVIEWPRICESTROKEN\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
					rString += "</td>"
					rString += "</tr>";
					rString += "<tr valign=\"top\">";
					rString += "<td nowrap>Jetzt nur noch:&nbsp;</td>";
					rString += "<td class=\"PROVIEWPRICE\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price * (1 - this.catDiscount / 100 ),this.Tax) / this.PriceUnit, objPriCurrency);
					if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price - ( this.Price * this.catDiscount / 100 ),this.Tax) / this.PriceUnit, objSecCurrency);
					rString += "</td>"
					rString += "</tr>";
					}
				else{
					rString += "<tr valign=\"top\"><td class=\"PROVIEWPRICE\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
					if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objSecCurrency);
					rString += "</td></tr>";
					};
				};
			rString += "</table>";
			rString += "</TD></TR>";
			}
		else if(this.displMode==3){
			rString	+= "<TR><TD class=\"PROVIEWPRICE\" nowrap>";
			rString += "Preis auf Anfrage";
			rString += "</TD></TR>";
			};
		if(this.displMode==0){
			rString += "<TR><TD>&nbsp;</TD></TR>"
				+ "<TR><TD><a href=\"JavaScript:addToBag(Entry[" + this.Index + "]," + this.Minorder + ");\">" + addToBag + "</a></TD></TR>";
			};
		rString += "<TR><TD>&nbsp;</TD></TR>"
			+ "</TABLE>"
			+ "</td></tr>";
		return(rString);
		};
// ** 1106
	function Element(Index,Image,Width,Height,Prod_nr,Title,Subtitle,Manufac,Price,Weight,Tax,PriceUnit,Unitdesc,NavIndex,Options,LnkAdress,Discount,Minorder,Category,catDiscount,displMode){
		this.Index = Index;
		this.Image = Image;this.Width = Width;
		this.Height = Height;this.Prod_nr = Prod_nr;
		this.Title = Title;this.Subtitle = Subtitle;
		this.Manufac = Manufac;this.Price = Price;
		this.Weight = Weight;this.Tax = Tax;
		this.PriceUnit = PriceUnit;this.Unitdesc = Unitdesc;
		this.NavIndex = NavIndex;
		this.Print = TElementPrint;this.Variants = Options;
		this.LnkAdress = LnkAdress;this.Discount = Discount;
		this.Minorder = Minorder;this.Category = Category;
		this.catDiscount = catDiscount;
		this.displMode = displMode;
		};
// ** 1107
	var Entry = new Array();
// ** 1108
	
		Entry[0] = new Element(
		0, "assets/thumb/Crisp.jpg",
		100, 100,
		"38627", "Fitness Bar Crisp 36g Hasselnuss",
		"Fitness zwischendurch leichte Energiezufuhr", "Weider",
		"1.65", "0",
		"2", 1,
		"Stück", "26",
		"", "pd18320411.htm",
		"", 1,
		"38600", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/Riegel2.jpg",
		100, 100,
		"38707", "Fitness Bar plus Protein 35g in Banane und Haselnuß",
		"jede Menge Eiweiß für straffe Muskulatur", "Weider",
		"1.15", "0",
		"2", 1,
		"Stück", "26",
		"Geschmack;Banane@", "pd2003885907.htm",
		"", 1,
		"38600", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/classicpack100.jpg",
		100, 46,
		"38717", "Classic Pack 35g ",
		"Power to GO - Protein + Energie für dein Training", "Weider",
		"1.15", "0",
		"2", 1,
		"Stück", "26",
		"", "pd-1851866695.htm",
		"", 1,
		"38600", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/Riegel.jpg",
		100, 100,
		"38687", "Fitness Bar plus Energy 35g in Cocos - Schoko-Erdbeere/Vanille - und Joghurt/Müsli",
		"schnelle und optimale Energieversorgung mehr Power", "Weider",
		"1.15", "0",
		"2", 1,
		"Stück", "26",
		"Geschmack;Cocos@", "pd-1008497705.htm",
		"", 1,
		"38600", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/Speed.jpg",
		100, 100,
		"31976", "Weider Speed Booster Plus 2 20 Ampullen a25ml ",
		"Trainingsenergy fast ohne Kalorien", "Weider",
		"40.3", "0",
		"1", 1,
		"Stück", "28",
		"", "pd860562217.htm",
		"", 1,
		"30000", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/CHITOSAN100.jpg",
		60, 100,
		"37801", "Chitosan +C 120 Kapseln",
		"Fett Blocker um Gewicht zu verlieren", "Weider",
		"15.25", "0",
		"2", 1,
		"Stück", "28",
		"", "pd1711177595.htm",
		"", 1,
		"30000", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/HMB100.jpg",
		60, 100,
		"37811", "HMB 120 Kapseln",
		"Verringert den Abbau der Muskelmasse", "Weider",
		"21", "0",
		"2", 1,
		"Stück", "28",
		"", "pd1336475169.htm",
		"", 1,
		"30000", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/ZMA100.jpg",
		57, 100,
		"37861", "ZMA  90 Kapseln",
		"Um den Zink- Magnesiumspiegel zu steigern!", "Weider",
		"41", "0",
		"2", 1,
		"Stück", "28",
		"", "pd-1604691395.htm",
		"", 1,
		"30000", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/TRIBULUS100.jpg",
		62, 99,
		"37641", "Tribulus Terrestries",
		"Zur Erhöung der natürlichen Testosteronproduktion!", "Weider",
		"33", "0",
		"2", 1,
		"Stück", "28",
		"", "pd-1621192679.htm",
		"", 1,
		"30000", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/DSC00624 small.jpg",
		100, 133,
		"624", "Gebraucht Multifunktionsbank",
		"", "",
		"290", "0",
		"1", 1,
		"Stück", "44",
		"", "pd949086408.htm",
		"", 1,
		"99999", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/Fitnessbar_Mango_01.JPG",
		100, 51,
		"38757", "L Carnitin Fitness Bar 45 g Mango Maracuja",
		"", "Weider",
		"1.75", "0",
		"2", 1,
		"Stück", "26",
		"", "pd-1149638656.htm",
		"", 1,
		"38600", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/LCAmp.jpg",
		100, 100,
		"38546", "L Carnitin Liquid 20 Ampullen a25ml",
		"1800 mg Carnitin pro Ampulle", "Weider",
		"37.9", "0",
		"1", 1,
		"Stück", "25",
		"", "pd-1982605214.htm",
		"", 1,
		"38400", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/MegaF.jpg",
		100, 100,
		"31546", "Weider Amino Blast Mega Forte - 20 Ampullen  a 25ml",
		"Super stark konzentrierte Aminosäuren !!", "Weider",
		"45.99", "0",
		"1", 1,
		"Stück", "21",
		"", "pd-1330435582.htm",
		"", 1,
		"31000", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/Sledge Hammer Crunch Bank.jpg",
		100, 75,
		"700", "Gebraucht Sledge Hammer Crunch Bench",
		"", "",
		"150", "0",
		"1", 1,
		"Stück", "44",
		"", "pd1113640580.htm",
		"", 1,
		"99999", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/CreatinP.jpg",
		100, 100,
		"31721", "Weider Pure Creatin 600 g Dose ",
		"Verbesserung der Zellhydration - geprüfte und zertifizierte Qualität", "Weider",
		"24.3", "0.5",
		"1", 1,
		"Dose", "22",
		"", "pd254302153.htm",
		"", 1,
		"105", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/WheyPro.jpg",
		100, 100,
		"30091", "BIO ESSENTIAL WHEY PROTEIN ",
		"908 g Dose in Schoko-Vanille-Banane oder Erdbeere ", "Weider",
		"29.9", "0.75",
		"2", 1,
		"Dose", "20",
		"Geschmack;Banane@", "pd-1428136741.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/CFM_Whey_Protein100.jpg",
		100, 150,
		"30331", "CFM WHEY PROTEIN ",
		"908g Dose in Geschmack Neutral-Erdbeer-Vanille und Schoko", "Weider",
		"39.9", "0.75",
		"2", 1,
		"Dose", "20",
		"Geschmack;Erdbeere@", "pd968980141.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/Soy 80+100.jpg",
		100, 158,
		"30521", "SOY 80+ PROTEIN 800 g Dose in Schoko-Erdbeere-Vanille",
		"völlig frei von Laktose", "Weider",
		"23.9", "0.8",
		"2", 1,
		"Dose", "20",
		"Geschmack;Erdbeere@", "pd-1440516371.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/CIMG0866.JPG",
		100, 75,
		"ScheibGu-1", "Hantelscheiben Olympia 50mm Gummiert",
		"Schwarz ab 2,99€", "",
		"3.8", "0",
		"1", 1,
		"Stück", "40",
		"Gewicht;1,25kg@", "pd454554860.htm",
		"", 1,
		"Olympia", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/CIMG0859.JPG",
		100, 75,
		"ScheibEisen-1", "Hantelscheiben Olympia 50mm Eisen Hammerschlag lackiert",
		"", "",
		"2.2", "0",
		"1", 1,
		"Stück", "40",
		"Gewicht;1,25kg@", "pd1349525237.htm",
		"", 1,
		"Olympia", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/CIMG0857.JPG",
		100, 75,
		"ScheibGriff-1", "Hantelscheiben Olympia 50mm Eisen Hammerschlag lackiert =mit Griff=",
		"", "",
		"3.4", "0",
		"1", 1,
		"Stück", "40",
		"Gewicht;1,25kg@", "pd1449149482.htm",
		"", 1,
		"Olympia", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/CIMG0875.JPG",
		100, 75,
		"KHSet", "Kurzhanztelset ca, 10kg",
		"inkl. Kurzhantelstange mit Sternverschluss", "",
		"24.9", "10",
		"1", 1,
		"Stück", "41",
		"", "pd1448619624.htm",
		"", 1,
		"30mm", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/CIMG0883.jpg",
		100, 28,
		"KHStange", "Kurzhantelstange 30 mm mit Gewinde und Sternverschlüsse",
		"", "",
		"12.9", "2.5",
		"1", 1,
		"Stück", "41",
		"", "pd-1043768618.htm",
		"", 1,
		"30mm", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/CIMG0876.jpg",
		100, 33,
		"LangHntlStange-1", "Langhantelstangen 30 mm ab 160cm",
		"inkl. Federverschlüsse", "",
		"29", "0",
		"1", 1,
		"Stück", "41",
		"Längen;160cm@", "pd-1674043693.htm",
		"", 1,
		"30mm", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/CIMG0880.jpg",
		100, 16,
		"SZStange", "SZ Stange 30mm ohne Gewinde ",
		"inkl. Federverschlüsse", "",
		"39.9", "0",
		"1", 1,
		"Stück", "41",
		"", "pd-28963527.htm",
		"", 1,
		"30mm", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/CIMG0880.jpg",
		100, 16,
		"SZStangeGew", "SZ Stange mit Gewinde 30 mm",
		"inkl. Sternverschlüsse", "",
		"34.9", "0",
		"1", 1,
		"Stück", "41",
		"", "pd-1886356977.htm",
		"", 1,
		"30mm", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/CIMG0862.JPG",
		100, 75,
		"HntlScheib0.5", "Hantelscheiben Eisen 30 mm Schwarz",
		"", "",
		"2", "0",
		"1", 1,
		"Stück", "41",
		"Gewicht;0,5kg@", "pd1774904970.htm",
		"", 1,
		"30mm", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/CIMG0869.JPG",
		100, 75,
		"HDF5", "Have Duty Fausthanteln ab 5kg",
		"", "",
		"25", "0",
		"1", 1,
		"Stück", "42",
		"Fausthanteln;5kg@", "pd2057959878.htm",
		"", 1,
		"Fausthant", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/bauch2.jpg",
		100, 133,
		"802", "Gebraucht Rückenmaschine",
		"", "",
		"790", "0",
		"1", 1,
		"Stück", "44",
		"", "pd1367798465.htm",
		"", 1,
		"99999", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/ZellV.jpg",
		100, 100,
		"31881", "Weider Maximum Zell Volume",
		"mit Krea Genic 2 kg Dose", "Weider",
		"49.9", "0",
		"2", 1,
		"Stück", "22",
		"Geschmack;Kirsch@", "pd-329015837.htm",
		"", 1,
		"105", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/e3700hrt_jpg100.jpg",
		100, 100,
		"E3700", "E3700 HRT Modell 2009",
		"inkl. Lieferung !", "Vision Fitness",
		"1999", "0",
		"1", 1,
		"Stück", "10",
		"", "pd813888570.htm",
		"", 1,
		"Vis", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/es7001.jpg",
		100, 138,
		"ES700", "Indoor Cycle ES700 Modell 2009",
		"Preis inkl. Lieferung !", "Vision Fitness",
		"999", "0",
		"1", 1,
		"Stück", "10",
		"", "pd2143889591.htm",
		"", 1,
		"Vis", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/T97001.jpg",
		100, 121,
		"T9700S", "T 9700  inkl. Konsole Simple 2009",
		"inkl . Lieferung !", "Vision Fitness",
		"3899", "0",
		"1", 1,
		"Stück", "2",
		"", "pd583093380.htm",
		"", 1,
		"Visi", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/X67001.jpg",
		100, 116,
		"X6700", "X6700 HRT Modell 2009",
		"Preis inkl. Lieferung !", "Vision Fitness",
		"3699", "0",
		"1", 1,
		"Stück", "6",
		"", "pd-1444434970.htm",
		"", 1,
		"Visio", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/Gluteus100.jpg",
		100, 133,
		"867", "Gebraucht Gluteus ",
		"", "",
		"590", "0",
		"1", 1,
		"Stück", "44",
		"", "pd1769038245.htm",
		"", 1,
		"99999", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/Protein 80100.jpg",
		100, 115,
		"30101", "Weider Protein 80 Plus 750g Dose",
		"High Quality 4 Komponenten Protein", "Weider",
		"29.9", "0",
		"2", 1,
		"Dose", "20",
		"Geschmack;Vanille@", "pd1168262931.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/80Protein.jpg",
		100, 100,
		"3012", "Weider Protein 80 Plus 500g Standbeutel",
		"AKTION statt 18,99 nur", "Weider",
		"14.99", "0",
		"2", 1,
		"Stück", "20",
		"Geschmack;Banane@", "pd-1141597460.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/MaximumBar100.jpg",
		100, 100,
		"30887", "42% Maximum Level Protein bar 100g in Orange - Erdbeere und Vanille",
		"42g  Protein - kohlenhydratereduziert ", "Weider",
		"3.85", "0",
		"2", 1,
		"Stück", "26",
		"Geschmack;Erdbeere@", "pd1847623421.htm",
		"", 1,
		"38600", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/32proteinbar100.jpg",
		100, 38,
		"30827-1", "32% PROTEIN BAR   60 g Proteinriegel ",
		"viel Protein und wenig Fett in Banane - Erdbeere und Vanille", "Weider",
		"2.1", "0",
		"2", 1,
		"Stück", "26",
		"Geschmack;Banane@", "pd2030083680.htm",
		"", 1,
		"38600", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/Muskel100.jpg",
		100, 131,
		"MuscleM", "Der neue Muskel Guide",
		"Gezieltes Krafttraining  Anatomie", "",
		"21.9", "0",
		"2", 1,
		"Stück", "43",
		"", "pd838005850.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/Frauen100.jpg",
		100, 129,
		"MuskelF", "Muskel Guide speziell für Frauen",
		"Gezieltes Training. Anatomie", "",
		"21.9", "0",
		"2", 1,
		"Stück", "43",
		"", "pd-1495983592.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/latzgebogen100.jpg",
		100, 75,
		"0858L", "Latzugstange gebogen",
		"mit Halbrundgriffen lang ca.98cm", "",
		"36", "0",
		"1", 1,
		"Stück", "37",
		"", "pd-727948032.htm",
		"", 1,
		"1002", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/Haengeschuhe100.jpg",
		100, 57,
		"Gravi", "Gravity Boots",
		"", "",
		"59.9", "0",
		"1", 1,
		"Stück", "38",
		"", "pd-1356344530.htm",
		"", 1,
		"1003", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/Lat100.jpg",
		100, 75,
		"4056", "Latzugstange ",
		"lang Enden gebogen", "",
		"29.9", "0",
		"1", 1,
		"Stück", "37",
		"", "pd64750106.htm",
		"", 1,
		"1002", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/gerlan100.jpg",
		100, 75,
		"4055", "Latzugstange ",
		"mit Halbrundgriffen gerade lang", "",
		"36", "0",
		"1", 1,
		"Stück", "37",
		"", "pd-702292520.htm",
		"", 1,
		"1002", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/Latku100.jpg",
		100, 75,
		"4054", "Latzugstange ",
		"mit Halbrundgriffen gerade kurz", "",
		"29.9", "0",
		"1", 1,
		"Stück", "37",
		"", "pd2105300934.htm",
		"", 1,
		"1002", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/BiTr100.jpg",
		100, 75,
		"4058", "Bizeps-Trizeps-Curlgriff",
		"leicht gebogen", "",
		"29.9", "0",
		"1", 1,
		"Stück", "37",
		"", "pd184114020.htm",
		"", 1,
		"1002", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/BiTriger100.jpg",
		100, 75,
		"4060", "Bizeps-Trizepsgriff",
		"gerade ca.51cm", "",
		"28.9", "0",
		"1", 1,
		"Stück", "37",
		"", "pd-376520654.htm",
		"", 1,
		"1002", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/4061100.jpg",
		100, 75,
		"4061", "Bizeps-Trizepsgriff",
		"stark gebogen", "",
		"26.9", "0",
		"1", 1,
		"Stück", "37",
		"", "pd-817747536.htm",
		"", 1,
		"1002", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/4050101.jpg",
		100, 75,
		"4050", "Ruder-Trizepsgriff",
		"", "",
		"28.9", "0",
		"1", 1,
		"Stück", "37",
		"", "pd-47192226.htm",
		"", 1,
		"1002", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/4066100.jpg",
		100, 75,
		"4066", "Trizepsgriff",
		"Spezial, mit abgewinkelten Enden", "",
		"29.9", "0",
		"1", 1,
		"Stück", "37",
		"", "pd1452987580.htm",
		"", 1,
		"1002", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/4060100.jpg",
		100, 75,
		"4060G", "Bizeps-Trizepsgriff",
		"mit Gummiüberzug", "",
		"29.9", "0",
		"1", 1,
		"Stück", "37",
		"", "pd-234931894.htm",
		"", 1,
		"1002", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/4053100.jpg",
		100, 75,
		"4053", "Trizepsdorn",
		"", "",
		"19.9", "0",
		"1", 1,
		"Stück", "37",
		"", "pd1608558728.htm",
		"", 1,
		"1002", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/Push100.jpg",
		100, 75,
		"Push", "Push up Bars",
		"für Liegestütz", "",
		"14.9", "0",
		"1", 1,
		"Stück", "38",
		"", "pd701161974.htm",
		"", 1,
		"1003", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/Dip100.jpg",
		100, 75,
		"Dip", "Dip-Gürtel",
		"aus Leder mit Kette", "",
		"29.9", "0",
		"1", 1,
		"Stück", "38",
		"", "pd-990130846.htm",
		"", 1,
		"1003", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/Knie100.jpg",
		100, 75,
		"Knie", "Kniebandagen 2m",
		"Titanium", "",
		"33", "0",
		"1", 1,
		"Stück", "38",
		"", "pd1174407685.htm",
		"", 1,
		"1003", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/Barot100.jpg",
		100, 75,
		"Barot", "Handgelenksszützen aus Stoff ",
		"mit Klettverschluss", "",
		"10.9", "0",
		"1", 1,
		"Stück", "38",
		"", "pd-990573471.htm",
		"", 1,
		"1003", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/Bablau100.jpg",
		100, 75,
		"Bablau", "Handgelenksstützen aus Stoff",
		"mit Klettverschluss", "",
		"14.9", "0",
		"1", 1,
		"Stück", "38",
		"", "pd-1489556105.htm",
		"", 1,
		"1003", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/Zug100.jpg",
		100, 75,
		"Zug", "Zughilfen",
		"aus Stoff", "",
		"9.9", "0",
		"1", 1,
		"Stück", "38",
		"", "pd-860955917.htm",
		"", 1,
		"1003", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/Head100.jpg",
		100, 75,
		"Head", "Head-Strap aus Leder",
		"mit Kette für Nackentraining", "",
		"39.9", "0",
		"1", 1,
		"Stück", "38",
		"", "pd27764313.htm",
		"", 1,
		"1003", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/Scvhwi100.jpg",
		100, 75,
		"Schwi", "Schwitzgürtel",
		"", "",
		"15.9", "0",
		"1", 1,
		"Stück", "38",
		"", "pd-257148881.htm",
		"", 1,
		"1003", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/Bizepsblaster100.jpg",
		100, 64,
		"Blaster", "Bizepsblaster",
		"", "",
		"29.9", "0",
		"1", 1,
		"Stück", "38",
		"", "pd-534923787.htm",
		"", 1,
		"1003", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/Grip100.jpg",
		100, 75,
		"Grip", "Gripmaster Salter",
		"mit Kunststoffgriffen", "",
		"14.9", "0",
		"1", 1,
		"Stück", "38",
		"", "pd-1166429721.htm",
		"", 1,
		"1003", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/Hanf100.jpg",
		100, 75,
		"Hanf", "Hanfseil",
		"Trizepsseil", "",
		"29.9", "0",
		"1", 1,
		"Stück", "37",
		"", "pd242198125.htm",
		"", 1,
		"1002", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/Ruder100.jpg",
		100, 75,
		"4062", "Rudergriff ",
		"Standartausführung", "",
		"17.9", "0",
		"1", 1,
		"Stück", "37",
		"", "pd-1344928157.htm",
		"", 1,
		"1002", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/4052100.jpg",
		100, 75,
		"4052", "Rudergriff breit",
		"starke Ausführung", "",
		"24.9", "0",
		"1", 1,
		"Stück", "37",
		"", "pd2056421193.htm",
		"", 1,
		"1002", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/4044100.jpg",
		100, 75,
		"4044", "Rudergriff",
		"beweglich", "",
		"24.9", "0",
		"1", 1,
		"Stück", "37",
		"", "pd1502116511.htm",
		"", 1,
		"1002", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/4064100.jpg",
		100, 75,
		"4064", "Trizepsgriff",
		"", "",
		"24.9", "0",
		"1", 1,
		"Stück", "37",
		"", "pd171933157.htm",
		"", 1,
		"1002", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/0840100.jpg",
		100, 75,
		"0840", "Bügelgriff",
		"leichte Ausführung", "",
		"17.9", "0",
		"1", 1,
		"Stück", "37",
		"", "pd913345179.htm",
		"", 1,
		"1002", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/Eagle Bizepsmaschine.jpg",
		100, 133,
		"708", "Gebraucht Eagle Bizeps Curl Machine",
		"75 kg Steckgewicht", "",
		"690", "0",
		"1", 1,
		"Stück", "44",
		"", "pd629779508.htm",
		"", 1,
		"99999", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/Sledge Hammer Kabelzug einzeln.jpg",
		100, 133,
		"725", "Gebraucht Sledge Hammer Trizeps Machine",
		"100 kg Steckgewicht", "",
		"790", "0",
		"1", 1,
		"Stück", "44",
		"", "pd1547824654.htm",
		"", 1,
		"99999", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/Sledge Hammer Latissimus 25.jpg",
		100, 133,
		"731", "Gebraucht Sledge Hammer Latissimus Machine",
		"100 kg Steckgewicht", "",
		"980", "0",
		"1", 1,
		"Stück", "44",
		"", "pd-1046821614.htm",
		"", 1,
		"99999", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/Sledge Hammer Glutaeusmaschine 26.jpg",
		100, 133,
		"733", "Gebraucht Sledge Hammer Gluteus Machine",
		"90 kg Steckgewicht", "",
		"390", "0",
		"1", 1,
		"Stück", "44",
		"", "pd-1756562882.htm",
		"", 1,
		"99999", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/Sledge Hammer Beinstrecker 12.jpg",
		100, 133,
		"742", "Gebraucht Sledge Hammer Leg Extensor",
		"80 kg Steckgewicht", "",
		"790", "0",
		"1", 1,
		"Stück", "44",
		"", "pd-1480993204.htm",
		"", 1,
		"99999", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/WheyAminos.jpg",
		100, 100,
		"31661", "Weider Whey Aminos 300 Tabletten Dose ",
		"Biologisches hochwertiges WHEY Protein", "Weider",
		"32.9", "0",
		"2", 1,
		"Dose", "21",
		"", "pd-1950419339.htm",
		"", 1,
		"31000", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/BCAA.jpg",
		100, 100,
		"31611", "Weider BCAA 130 Tabletten pro Dose",
		" L-Leucin - L-Isoleucin - L-Valin", "Weider",
		"18.9", "0",
		"2", 1,
		"Dose", "21",
		"", "pd-362906467.htm",
		"", 1,
		"31000", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/Anabolic.jpg",
		100, 100,
		"31061", "ANABOLIC EVOLUTION 1,5 kg Dose in Schoko und Erdbeer,",
		"mit Vitaminen, Mineralstoffen und spurenelemten", "Weider",
		"36.9", "1.5",
		"2", 1,
		"Dose", "23",
		"Geschmack;Erdbeere@", "pd916232313.htm",
		"", 1,
		"1300", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/Caribic_Blue_small.jpg",
		45, 100,
		"38883", "Carbo Energy Drink Flasche 0,5L in Orange und Blue Caribic",
		"Schnelle Energiebereitstellung", "Weider",
		"1.75", "0",
		"1", 1,
		"Flasche", "23",
		"Geschmack;Caribic Blue@", "pd2146800752.htm",
		"", 1,
		"1300", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/SpeedT.jpg",
		100, 100,
		"32351", "Weider Speed Booster Tabl.",
		"50 Tabletten pro Dose", "Weider",
		"11.65", "0",
		"2", 1,
		"Dose", "28",
		"", "pd-160489519.htm",
		"", 1,
		"30000", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/NSP100.jpg",
		100, 150,
		"306211", "NSP Nitrostack Protein 750g in Citro-Quark, Vanille und Schoko",
		"Proteinmischung für schlanke Muskelmasse", "Weider",
		"31.9", "0",
		"2", 1,
		"Stück", "20",
		"Geschmack;Schoko@", "pd621969219.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/Protein_Shake_Vanilla_small.jpg",
		43, 100,
		"38974", "Weider Low Carb Protein Shake",
		"Dose 250 ml in Cappuccino-Erdbeere-Vanille und Schoko", "Weider",
		"2.1", "0",
		"2", 1,
		"Dose", "20",
		"Geschmack;Schoko@", "pd75079167.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/mm4000.jpg",
		100, 100,
		"3251", "Weider Mega Mass 4000 ",
		" 7,0 kg Karton in Vanille, Schoko und Erdbeer, ", "Weider",
		"79.9", "7",
		"2", 1,
		"Karton", "23",
		"Geschmack;Erdbeere@", "pd234204345.htm",
		"", 1,
		"1300", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/Crash1,5.jpg",
		100, 100,
		"31121", "CRASH WEIGHT GAIN 1,5 kg Dose in Erdbeere und Vanille",
		"hochwertige Kohlenhydrat-Kombination", "Weider",
		"29.95", "1.5",
		"2", 1,
		"Dose", "23",
		"Geschmack;Erdbeere@", "pd302071349.htm",
		"", 1,
		"1300", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/Crash3.jpg",
		100, 100,
		"31122", "CRASH WEIGHT GAIN 3,0 kg Eimer in Erdbeer und Vanille",
		"massige Erfolge beim Masseaufbau", "Weider",
		"59", "3",
		"2", 1,
		"Eimer", "23",
		"Geschmack;Erdbeere@", "pd663716715.htm",
		"", 1,
		"1300", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/GlutaminTa.jpg",
		100, 100,
		"38501", "Weider L Glutamin Kap ",
		"90 Kapseln Dose", "Weider",
		"15.75", "0",
		"1", 1,
		"Stück", "21",
		"", "pd2004031358.htm",
		"", 1,
		"31000", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/Glutamin400.jpg",
		100, 100,
		"31421", "Weider L-Glutamin 400 g Dose",
		"Reines L-Glutamine", "Weider",
		"29.9", "0.3",
		"1", 1,
		"Dose", "21",
		"", "pd-413657805.htm",
		"", 1,
		"31000", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/MuscD.jpg",
		100, 100,
		"30243", "Weider Muscle Protein Drink",
		" biologisch hochwertiges Protein in Schoko-Erdbeere-Vanille und Toffee", "Weider",
		"3.4", "0",
		"2", 1,
		"Flasche", "20",
		"Geschmack;Schoko@", "pd-1351698049.htm",
		"", 3,
		"102", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/Maxiple.jpg",
		100, 100,
		"32011", "MAXIPLEX 1,5 kg Dose  in Schoko und Vanille",
		" Ideal als Nachtrainigsmahlzeit", "Weider",
		"48", "1.5",
		"2", 1,
		"Dose", "20",
		"Geschmack;Schoko@", "pd1572605117.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/Fitnessbar_Mango_01.JPG",
		100, 51,
		"387571", "L Carnitin Fitness Bar 45 g Mango Maracuja",
		"", "Weider",
		"1.6", "0",
		"2", 1,
		"Stück", "25",
		"", "pd357305480.htm",
		"", 1,
		"38400", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/81_0.jpg",
		100, 100,
		"38541", "ACE - 90 Kapseln ",
		"mit Selen und Zink zum Schutz von freien Radikalen", "Weider",
		"12.5", "0",
		"2", 1,
		"Dose", "24",
		"", "pd-135547196.htm",
		"", 1,
		"10400", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/gelatineforte100.jpg",
		61, 100,
		"38211", "Gelatine Forte 400g Dose Himbeere",
		"kollagenes Eiweiss für den Knorpelaufbau", "Weider",
		"16", "0",
		"2", 1,
		"Dose", "28",
		"", "pd-578028784.htm",
		"", 1,
		"30000", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/Cla.jpg",
		100, 100,
		"38531", "Weider CLA 120 Kapseln",
		"reduziert Körperfett - erhöht Muskelmasse - verbessert Blutfettwerte", "Weider",
		"31", "0",
		"2", 1,
		"Dose", "28",
		"", "pd1921488830.htm",
		"", 1,
		"30000", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/Power.jpg",
		100, 100,
		"38594", "Power Starter Energiedrink 0,5L Flasche",
		"hochdosiertes Koffein, mit Taurin", "Weider",
		"1.75", "0",
		"1", 1,
		"Flasche", "28",
		"", "pd-263226340.htm",
		"", 10,
		"30000", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/Mega_Mass_Rieg._Vansmall.jpg",
		100, 44,
		"32418", "MEGA MASS 60g Riegel in Schoko - Vanille - Banane und Erdbeere",
		"Energieschub für unterwegs", "Weider",
		"1.85", "0",
		"2", 1,
		"Stück", "26",
		"Geschmack;Schoko@", "pd256332904.htm",
		"", 1,
		"38600", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/Aminoli.jpg",
		100, 100,
		"31003", "Weider Amino Power Liquid 1000ml Flasche",
		"51500mg Aminos pro Flasche!", "Weider",
		"29.9", "0",
		"1", 1,
		"Flasche", "21",
		"", "pd-1501154467.htm",
		"", 1,
		"31000", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/Gluco.jpg",
		100, 100,
		"37611", "Weider Glucosamine + Chondroitin Plus MSM",
		"kann die Bildung von Gelenkschmiere anregen", "Weider",
		"29.99", "0",
		"2", 1,
		"Dose", "28",
		"", "pd1137678155.htm",
		"", 1,
		"30000", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/beinstrecker-100.jpg",
		100, 133,
		"508", "Gebraucht Beinstrecker",
		"", "",
		"890", "0",
		"1", 1,
		"Stück", "44",
		"", "pd-921139786.htm",
		"", 1,
		"99999", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/Dynamic1.jpg",
		100, 128,
		"208", "Dynamic 208 Modell 2010",
		"Preis inkl. Lieferung und Unterlegmatte !", "Horizon",
		"349", "0",
		"1", 1,
		"Stück", "18",
		"", "pd-1545673794.htm",
		"", 1,
		"50", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/thumb/evolves100.jpg",
		100, 94,
		"EvolveS", "Evolve Silber Modell 2010",
		"Preis inkl. Lieferung !", "",
		"849", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1031988178.htm",
		"", 1,
		"Ho", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/para308100.jpg",
		100, 84,
		"Para308", "Paragon 308 Modell 2010",
		"Preis inkl. Lieferung und Unterlegmatte !", "",
		"1199", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-1198688688.htm",
		"", 1,
		"Ho", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/thumb/para408100.jpg",
		100, 81,
		"Para408", "Paragon 408 Modell 2010",
		"Preis inkl.  Lieferung und Unterlegmatte !", "",
		"1499", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-1339390722.htm",
		"", 1,
		"Ho", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/para508100.jpg",
		100, 76,
		"Para508", "Paragon 508 Modell 2010 ",
		"Preis inkl. Lieferung und Unterlegmatte !", "",
		"1699", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-1023857828.htm",
		"", 1,
		"Ho", "0",
		 0)
	
		Entry[102] = new Element(
		102, "assets/thumb/ti22100.jpg",
		100, 86,
		"Ti22", "Ti 22 Laufband Modell 2010",
		"Preis inkl. Lieferung und Unterlegmatte !", "",
		"1299", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1529606378.htm",
		"", 1,
		"Ho", "0",
		 0)
	
		Entry[103] = new Element(
		103, "assets/thumb/ti32100.jpg",
		100, 84,
		"Ti32", "Ti 32 Laufband Modell 2010",
		"Preis inkl. Lieferung und Unterlegmatte !", "",
		"1499", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-723080920.htm",
		"", 1,
		"Ho", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/ti52100.jpg",
		100, 80,
		"Ti52", "Ti 52 Laufband Modell 2010",
		"Preis inkl. Lieferung und Unterlegmatte !", "",
		"1699", "0",
		"1", 1,
		"Stück", "1",
		"", "pd659510166.htm",
		"", 1,
		"Ho", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/Synto.jpg",
		100, 100,
		"31621", "Weider Maximum BCAA Syntho",
		"120 Kps pro Dose", "Weider",
		"19.9", "0",
		"2", 1,
		"Stück", "21",
		"", "pd-1372840586.htm",
		"", 1,
		"31000", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/thumb/HighMineral.jpg",
		100, 100,
		"32341", "Weider High Mineral Stack",
		"120 Kps pro Dose", "Weider",
		"12.4", "0",
		"2", 1,
		"Stück", "24",
		"", "pd-620799852.htm",
		"", 1,
		"10400", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/MultiVita.jpg",
		100, 100,
		"38551", "Multi Vita + B Complex",
		"90 Kps pro Dose", "Weider",
		"12.9", "0",
		"2", 1,
		"Stück", "24",
		"", "pd-666648350.htm",
		"", 1,
		"10400", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/lowcarb.jpg",
		100, 100,
		"30967", "Low Carb High Protein Bar",
		"100 g Riegel", "Weider",
		"2.99", "0",
		"2", 1,
		"Stück", "26",
		"Geschmack;Erdbeere@", "pd-1542980920.htm",
		"", 1,
		"38600", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/Double.jpg",
		100, 100,
		"30778", "Double Pro Bar 100 g Riegel ",
		"Haselnuss-Banane oder Citro-Cocos", "Weider",
		"3.4", "0",
		"2", 1,
		"Stück", "26",
		"Geschmack;Haselnuss-Banane@", "pd-762572960.htm",
		"", 1,
		"38600", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/thumb/elliteT60100.jpg",
		100, 83,
		"T608", "Elite T608 Modell 2010",
		"Preis inkl. Lieferung und Unterlegmatte !", "",
		"2799", "0",
		"1", 1,
		"Stück", "1",
		"", "pd633756591.htm",
		"", 1,
		"Ho", "0",
		 0)
	
		Entry[111] = new Element(
		111, "assets/thumb/T97001.jpg",
		100, 121,
		"T9700HRT", "T 9700 inkl. Konsole HRT 2009",
		"inkl. Lieferung", "Vision Fitness",
		"4199", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1993308581.htm",
		"", 1,
		"Visi", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/T98001.jpg",
		100, 120,
		"T9800", "T 9800 HRT",
		"incl. Lieferung !", "Vision Fitness",
		"5899", "0",
		"1", 1,
		"Stück", "2",
		"", "pd79162459.htm",
		"", 1,
		"Visi", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/thumb/X68501.jpg",
		100, 140,
		"X6850", "X6850 HRT Modell 2008",
		"incl. Lieferung !", "Vision Fitness",
		"5399", "0",
		"1", 1,
		"Stück", "6",
		"", "pd-385060841.htm",
		"", 1,
		"Visio", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/thumb/R27501.jpg",
		100, 117,
		"R2750", "R 2750 HRT Modell 2009",
		"Preis inkl. Lieferung !", "Vision Fitness",
		"2599", "0",
		"1", 1,
		"Stück", "13",
		"", "pd-1071059249.htm",
		"", 1,
		"V1", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/thumb/R28501.jpg",
		100, 127,
		"R2850", "R 2850 HRT Modell 2008",
		"inkl. Lieferung !", "Vision Fitness",
		"2899", "0",
		"1", 1,
		"Stück", "13",
		"", "pd-284177003.htm",
		"", 1,
		"V1", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/thumb/KF-1560100.jpg",
		100, 133,
		"KF1560", "Multizugturm",
		"", "",
		"1899", "0",
		"1", 1,
		"Stück", "34",
		"", "pd1213213581.htm",
		"", 1,
		"BS001", "0",
		 0)
	
		Entry[117] = new Element(
		117, "assets/thumb/Torus4081.jpg",
		100, 112,
		"Torus408", "Torus 408 Modell 2009",
		"Preis inkl. Lieferung !", "",
		"1149", "0",
		"1", 1,
		"Stück", "34",
		"", "pd-590058788.htm",
		"", 1,
		"BS001", "0",
		 0)
	
		Entry[118] = new Element(
		118, "assets/thumb/Beinbeuger-streckerkombi 100.jpg",
		100, 151,
		"m2", "Beinbeuger - Streckerkombi NP: 4190,-",
		"Gebraucht mit Zertifikat", "",
		"2490", "0",
		"1", 1,
		"Stück", "45",
		"", "pd371018839.htm",
		"", 1,
		"m1", "0",
		 0)
	
		Entry[119] = new Element(
		119, "assets/thumb/Oxford1.jpg",
		100, 74,
		"Oxford", "Oxford II Modell 2010",
		"Preis inkl. Lieferung und Unterlegmatte !", "Horizon",
		"699", "0",
		"1", 1,
		"Stück", "16",
		"", "pd1306808183.htm",
		"", 1,
		"02", "0",
		 0)
	
		Entry[120] = new Element(
		120, "assets/thumb/Abduktoren100.jpg",
		100, 75,
		"803", "Gebraucht Abduktorenmaschine",
		"", "",
		"790", "0",
		"1", 1,
		"Stück", "44",
		"", "pd1232630343.htm",
		"", 1,
		"99999", "0",
		 0)
	
		Entry[121] = new Element(
		121, "assets/thumb/Abduktoren1100.jpg",
		100, 75,
		"804", "Gebraucht Abduktorenmaschine",
		"", "",
		"990", "0",
		"1", 1,
		"Stück", "44",
		"", "pd1684135373.htm",
		"", 1,
		"99999", "0",
		 0)
	
		Entry[122] = new Element(
		122, "assets/thumb/Abduktoren2100.jpg",
		100, 75,
		"805", "Gebraucht Abduktorenmaschine",
		"", "",
		"990", "0",
		"1", 1,
		"Stück", "44",
		"", "pd-404452157.htm",
		"", 1,
		"99999", "0",
		 0)
	
		Entry[123] = new Element(
		123, "assets/thumb/Adduktoren100.jpg",
		100, 75,
		"806", "Gebraucht Adduktorenmaschine",
		"", "",
		"790", "0",
		"1", 1,
		"Stück", "44",
		"", "pd1685187753.htm",
		"", 1,
		"99999", "0",
		 0)
	
		Entry[124] = new Element(
		124, "assets/thumb/Adduktoren1100.jpg",
		100, 75,
		"807", "Gebraucht Adduktorenmaschine",
		"", "",
		"990", "0",
		"1", 1,
		"Stück", "44",
		"", "pd56567551.htm",
		"", 1,
		"99999", "0",
		 0)
	
		Entry[125] = new Element(
		125, "assets/thumb/Adduktoren2100.jpg",
		100, 75,
		"808", "Gebraucht Adduktorenmaschine",
		"", "",
		"990", "0",
		"1", 1,
		"Stück", "44",
		"", "pd888897861.htm",
		"", 1,
		"99999", "0",
		 0)
	
		Entry[126] = new Element(
		126, "assets/thumb/Beinstrecker100.jpg",
		100, 75,
		"813", "Gebraucht Beinstrecker",
		"", "",
		"990", "0",
		"1", 1,
		"Stück", "44",
		"", "pd-200831949.htm",
		"", 1,
		"99999", "0",
		 0)
	
		Entry[127] = new Element(
		127, "assets/thumb/Kickmaschine100.jpg",
		100, 75,
		"815", "Gebraucht Kickmaschine",
		"", "",
		"340", "0",
		"1", 1,
		"Stück", "44",
		"", "pd1732017519.htm",
		"", 1,
		"99999", "0",
		 0)
	
		Entry[128] = new Element(
		128, "assets/thumb/KlimmzugDipp100.jpg",
		120, 160,
		"816", "Gebraucht Klimmzug/Dip",
		"", "",
		"990", "0",
		"1", 1,
		"Stück", "44",
		"", "pd-673940171.htm",
		"", 1,
		"99999", "0",
		 0)
	
		Entry[129] = new Element(
		129, "assets/thumb/Latru100.jpg",
		100, 75,
		"817", "Gebraucht Latruder",
		"", "",
		"1200", "0",
		"1", 1,
		"Stück", "44",
		"", "pd296802923.htm",
		"", 1,
		"99999", "0",
		 0)
	
		Entry[130] = new Element(
		130, "assets/thumb/Latzug100.jpg",
		100, 75,
		"818", "Gebraucht Latzug",
		"", "",
		"790", "0",
		"1", 1,
		"Stück", "44",
		"", "pd-1067412847.htm",
		"", 1,
		"99999", "0",
		 0)
	
		Entry[131] = new Element(
		131, "assets/thumb/Multipresse100.jpg",
		100, 75,
		"819", "Gebraucht Multipresse",
		"", "",
		"1200", "0",
		"1", 1,
		"Stück", "44",
		"", "pd835772199.htm",
		"", 1,
		"99999", "0",
		 0)
	
		Entry[132] = new Element(
		132, "assets/thumb/Rueckenmaschine100.jpg",
		100, 75,
		"820", "Gebraucht Rückenmaschine",
		"", "",
		"990", "0",
		"1", 1,
		"Stück", "44",
		"", "pd988255661.htm",
		"", 1,
		"99999", "0",
		 0)
	
		Entry[133] = new Element(
		133, "assets/thumb/Scheibenständer100.jpg",
		100, 75,
		"821", "Gebraucht Scheibenständer 50mm",
		"", "",
		"99", "0",
		"1", 1,
		"Stück", "44",
		"", "pd-1423669341.htm",
		"", 1,
		"99999", "0",
		 0)
	
		Entry[134] = new Element(
		134, "assets/thumb/Schulterpresse100.jpg",
		100, 75,
		"822", "Gebraucht Schulterpresse",
		"", "",
		"990", "0",
		"1", 1,
		"Stück", "44",
		"", "pd581034633.htm",
		"", 1,
		"99999", "0",
		 0)
	
		Entry[135] = new Element(
		135, "assets/thumb/Nackenrolle100.jpg",
		100, 72,
		"Nack", "Nackenrolle",
		"", "",
		"18.1", "0",
		"1", 1,
		"Stück", "38",
		"", "pd1237800865.htm",
		"", 1,
		"1003", "0",
		 0)
	
		Entry[136] = new Element(
		136, "assets/thumb/Trizepsseil100.jpg",
		100, 80,
		"Tri", "Trizepsseil",
		"", "",
		"24.9", "0",
		"1", 1,
		"Stück", "37",
		"", "pd-598250825.htm",
		"", 1,
		"1002", "0",
		 0)
	
		Entry[137] = new Element(
		137, "assets/thumb/Trizepsband100.jpg",
		100, 137,
		"Nts10", "Trizepsband",
		"", "",
		"12", "0",
		"1", 1,
		"Stück", "37",
		"", "pd-1436726339.htm",
		"", 1,
		"1002", "0",
		 0)
	
		Entry[138] = new Element(
		138, "assets/thumb/EXM-1500S100.jpg",
		100, 153,
		"Exm1500", "Multifunktionsturm Exm1500",
		"Body Solid", "",
		"799", "0",
		"1", 1,
		"Stück", "34",
		"", "pd754412595.htm",
		"", 1,
		"BS001", "0",
		 0)
	
		Entry[139] = new Element(
		139, "assets/thumb/EXM-2750100.jpg",
		100, 117,
		"Exm2750", "Multifunktionsturm Exm2750",
		"Body Solid", "",
		"1599", "0",
		"1", 1,
		"Stück", "34",
		"", "pd-1921017447.htm",
		"", 1,
		"BS001", "0",
		 0)
	
		Entry[140] = new Element(
		140, "assets/thumb/KF-FB100.jpg",
		100, 68,
		"KFFB", "Flachbank",
		"", "",
		"199", "0",
		"1", 1,
		"Stück", "30",
		"", "pd2035779233.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[141] = new Element(
		141, "assets/thumb/KF-FI100.jpg",
		100, 81,
		"KFFI", "Verstellbare Bank",
		"", "",
		"349", "0",
		"1", 1,
		"Stück", "30",
		"", "pd-732077679.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[142] = new Element(
		142, "assets/thumb/KF-FID100.jpg",
		100, 88,
		"KFFID", "Negativ-Positiv Bank",
		"", "",
		"389", "0",
		"1", 1,
		"Stück", "30",
		"", "pd-1232249803.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[143] = new Element(
		143, "assets/thumb/KF-OB100.jpg",
		100, 97,
		"KFOB", "Verstellbare Drückerbank",
		"", "",
		"579", "0",
		"1", 1,
		"Stück", "30",
		"", "pd81658991.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[144] = new Element(
		144, "assets/thumb/Flachbank100.jpg",
		100, 109,
		"GFB350", "Flachbank",
		"Body Solid", "Body Solid",
		"119", "0",
		"1", 1,
		"Stück", "30",
		"", "pd-642425547.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[145] = new Element(
		145, "assets/thumb/Banknegativ100.jpg",
		100, 104,
		"GFID31", "Positiv-Negativbank ",
		"Body Solid", "Body Solid",
		"249", "0",
		"1", 1,
		"Stück", "30",
		"", "pd-1572051037.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[146] = new Element(
		146, "assets/thumb/Bankverstellbar100.jpg",
		100, 138,
		"WFI21", "Bank verstellbar",
		"Body Solid", "Body Solid",
		"219", "0",
		"1", 1,
		"Stück", "30",
		"", "pd-1018923603.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[147] = new Element(
		147, "assets/thumb/SID 50-100.jpg",
		100, 98,
		"SID50", "Flach- Posetiv/Negativ Bank extra stark!!",
		"L 62cm B 184cm H 51cm  ", "Body Solid",
		"591", "0",
		"1", 1,
		"Stück", "30",
		"", "pd-311906280.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[148] = new Element(
		148, "assets/thumb/sdb351-100.jpg",
		100, 75,
		"SDB351", "Negativ Olympia Bank",
		"L 127cm B 188cm H 127cm  ", "Body Solid",
		"499", "0",
		"1", 1,
		"Stück", "30",
		"", "pd1549408858.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[149] = new Element(
		149, "assets/thumb/KF-AH2100.jpg",
		100, 67,
		"KFAH", "Hyperextension verstellbar",
		"45°-90°", "",
		"469", "0",
		"1", 1,
		"Stück", "31",
		"", "pd632983683.htm",
		"", 1,
		"30", "0",
		 0)
	
		Entry[150] = new Element(
		150, "assets/thumb/KF-ABM100.jpg",
		100, 92,
		"KFABM", "Bauch und Rückentrainer",
		"", "",
		"499", "0",
		"1", 1,
		"Stück", "31",
		"", "pd-1238879195.htm",
		"", 1,
		"30", "0",
		 0)
	
		Entry[151] = new Element(
		151, "assets/thumb/KF-45100.jpg",
		100, 73,
		"KF45", "Hyperextension 45°",
		"", "",
		"329", "0",
		"1", 1,
		"Stück", "31",
		"", "pd902195901.htm",
		"", 1,
		"30", "0",
		 0)
	
		Entry[152] = new Element(
		152, "assets/thumb/KF-RC100.jpg",
		100, 87,
		"KFRC", "Hyperextension gerade",
		"", "",
		"329", "0",
		"1", 1,
		"Stück", "31",
		"", "pd1377936179.htm",
		"", 1,
		"30", "0",
		 0)
	
		Entry[153] = new Element(
		153, "assets/thumb/KF-AAB100.jpg",
		100, 98,
		"KFAAB", "Vertsellbarer Bauchtrainer",
		"", "",
		"329", "0",
		"1", 1,
		"Stück", "31",
		"", "pd-690097157.htm",
		"", 1,
		"30", "0",
		 0)
	
		Entry[154] = new Element(
		154, "assets/thumb/KF-PT100.jpg",
		100, 165,
		"KFPT", "Parallelbarren",
		"", "",
		"579", "0",
		"1", 1,
		"Stück", "31",
		"", "pd-584687965.htm",
		"", 1,
		"30", "0",
		 0)
	
		Entry[155] = new Element(
		155, "assets/thumb/Hyper45100.jpg",
		100, 122,
		"WHYP45", "Hyperextension Bank 45°",
		"L 108cm B 67cm H 85cm  ", "Body Solid",
		"199", "0",
		"1", 1,
		"Stück", "31",
		"", "pd-1086464328.htm",
		"", 1,
		"30", "0",
		 0)
	
		Entry[156] = new Element(
		156, "assets/thumb/Back Hyper100.jpg",
		100, 116,
		"WRCH322", "Hyperextensions Bank Waagrecht starke ausführung",
		"L 140cm B 65cm H 92cm  ", "Body Solid",
		"199", "0",
		"1", 1,
		"Stück", "31",
		"", "pd383527492.htm",
		"", 1,
		"30", "0",
		 0)
	
		Entry[157] = new Element(
		157, "assets/thumb/KF-SS100.jpg",
		100, 111,
		"KFSS", "Kniebeugenständer",
		"", "",
		"499", "0",
		"1", 1,
		"Stück", "32",
		"", "pd-1275883127.htm",
		"", 1,
		"31", "0",
		 0)
	
		Entry[158] = new Element(
		158, "assets/thumb/KF-LPHS100.jpg",
		100, 86,
		"KFLPHS", "Beinpresse-Hackenschmidt",
		"", "",
		"1799", "0",
		"1", 1,
		"Stück", "32",
		"", "pd-1473079657.htm",
		"", 1,
		"31", "0",
		 0)
	
		Entry[159] = new Element(
		159, "assets/thumb/KF-LEGM100.jpg",
		100, 95,
		"KFLEGM", "Beinstrecker Beincurler",
		"", "",
		"539", "0",
		"1", 1,
		"Stück", "32",
		"", "pd1482429971.htm",
		"", 1,
		"31", "0",
		 0)
	
		Entry[160] = new Element(
		160, "assets/thumb/Beinstreckerbeugerkombi100.jpg",
		100, 132,
		"GLCE365", "Beinstrecker-beuger Kombi ",
		"Body Solid", "Body Solid",
		"399", "0",
		"1", 1,
		"Stück", "32",
		"", "pd-1377149585.htm",
		"", 1,
		"31", "0",
		 0)
	
		Entry[161] = new Element(
		161, "assets/thumb/Beinpressekombi100.jpg",
		100, 67,
		"WLHP1000", "Kombinierte Beinpresse- Hackenschmidtmaschine ",
		" Scheibenaufnahme 50mm ", "Body Solid",
		"999", "0",
		"1", 1,
		"Stück", "32",
		"", "pd253097964.htm",
		"", 1,
		"31", "0",
		 0)
	
		Entry[162] = new Element(
		162, "assets/thumb/KF-LATM100.jpg",
		100, 177,
		"KFLATM", "Lat und Ruder kombi",
		"", "",
		"649", "0",
		"1", 1,
		"Stück", "29",
		"", "pd-228825777.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[163] = new Element(
		163, "assets/thumb/KF-CC100.jpg",
		100, 69,
		"KFCC", "Doppelkabelzugturm",
		"", "",
		"1999", "0",
		"1", 1,
		"Stück", "29",
		"", "pd-398469511.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[164] = new Element(
		164, "assets/thumb/KF-SPC100.jpg",
		100, 84,
		"KFSPC", "Bizepscurlbank",
		"", "",
		"299", "0",
		"1", 1,
		"Stück", "29",
		"", "pd-1146050407.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[165] = new Element(
		165, "assets/thumb/KF-PC100.jpg",
		100, 126,
		"KFPC", "Power Rack",
		"", "",
		"899", "0",
		"1", 1,
		"Stück", "29",
		"", "pd-1424959777.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[166] = new Element(
		166, "assets/thumb/KF_HC100.jpg",
		100, 118,
		"KFHC", "Multipressturm",
		"", "",
		"669", "0",
		"1", 1,
		"Stück", "29",
		"", "pd1517700647.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[167] = new Element(
		167, "assets/thumb/KF_HC+HCS-Multipress100.jpg",
		100, 151,
		"KFHCHCS", "Multipresse",
		"", "",
		"1990", "0",
		"1", 1,
		"Stück", "29",
		"", "pd-1882762067.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[168] = new Element(
		168, "assets/thumb/KF-PTO100.jpg",
		100, 118,
		"KFPTO", "Scheibenständer für 50mm",
		"", "",
		"159", "0",
		"1", 1,
		"Stück", "33",
		"", "pd-1543634869.htm",
		"", 1,
		"33", "0",
		 0)
	
		Entry[169] = new Element(
		169, "assets/thumb/KF-DB100.jpg",
		100, 91,
		"KFDB3", "Hantelablage",
		"", "",
		"239", "0",
		"1", 1,
		"Stück", "33",
		"", "pd447589233.htm",
		"", 1,
		"33", "0",
		 0)
	
		Entry[170] = new Element(
		170, "assets/thumb/Scheibenstaender100.jpg",
		100, 123,
		"SWT19", "Hantel- Scheiben u. Stangen- Halter 30mm",
		"102x51x59 cm", "Body Solid",
		"99", "0",
		"1", 1,
		"Stück", "33",
		"", "pd-1603190653.htm",
		"", 1,
		"33", "0",
		 0)
	
		Entry[171] = new Element(
		171, "assets/thumb/owt24-100.jpg",
		100, 100,
		"OWT24", "Hantelscheibenständer für 50mm",
		"", "Body Solid",
		"64", "0",
		"1", 1,
		"Stück", "33",
		"", "pd-1567401075.htm",
		"", 1,
		"33", "0",
		 0)
	
		Entry[172] = new Element(
		172, "assets/thumb/swt14-100.jpg",
		100, 100,
		"SWT14", "Hantelscheibenständer Standart",
		"", "Body Solid",
		"58", "0",
		"1", 1,
		"Stück", "33",
		"", "pd1247554055.htm",
		"", 1,
		"33", "0",
		 0)
	
		Entry[173] = new Element(
		173, "assets/thumb/Latruder100.jpg",
		100, 105,
		"GRSM 40", "Latruder",
		"Body Solid", "Body Solid",
		"309", "0",
		"1", 1,
		"Stück", "29",
		"", "pd-921734511.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[174] = new Element(
		174, "assets/thumb/Bizepscurl100.jpg",
		100, 110,
		"GPCE329", "Bizepscurlbank",
		"Body Solid", "Body Solid",
		"249", "0",
		"1", 1,
		"Stück", "29",
		"", "pd-1375946133.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[175] = new Element(
		175, "assets/thumb/Latzuglatruder100.jpg",
		100, 67,
		"Glm83", "Latzug-Latruder Kombi",
		"Body Solid", "Body Solid",
		"349", "0",
		"1", 1,
		"Stück", "29",
		"", "pd-1449476313.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[176] = new Element(
		176, "assets/thumb/BicepTrizepskombi100.jpg",
		100, 140,
		"CBD380", "Bizeps/Trizeps Maschine",
		"L 116cm B 111cm H 103cm  Scheibenaufnahme 30mm", "Body Solid",
		"369", "0",
		"1", 1,
		"Stück", "29",
		"", "pd159507378.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[177] = new Element(
		177, "assets/thumb/Kniebeugen100.jpg",
		100, 120,
		"WPR370", "Multi Press Rack",
		"L 164cm B 115cm H 188cm  ", "Body Solid",
		"1119", "0",
		"1", 1,
		"Stück", "29",
		"", "pd2142644078.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[178] = new Element(
		178, "assets/thumb/Powerrack100.jpg",
		100, 100,
		"WPR82", "Power Rack ohne Latzug",
		"L 125cm B 120cm H 209cm  ", "Body Solid",
		"499", "0",
		"1", 1,
		"Stück", "29",
		"", "pd344368784.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[179] = new Element(
		179, "assets/thumb/wlm80-100.jpg",
		65, 100,
		"WLM80", "Kombi Lat Ruderzug",
		"L 123cm B 70cm H 207cm  Scheibenaufnahme 30mm inkl. Div. Griffe", "Body Solid",
		"405", "0",
		"1", 1,
		"Stück", "29",
		"", "pd-1238876840.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[180] = new Element(
		180, "assets/thumb/PREMIUM100.jpg",
		100, 133,
		"30031", "Weider Premium Whey Protein ",
		"Vanille Caramel-Schoko Nougat-Erdbeer Vanille-Fresh Banane", "Weider",
		"59.9", "0",
		"2", 1,
		"Dose", "20",
		"Geschmack;Vanille@", "pd1320083190.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[181] = new Element(
		181, "assets/thumb/Hardcore Whey 100.jpg",
		100, 163,
		"30421", "Hardcore Whey 3,178kg",
		"VanilleCream-Schoko-Erbeere", "Weider",
		"79", "0",
		"2", 1,
		"Stück", "20",
		"Geschmack;Erdbeere@", "pd1450979131.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[182] = new Element(
		182, "assets/thumb/Kreagenic.jpg",
		100, 100,
		"31851", "Weider Maximum Krea-Genic",
		"Aktion 120Kps pro Dose ", "Weider",
		"29.9", "0",
		"2", 1,
		"Stück", "22",
		"", "pd-1754177289.htm",
		"", 1,
		"105", "0",
		 0)
	
		Entry[183] = new Element(
		183, "assets/thumb/Kreagenic.jpg",
		100, 100,
		"31861", "Weider Maximum Krea-Genic ",
		"240 Kps pro Dose", "Weider",
		"54.9", "0",
		"2", 1,
		"Stück", "22",
		"", "pd1331244029.htm",
		"", 1,
		"105", "0",
		 0)
	
		Entry[184] = new Element(
		184, "assets/thumb/e3200_jpg100.jpg",
		100, 100,
		"E32Si", "E3200 Simple Modell 2009",
		"Preis inkl. Lieferung und Unterlegmatte !", "Vision Fitness",
		"999", "0",
		"1", 1,
		"Stück", "10",
		"", "pd1248256266.htm",
		"", 1,
		"Vis", "0",
		 0)
	
		Entry[185] = new Element(
		185, "assets/thumb/e3200_jpg100.jpg",
		100, 100,
		"E32De", "E3200 Deluxe Modell 2009",
		"Preis inkl. Lieferung und Unterlegmatte !", "Vision Fitness",
		"1099", "0",
		"1", 1,
		"Stück", "10",
		"", "pd49780296.htm",
		"", 1,
		"Vis", "0",
		 0)
	
		Entry[186] = new Element(
		186, "assets/thumb/e3200_jpg100.jpg",
		100, 100,
		"E32Pr", "E3200 Premium Modell 2009",
		"Preis inkl. Lieferung und Unterlegmatte !", "Vision Fitness",
		"1299", "0",
		"1", 1,
		"Stück", "10",
		"", "pd-377846346.htm",
		"", 1,
		"Vis", "0",
		 0)
	
		Entry[187] = new Element(
		187, "assets/thumb/r2250_jpg100.jpg",
		100, 100,
		"R22Si", "R2250 Simple Modell 2009",
		"Preis inkl. Lieferung und Unterlegmatte !", "Vision Fitness",
		"1399", "0",
		"1", 1,
		"Stück", "13",
		"", "pd1489828564.htm",
		"", 1,
		"V1", "0",
		 0)
	
		Entry[188] = new Element(
		188, "assets/thumb/r2250_jpg100.jpg",
		100, 100,
		"R22De", "R2250 Deluxe Modell 2009",
		"Preis inkl. Lieferung und Unterlegmatte !", "Vision Fitness",
		"1499", "0",
		"1", 1,
		"Stück", "13",
		"", "pd-196399838.htm",
		"", 1,
		"V1", "0",
		 0)
	
		Entry[189] = new Element(
		189, "assets/thumb/r2250_jpg100.jpg",
		100, 100,
		"R22Pr", "R2250 Premium Modell 2009",
		"Preis inkl. Lieferung und Unterlegmatte !", "Vision Fitness",
		"1699", "0",
		"1", 1,
		"Stück", "13",
		"", "pd-702930912.htm",
		"", 1,
		"V1", "0",
		 0)
	
		Entry[190] = new Element(
		190, "assets/thumb/x1500100.jpg",
		100, 100,
		"x15SI", "X1500 Simple Modell 2009",
		"Preis inkl. Lieferung und Unterlegmatte !", "Vision Fitness",
		"1099", "0",
		"1", 1,
		"Stück", "6",
		"", "pd1248338839.htm",
		"", 1,
		"Visio", "0",
		 0)
	
		Entry[191] = new Element(
		191, "assets/thumb/x1500100.jpg",
		100, 100,
		"x15de", "X1500 Deluxe Modell 2009",
		"Preis inkl. Lieferung und Unterlegmatte !", "Vision Fitness",
		"1199", "0",
		"1", 1,
		"Stück", "6",
		"", "pd285487005.htm",
		"", 1,
		"Visio", "0",
		 0)
	
		Entry[192] = new Element(
		192, "assets/thumb/x1500100.jpg",
		100, 100,
		"x15pr", "X1500 Premium Modell 2009",
		"Preis inkl. Lieferung und Unterlegmatte !", "Vision Fitness",
		"1399", "0",
		"1", 1,
		"Stück", "6",
		"", "pd2020373267.htm",
		"", 1,
		"Visio", "0",
		 0)
	
		Entry[193] = new Element(
		193, "assets/thumb/x6200100.jpg",
		100, 100,
		"x62si", "X6200 Simple Modell 2009",
		"Preis inkl.Lieferung und Unterlegmatte !", "Vision Fitness",
		"1699", "0",
		"1", 1,
		"Stück", "6",
		"", "pd-1113883783.htm",
		"", 1,
		"Visio", "0",
		 0)
	
		Entry[194] = new Element(
		194, "assets/thumb/x6200100.jpg",
		100, 100,
		"x62de", "X6200 Deluxe Modell 2009",
		"Preis inkl. Lieferung und Unterlegmatte !", "Vision Fitness",
		"1799", "0",
		"1", 1,
		"Stück", "6",
		"", "pd705991247.htm",
		"", 1,
		"Visio", "0",
		 0)
	
		Entry[195] = new Element(
		195, "assets/thumb/x6200100.jpg",
		100, 100,
		"x62pr", "X6200 Premium Modell 2009",
		"Preis inkl. Lieferung und Unterlegmatte !", "Vision Fitness",
		"1999", "0",
		"1", 1,
		"Stück", "6",
		"", "pd-561898219.htm",
		"", 1,
		"Visio", "0",
		 0)
	
		Entry[196] = new Element(
		196, "assets/thumb/s7200hrt100.jpg",
		100, 100,
		"S72", "S7200 HRT Modell 2009",
		"Preis inkl. Lieferung !", "Vision Fitness",
		"3999", "0",
		"1", 1,
		"Stück", "6",
		"", "pd737869131.htm",
		"", 1,
		"Visio", "0",
		 0)
	
		Entry[197] = new Element(
		197, "assets/thumb/ar700100.jpg",
		100, 81,
		"ar70", "AR700 HRT Modell 2009",
		"Preis inkl. Lieferung !", "Vision Fitness",
		"1299", "0",
		"1", 1,
		"Stück", "17",
		"", "pd1740491230.htm",
		"", 1,
		"802", "0",
		 0)
	
		Entry[198] = new Element(
		198, "assets/thumb/T9250T9550100.jpg",
		100, 100,
		"t92si", "T9250 Simple Modell 2009",
		"Preis inkl. Lieferung und Unterlegmatte !", "Vision Fitness",
		"1999", "0",
		"1", 1,
		"Stück", "2",
		"", "pd1133869884.htm",
		"", 1,
		"Visi", "0",
		 0)
	
		Entry[199] = new Element(
		199, "assets/thumb/T9250T9550100.jpg",
		100, 100,
		"t92de", "T9250 Deluxe Modell 2009",
		"Preis inkl. Lieferung und Unterlegmatte !", "Vision Fitness",
		"2199", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-708557878.htm",
		"", 1,
		"Visi", "0",
		 0)
	
		Entry[200] = new Element(
		200, "assets/thumb/T9250T9550100.jpg",
		100, 100,
		"t92pr", "T9250 Premium Modell 2009",
		"Preis inkl. Lieferung und Unterlegmatte !", "Vision Fitness",
		"2499", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-1467566328.htm",
		"", 1,
		"Visi", "0",
		 0)
	
		Entry[201] = new Element(
		201, "assets/thumb/T9250T9550100.jpg",
		100, 100,
		"t95si", "T9550 Simple Modell 2009",
		"Preis inkl. Lieferung und Unterlegmatte !", "Vision Fitness",
		"2499", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-1714842506.htm",
		"", 1,
		"Visi", "0",
		 0)
	
		Entry[202] = new Element(
		202, "assets/thumb/T9250T9550100.jpg",
		100, 100,
		"t95de", "T9550 Deluxe Modell 2009",
		"Preis inkl. Lieferung und Unterlegmatte !", "Vision Fitness",
		"2699", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-640309356.htm",
		"", 1,
		"Visi", "0",
		 0)
	
		Entry[203] = new Element(
		203, "assets/thumb/T9250T9550100.jpg",
		100, 100,
		"t95pr", "T9550 Premium Modell 2009",
		"Preis inkl. Lieferung und Unterlegmatte !", "Vision Fitness",
		"2999", "0",
		"1", 1,
		"Stück", "2",
		"", "pd-1654741022.htm",
		"", 1,
		"Visi", "0",
		 0)
	
		Entry[204] = new Element(
		204, "assets/thumb/colima100.jpg",
		100, 106,
		"colima", "Colima Pro Modell 2010",
		"Preis inkl. Lieferung und Unterlegmatte !", "Horizon",
		"349", "0",
		"1", 1,
		"Stück", "9",
		"", "pd1248761331.htm",
		"", 1,
		"Hor", "0",
		 0)
	
		Entry[205] = new Element(
		205, "assets/thumb/pago3100.jpg",
		100, 100,
		"pago3", "Pago 3 Modell 2010",
		"Preis inkl. Lieferung und Unterlegmatte !", "Horizon",
		"499", "0",
		"1", 1,
		"Stück", "9",
		"", "pd872012121.htm",
		"", 1,
		"Hor", "0",
		 0)
	
		Entry[206] = new Element(
		206, "assets/thumb/pago4100.jpg",
		100, 103,
		"pago4", "Pago 4 Modell 2010",
		"Preis inkl. Lieferung und Unterlegmatte !", "Horizon",
		"699", "0",
		"1", 1,
		"Stück", "9",
		"", "pd-1128946897.htm",
		"", 1,
		"Hor", "0",
		 0)
	
		Entry[207] = new Element(
		207, "assets/thumb/eliter308100.jpg",
		100, 108,
		"elite308", "Elite R308 Modell 2010",
		"Preis inkl. Lieferung und Unterlegmatte !", "",
		"999", "0",
		"1", 1,
		"Stück", "9",
		"", "pd1787894005.htm",
		"", 1,
		"Hor", "0",
		 0)
	
		Entry[208] = new Element(
		208, "assets/thumb/athS100.jpg",
		100, 129,
		"Athoss", "Athos S Modell 2010",
		"Preis inkl. Lieferung und Unterlegmatte !", "Horizon",
		"399", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-1334453205.htm",
		"", 1,
		"Horiz", "0",
		 0)
	
		Entry[209] = new Element(
		209, "assets/thumb/athopro100.jpg",
		100, 110,
		"athopro", "Athos Pro S Modell 2010",
		"Preis inkl. Lieferung und Unterlegmatte !", "Horizon",
		"499", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-46372271.htm",
		"", 1,
		"Horiz", "0",
		 0)
	
		Entry[210] = new Element(
		210, "assets/thumb/a3100.jpg",
		100, 115,
		"A3", "Andes 3 Modell 2010",
		"Preis inkl. Lieferung und Unterlegmatte !", "Horizon",
		"799", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-1992852249.htm",
		"", 1,
		"Horiz", "0",
		 0)
	
		Entry[211] = new Element(
		211, "assets/thumb/a4100.jpg",
		100, 127,
		"A4", "Andes 4 Modell 2010",
		"Preis inkl. Lieferung und Unterlegmatte !", "Horizon",
		"899", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-2144442003.htm",
		"", 1,
		"Horiz", "0",
		 0)
	
		Entry[212] = new Element(
		212, "assets/thumb/a5100.jpg",
		100, 126,
		"A509", "Andes 509 Modell 2010",
		"Preis inkl. Lieferung und Unterlegmatte !", "Horizon",
		"999", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-1184988829.htm",
		"", 1,
		"Horiz", "0",
		 0)
	
		Entry[213] = new Element(
		213, "assets/thumb/evolveplus100.jpg",
		100, 91,
		"evolveplus", "Evolve Plus Modell 2010",
		"Preis inkl. Lieferung !", "",
		"999", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1248772654.htm",
		"", 1,
		"Ho", "0",
		 0)
	
		Entry[214] = new Element(
		214, "assets/thumb/rojot4100.jpg",
		100, 84,
		"rot4", "Diamante Rojo T4 Laufband Modell 2010",
		"Preis inkl. Lieferung und Unterlegmatte !", "",
		"1799", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-149525492.htm",
		"", 1,
		"Ho", "0",
		 0)
	
		Entry[215] = new Element(
		215, "assets/thumb/rojot5100.jpg",
		100, 85,
		"rot5", "Diamante Rojo T5 Laufband Modell 2010",
		"Preis inkl. Lieferung und Unterlegmatte !", "",
		"1999", "0",
		"1", 1,
		"Stück", "1",
		"", "pd434626842.htm",
		"", 1,
		"Ho", "0",
		 0)
	
		Entry[216] = new Element(
		216, "assets/thumb/eliteT50100.jpg",
		100, 82,
		"elitet50", "Elite T5000 Modell 2010",
		"Preis inkl. Lieferung und Unterlegmatte !", "",
		"2299", "0",
		"1", 1,
		"Stück", "1",
		"", "pd2041500888.htm",
		"", 1,
		"Ho", "0",
		 0)
	
		Entry[217] = new Element(
		217, "assets/thumb/mm20001.jpg",
		100, 100,
		"324021", "Weicer Mega Mass 2000",
		"1,5kg Dose in Vanille , Schoko , Banane oder Erdbeer", "Weider",
		"29.9", "0",
		"2", 1,
		"Stück", "23",
		"Geschmack;Banane@", "pd-459534452.htm",
		"", 1,
		"1300", "0",
		 0)
	
		Entry[218] = new Element(
		218, "assets/thumb/mm20003.jpg",
		100, 100,
		"324071", "Weider Mega Mass 2000",
		"3kg Dose in Vanille , Schoko , Banane oder Erdbeer ", "Weider",
		"42.9", "0",
		"2", 1,
		"Stück", "23",
		"Geschmack;Banane@", "pd-839356858.htm",
		"", 1,
		"1300", "0",
		 0)
	
		Entry[219] = new Element(
		219, "assets/thumb/mm20005.jpg",
		100, 100,
		"328091", "Weider Mega Mass 2000",
		"5kg Standbeutel in Vanille , Schoko , Banane oder Erdbeer", "Weider",
		"74.9", "0",
		"2", 1,
		"Stück", "23",
		"Geschmack;Banane@", "pd229559344.htm",
		"", 1,
		"1300", "0",
		 0)
	
		Entry[220] = new Element(
		220, "assets/thumb/zinc100.jpg",
		100, 75,
		"32331", "Weider Zink Kapseln",
		"120 Kapseln Dose", "Weider",
		"15.9", "0",
		"2", 1,
		"Stück", "24",
		"", "pd1262726790.htm",
		"", 1,
		"10400", "0",
		 0)
	
		Entry[221] = new Element(
		221, "assets/thumb/Arginine.jpg",
		100, 100,
		"32381", "Weider L Arginine Caps",
		"100 Kaps Dose", "Weider",
		"24.9", "0",
		"2", 1,
		"Stück", "21",
		"", "pd1262765781.htm",
		"", 1,
		"31000", "0",
		 0)
	
		Entry[222] = new Element(
		222, "assets/thumb/AminoEse.jpg",
		100, 100,
		"32391", "Weider Amino Essential ",
		"102 Kaps Dose", "Weider",
		"29", "0",
		"2", 1,
		"Stück", "21",
		"", "pd2126003467.htm",
		"", 1,
		"31000", "0",
		 0)
	
		Entry[223] = new Element(
		223, "assets/thumb/CreatinT.jpg",
		100, 100,
		"31741", "Weider Creatin 100 Kaps.",
		"1000mg per Kaps. !", "Weider",
		"16.9", "0",
		"2", 1,
		"Stück", "22",
		"", "pd420296241.htm",
		"", 1,
		"105", "0",
		 0)
	
		Entry[224] = new Element(
		224, "assets/thumb/Nos.jpg",
		100, 100,
		"31351", "Weider NOS X10 908g",
		"für maximalen Muskelpump !", "Weider",
		"39.9", "0",
		"2", 1,
		"Stück", "27",
		"", "pd823852028.htm",
		"", 1,
		"99", "0",
		 0)
	
		Entry[225] = new Element(
		225, "assets/thumb/MuscleF.jpg",
		100, 100,
		"31811", "Weider Muscle Freak 908g",
		"Hardcore NO-Booster", "Weider",
		"54.9", "0",
		"2", 1,
		"Stück", "27",
		"", "pd-59723126.htm",
		"", 1,
		"99", "0",
		 0)
	
		Entry[226] = new Element(
		226, "assets/thumb/Pad100.jpg",
		100, 75,
		"pads", "NEU !! Gripad NEU !!",
		"damit Sie alles im Griff haben", "HuegelPower",
		"14.9", "0",
		"1", 1,
		"Stück", "38",
		"", "pd1263244779.htm",
		"", 1,
		"1003", "0",
		 0)
	
		Entry[227] = new Element(
		227, "assets/thumb/AAB2100.jpg",
		100, 104,
		"Bauch", "Bauchtrainingsschlaufen",
		"Body Solid", "Body Solid",
		"69.9", "0",
		"1", 1,
		"Stück", "38",
		"", "pd-663242223.htm",
		"", 1,
		"1003", "0",
		 0)
	
		Entry[228] = new Element(
		228, "assets/thumb/A3100.jpg",
		100, 96,
		"Adve3", "Adventure 3 Laufband Modell 2010",
		"Preis inkl. Lieferung und Unterlegmatte!", "",
		"999", "0",
		"1", 1,
		"Stück", "1",
		"", "pd1265195190.htm",
		"", 1,
		"Ho", "0",
		 0)
	
		Entry[229] = new Element(
		229, "assets/thumb/A4100.jpg",
		100, 96,
		"Adv4", "Adventure 4 Laufband Modell 2010",
		"Preis inkl. Lieferung und Unterlegmatte !", "",
		"1199", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-599521836.htm",
		"", 1,
		"Ho", "0",
		 0)
	
		Entry[230] = new Element(
		230, "assets/thumb/A5100.jpg",
		100, 99,
		"Adv5", "Adventure 5 Laufband Modell 2010",
		"Preis inkl. Lieferung und Unterlegmatte !", "",
		"1399", "0",
		"1", 1,
		"Stück", "1",
		"", "pd644165666.htm",
		"", 1,
		"Ho", "0",
		 0)
	
		Entry[231] = new Element(
		231, "assets/thumb/OmegaS100.jpg",
		100, 84,
		"OmeS", "Omega S Laufband Aktion",
		"Preis inkl. Lieferung !", "",
		"979", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-596649184.htm",
		"", 1,
		"Ho", "0",
		 0)
	
		Entry[232] = new Element(
		232, "assets/thumb/ParagonS100.jpg",
		100, 82,
		"ParaS", "Paragon S Laufband Aktion",
		"Preis inkl. Lieferung !", "",
		"1479", "0",
		"1", 1,
		"Stück", "1",
		"", "pd920434254.htm",
		"", 1,
		"Ho", "0",
		 0)
	
		Entry[233] = new Element(
		233, "assets/thumb/XE20001.jpg",
		100, 130,
		"XE2", "XE2000 Crosstrainer ",
		"Preis inkl. Lieferung !", "",
		"1399", "0",
		"1", 1,
		"Stück", "7",
		"", "pd381044443.htm",
		"", 1,
		"Un", "0",
		 0)
	
		Entry[234] = new Element(
		234, "assets/thumb/XE40001.jpg",
		100, 119,
		"XE4", "XE4000 Crosstrainer",
		"Preis inkl. Lieferung !", "",
		"1959", "0",
		"1", 1,
		"Stück", "7",
		"", "pd-1808296831.htm",
		"", 1,
		"Un", "0",
		 0)
	
		Entry[235] = new Element(
		235, "assets/thumb/EB30001.jpg",
		100, 116,
		"EB3", "EB 3000 Ergometer",
		"Preis inkl. Lieferung !", "",
		"1199", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-1675626532.htm",
		"", 1,
		"UNE", "0",
		 0)
	
		Entry[236] = new Element(
		236, "assets/thumb/TR10001.jpg",
		100, 89,
		"TR1", "TR1000 Laufband",
		"Preis inkl. Lieferung !", "",
		"1199", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-2047095901.htm",
		"", 1,
		"UNO", "0",
		 0)
	
		Entry[237] = new Element(
		237, "assets/thumb/TR20001.jpg",
		100, 86,
		"TR2", "TR2000 Laufband",
		"Preis inkl. Lieferung !", "",
		"1299", "0",
		"1", 1,
		"Stück", "3",
		"", "pd31114889.htm",
		"", 1,
		"UNO", "0",
		 0)
	
		Entry[238] = new Element(
		238, "assets/thumb/TR30001.jpg",
		100, 83,
		"TR3", "TR3000 Laufband",
		"Preis inkl. Lieferung !", "",
		"1699", "0",
		"1", 1,
		"Stück", "3",
		"", "pd-1702947873.htm",
		"", 1,
		"UNO", "0",
		 0)
	
		Entry[239] = new Element(
		239, "assets/thumb/TR40001.jpg",
		100, 76,
		"TR4", "TR4000 Laufband ",
		"Preis inkl. Lieferung !", "",
		"1899", "0",
		"1", 1,
		"Stück", "3",
		"", "pd93632805.htm",
		"", 1,
		"UNO", "0",
		 0)
	
		Entry[240] = new Element(
		240, "assets/thumb/TR50001.jpg",
		100, 81,
		"TR5", "TR5000 Laufband",
		"Preis inkl. Lieferung !", "",
		"2299", "0",
		"1", 1,
		"Stück", "3",
		"", "pd1265213430.htm",
		"", 1,
		"UNO", "0",
		 0)
	
		Entry[241] = new Element(
		241, "assets/thumb/RC20001.jpg",
		100, 96,
		"RC2", "RC2000 Recumbent ",
		"Preis inkl. Lieferung !", "",
		"1399", "0",
		"1", 1,
		"Stück", "14",
		"", "pd1330769541.htm",
		"", 1,
		"UNR", "0",
		 0)
	
		Entry[242] = new Element(
		242, "assets/thumb/RC50001.jpg",
		100, 104,
		"RC5", "RC5000 Recumbent ",
		"Preis inkl. Lieferung !", "",
		"1899", "0",
		"1", 1,
		"Stück", "14",
		"", "pd1452731451.htm",
		"", 1,
		"UNR", "0",
		 0)
	
		Entry[243] = new Element(
		243, "assets/thumb/Boxsack_FIGH2.jpg",
		61, 200,
		"Fight", "Boxsack Fightclub",
		"hochwertiges Rindsleder !", "",
		"249", "0",
		"1", 1,
		"Stück", "35",
		"", "pd549217867.htm",
		"", 1,
		"Box", "0",
		 0)
	
		Entry[244] = new Element(
		244, "assets/thumb/Boxsack1201.jpg",
		51, 200,
		"Fight1", "Boxsack Fight 120",
		"PU Kunstleder", "",
		"129", "0",
		"1", 1,
		"Stück", "35",
		"", "pd-1335197327.htm",
		"", 1,
		"Box", "0",
		 0)
	
		Entry[245] = new Element(
		245, "assets/thumb/Boxsack1201.jpg",
		51, 200,
		"Kick", "Boxsack Kick 150",
		"PU Kunstleder", "",
		"149", "0",
		"1", 1,
		"Stück", "35",
		"", "pd1462495495.htm",
		"", 1,
		"Box", "0",
		 0)
	
		Entry[246] = new Element(
		246, "assets/thumb/Standboxball_REFLEX1.jpg",
		79, 200,
		"REF", "Standboxball Reflex",
		"Punchingball", "",
		"169", "0",
		"1", 1,
		"Stück", "35",
		"", "pd1265219130.htm",
		"", 1,
		"Box", "0",
		 0)
	
		Entry[247] = new Element(
		247, "assets/thumb/TrainingspaFLEXFIGHTER1.jpg",
		65, 200,
		"Flex", "Flex Fighter",
		"Trainingspartner", "",
		"299", "0",
		"1", 1,
		"Stück", "35",
		"", "pd-1688916232.htm",
		"", 1,
		"Box", "0",
		 0)
	
		Entry[248] = new Element(
		248, "assets/thumb/Standboxsack_FLEX_BAG2.jpg",
		133, 200,
		"Bag", "Flex Bag",
		"Standboxsack ", "",
		"369", "0",
		"1", 1,
		"Stück", "35",
		"", "pd-724660762.htm",
		"", 1,
		"Box", "0",
		 0)
	
		Entry[249] = new Element(
		249, "assets/thumb/Jun-Box-Set1.jpg",
		100, 75,
		"Jun", "Box Set Junior",
		"", "",
		"49", "0",
		"1", 1,
		"Stück", "35",
		"", "pd1265220506.htm",
		"", 1,
		"Box", "0",
		 0)
	
		Entry[250] = new Element(
		250, "assets/thumb/PowerABRoller1.jpg",
		100, 91,
		"Power", "Power Ab Roller",
		"Bauchtrainer", "",
		"49", "0",
		"1", 1,
		"Stück", "31",
		"", "pd798896984.htm",
		"", 1,
		"30", "0",
		 0)
	
		Entry[251] = new Element(
		251, "assets/thumb/Thurzo 001100.jpg",
		100, 178,
		"814", "Gebraucht Multifunktionsturm Thurzo",
		"NP. 5800,-", "",
		"2900", "0",
		"1", 1,
		"Stück", "44",
		"", "pd1274208873.htm",
		"", 1,
		"99999", "0",
		 0)
	
		Entry[252] = new Element(
		252, "assets/thumb/LC100.jpg",
		100, 100,
		"38013", "Weider L Carnitine 100 000",
		"1000 mg L-Carnitine pro Portion", "Weider",
		"37.99", "0",
		"1", 1,
		"Stück", "25",
		"", "pd638685175.htm",
		"", 1,
		"38400", "0",
		 0)
	
		Entry[253] = new Element(
		253, "assets/thumb/GWD.jpg",
		100, 100,
		"31231", "Weider Gold Whey ",
		"LOW FAT und LOW CARB ", "Weider",
		"29.99", "0",
		"2", 1,
		"Stück", "20",
		"Geschmack;Bananensplit@", "pd1076829099.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[254] = new Element(
		254, "assets/thumb/E50001.jpg",
		100, 108,
		"E5000", "E5000 Modell 2010",
		"Preis inkl. Lieferung und Unterlegmatte !", "",
		"1299", "0",
		"1", 1,
		"Stück", "5",
		"", "pd1280340416.htm",
		"", 1,
		"Horiz", "0",
		 0)
	
		Entry[255] = new Element(
		255, "assets/thumb/MiWe100.jpg",
		100, 133,
		"100012", "Millers Whey Deluxe 500g",
		"Whey-Isolat und Whey-Konzentrat", "",
		"12.98", "0",
		"2", 1,
		"Stück", "20",
		"Geschmack;Erdbeere@", "pd1656898521.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[256] = new Element(
		256, "assets/thumb/MiMu100.jpg",
		100, 133,
		"100022", "Millers Protein 95 500g",
		"4 Mehrkomponentenproteine ", "",
		"14.49", "0",
		"2", 1,
		"Stück", "20",
		"Geschmack;Erdbeere@", "pd879214994.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[257] = new Element(
		257, "assets/thumb/MiST100.jpg",
		100, 133,
		"100032", "Millers Strong Gainer 900g   ",
		"Masse und Muskeln mit dem speziellen Extra an Kohlenhydraten ", "",
		"10.99", "0",
		"2", 1,
		"Beutel", "23",
		"Geschmack;Schoko@", "pd-917619865.htm",
		"", 1,
		"1300", "0",
		 0)
	
		Entry[258] = new Element(
		258, "assets/thumb/PowerABRoller1.jpg",
		100, 91,
		"Power-1", "Power Ab Roller",
		"Bauchtrainer", "",
		"49", "0",
		"1", 1,
		"Stück", "38",
		"", "pd-1515935418.htm",
		"", 1,
		"1003", "0",
		 0)
	
		Entry[259] = new Element(
		259, "assets/thumb/Wandhalter1.jpg",
		100, 68,
		"Wand", "Boxsack Wandhalter",
		"klappbar !", "",
		"69", "0",
		"1", 1,
		"Stück", "35",
		"", "pd1265221729.htm",
		"", 1,
		"Box", "0",
		 0)
	
		Entry[260] = new Element(
		260, "assets/thumb/Flame.jpg",
		100, 100,
		"38574", "Weider Body Flame 0,5l",
		"Der richtige Powerburner für&rsquo;s Workout", "Weider",
		"1.75", "0",
		"1", 1,
		"Flasche", "28",
		"", "pd-123530326.htm",
		"", 10,
		"30000", "0",
		 0)
	
		Entry[261] = new Element(
		261, "assets/thumb/Mag.jpg",
		100, 100,
		"38516", "Weider Magnesium Liquid",
		"Trinkfläschchen mit Magnesium und Vitamin C", "Weider",
		"16.99", "0",
		"1", 1,
		"Stück", "24",
		"", "pd-920286744.htm",
		"", 1,
		"10400", "0",
		 0)
	
		Entry[262] = new Element(
		262, "assets/thumb/GWB.jpg",
		100, 100,
		"31235", "Weider Gold Whey 500g",
		"LOW FAT und LOW CARB ", "Weider",
		"14.99", "0",
		"2", 1,
		"Beutel", "20",
		"Geschmack;Bananensplit@", "pd1288970838.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[263] = new Element(
		263, "assets/thumb/GW2B.jpg",
		100, 100,
		"31239", "Weider Gold Whey 2 kg Standbeutel",
		"LOW FAT und LOW CARB ", "Weider",
		"49.99", "0",
		"2", 1,
		"Beutel", "20",
		"Geschmack;Bananensplit@", "pd243546264.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[264] = new Element(
		264, "assets/thumb/GWP.jpg",
		100, 100,
		"31260", "Weider Gold Whey Variety Pack",
		"30 Portionsbeutel (5 Stück je Geschmack) zum Probieren!", "Weider",
		"44.9", "0",
		"2", 1,
		"Stück", "20",
		"", "pd1388279306.htm",
		"", 1,
		"102", "0",
		 0)
	
		Entry[265] = new Element(
		265, "assets/thumb/LCF.jpg",
		100, 100,
		"38644", "Weider L-Carnitine Drink",
		"Handliche Flasche mit dem leckeren Drink zur Fettverbrennung", "Weider",
		"1.75", "0",
		"1", 1,
		"Stück", "25",
		"Geschmack;Ananas-Mango@", "pd746616737.htm",
		"", 10,
		"38400", "0",
		 0)
	
		Entry[266] = new Element(
		266, "assets/thumb/68_0.jpg",
		48, 80,
		"10004", "Millers Magnesium Plus   ",
		"180 kaps. Dose", "",
		"14.49", "0",
		"2", 1,
		"Dose", "24",
		"", "pd-775074835.htm",
		"", 1,
		"10400", "0",
		 0)
	
		Entry[267] = new Element(
		267, "assets/thumb/MCreatinT100.jpg",
		80, 141,
		"10005", "Millers Kreatin Monohydrat Tabletten   ",
		"Satte 1000 mg Kreatin in einer Kreatin-Tablette 100 Tab.Dose", "",
		"9.98", "0",
		"2", 1,
		"Stück", "22",
		"", "pd-1099243786.htm",
		"", 1,
		"105", "0",
		 0)
	
		Entry[268] = new Element(
		268, "assets/thumb/MCreatin100.jpg",
		100, 119,
		"10006", "Millers Kreatin Monohydrat Pulver   ",
		"500g Dose für Muskelkraft, Leistung und Ausdauer ", "",
		"12.99", "0",
		"1", 1,
		"Stück", "22",
		"", "pd-1237191148.htm",
		"", 1,
		"105", "0",
		 0)
	
		Entry[269] = new Element(
		269, "assets/thumb/MGluta100.jpg",
		100, 84,
		"10007", "Millers L-Glutamin Pulver   ",
		"für schnelle Regeneration 400g Pulver", "",
		"21.9", "0",
		"1", 1,
		"Stück", "21",
		"", "pd1468897890.htm",
		"", 1,
		"31000", "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();
			};
		};
