	// 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";
			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/Power Groove PurpleSilver.jpg",
		150, 150,
		"Pow Groove Pur/Sil-15", "Brunswick Power Groove Purple/Silver",
		"10 -16 lbs.", "Brunswick",
		"109", "0",
		"1", 1,
		"Stück", "5",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1322278149.htm",
		"", 1,
		"03-1", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/Target Zone BlueBlackWhite.jpg",
		150, 150,
		"TZ Blue/Black/White15", "Target Zone Blue/BLack/White",
		"", "Brunswick",
		"69", "0",
		"1", 1,
		"Stück", "5",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1049221450.htm",
		"", 1,
		"03-1", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/Target Zone RedBlackGold.jpg",
		150, 150,
		"TZ Red/Black/Gold15", "Brunswick Target Zone Red/Black/Gold",
		"", "Brunswick",
		"69", "0",
		"1", 1,
		"Stück", "5",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1763308254.htm",
		"", 1,
		"03-1", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/SST Soles.jpg",
		150, 150,
		"SST Soles1", "SST Replacment Soles",
		"", "DEXTER",
		"20", "0",
		"1", 1,
		"Stück", "21",
		"Sohle;S1@", "pd-1455274288.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/VIZ A BALL Cow.jpg",
		150, 150,
		"VIZ A BALL Cow-9", "Brunswick Cow Print Viz-A-Ball",
		"8, 10, 12, 14 -16", "Brunswick",
		"109", "0",
		"1", 1,
		"Stück", "17",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1183189354.htm",
		"", 1,
		"13-1", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/VIZ A BALL Leopard.jpg",
		150, 150,
		"VIZ A BALL Leopard-9", "Brunswick Leopard Print Viz-A-Ball",
		"8, 10, 12, 14 -16", "Brunswick",
		"109", "0",
		"1", 1,
		"Stück", "17",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1756415118.htm",
		"", 1,
		"13-1", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/VIZ A BALL Smiley.jpg",
		150, 150,
		"VIZ A BALL Smiley-9", "VIZ A BALL Smiley",
		"8, 10, 12, 14 -16", "Brunswick",
		"109", "0",
		"1", 1,
		"Stück", "17",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd645011626.htm",
		"", 1,
		"13-1", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/VIZ A BALL Tiger.jpg",
		150, 150,
		"VIZ A BALL Tiger-9", "Brunswick Tiger Print Viz-A-Ball",
		"8, 10, 12, 14 -16", "Brunswick",
		"109", "0",
		"1", 1,
		"Stück", "17",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-973879930.htm",
		"", 1,
		"13-1", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/Flame_Viz-A-Ball.jpg",
		150, 150,
		"Viz-A-Ball Flame-9", "Brunswick Flame Viz-A-Ball",
		"8, 10, 12, 14 -16", "Brunswick",
		"109", "0",
		"1", 1,
		"Stück", "17",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1112098689.htm",
		"", 1,
		"13-1", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/Globe_Viz-A-Ball.jpg",
		150, 150,
		"Viz-A-Ball Globe-9", "Brunswick Viz-A-Ball Globe Cosmic",
		"8, 10, 12, 14 -16", "Brunswick",
		"109", "0",
		"1", 1,
		"Stück", "17",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd108978933.htm",
		"", 1,
		"13-1", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/Pepsi_Viz-A-Ball.jpg",
		150, 150,
		"Viz-A-Ball Pepsi-9", "Brunswick Pepsi Viz-A-Ball",
		"8, 10, 12, 14 -16", "Brunswick",
		"109", "0",
		"1", 1,
		"Stück", "17",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd276407372.htm",
		"", 1,
		"13-1", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/BB3000.jpg",
		150, 150,
		"3-BB3000", "SIP 3 Ball Roller Tasche BlackLine",
		"", "SIP",
		"139", "0",
		"1", 1,
		"Stück", "28,31",
		"Farbe;schwarz/blau@", "pd1067885595.htm",
		"", 1,
		"15,31", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/BB2002.jpg",
		150, 95,
		"2-BB2002", "Doppeltasche SIP BB2002",
		"", "SIP",
		"49", "0",
		"1", 1,
		"Stück", "28,30",
		"Farbe;schwarz/blau@", "pd-1940558506.htm",
		"", 1,
		"15,30", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/Storm_2_Ball_Tote_Black.jpg",
		150, 107,
		"2-Tote Black", "2 Ball Tote Black",
		"", "Storm",
		"35", "0",
		"1", 1,
		"Stück", "34",
		"", "pd-1897316735.htm",
		"", 1,
		"33", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/Storm_Tropical_BlackRed_Pearl.jpg",
		150, 150,
		"Tropical B/R Pearl-15", "Tropical Black Red/Pearl",
		"10 -16 lbs.", "Storm",
		"119", "0",
		"1", 1,
		"Stück", "15",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1417513908.htm",
		"", 1,
		"11-1", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/Orange.jpg",
		150, 150,
		"Orange12", "Orange",
		"10 - 15 lbs", "FUNBALLS",
		"119", "0",
		"1", 1,
		"Stück", "18",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1903855556.htm",
		"", 1,
		"14-1", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/Watermelon.jpg",
		150, 150,
		"Watermelon-1", "Watermelon",
		"10 - 15 lbs", "FUNBALLS",
		"149", "0",
		"1", 1,
		"Stück", "18",
		"Gewicht;10 lbs@Bohrservice;Conventional + 30 €@", "pd-834757275.htm",
		"", 1,
		"14-1", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/Pumpkin.jpg",
		150, 150,
		"Pumpkin-15", "Pumpkin",
		"10 - 15 lbs", "FUNBALLS",
		"119", "0",
		"1", 1,
		"Stück", "18",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-2097710606.htm",
		"", 1,
		"14-1", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/Red Rose.jpg",
		150, 150,
		"Red Rose3", "Red Rose",
		"", "FUNBALLS",
		"119", "0",
		"1", 1,
		"Stück", "18",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-440801985.htm",
		"", 1,
		"14-1", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/Atom_Heart.jpg",
		150, 150,
		"Heart Ball-3", "Clear Heart Ball",
		"", "",
		"119", "0",
		"1", 1,
		"Stück", "18",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-762747113.htm",
		"", 1,
		"14-1", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/Atom_Gambler.jpg",
		150, 150,
		"Gambler Ball-15", "Clear Gambler Ball",
		"", "",
		"119", "0",
		"1", 1,
		"Stück", "18",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-577854718.htm",
		"", 1,
		"14-1", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/Storm_Pro_3_Ball_Roller_NavyBlack.jpg",
		150, 231,
		"Storm Pro 3 N/B", "Storm Pro 3 Ball Roller Navy/Black",
		"", "Storm",
		"179", "0",
		"1", 1,
		"Stück", "35",
		"", "pd-1121865228.htm",
		"", 1,
		"34", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/Storm_Pro_2_Ball_Roller_NavyBlack.jpg",
		150, 131,
		"Storm Pro 2 N/B", "Storm Pro 2 Ball Roller Navy/Black",
		"", "Storm",
		"129", "0",
		"1", 1,
		"Stück", "35",
		"", "pd-200.htm",
		"", 1,
		"34", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/Anfaengerset-I.jpg",
		150, 113,
		"Anfängerset I-3", "Anfängerset I Polyesterball + Einzeltasche + Schuhe",
		"Sie sparen bis zu 40,- €", "",
		"119", "0",
		"1", 1,
		"Stück", "1",
		"Gewicht;10 lbs@Bohrservice;ohne Bohrung@", "pd-873089955.htm",
		"", 1,
		"45", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/Anfaengerset-II.jpg",
		150, 113,
		"Anfängerset II-24", "Anfängerset II Reactiveball + Einzeltasche + Schuhe",
		"Sie sparen bis zu 60,- €", "",
		"159", "0",
		"1", 1,
		"Stück", "1",
		"Gewicht;6 lbs@Bohrservice;ohne Bohrung@", "pd770999763.htm",
		"", 1,
		"45", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/Power Groove DryR GreenChrome Pearl.jpg",
		150, 150,
		"Pow Groove Dry R-15", "Brunswick Power Groove DryR React. Grn/Chrm Pearl",
		"", "Brunswick",
		"109", "0",
		"1", 1,
		"Stück", "5",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-479945609.htm",
		"", 1,
		"03-1", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/Target Zone PinkPearl.jpg",
		150, 150,
		"TZ Pink Pearl-15", "Brunswick Target Zone Pink Pearl Glow",
		"", "Brunswick",
		"69", "0",
		"1", 1,
		"Stück", "5",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1761430006.htm",
		"", 1,
		"03-1", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/Target Zone TealYellowBlack.jpg",
		150, 150,
		"TZ Teal/Yellow/Black-15", "Brunswick Target Zone Teal/Yellow/Black Glow",
		"", "Brunswick",
		"69", "0",
		"1", 1,
		"Stück", "5",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1544363434.htm",
		"", 1,
		"03-1", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/SST Soles.jpg",
		150, 150,
		"SST Heels1", "SST Replacement Heels",
		"", "DEXTER",
		"20", "0",
		"1", 1,
		"Stück", "21",
		"Sohle;H1 Large@", "pd-1133926378.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/SIP_Black_Classic.jpg",
		150, 113,
		"Classic 7001-1", "SIP Classic 7001",
		"Bowling Schuhe Gr. 37-47", "SIP",
		"75", "0",
		"1", 1,
		"Stück", "22",
		"Grösse;37@", "pd264054649.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/SIP Leder.jpg",
		125, 150,
		"Leder 7702-1", "SIP Leder",
		"Bowling Schuhe Gr. 39-46", "SIP",
		"109", "0",
		"1", 1,
		"Stück", "22",
		"Grösse;39@", "pd1645280263.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/Dyno Retro Single Inferno.jpg",
		138, 150,
		"Single Inferno", "Brunswick Dyno Single Inferno",
		"", "Brunswick",
		"25", "0",
		"1", 1,
		"Stück", "25",
		"", "pd1236856708.htm",
		"", 1,
		"26", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/Single Roller Black.jpg",
		115, 150,
		"Single Roller Black", "Single Roller Black",
		"1 Ball Roller", "Brunswick",
		"69", "0",
		"1", 1,
		"Stück", "27",
		"", "pd2020189938.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/Rec-Players-2-Ball-Roller-B.jpg",
		150, 150,
		"2-Rec Players Black", "Rec Players 2 Ball Roller Black",
		"2 Ball Roller", "Brunswick",
		"69", "0",
		"1", 1,
		"Stück", "27",
		"", "pd-146109638.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/Groovy Triple Roller Inferno.jpg",
		150, 150,
		"Groovy Inferno 3", "Groovy Triple Roller Inferno",
		"3 Ball Roller", "Brunswick",
		"99", "0",
		"1", 1,
		"Stück", "27",
		"", "pd-217331094.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/BB1004.jpg",
		150, 150,
		"BB1004", "Einzeltasche SIP BB1004",
		"", "SIP",
		"29", "0",
		"1", 1,
		"Stück", "29",
		"Farbe;schwarz/blau@", "pd-945219075.htm",
		"", 1,
		"29", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/BB1001.jpg",
		139, 150,
		"1-BB1001", "Einzeltasche SIP BB1001",
		"", "SIP",
		"29", "0",
		"1", 1,
		"Stück", "29",
		"Farbe;schwarz/blau@", "pd1690120720.htm",
		"", 1,
		"29", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/BB2000.jpg",
		84, 150,
		"2-BB2000", "SIP BlackLine 2 Ball Tasche ",
		"", "SIP",
		"109", "0",
		"1", 1,
		"Stück", "31",
		"Farbe;schwarz/blau@", "pd977490925.htm",
		"", 1,
		"31", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/BB4000.jpg",
		84, 150,
		"4-BB4000", "SIP 4 Ball  Roller Tasche BlackLine",
		"", "SIP",
		"209", "0",
		"1", 1,
		"Stück", "31",
		"Farbe;schwarz/blau@", "pd-876775732.htm",
		"", 1,
		"31", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/1 Ball Basic Tote Black.jpg",
		132, 150,
		"1-Basic Tote Black", "1 Ball Basic Tote Black",
		"", "Storm",
		"29", "0",
		"1", 1,
		"Stück", "33",
		"", "pd-1135224177.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/2 Ball Tote BlackBlue.jpg",
		150, 97,
		"2-Tote Black/Blue", "2 Ball Tote Black/Blue",
		"", "Storm",
		"35", "0",
		"1", 1,
		"Stück", "34",
		"", "pd-602934017.htm",
		"", 1,
		"33", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/2 Ball Tote Plus BlackBlue.jpg",
		150, 150,
		"2-Tote Plus Black/Bl", "2 Ball Tote Plus Black/Blue",
		"", "Storm",
		"45", "0",
		"1", 1,
		"Stück", "34",
		"", "pd-1936654523.htm",
		"", 1,
		"33", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/Control Grip.jpg",
		138, 150,
		"Control Grip", "Control Grip",
		"", "MASTER",
		"6", "0",
		"1", 1,
		"Stück", "44",
		"", "pd1692867332.htm",
		"", 1,
		"38", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/Puffball.jpg",
		150, 113,
		"Puffball", "Puffball",
		"", "MASTER",
		"6", "0",
		"1", 1,
		"Stück", "44",
		"", "pd1214056658.htm",
		"", 1,
		"38", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/Puffball.jpg",
		150, 113,
		"Giant Puffball", "Giant Puffball",
		"", "MASTER",
		"9", "0",
		"1", 1,
		"Stück", "44",
		"", "pd-873979056.htm",
		"", 1,
		"38", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/Rosin Bag.jpg",
		100, 150,
		"Rosin Bag", "Rosin Bag",
		"", "MASTER",
		"5", "0",
		"1", 1,
		"Stück", "44",
		"", "pd421067262.htm",
		"", 1,
		"38", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/Giant Skin Patch.jpg",
		125, 150,
		"Giant Skin Patch", "Giant Skin Patch",
		"", "MASTER",
		"6", "0",
		"1", 1,
		"Stück", "44",
		"", "pd-1178556324.htm",
		"", 1,
		"38", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/Grip Master.jpg",
		150, 126,
		"Grip Master", "Grip Master",
		"", "MASTER",
		"1", "0",
		"1", 1,
		"Stück", "44",
		"", "pd2123609578.htm",
		"", 1,
		"38", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/Grip Sack.jpg",
		150, 94,
		"Grip Sac", "Grip Sac",
		"", "MASTER",
		"7", "0",
		"1", 1,
		"Stück", "44",
		"", "pd1443362344.htm",
		"", 1,
		"38", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/Hand Conditioner.jpg",
		100, 150,
		"Hand Conditioner", "Hand Conditioner",
		"", "MASTER",
		"4", "0",
		"1", 1,
		"Stück", "44",
		"", "pd434464918.htm",
		"", 1,
		"38", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/Insert Tape Bulk.jpg",
		150, 110,
		"InsertTape 250 Bulk-1", "Insert Tape Bulk White",
		"", "MASTER",
		"45", "0",
		"1", 1,
		"Stück", "41",
		"Tapegrösse;1@", "pd-1631446860.htm",
		"", 1,
		"35", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/Insert Tape.jpg",
		149, 150,
		"Tape Box 32 w-1", "Tape Box 32 white ",
		"", "",
		"9", "0",
		"1", 1,
		"Stück", "41",
		"Tapegrösse;1@", "pd1226104626.htm",
		"", 1,
		"35", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/images/nopicture.gif",
		77, 52,
		"Master Grip", "Master Grip",
		"", "MASTER",
		"5", "0",
		"1", 1,
		"Stück", "44",
		"", "pd-1177460560.htm",
		"", 1,
		"38", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/Non-Slip Grip Cream.jpg",
		138, 150,
		"Non-Slip Grip Cream", "Non-Slip Grip Cream",
		"", "MASTER",
		"4", "0",
		"1", 1,
		"Stück", "44",
		"", "pd1666053726.htm",
		"", 1,
		"38", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/Pro Tec Strips.jpg",
		150, 129,
		"Pro Tec Strips", "Pro Tec Strips",
		"", "",
		"4", "0",
		"1", 1,
		"Stück", "44",
		"", "pd-1153205316.htm",
		"", 1,
		"38", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/Quick-Release Thump Insert Tape.jpg",
		125, 150,
		"Quick Release Insert", "Quick Release Insert Tape",
		"", "MASTER",
		"4", "0",
		"1", 1,
		"Stück", "44",
		"", "pd-946587574.htm",
		"", 1,
		"38", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/Skin Patch.jpg",
		125, 150,
		"Skin Patch", "Skin Patch",
		"", "MASTER",
		"4", "0",
		"1", 1,
		"Stück", "44",
		"", "pd1855569800.htm",
		"", 1,
		"38", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/Tape Insert Tool.jpg",
		86, 150,
		"Tape Insert Tool", "Tape Insert Tool",
		"", "MASTER",
		"6", "0",
		"1", 1,
		"Stück", "44",
		"", "pd463851766.htm",
		"", 1,
		"38", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/Fun Towels.jpg",
		81, 150,
		"Fun Towels", "Fun Towles",
		"", "",
		"8", "0",
		"1", 1,
		"Stück", "42",
		"", "pd1055799316.htm",
		"", 1,
		"36", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/Happy Towels.jpg",
		150, 93,
		"Happy Towels", "Happy Towels",
		"", "",
		"8", "0",
		"1", 1,
		"Stück", "42",
		"", "pd1658563682.htm",
		"", 1,
		"36", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/High Performance Ball Cleaner.jpg",
		86, 150,
		"High Performance Cle", "High Performance Ball Cleaner",
		"", "",
		"9", "0",
		"1", 1,
		"Stück", "42",
		"", "pd24359264.htm",
		"", 1,
		"36", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/Micro Fiber Bowling Cloth.jpg",
		150, 122,
		"Micro Fiber Bowling ", "Micro Fiber Bowling Cloth",
		"", "",
		"8", "0",
		"1", 1,
		"Stück", "42",
		"", "pd592803470.htm",
		"", 1,
		"36", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/Micro Fiber Buff-a-Ball.jpg",
		150, 121,
		"Buff-a-Ball", "Micro Fiber Buff-a-Ball",
		"", "",
		"10", "0",
		"1", 1,
		"Stück", "42",
		"", "pd-830359700.htm",
		"", 1,
		"36", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/ProClean Ball Cleaner.jpg",
		73, 150,
		"Pro Clean Ball Clean", "Pro Clean Ball Cleaner",
		"", "MASTER",
		"10", "0",
		"1", 1,
		"Stück", "42",
		"", "pd-1780114566.htm",
		"", 1,
		"36", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/images/nopicture.gif",
		77, 52,
		"Pro Polish PLUS", "Pro Polish PLUS Cleaning Polish",
		"", "",
		"12", "0",
		"1", 1,
		"Stück", "42",
		"", "pd-480209352.htm",
		"", 1,
		"36", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/ProPolish Ball Polish.jpg",
		62, 150,
		"Pro Polish Ball", "Pro Polish Ball Polish",
		"", "MASTER",
		"12", "0",
		"1", 1,
		"Stück", "42",
		"", "pd213731110.htm",
		"", 1,
		"36", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/Spray Master Ball Cleaner.jpg",
		86, 150,
		"Spray Master", "Spray Master Ball Cleaner",
		"", "MASTER",
		"9", "0",
		"1", 1,
		"Stück", "42",
		"", "pd-1730848316.htm",
		"", 1,
		"36", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/Deluxe Skuf Brush.jpg",
		123, 150,
		"Deluxe Skuf Brush", "Deluxe Skuf Brush",
		"", "MASTER",
		"8", "0",
		"1", 1,
		"Stück", "43",
		"", "pd2094556562.htm",
		"", 1,
		"37", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/Easy Slide.jpg",
		123, 150,
		"Easy Slide", "Easy Slide",
		"", "MASTER",
		"4", "0",
		"1", 1,
		"Stück", "43",
		"", "pd980274704.htm",
		"", 1,
		"37", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/Master Shoe Covers.jpg",
		150, 111,
		"Master Shoe Covers", "Master Shoe Covers",
		"", "MASTER",
		"15", "0",
		"1", 1,
		"Stück", "43",
		"Grösse;L@", "pd-1769575766.htm",
		"", 1,
		"37", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/Skuf-Brush.jpg",
		150, 111,
		"Skuf Brush", "Skuf Brush",
		"", "",
		"5", "0",
		"1", 1,
		"Stück", "43",
		"", "pd2134161640.htm",
		"", 1,
		"37", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/Slide Guide.jpg",
		150, 111,
		"Slide Guide", "Slide Guide",
		"", "MASTER",
		"12", "0",
		"1", 1,
		"Stück", "43",
		"", "pd-1017976490.htm",
		"", 1,
		"37", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/True Slide.jpg",
		150, 111,
		"True Slide", "True Slide",
		"", "MASTER",
		"12", "0",
		"1", 1,
		"Stück", "43",
		"", "pd-2087286924.htm",
		"", 1,
		"37", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/Bowling Accessory Starter Kit.jpg",
		150, 122,
		"Accessory Kit", "Bowling Accessory Starter Kit",
		"", "MASTER",
		"35", "0",
		"1", 1,
		"Stück", "45",
		"", "pd1084660355.htm",
		"", 1,
		"39", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/Bowling Record Yearbook.jpg",
		138, 150,
		"Bowling Record Book", "Bowling Record Yearbook",
		"", "",
		"9", "0",
		"1", 1,
		"Stück", "45",
		"", "pd-1170100119.htm",
		"", 1,
		"39", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/Pro Deluxe Accessory Case.jpg",
		150, 101,
		"Pro Deluxe Case", "Pro Deluxe Accessory Case",
		"", "MASTER",
		"19", "0",
		"1", 1,
		"Stück", "45",
		"", "pd2108489989.htm",
		"", 1,
		"39", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/Pro Tool Kit.jpg",
		150, 97,
		"Pro Tool Kit", "Pro Tool Kit",
		"", "MASTER",
		"69", "0",
		"1", 1,
		"Stück", "45",
		"", "pd719471291.htm",
		"", 1,
		"39", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/Bevel Knife.jpg",
		150, 60,
		"Bevel Knife", "Bevel Knife",
		"", "MASTER",
		"29", "0",
		"1", 1,
		"Stück", "45",
		"", "pd-1307085983.htm",
		"", 1,
		"39", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/Grip Grabber.jpg",
		203, 150,
		"Grip Grabber", "Grip Grabber",
		"", "",
		"59", "0",
		"1", 1,
		"Stück", "45",
		"", "pd-1461982089.htm",
		"", 1,
		"39", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/Cabretta Leather Bowling Gloves.jpg",
		85, 150,
		"Bowling Gloves1", "CabrettaLeather Bowling Gloves",
		"", "MASTER",
		"29", "0",
		"1", 1,
		"Stück", "47",
		"Grösse;L@Right / Left Hand;Left Hand@", "pd-1705624211.htm",
		"", 1,
		"40", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/Deluxe Wrist Glove.jpg",
		85, 150,
		"Deluxe Wrist Glove1", "Deluxe Wrist Glove",
		"", "MASTER",
		"39", "0",
		"1", 1,
		"Stück", "47",
		"Grösse;L@Right / Left Hand;Left Hand@", "pd-1382164069.htm",
		"", 1,
		"40", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/Elbow Thermo Band.jpg",
		85, 150,
		"Elbow Thermo Band1", "Elbow Thermo Band",
		"", "MASTER",
		"15", "0",
		"1", 1,
		"Stück", "47",
		"Grösse;L@", "pd-1746177187.htm",
		"", 1,
		"40", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/Ladies Wristmaster II.jpg",
		85, 150,
		"Ladies Wristmaster1", "Ladies Wristmaster II",
		"", "MASTER",
		"25", "0",
		"1", 1,
		"Stück", "47",
		"Grösse;M@Right / Left Hand;Left Hand@", "pd-881117714.htm",
		"", 1,
		"40", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/Neon Wristlet.jpg",
		84, 150,
		"Neon Wristlet RH", "Neon Wristlet Right Hand",
		"", "MASTER",
		"15", "0",
		"1", 1,
		"Stück", "47",
		"", "pd688850380.htm",
		"", 1,
		"40", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/Neoprene Wristlet.jpg",
		123, 150,
		"Neoprene Wristlet RH", "Neoprene Wristlet Right Hand",
		"", "MASTER",
		"15", "0",
		"1", 1,
		"Stück", "47",
		"", "pd-259976998.htm",
		"", 1,
		"40", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/Power Paw Bowling Glove.jpg",
		85, 150,
		"Power Paw Glove-1", "Master Power Paw Glove",
		"", "MASTER",
		"35", "0",
		"1", 1,
		"Stück", "47",
		"Grösse;L@Right / Left Hand;Left Hand@", "pd-1811796368.htm",
		"", 1,
		"40", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/Power Paw Wrist Support.jpg",
		85, 150,
		"Power Paw-1", "Master Power Paw",
		"", "MASTER",
		"45", "0",
		"1", 1,
		"Stück", "47",
		"Grösse;L@Right / Left Hand;Left Hand@", "pd437357750.htm",
		"", 1,
		"40", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/Power Paw XL Wrist Support.jpg",
		85, 150,
		"Power Paw XL Wrist1", "Power Paw XL Wrist Support",
		"", "MASTER",
		"45", "0",
		"1", 1,
		"Stück", "47",
		"Grösse;L@Right / Left Hand;Left Hand@", "pd-808490418.htm",
		"", 1,
		"40", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/Pro Elbow Support.jpg",
		123, 150,
		"Pro Elbow Support", "Pro Elbow Support",
		"", "MASTER",
		"15", "0",
		"1", 1,
		"Stück", "47",
		"", "pd-1616654036.htm",
		"", 1,
		"40", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/Wrist Guard.jpg",
		85, 150,
		"Wrist Guard", "Wrist Guard",
		"", "MASTER",
		"8", "0",
		"1", 1,
		"Stück", "47",
		"", "pd365185850.htm",
		"", 1,
		"40", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/Wrist Guard Extra Long.jpg",
		85, 150,
		"Wrist Guard Extra Lo", "Wrist guard Extra Long",
		"", "MASTER",
		"9", "0",
		"1", 1,
		"Stück", "47",
		"", "pd-1645884424.htm",
		"", 1,
		"40", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/Wrister.jpg",
		85, 150,
		"Wrister1", "Wrister",
		"", "MASTER",
		"25", "0",
		"1", 1,
		"Stück", "47",
		"Grösse;L@", "pd1613221202.htm",
		"", 1,
		"40", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/Wrist Master II.jpg",
		85, 150,
		"Wrist Master II1", "Wrist Master II",
		"", "MASTER",
		"25", "0",
		"1", 1,
		"Stück", "47",
		"Grösse;L@Right / Left Hand;Left Hand@", "pd-542014186.htm",
		"", 1,
		"40", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/Wrist Master II Bonus Excel.jpg",
		85, 150,
		"Wrist Master Bonus E1", "Wrist Master II Bonus Excel",
		"", "MASTER",
		"29", "0",
		"1", 1,
		"Stück", "47",
		"Grösse;L@Right / Left Hand;Left Hand@", "pd-1650799476.htm",
		"", 1,
		"40", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/Wrist Master II Excel.jpg",
		85, 150,
		"Wrist Master II Exce1", "Wrist Master II Excel",
		"", "MASTER",
		"29", "0",
		"1", 1,
		"Stück", "47",
		"Grösse;L@Right / Left Hand;Left Hand@", "pd1969742770.htm",
		"", 1,
		"40", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/Xtra Roll.jpg",
		150, 150,
		"Xtra Roll1", "Xtra Roll",
		"", "Storm",
		"49", "0",
		"1", 1,
		"Stück", "48",
		"Grösse;L@Right / Left Hand;Left Hand@", "pd599253774.htm",
		"", 1,
		"42 ", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/Xtra Hook.jpg",
		150, 150,
		"Xtra Hook1", "Xtra Hook",
		"", "Storm",
		"49", "0",
		"1", 1,
		"Stück", "48",
		"Grösse;L@Right / Left Hand;Left Hand@", "pd-1124875354.htm",
		"", 1,
		"42 ", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/Xtra Grip Plus.jpg",
		150, 150,
		"Xtra Grip Plus1", "Xtra Grip Plus",
		"", "Storm",
		"39", "0",
		"1", 1,
		"Stück", "48",
		"Grösse;L@Right / Left Hand;Left Hand@", "pd-119677028.htm",
		"", 1,
		"42 ", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/thumb/Xtra Grip.jpg",
		150, 150,
		"Xtra Grip1", "Xtra Grip",
		"", "Storm",
		"29", "0",
		"1", 1,
		"Stück", "48",
		"Grösse;L@Right / Left Hand;Left Hand@", "pd677998402.htm",
		"", 1,
		"42 ", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/Pro Release Extended.jpg",
		57, 150,
		"Pro Release Extended1", "Pro Release Extended",
		"", "PRO RELEASE",
		"99", "0",
		"1", 1,
		"Stück", "49",
		"Grösse;M/L@Right / Left Hand;Left Hand@", "pd-1149232550.htm",
		"", 1,
		"43", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/thumb/Pro Release.jpg",
		63, 150,
		"Pro Release1", "Pro Release",
		"", "PRO RELEASE",
		"89", "0",
		"1", 1,
		"Stück", "49",
		"Grösse;M/L@Right / Left Hand;Left Hand@", "pd2037895588.htm",
		"", 1,
		"43", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/Brunswick_Target_Zone_Viole.jpg",
		150, 150,
		"TZ Viole Silver-15", "Brunswick Target Viole Silver Bowlingball",
		"", "Brunswick",
		"69", "0",
		"1", 1,
		"Stück", "5",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-909940581.htm",
		"", 1,
		"03-1", "0",
		 0)
	
		Entry[102] = new Element(
		102, "assets/thumb/Storm_Jolt.jpg",
		150, 150,
		"Jolt-15", "Storm Jolt Bowlingball",
		"10 - 15 lbs.", "Storm",
		"159", "0",
		"1", 1,
		"Stück", "15",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd2010434153.htm",
		"", 1,
		"11-1", "0",
		 0)
	
		Entry[103] = new Element(
		103, "assets/thumb/Storm_Tropical_Black-Pink-P.jpg",
		150, 150,
		"Tropical B/P Pearl-15", "Storm Tropical Black/Pink Pearl",
		"10 -16 lbs.", "Storm",
		"119", "0",
		"1", 1,
		"Stück", "15",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd469120716.htm",
		"", 1,
		"11-1", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/Brunswick_PGroove_Blue_Pear.jpg",
		150, 150,
		"Pow Groove B/R Pearl-15", "Brunswick Power Groove Blue Pearl/Red Pearl",
		"10 - 16 lbs.", "Brunswick",
		"109", "0",
		"1", 1,
		"Stück", "5",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1415538665.htm",
		"", 1,
		"03-1", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/Brunswick_PGroove_Blue_Red.jpg",
		150, 150,
		"Pow Groove B/Pearl I-15", "Brunswick Power Groove Blue Pearl/Ivory",
		"10 - 16 lbs.", "Brunswick",
		"109", "0",
		"1", 1,
		"Stück", "5",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1158008794.htm",
		"", 1,
		"03-1", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/thumb/Brunswick_White_Viz-A-Ball.jpg",
		150, 149,
		"VIZ A BALL White-9", "Brunswick White Viz-A-Ball",
		"8, 10, 12, 14 -16", "Brunswick",
		"109", "0",
		"1", 1,
		"Stück", "5,17",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1874999565.htm",
		"", 1,
		"03-1,13-1", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/Brunswick_Casino_Viz-A-Ball.jpg",
		150, 148,
		"VIZ A BALL Casino-9", "Brunswick Casino Viz-A-Ball",
		"8, 10, 12, 14 -16", "Brunswick",
		"109", "0",
		"1", 1,
		"Stück", "5,17",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-579776225.htm",
		"", 1,
		"03-1,13-1", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/Brunswick_Ocean_Life_Viz-A.jpg",
		150, 149,
		"VIZ A BALL OceanLife-9", "Brunswick Ocean Life Viz-A-Ball",
		"8, 10, 12, 14 -16", "Brunswick",
		"109", "0",
		"1", 1,
		"Stück", "5,17",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1253289611.htm",
		"", 1,
		"03-1,13-1", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/Brunswick_Camouflage_Viz-A.jpg",
		150, 148,
		"VIZ A BALLCamouflage-9", "Brunswick Camouflage Viz-A-Ball",
		"8, 10, 12, 14 -16", "Brunswick",
		"109", "0",
		"1", 1,
		"Stück", "5,17",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd783420855.htm",
		"", 1,
		"03-1,13-1", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/thumb/Brunswick_Moon_Viz-A-Ball.jpg",
		150, 149,
		"VIZ A BALL Moon-9", "Brunswick Moon Viz-A-Ball",
		"8, 10, 12, 14 -16", "Brunswick",
		"109", "0",
		"1", 1,
		"Stück", "5,17",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1500644701.htm",
		"", 1,
		"03-1,13-1", "0",
		 0)
	
		Entry[111] = new Element(
		111, "assets/thumb/Brunswick_Spiral_Glow_Viz-A.jpg",
		150, 149,
		"VIZ A BALL Spiral-9", "Brunswick Spiral Glow Viz-A-Ball",
		"8, 10, 12, 14 -16", "Brunswick",
		"109", "0",
		"1", 1,
		"Stück", "5,17",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-2076917425.htm",
		"", 1,
		"03-1,13-1", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/Clearball_Red_Dragon.jpg",
		150, 150,
		"Red Dragon-3", "Clearball Red Dragon",
		"14 lbs.", "",
		"119", "0",
		"1", 1,
		"Stück", "18",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd2009117305.htm",
		"", 1,
		"14-1", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/thumb/Clearball_Human_Heart.jpg",
		150, 150,
		"Human Heart-3", "Clearball Human Heart",
		"14 lbs", "",
		"119", "0",
		"1", 1,
		"Stück", "18",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-2118606513.htm",
		"", 1,
		"14-1", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/thumb/Clearball_Jackpot.jpg",
		150, 150,
		"Jackpot-9", "Clearball Jackpot",
		"12 - 15 lbs.", "",
		"119", "0",
		"1", 1,
		"Stück", "18",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1111838139.htm",
		"", 1,
		"14-1", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/thumb/Funball_Nineball.jpg",
		150, 150,
		"Nineball-15", "Funball Nineball",
		"10 -15 lbs.", "",
		"119", "0",
		"1", 1,
		"Stück", "18",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd2044749968.htm",
		"", 1,
		"14-1", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/thumb/Funball_Eightball.jpg",
		150, 150,
		"Eightball-15", "Funball Eightball",
		"10 - 15 lbs.", "",
		"119", "0",
		"1", 1,
		"Stück", "18",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1233665730.htm",
		"", 1,
		"14-1", "0",
		 0)
	
		Entry[117] = new Element(
		117, "assets/thumb/Clearball_Globus.jpg",
		150, 150,
		"Earth-15", "Clearball Earth",
		"10 - 15 lbs", "",
		"119", "0",
		"1", 1,
		"Stück", "18",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-181066138.htm",
		"", 1,
		"14-1", "0",
		 0)
	
		Entry[118] = new Element(
		118, "assets/thumb/Clearball_Tennis.jpg",
		150, 150,
		"Tennisball-15", "Clearball Tennisball",
		"10 -15 lbs", "",
		"119", "0",
		"1", 1,
		"Stück", "18",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1569469959.htm",
		"", 1,
		"14-1", "0",
		 0)
	
		Entry[119] = new Element(
		119, "assets/thumb/Funball_Pacman.jpg",
		150, 150,
		"Pacman-15", "Funball Pacman",
		"10 - 15 lbs", "",
		"119", "0",
		"1", 1,
		"Stück", "18",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd766017782.htm",
		"", 1,
		"14-1", "0",
		 0)
	
		Entry[120] = new Element(
		120, "assets/thumb/Tiger.jpg",
		150, 150,
		"Tiger-6", "Clearball Tiger",
		"13 - 15 lbs", "FUNBALLS",
		"119", "0",
		"1", 1,
		"Stück", "18",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1532579610.htm",
		"", 1,
		"14-1", "0",
		 0)
	
		Entry[121] = new Element(
		121, "assets/thumb/Hammer_Black_Widow_Pearl.jpg",
		150, 150,
		"Black Widow Pearl-9", "Hammer Black Widow Pearl",
		"12 - 16 lbs.", "HAMMER",
		"199", "0",
		"1", 1,
		"Stück", "8",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd6713502.htm",
		"", 1,
		"07-1", "0",
		 0)
	
		Entry[122] = new Element(
		122, "assets/thumb/Skull Ball.jpg",
		150, 150,
		"Skull Ball-1", "Ebonite Skull Ball",
		"15 lbs.", "Ebonite",
		"229", "0",
		"1", 1,
		"Stück", "7,18",
		"Gewicht;15 lbs@Bohrservice;Conventional + 30 €@", "pd810905378.htm",
		"", 1,
		"06-1,14-1", "0",
		 0)
	
		Entry[123] = new Element(
		123, "assets/thumb/Storm_Pro_Double_Tote_Black-Blue.jpg",
		150, 121,
		"Storm Pro Double B/R", "Storm Pro Double Tote Black/Royal",
		"", "Storm",
		"69", "0",
		"1", 1,
		"Stück", "34",
		"", "pd1615040167.htm",
		"", 1,
		"33", "0",
		 0)
	
		Entry[124] = new Element(
		124, "assets/thumb/Storm_Pro_Double_Tote_Black.jpg",
		150, 130,
		"Storm Pro Double B", "Storm Pro Double Tote Black",
		"", "Storm",
		"69", "0",
		"1", 1,
		"Stück", "34",
		"", "pd954716461.htm",
		"", 1,
		"33", "0",
		 0)
	
		Entry[125] = new Element(
		125, "assets/thumb/Storm_1_Ball_Deluxe_Tote_CharcoalBlack.jpg",
		150, 131,
		"1-Deluxe Tote B/C", "Storm 1 Ball Deluxe Tote Black/Charcoal",
		"", "Storm",
		"39", "0",
		"1", 1,
		"Stück", "33",
		"", "pd-2078462173.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[126] = new Element(
		126, "assets/thumb/Brunswick_Pro_Players_2_Ball_Roller_BlackSilver.jpg",
		150, 192,
		"Pro Play Double  B/S", "Brunswick Pro Players Double Black/Silver",
		"2 Ball Roller", "Brunswick",
		"119", "0",
		"1", 1,
		"Stück", "27",
		"", "pd335614397.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[127] = new Element(
		127, "assets/thumb/Brunswick_Pro_Players_3_Ball_Roller_BlackGold.jpg",
		150, 254,
		"Pro Players 3  B/G", "Brunswick Pro Players 3 Ball Roller Black/Gold",
		"3 Ball Roller", "Brunswick",
		"179", "0",
		"1", 1,
		"Stück", "27",
		"", "pd-1860452455.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[128] = new Element(
		128, "assets/thumb/Brunswick_Flash_BlackBurgundy_2_Ball_Roller.jpg",
		150, 179,
		"Flash Double B/B", "Brunswick Flash Double Black/Burgundy ",
		"2 Ball Roller", "Brunswick",
		"89", "0",
		"1", 1,
		"Stück", "27",
		"", "pd1787814709.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[129] = new Element(
		129, "assets/thumb/Brunswick_Flash_BlackNavy_2_Ball_Roller.jpg",
		150, 186,
		"Flash Double  B/N", "Brunswick Flash Double Black/Navy ",
		"2 Ball Roller", "Brunswick",
		"89", "0",
		"1", 1,
		"Stück", "27",
		"", "pd28487787.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[130] = new Element(
		130, "assets/thumb/Brunswick_Dyno_Inferno_Single_Roller.jpg",
		150, 254,
		"1-Dyno Inferno", "Brunswick Dyno Single Roller Inferno",
		"Single Roller", "Brunswick",
		"49", "0",
		"1", 1,
		"Stück", "27",
		"", "pd-367234553.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[131] = new Element(
		131, "assets/thumb/Brunswick_Mens_Zone_Target.jpg",
		150, 96,
		"Mens Zone Target-7", "Brunswick Mens Zone Target RIGHT HAND ",
		"Bowling Schuhe Gr. 7-13", "Brunswick",
		"79", "0",
		"1", 1,
		"Stück", "20",
		"Grösse;7@", "pd-922043280.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[132] = new Element(
		132, "assets/thumb/Brunswick_Ladies_Classic.jpg",
		150, 82,
		"Ladies Classic LH-1", "Brunswick Ladies Classic Left Hand",
		"", "Brunswick",
		"149", "0",
		"1", 1,
		"Stück", "20",
		"Grösse;10@Right / Left Hand;Left Hand@", "pd-277651217.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[133] = new Element(
		133, "assets/thumb/Brunswick_Ladies_Classic.jpg",
		150, 82,
		"Ladies Classic RH-1", "Brunswick Ladies Classic Right Hand",
		"", "Brunswick",
		"149", "0",
		"1", 1,
		"Stück", "20",
		"Grösse;10@Right / Left Hand;Right Hand@", "pd327421109.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[134] = new Element(
		134, "assets/thumb/Brunswick_Mens_Classic_Black.jpg",
		150, 115,
		"Mens Classic B LH-1", "Brunswick Mens Classic Black Left Hand",
		"", "Brunswick",
		"149", "0",
		"1", 1,
		"Stück", "20",
		"Grösse;10@Right / Left Hand;Left Hand@", "pd-389133468.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[135] = new Element(
		135, "assets/thumb/Brunswick_Mens_Classic_Black.jpg",
		150, 115,
		"Mens Classic B RH-1", "Brunswick Mens Classic Black Right Hand",
		"", "Brunswick",
		"149", "0",
		"1", 1,
		"Stück", "20",
		"Grösse;10@Right / Left Hand;Right Hand@", "pd1630351410.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[136] = new Element(
		136, "assets/thumb/Dexter_Mens_SST_7.jpg",
		150, 89,
		"SST 7 Men LH-7", "Dexter Mens SST 7 Left Hand",
		"Bowling Schuhe Gr. 8 1/2 -13", "DEXTER",
		"199", "0",
		"1", 1,
		"Stück", "21",
		"Grösse;8 1/2@", "pd-413761451.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[137] = new Element(
		137, "assets/thumb/Dexter_Mens_SST_7.jpg",
		150, 89,
		"SST 7 Men RH-7", "Dexter Mens SST 7 Right Hand",
		"Bowling Schuhe Gr. 8 1/2- 13", "DEXTER",
		"199", "0",
		"1", 1,
		"Stück", "21",
		"Grösse;8 1/2@", "pd1112216203.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[138] = new Element(
		138, "assets/thumb/Dexter_Womens_SST_7.jpg",
		150, 85,
		"SST 7 Womens RH-4", "Dexter Womens SST 7 Right Hand",
		"Bowling Schuhe Gr. 7-11", "DEXTER",
		"199", "0",
		"1", 1,
		"Stück", "21",
		"Grösse;7@", "pd-698978329.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[139] = new Element(
		139, "assets/thumb/Dexter_Womens_SST_7.jpg",
		150, 85,
		"SST 7 Womens LH-4", "Dexter Womens SST 7 Left Hand",
		"Bowling Schuhe Gr. 7-11", "DEXTER",
		"199", "0",
		"1", 1,
		"Stück", "21",
		"Grösse;7@", "pd1240869196.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[140] = new Element(
		140, "assets/thumb/Atom_Small_Dices.jpg",
		150, 150,
		"Small Dices-3", "Clear Small Dices",
		"", "",
		"119", "0",
		"1", 1,
		"Stück", "18",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1146573762.htm",
		"", 1,
		"14-1", "0",
		 0)
	
		Entry[141] = new Element(
		141, "assets/thumb/Atom_Alien.jpg",
		150, 150,
		"Clear Alien Ball-1", "Clear Alien Ball",
		"", "",
		"149", "0",
		"1", 1,
		"Stück", "18",
		"Gewicht;14 lbs@Bohrservice;Conventional + 30 €@", "pd-1920793927.htm",
		"", 1,
		"14-1", "0",
		 0)
	
		Entry[142] = new Element(
		142, "assets/thumb/Atom_Apple.jpg",
		150, 150,
		"Apple-1", "Clear Apple",
		"14 lbs.", "FUNBALLS",
		"149", "0",
		"1", 1,
		"Stück", "18",
		"Gewicht;14 lbs@Bohrservice;Conventional + 30 €@", "pd1788965756.htm",
		"", 1,
		"14-1", "0",
		 0)
	
		Entry[143] = new Element(
		143, "assets/thumb/Atom_Baseball.jpg",
		150, 150,
		"A Baseball-15", "Clearball Baseball",
		"10 - 15 lbs", "",
		"119", "0",
		"1", 1,
		"Stück", "18",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1347114716.htm",
		"", 1,
		"14-1", "0",
		 0)
	
		Entry[144] = new Element(
		144, "assets/thumb/Atom_Club.jpg",
		150, 150,
		"A Baseball-1", "Club",
		"", "",
		"149", "0",
		"1", 1,
		"Stück", "18",
		"Gewicht;14 lbs@Bohrservice;Conventional + 30 €@", "pd-1513250490.htm",
		"", 1,
		"14-1", "0",
		 0)
	
		Entry[145] = new Element(
		145, "assets/thumb/Atom_Fish.jpg",
		150, 150,
		"Fish-3", "Fish",
		"14 lbs.", "",
		"119", "0",
		"1", 1,
		"Stück", "18",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1455655798.htm",
		"", 1,
		"14-1", "0",
		 0)
	
		Entry[146] = new Element(
		146, "assets/thumb/Atom_Panda.jpg",
		150, 150,
		"A Baseball-3", "Panda",
		"", "",
		"119", "0",
		"1", 1,
		"Stück", "18",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1532190298.htm",
		"", 1,
		"14-1", "0",
		 0)
	
		Entry[147] = new Element(
		147, "assets/thumb/Atom_Pirate.jpg",
		150, 150,
		"Pirate-3", "Clearball Pirate Flag",
		"14 lbs", "",
		"119", "0",
		"1", 1,
		"Stück", "18",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-460272322.htm",
		"", 1,
		"14-1", "0",
		 0)
	
		Entry[148] = new Element(
		148, "assets/thumb/Brunswick_Target_Zone_Single_Black.jpg",
		150, 160,
		"Target Zone Black", "Brunswick Target Zone Single Black",
		"", "Brunswick",
		"29", "0",
		"1", 1,
		"Stück", "25",
		"", "pd1472332189.htm",
		"", 1,
		"26", "0",
		 0)
	
		Entry[149] = new Element(
		149, "assets/thumb/Brunswick_Target_Zone_Single_RoyalBlack.jpg",
		150, 145,
		"Target Zone Royal/B", "Brunswick Target Zone Single Royal/Black",
		"", "Brunswick",
		"29", "0",
		"1", 1,
		"Stück", "25",
		"", "pd1416008979.htm",
		"", 1,
		"26", "0",
		 0)
	
		Entry[150] = new Element(
		150, "assets/thumb/Brunswick_Target_Zone_Single_CharcoalNavy.jpg",
		150, 151,
		"Target Zone Charcoal", "Brunswick Target Zone Single Charcoal/Navy",
		"", "Brunswick",
		"29", "0",
		"1", 1,
		"Stück", "25",
		"", "pd968109845.htm",
		"", 1,
		"26", "0",
		 0)
	
		Entry[151] = new Element(
		151, "assets/thumb/Dexter-Mens-SST-8.jpg",
		150, 79,
		"SST 8 Men RH-7", "Dexter Mens SST 8 Right Hand",
		"Bowling Schuhe Gr. 8 1/2- 13", "DEXTER",
		"209", "0",
		"1", 1,
		"Stück", "21",
		"Grösse;8 1/2@", "pd1226071542.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[152] = new Element(
		152, "assets/thumb/Dexter-Mens-SST-8.jpg",
		150, 79,
		"SST 8 Men LH-7", "Dexter Mens SST 8 Left Hand",
		"Bowling Schuhe Gr. 8 1/2- 13", "DEXTER",
		"209", "0",
		"1", 1,
		"Stück", "21",
		"Grösse;8 1/2@", "pd1675538095.htm",
		"", 1,
		"10", "0",
		 0)
	
		Entry[153] = new Element(
		153, "assets/thumb/Brunswick-Rec-Players-2-Roller-BO.jpg",
		150, 225,
		"2-Rec Players Bl/Or", "Rec Players 2 Ball Roller Black/Orion Blue ",
		"2 Ball Roller", "Brunswick",
		"69", "0",
		"1", 1,
		"Stück", "27",
		"", "pd1226748523.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[154] = new Element(
		154, "assets/thumb/Brunswick-Competitor-3-Roller-Bl.jpg",
		150, 285,
		"3-Competitor-Bl", "Brunswick Competitor Players 3 Ball Roller Black",
		"3 Ball Roller", "Brunswick",
		"99", "0",
		"1", 1,
		"Stück", "27",
		"", "pd-788176989.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[155] = new Element(
		155, "assets/thumb/Storm-1-Deluxe-Cobalt-Black.jpg",
		150, 148,
		"1-Deluxe Tote B/Co", "Storm 1 Ball Deluxe Tote Cobalt/Black",
		"", "Storm",
		"39", "0",
		"1", 1,
		"Stück", "33",
		"", "pd1801636821.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[156] = new Element(
		156, "assets/thumb/Storm-1-Deluxe-Pink-Black.jpg",
		150, 147,
		"1-Deluxe Tote B/Pi", "Storm 1 Ball Deluxe Tote Pink/Black",
		"", "Storm",
		"39", "0",
		"1", 1,
		"Stück", "33",
		"", "pd-791490024.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[157] = new Element(
		157, "assets/thumb/monats_spez1009-bl.jpg",
		150, 113,
		"PurePhysics 2", "Special Bundel Pure Physics &amp;  PRO BOWL Polyesterball Blau",
		"12 -15lbs", "Columbia",
		"249", "0",
		"1", 1,
		"Stück", "0",
		"", "pd421450014.htm",
		"", 1,
		"44", "0",
		 0)
	
		Entry[158] = new Element(
		158, "assets/thumb/monats_spez1009-bl.jpg",
		150, 113,
		"PurePhysics 3", "Special Bundel Pure Physics &amp;  PRO BOWL Polyesterball Blau",
		"12 -15lbs", "Columbia",
		"299", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-734118134.htm",
		"", 1,
		"44", "0",
		 0)
	
		Entry[159] = new Element(
		159, "assets/thumb/monats_spez1009-pi.jpg",
		150, 113,
		"PurePhysics 1-1", "Special Bundel Pure Physics &amp;  PRO BOWL Polyesterball Candy",
		"12 -15lbs", "Columbia",
		"199", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1790686430.htm",
		"", 1,
		"44", "0",
		 0)
	
		Entry[160] = new Element(
		160, "assets/thumb/monats_spez1009-ge.jpg",
		150, 113,
		"PurePhysics 1-2", "Special Bundel Pure Physics &amp;  PRO BOWL Polyesterball Lime",
		"12 -15lbs", "Columbia",
		"199", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-541359794.htm",
		"", 1,
		"44", "0",
		 0)
	
		Entry[161] = new Element(
		161, "assets/thumb/monats_spez1009-or.jpg",
		150, 113,
		"PurePhysics 1-3", "Special Bundel Pure Physics &amp;  PRO BOWL Polyesterball Orange",
		"12 -15lbs", "Columbia",
		"199", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1235758534.htm",
		"", 1,
		"44", "0",
		 0)
	
		Entry[162] = new Element(
		162, "assets/thumb/monats_spez1009-pi.jpg",
		150, 113,
		"PurePhysics 2-1", "Special Bundel Pure Physics &amp;  PRO BOWL Polyesterball Candy",
		"12 -15lbs", "Columbia",
		"249", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-541693466.htm",
		"", 1,
		"44", "0",
		 0)
	
		Entry[163] = new Element(
		163, "assets/thumb/Aloha-Blue-Orange-Green.jpg",
		150, 150,
		"Aloha b/g/o-15", "Aloha Polyester Blue Orange Green",
		"10 - 15 lbs.", "",
		"59", "0",
		"1", 1,
		"Stück", "3",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1337825491.htm",
		"", 1,
		"01-1", "0",
		 0)
	
		Entry[164] = new Element(
		164, "assets/thumb/Aloha-Black-Silver.jpg",
		150, 150,
		"Aloha b/s-15", "Aloha Polyester Black Silver",
		"10 - 15 lbs.", "",
		"59", "0",
		"1", 1,
		"Stück", "3",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1888597283.htm",
		"", 1,
		"01-1", "0",
		 0)
	
		Entry[165] = new Element(
		165, "assets/thumb/Aloha-Red-Purple-Silver.jpg",
		150, 150,
		"Aloha r/s/p-15", "Aloha Polyester Red Silver Purple",
		"10 - 15 lbs.", "",
		"59", "0",
		"1", 1,
		"Stück", "3",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd552125391.htm",
		"", 1,
		"01-1", "0",
		 0)
	
		Entry[166] = new Element(
		166, "assets/thumb/Aloha_Red-Black.jpg",
		150, 150,
		"Aloha r/b-15", "Aloha Polyester Red Black",
		"10 - 15 lbs.", "",
		"59", "0",
		"1", 1,
		"Stück", "3",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1352255429.htm",
		"", 1,
		"01-1", "0",
		 0)
	
		Entry[167] = new Element(
		167, "assets/thumb/Aloha-Green-Black.jpg",
		150, 150,
		"Aloha g/b-15", "Aloha Polyester Green Black",
		"10 - 15 lbs.", "",
		"59", "0",
		"1", 1,
		"Stück", "3",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-291028397.htm",
		"", 1,
		"01-1", "0",
		 0)
	
		Entry[168] = new Element(
		168, "assets/thumb/Aloha-Blue-Purple-Silver.jpg",
		150, 150,
		"Aloha b/p/s-15", "Aloha Polyester Blue Silver Purple",
		"10 - 15 lbs.", "",
		"109", "0",
		"1", 1,
		"Stück", "3",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1649954817.htm",
		"", 1,
		"01-1", "0",
		 0)
	
		Entry[169] = new Element(
		169, "assets/thumb/Brunswick_Freedom.jpg",
		150, 150,
		"VIZ A BALL Freedom -9", "Brunswick Freedom  Viz-A-Ball",
		"8, 10, 12, 14 -16", "Brunswick",
		"109", "0",
		"1", 1,
		"Stück", "17",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1417744121.htm",
		"", 1,
		"13-1", "0",
		 0)
	
		Entry[170] = new Element(
		170, "assets/thumb/Clear_Eagle.jpg",
		150, 150,
		"Eagle-3", "Eagle",
		"14 lbs.", "",
		"119", "0",
		"1", 1,
		"Stück", "18",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd896209835.htm",
		"", 1,
		"14-1", "0",
		 0)
	
		Entry[171] = new Element(
		171, "assets/thumb/Clear_Golf.jpg",
		150, 150,
		"Golf -15", "Clearball Golf ",
		"10 -15 lbs", "",
		"119", "0",
		"1", 1,
		"Stück", "18",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1827345494.htm",
		"", 1,
		"14-1", "0",
		 0)
	
		Entry[172] = new Element(
		172, "assets/thumb/Brunswick_Mens_Aries.jpg",
		150, 91,
		"Mens Aries-8", "Brunswick Mens Aries",
		"Bowling Schuhe Gr. 7-14", "Brunswick",
		"59", "0",
		"1", 1,
		"Stück", "20",
		"Grösse;7@", "pd-981523777.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[173] = new Element(
		173, "assets/thumb/Brunswick_Mens_Argos.jpg",
		150, 92,
		"Mens Argos-8", "Brunswick Mens Argos",
		"Bowling Schuhe Gr. 7-14", "Brunswick",
		"59", "0",
		"1", 1,
		"Stück", "20",
		"Grösse;7@", "pd-844216154.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[174] = new Element(
		174, "assets/thumb/Brunswick_Womens_Avada_Blac.jpg",
		150, 90,
		"Womens Avada B/B-4", "Brunswick Womens Avada Black/Neon Blue",
		"Bowling Schuhe Gr. 6-11", "Brunswick",
		"59", "0",
		"1", 1,
		"Stück", "20",
		"Grösse;6@", "pd-966531229.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[175] = new Element(
		175, "assets/thumb/SIP_Elegance_BS7200.jpg",
		150, 113,
		"Elegance 7200-1", "SIP Elegance",
		"Bowling Schuhe Gr. 36-47", "SIP",
		"75", "0",
		"1", 1,
		"Stück", "22",
		"Grösse;36@", "pd1167183380.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[176] = new Element(
		176, "assets/thumb/SIP_Sport_7100.jpg",
		150, 150,
		"Sport 7100-1", "SIP Sport",
		"Bowling Schuhe Gr. 37-47", "SIP",
		"75", "0",
		"1", 1,
		"Stück", "22",
		"Grösse;37@", "pd452310489.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[177] = new Element(
		177, "assets/thumb/SIP_Star7500.jpg",
		150, 113,
		"Star 7500-1", "SIP Star, mit Wechselsohle",
		"Bowling Schuhe Gr. 39-46", "SIP",
		"139", "0",
		"1", 1,
		"Stück", "22",
		"Grösse;39@Right / Left Hand;Right Hand@", "pd-1457614654.htm",
		"", 1,
		"13", "0",
		 0)
	
		Entry[178] = new Element(
		178, "assets/thumb/Brunswick_Dyno_Single_Blue_Inferno.jpg",
		150, 200,
		"Single Blue Inferno", "Brunswick Dyno Single Blue Inferno",
		"", "Brunswick",
		"25", "0",
		"1", 1,
		"Stück", "25",
		"", "pd-1024998914.htm",
		"", 1,
		"26", "0",
		 0)
	
		Entry[179] = new Element(
		179, "assets/thumb/Brunswick_Flash_Black_Single_Tote.jpg",
		150, 129,
		"Flash Single Black", "Brunswick Flash Single Tote Black",
		"", "Brunswick",
		"39", "0",
		"1", 1,
		"Stück", "25",
		"", "pd1112322140.htm",
		"", 1,
		"26", "0",
		 0)
	
		Entry[180] = new Element(
		180, "assets/thumb/Brunswick_Flash_BlackBur.jpg",
		150, 112,
		"Flash Single Black/B", "Brunswick Flash Single Tote Black/Burgundy",
		"", "Brunswick",
		"39", "0",
		"1", 1,
		"Stück", "25",
		"", "pd-1860239894.htm",
		"", 1,
		"26", "0",
		 0)
	
		Entry[181] = new Element(
		181, "assets/thumb/Brunswick_Flash_BlackRoyal.jpg",
		150, 129,
		"Flash Single B/R", "Brunswick Flash Single Tote Black/Royal",
		"", "Brunswick",
		"39", "0",
		"1", 1,
		"Stück", "25",
		"", "pd1470397992.htm",
		"", 1,
		"26", "0",
		 0)
	
		Entry[182] = new Element(
		182, "assets/thumb/Brunswick_Flash_BlackSilver_Single_Tote.jpg",
		150, 132,
		"Flash Single B/S", "Brunswick Flash Single Tote Black/Silver",
		"", "Brunswick",
		"39", "0",
		"1", 1,
		"Stück", "25",
		"", "pd-34262890.htm",
		"", 1,
		"26", "0",
		 0)
	
		Entry[183] = new Element(
		183, "assets/thumb/Brunswick_Swirl_Single_Tote_BBW.jpg",
		150, 146,
		"Swirl Single B/B/W", "Brunswick Target Zone Swirl Single Tote ",
		"Blue Black White", "Brunswick",
		"29", "0",
		"1", 1,
		"Stück", "25",
		"", "pd1697704494.htm",
		"", 1,
		"26", "0",
		 0)
	
		Entry[184] = new Element(
		184, "assets/thumb/Brunswick_Target_Zone_Single_RedBlack.jpg",
		150, 165,
		"Target Zone Red/B", "Brunswick Target Zone Single Red/Black",
		"", "Brunswick",
		"29", "0",
		"1", 1,
		"Stück", "25",
		"", "pd678063481.htm",
		"", 1,
		"26", "0",
		 0)
	
		Entry[185] = new Element(
		185, "assets/thumb/Brunswick_Flash_3_Ball_Roller_NavyBlack.jpg",
		105, 200,
		"Flash 3 Ball N/B", "Brunswick Flash 3 Ball Roller Navy/Black",
		"3 Ball Roller", "Brunswick",
		"139", "0",
		"1", 1,
		"Stück", "27",
		"", "pd1183315216.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[186] = new Element(
		186, "assets/thumb/Brunswick_Flash_3_Ball_Roller_Black.jpg",
		104, 200,
		"Flash 3 Ball Black", "Brunswick Flash 3 Ball Roller Black",
		"3 Ball Roller", "Brunswick",
		"139", "0",
		"1", 1,
		"Stück", "27",
		"", "pd-1232330306.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[187] = new Element(
		187, "assets/thumb/Brunswick_ProPlayers_4_Ball_Roller_BlackSilver.jpg",
		117, 200,
		"Pro Players 4 B/S", "Brunswick Pro Players 4 Ball Roller Black/Silver",
		"4 Ball Roller", "Brunswick",
		"229", "0",
		"1", 1,
		"Stück", "27",
		"", "pd1724847644.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[188] = new Element(
		188, "assets/thumb/Brunswick_Pro_Players_6_Ball_Roller_BS.jpg",
		92, 200,
		"Pro Players 6 B/S", "Brunswick Pro Players 6 Ball Roller Black/Silver",
		"6 Ball Roller", "Brunswick",
		"259", "0",
		"1", 1,
		"Stück", "27",
		"", "pd-762920984.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[189] = new Element(
		189, "assets/thumb/SIP_BlackLine.jpg",
		150, 120,
		"2-BB2002", "Doppeltasche SIP BB2002",
		"", "SIP",
		"49", "0",
		"1", 1,
		"Stück", "30",
		"Farbe;schwarz/blau@", "pd1839068159.htm",
		"", 1,
		"30", "0",
		 0)
	
		Entry[190] = new Element(
		190, "assets/thumb/BB2000.jpg",
		84, 150,
		"2-BB2100", "SIP ColorLine 2 Ball Tasche ",
		"", "SIP",
		"109", "0",
		"1", 1,
		"Stück", "31",
		"Farbe;schwarz/blau@", "pd134632224.htm",
		"", 1,
		"31", "0",
		 0)
	
		Entry[191] = new Element(
		191, "assets/thumb/BB3000.jpg",
		150, 150,
		"3-BB3100", "SIP 3 Ball Roller Tasche ColorLine",
		"", "SIP",
		"139", "0",
		"1", 1,
		"Stück", "31",
		"Farbe;schwarz/blau@", "pd1943249085.htm",
		"", 1,
		"31", "0",
		 0)
	
		Entry[192] = new Element(
		192, "assets/thumb/BB4000.jpg",
		84, 150,
		"4-BB4100", "SIP 4 Ball  Roller Tasche ColorLine",
		"", "SIP",
		"209", "0",
		"1", 1,
		"Stück", "31",
		"Farbe;schwarz/blau@", "pd368146150.htm",
		"", 1,
		"31", "0",
		 0)
	
		Entry[193] = new Element(
		193, "assets/images/nopicture.gif",
		77, 52,
		"Power Paw Pro-2", "Master Power Paw Pro",
		"", "MASTER",
		"45", "0",
		"1", 1,
		"Stück", "47",
		"Grösse;XL@Right / Left Hand;Right Hand@", "pd-567023291.htm",
		"", 1,
		"40", "0",
		 0)
	
		Entry[194] = new Element(
		194, "assets/thumb/Storm_Gadget.jpg",
		90, 200,
		"Gadget -6", "Storm Gadget ",
		"", "Storm",
		"99", "0",
		"1", 1,
		"Stück", "48",
		"Grösse;S@Right / Left Hand;Right Hand@", "pd-124159343.htm",
		"", 1,
		"42 ", "0",
		 0)
	
		Entry[195] = new Element(
		195, "assets/thumb/Storm_Gadget_XF.jpg",
		81, 200,
		"Gadget-XF-6", "Storm Gadget ",
		"", "Storm",
		"99", "0",
		"1", 1,
		"Stück", "48",
		"Grösse;S@Right / Left Hand;Right Hand@", "pd-212596953.htm",
		"", 1,
		"42 ", "0",
		 0)
	
		Entry[196] = new Element(
		196, "assets/thumb/Insert Tape.jpg",
		149, 150,
		"Tape Box 32 b-1", "Tape Box 32 Black",
		"", "",
		"9", "0",
		"1", 1,
		"Stück", "41",
		"Tapegrösse;1@", "pd391043502.htm",
		"", 1,
		"35", "0",
		 0)
	
		Entry[197] = new Element(
		197, "assets/thumb/Master_Round_Rasp_File.jpg",
		150, 60,
		"Round Rasp File", "Round Rasp File",
		"", "MASTER",
		"25", "0",
		"1", 1,
		"Stück", "45",
		"", "pd1663872582.htm",
		"", 1,
		"39", "0",
		 0)
	
		Entry[198] = new Element(
		198, "assets/thumb/drwipe.jpg",
		150, 121,
		"Dr. WIPE", "Dr. WIPE Ball WIPES",
		"", "",
		"5", "0",
		"1", 1,
		"Stück", "42",
		"", "pd657167844.htm",
		"", 1,
		"36", "0",
		 0)
	
		Entry[199] = new Element(
		199, "assets/thumb/Brunswick_TZone_CGW.jpg",
		150, 150,
		"TZ Charcoal/Gold/W-15", "Brunswick T Zone Charcoal/Gold/White Pearl",
		"", "Brunswick",
		"69", "0",
		"1", 1,
		"Stück", "5",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd794284165.htm",
		"", 1,
		"03-1", "0",
		 0)
	
		Entry[200] = new Element(
		200, "assets/thumb/Brunswick_TZone_NG.jpg",
		150, 150,
		"TZ Navy/Gold-15", "Brunswick T Zone Navy/Gold Pearl",
		"6, 8-16 lbs.", "Brunswick",
		"69", "0",
		"1", 1,
		"Stück", "5",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1804041115.htm",
		"", 1,
		"03-1", "0",
		 0)
	
		Entry[201] = new Element(
		201, "assets/thumb/Brunswick_TZone_PGS.jpg",
		150, 150,
		"TZ Purple/Green/S-15", "Brunswick T Zone Purple/Green/Silver Pearl",
		"6, 8-16 lbs.", "Brunswick",
		"69", "0",
		"1", 1,
		"Stück", "5",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd323332165.htm",
		"", 1,
		"03-1", "0",
		 0)
	
		Entry[202] = new Element(
		202, "assets/thumb/Brunswick_PGroove_BlackPurp.jpg",
		150, 150,
		"Pow Groove B/P-1", "Brunswick Power Groove Reactive Black/Purple",
		"10 - 16 lbs.", "Brunswick",
		"139", "0",
		"1", 1,
		"Stück", "5",
		"Gewicht;10 lbs@Bohrservice;Conventional + 30 €@", "pd1297909468.htm",
		"", 1,
		"03-1", "0",
		 0)
	
		Entry[203] = new Element(
		203, "assets/thumb/Brunswick_PGroove_PinkBlue.jpg",
		150, 150,
		"Pow Groove P/B-15", "Brunswick Power Groove Reactive Pink/Blue Pearl",
		"10 - 16 lbs.", "Brunswick",
		"109", "0",
		"1", 1,
		"Stück", "5",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1606203498.htm",
		"", 1,
		"03-1", "0",
		 0)
	
		Entry[204] = new Element(
		204, "assets/thumb/Storm_Tropical_Orange_Navy.jpg",
		150, 150,
		"Tropical O/N Pearl-15", "Storm Tropical Orange/Navy Pearl",
		"10 - 16 lbs.", "Storm",
		"119", "0",
		"1", 1,
		"Stück", "15",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1695431617.htm",
		"", 1,
		"11-1", "0",
		 0)
	
		Entry[205] = new Element(
		205, "assets/thumb/Storm_Tropical_Royal_Lime.jpg",
		150, 150,
		"Tropical R/L Pearl -15", "Storm Tropical Royal/Lime Pearl",
		"10 - 16 lbs.", "Storm",
		"119", "0",
		"1", 1,
		"Stück", "15",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1834947000.htm",
		"", 1,
		"11-1", "0",
		 0)
	
		Entry[206] = new Element(
		206, "assets/thumb/Track-The_Rising.jpg",
		150, 150,
		"The Rising-9", "Track The Rising",
		"12 - 16 lbs.", "Track",
		"209", "0",
		"1", 1,
		"Stück", "16",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd925542252.htm",
		"", 1,
		"12-1", "0",
		 0)
	
		Entry[207] = new Element(
		207, "assets/thumb/Columbia-Jazz-PP.jpg",
		150, 150,
		"Jazz Purple/Pink-15", "Columbia Jazz Purple/Pink",
		"10 - 16 lbs.", "Columbia",
		"119", "0",
		"1", 1,
		"Stück", "6",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1379047842.htm",
		"", 1,
		"04-1", "0",
		 0)
	
		Entry[208] = new Element(
		208, "assets/thumb/Columbia-Jazz-BG.jpg",
		150, 150,
		"Jazz Blue/Green-15", "Columbia Jazz Blue/Green",
		"10 - 16 lbs.", "Columbia",
		"119", "0",
		"1", 1,
		"Stück", "6",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1193138123.htm",
		"", 1,
		"04-1", "0",
		 0)
	
		Entry[209] = new Element(
		209, "assets/thumb/Brunswick-Twisted-Fury.jpg",
		150, 150,
		"Twisted Fury-9", "Brunswick Twisted Fury",
		"12 -16 lbs.", "Brunswick",
		"209", "0",
		"1", 1,
		"Stück", "5",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1196440184.htm",
		"", 1,
		"03-1", "0",
		 0)
	
		Entry[210] = new Element(
		210, "assets/thumb/Brunswick-Ultra-Zone.jpg",
		150, 150,
		"Ultra Zone-9", "Brunswick Ultra Zone",
		"12 - 16 lbs.", "Brunswick",
		"179", "0",
		"1", 1,
		"Stück", "5",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd881216128.htm",
		"", 1,
		"03-1", "0",
		 0)
	
		Entry[211] = new Element(
		211, "assets/thumb/Brunswick-Spiral-RWB.jpg",
		150, 150,
		"R/W/B Spiral-9", "Brunswick Red White Blue Spiral Glow Viz-A-Ball",
		"8, 10, 12, 14-16 lbs.", "Brunswick",
		"109", "0",
		"1", 1,
		"Stück", "5",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd200151079.htm",
		"", 1,
		"03-1", "0",
		 0)
	
		Entry[212] = new Element(
		212, "assets/thumb/Brunswick-Avalanche-Pearl.jpg",
		150, 150,
		"Avalanche Pearl-15", "Brunswick Avalanche Pearl",
		"10 - 16 lbs.", "Brunswick",
		"129", "0",
		"1", 1,
		"Stück", "5",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-326091960.htm",
		"", 1,
		"03-1", "0",
		 0)
	
		Entry[213] = new Element(
		213, "assets/thumb/Brunswick-Avalanche-Solid.jpg",
		150, 150,
		"Avalanche Solid-15", "Brunswick Avalanche Solid",
		"10 - 16 lbs.", "Brunswick",
		"129", "0",
		"1", 1,
		"Stück", "5",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-2071080597.htm",
		"", 1,
		"03-1", "0",
		 0)
	
		Entry[214] = new Element(
		214, "assets/thumb/Hammer-Black-Widow-Clear.jpg",
		150, 150,
		"Black Widow Clear-3", "Hammer Black Widow Clear",
		"14 - 15 lbs.", "HAMMER",
		"159", "0",
		"1", 1,
		"Stück", "8",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1955927546.htm",
		"", 1,
		"07-1", "0",
		 0)
	
		Entry[215] = new Element(
		215, "assets/thumb/Lane1-Liberator.jpg",
		150, 146,
		"The Liberator-3", "Lane#1 The Liberator",
		"14 - 16 lbs. ", "Lane 1",
		"199", "0",
		"1", 1,
		"Stück", "9",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1512706005.htm",
		"", 1,
		"08-1", "0",
		 0)
	
		Entry[216] = new Element(
		216, "assets/thumb/Roto-Grip-Cell.jpg",
		150, 150,
		"Cell-3", "Roto Grip Cell",
		"14 - 15 lbs.", "ROTO GRIP",
		"199", "0",
		"1", 1,
		"Stück", "14",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-444687283.htm",
		"", 1,
		"10-1", "0",
		 0)
	
		Entry[217] = new Element(
		217, "assets/thumb/Roto-Grip-Pluto.jpg",
		150, 150,
		"Pluto-3", "Roto Grip Pluto",
		"14 - 15 lbs.", "ROTO GRIP",
		"139", "0",
		"1", 1,
		"Stück", "14",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd275812293.htm",
		"", 1,
		"10-1", "0",
		 0)
	
		Entry[218] = new Element(
		218, "assets/thumb/Storm-Ice-Storm.jpg",
		150, 150,
		"Ice Storm-15", "Storm Ice Storm",
		"10 - 15 lbs. ", "Storm",
		"79", "0",
		"1", 1,
		"Stück", "15",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1983334151.htm",
		"", 1,
		"11-1", "0",
		 0)
	
		Entry[219] = new Element(
		219, "assets/thumb/Black-Magic-Polish.jpg",
		150, 331,
		"Black Magic Polish", "Ultimate Bowling Products",
		"Black Magic Bowling Ball Polish - 8 oz", "",
		"13", "0",
		"1", 1,
		"Stück", "42",
		"", "pd1212410826.htm",
		"", 1,
		"36", "0",
		 0)
	
		Entry[220] = new Element(
		220, "assets/thumb/Black-Magic-Rejuvenator.jpg",
		150, 403,
		"Black Magic Rejuve", "Ultimate Bowling Products",
		"Black Magic Rejuvenator - 8 oz", "",
		"12", "0",
		"1", 1,
		"Stück", "42",
		"", "pd816750344.htm",
		"", 1,
		"36", "0",
		 0)
	
		Entry[221] = new Element(
		221, "assets/images/nopicture.gif",
		77, 52,
		"Ultra Clean", "Ultimate Bowling Products",
		"Ultra Clean Bowling Ball Cleaner - 8 oz", "",
		"10", "0",
		"1", 1,
		"Stück", "42",
		"", "pd1213730108.htm",
		"", 1,
		"36", "0",
		 0)
	
		Entry[222] = new Element(
		222, "assets/thumb/Black-Magic-XL.jpg",
		150, 331,
		"Black Magic XL", "Ultimate Bowling Products - Black Magic XL Bowling Ball Cleaner &amp; Polish - 8 oz",
		"", "",
		"13", "0",
		"1", 1,
		"Stück", "42",
		"", "pd-632216118.htm",
		"", 1,
		"36", "0",
		 0)
	
		Entry[223] = new Element(
		223, "assets/thumb/Fired-Up-II.jpg",
		150, 148,
		"Fired Up-15", "Storm Fired Up",
		"10 -16 lbs.", "Storm",
		"179", "0",
		"1", 1,
		"Stück", "15",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1515545349.htm",
		"", 1,
		"11-1", "0",
		 0)
	
		Entry[224] = new Element(
		224, "assets/thumb/Brunswick-Copperhead.jpg",
		150, 150,
		"Copperhead-15", "Brunswick Copperhead",
		"10 - 16 lbs", "Brunswick",
		"149", "0",
		"1", 1,
		"Stück", "5",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd6817859.htm",
		"", 1,
		"03-1", "0",
		 0)
	
		Entry[225] = new Element(
		225, "assets/thumb/Brunswick-Twisted-Fury-Soli.jpg",
		150, 150,
		"Twisted Fury Solid-9", "Brunswick Twisted Fury Solid",
		"12 - 16 lbs.", "Brunswick",
		"209", "0",
		"1", 1,
		"Stück", "5",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1063267287.htm",
		"", 1,
		"03-1", "0",
		 0)
	
		Entry[226] = new Element(
		226, "assets/thumb/Brunswick-Smash-Zone.jpg",
		150, 150,
		"Smash Zone-9", "Brunswick Smash Zone",
		"12 - 16 lbs.", "Brunswick",
		"179", "0",
		"1", 1,
		"Stück", "5",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-394516634.htm",
		"", 1,
		"03-1", "0",
		 0)
	
		Entry[227] = new Element(
		227, "assets/thumb/Brunswick-Swarm.jpg",
		150, 150,
		"Swarm-15", "Brunswick Swarm",
		"10 - 16 lbs.", "Brunswick",
		"149", "0",
		"1", 1,
		"Stück", "5",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd746490288.htm",
		"", 1,
		"03-1", "0",
		 0)
	
		Entry[228] = new Element(
		228, "assets/thumb/Brunswick-T-Zone-PBS.jpg",
		150, 150,
		"T Zone PBS Sparkle-15", "Brunswick T Zone ",
		"Purple Blue Silver Sparkle 6, 8 - 16 lbs.", "Brunswick",
		"69", "0",
		"1", 1,
		"Stück", "5",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1451526384.htm",
		"", 1,
		"03-1", "0",
		 0)
	
		Entry[229] = new Element(
		229, "assets/thumb/Brunswick-T-Zone-RYP.jpg",
		150, 150,
		"T Zone RYP-15", "Brunswick T Zone ",
		"Red Yellow Pearl 6, 8 - 16 lbs.", "Brunswick",
		"69", "0",
		"1", 1,
		"Stück", "5",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd692294768.htm",
		"", 1,
		"03-1", "0",
		 0)
	
		Entry[230] = new Element(
		230, "assets/thumb/Columbia-Arch-Rival.jpg",
		150, 150,
		"Arch Rival-9", "Columbia Arch Rival",
		"12 - 16 lbs.", "Columbia",
		"179", "0",
		"1", 1,
		"Stück", "6",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1951615327.htm",
		"", 1,
		"04-1", "0",
		 0)
	
		Entry[231] = new Element(
		231, "assets/thumb/Columbia-Jazz-OY.jpg",
		150, 150,
		"Jazz Orange Yellow-15", "Columbia Jazz Orange Yellow",
		"10 - 16 lbs.", "Columbia",
		"119", "0",
		"1", 1,
		"Stück", "6",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd224855208.htm",
		"", 1,
		"04-1", "0",
		 0)
	
		Entry[232] = new Element(
		232, "assets/thumb/Columbia-Momentum-Swing.jpg",
		150, 150,
		"Momentum Swing-9", "Columbia Momentum Swing",
		"12 -16 lbs.", "Columbia",
		"209", "0",
		"1", 1,
		"Stück", "6",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1543305607.htm",
		"", 1,
		"04-1", "0",
		 0)
	
		Entry[233] = new Element(
		233, "assets/thumb/Columbia-Noize.jpg",
		150, 150,
		"Noize-9", "Columbia Noize",
		"12 - 16 lbs.", "Columbia",
		"149", "0",
		"1", 1,
		"Stück", "6",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd2137834358.htm",
		"", 1,
		"04-1", "0",
		 0)
	
		Entry[234] = new Element(
		234, "assets/thumb/Ebonite-The-new-One.jpg",
		150, 150,
		"The New One-15", "Ebonite The New One",
		"10 - 16 lbs.", "Ebonite",
		"219", "0",
		"1", 1,
		"Stück", "7",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1715138561.htm",
		"", 1,
		"06-1", "0",
		 0)
	
		Entry[235] = new Element(
		235, "assets/thumb/Hammer-Black-Widow-Venom.jpg",
		150, 150,
		"Black Widow Venom-9", "Hammer Black Widow Venom",
		"12 - 16 lbs.", "HAMMER",
		"199", "0",
		"1", 1,
		"Stück", "8",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd987753054.htm",
		"", 1,
		"07-1", "0",
		 0)
	
		Entry[236] = new Element(
		236, "assets/thumb/Hammer-Raw-Hammer-Psycho.jpg",
		150, 150,
		"Raw Hammer Psycho-15", "Hammer Raw Hammer Psycho",
		"10 - 16 lbs.", "HAMMER",
		"149", "0",
		"1", 1,
		"Stück", "8",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd203193305.htm",
		"", 1,
		"07-1", "0",
		 0)
	
		Entry[237] = new Element(
		237, "assets/thumb/Hammer-Razyr.jpg",
		150, 150,
		"Razyr-15", "Hammer Razyr",
		"10 -16 lbs.", "HAMMER",
		"129", "0",
		"1", 1,
		"Stück", "8",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1927850691.htm",
		"", 1,
		"07-1", "0",
		 0)
	
		Entry[238] = new Element(
		238, "assets/thumb/Lane1-XXXL-Starburst.jpg",
		150, 150,
		"XXXL Starburst-3", "Lane #1 XXXL Starburst",
		"14 - 16 lbs.", "Lane 1",
		"149", "0",
		"1", 1,
		"Stück", "9",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1220834430.htm",
		"", 1,
		"08-1", "0",
		 0)
	
		Entry[239] = new Element(
		239, "assets/thumb/Lane1-Buzzbomb-R.jpg",
		150, 150,
		"BuzzBomb/ R-6", "Lane 1 BuzzBomb/ R",
		"13 - 16 lbs.", "Lane 1",
		"239", "0",
		"1", 1,
		"Stück", "9",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-965993177.htm",
		"", 1,
		"08-1", "0",
		 0)
	
		Entry[240] = new Element(
		240, "assets/thumb/Roto-Grip-Golden-Globe.jpg",
		150, 150,
		"Golden Globe-9", "Roto Grip Golden Globe",
		"12 - 15 lbs.", "ROTO GRIP",
		"149", "0",
		"1", 1,
		"Stück", "14,18",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-419502261.htm",
		"", 1,
		"10-1,14-1", "0",
		 0)
	
		Entry[241] = new Element(
		241, "assets/thumb/Storm-Dimension.jpg",
		150, 150,
		"Dimension-15", "Storm Dimension",
		"10 - 16 lbs.", "Storm",
		"199", "0",
		"1", 1,
		"Stück", "15",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1341789.htm",
		"", 1,
		"11-1", "0",
		 0)
	
		Entry[242] = new Element(
		242, "assets/thumb/Storm-Tropical-Ocean-Sky.jpg",
		150, 150,
		"Ocean Sky Pearl-15", "Storm Tropical Ocean Sky Pearl",
		"10 - 16 lbs.", "Storm",
		"119", "0",
		"1", 1,
		"Stück", "15",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1123126799.htm",
		"", 1,
		"11-1", "0",
		 0)
	
		Entry[243] = new Element(
		243, "assets/thumb/Track-Up-Rising.jpg",
		150, 150,
		"Up-Rising-1", "Track Up-Rising",
		"12 - 16 lbs.", "Track",
		"239", "0",
		"1", 1,
		"Stück", "16",
		"Gewicht;12 lbs@Bohrservice;Conventional + 30 €@", "pd196052756.htm",
		"", 1,
		"12-1", "0",
		 0)
	
		Entry[244] = new Element(
		244, "assets/thumb/Hammer-Black-Widow-Shirt.jpg",
		150, 200,
		"BlackWidow-2", "Hammer Black Widow Poloshirt",
		"S -XXL", "HAMMER",
		"45", "0",
		"1", 1,
		"Stück", "39",
		"Grösse;M@", "pd1684251351.htm",
		"", 1,
		"HAMMER", "0",
		 0)
	
		Entry[245] = new Element(
		245, "assets/thumb/Brunswick-Mens-Manu.jpg",
		150, 94,
		"Mens Manu-8", "Brunswick Mens Manu",
		"Bowling Schuhe Gr. 7-14", "Brunswick",
		"59", "0",
		"1", 1,
		"Stück", "20",
		"Grösse;7@", "pd-108060656.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[246] = new Element(
		246, "assets/thumb/Brunswick-Mens-Throttle.jpg",
		150, 88,
		"Mens Throttle-8", "Brunswick Mens Throttle",
		"Bowling Schuhe Gr. 7-14", "Brunswick",
		"69", "0",
		"1", 1,
		"Stück", "20",
		"Grösse;7@", "pd211847707.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[247] = new Element(
		247, "assets/thumb/Brunswick-Mens-Vasu.jpg",
		150, 93,
		"Mens Vasu-9", "Brunswick Mens Vasu",
		"Bowling Schuhe Gr. 7-14", "Brunswick",
		"59", "0",
		"1", 1,
		"Stück", "20",
		"Grösse;7@", "pd-2111131765.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[248] = new Element(
		248, "assets/thumb/Brunswick-Womens-Bloom.jpg",
		150, 100,
		"Womens Bloom-4", "Brunswick Womens Bloom",
		"Bowling Schuhe Gr. 5-11", "Brunswick",
		"59", "0",
		"1", 1,
		"Stück", "20",
		"Grösse;5@", "pd1306729250.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[249] = new Element(
		249, "assets/thumb/Brunswick-Womens-Bridget.jpg",
		150, 92,
		"Womens Bridget-1", "Brunswick Womens Bridget",
		"Bowling Schuhe Gr. 5-11", "Brunswick",
		"69", "0",
		"1", 1,
		"Stück", "20",
		"Grösse;10@", "pd-1223168615.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[250] = new Element(
		250, "assets/thumb/Brunswick-WomensPearl.jpg",
		150, 89,
		"Womens Pearl-4", "Brunswick Brunswick Womens Pearl",
		"Bowling Schuhe Gr. 5-11", "Brunswick",
		"59", "0",
		"1", 1,
		"Stück", "20",
		"Grösse;5@", "pd1754025885.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[251] = new Element(
		251, "assets/thumb/Brunswick_Mens_Zone_Target.jpg",
		150, 96,
		"Mens Zone Target-L-4", "Brunswick Mens Zone Target LEFT HAND ",
		"Bowling Schuhe Gr. 7-13", "Brunswick",
		"79", "0",
		"1", 1,
		"Stück", "20",
		"Grösse;7@", "pd1471255315.htm",
		"", 1,
		"09", "0",
		 0)
	
		Entry[252] = new Element(
		252, "assets/thumb/Storm-Attitude-Shift.jpg",
		150, 150,
		"Attitude Shift-15", "Storm Attitude Shift",
		"10 -16 lbs", "Storm",
		"199", "0",
		"1", 1,
		"Stück", "15",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd286943075.htm",
		"", 1,
		"11-1", "0",
		 0)
	
		Entry[253] = new Element(
		253, "assets/thumb/Storm-Gravity-Shift.jpg",
		150, 150,
		"Gravity Shift-15", "Storm Gravity Shift",
		"10 -16 lbs.", "Storm",
		"199", "0",
		"1", 1,
		"Stück", "15",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1101985138.htm",
		"", 1,
		"11-1", "0",
		 0)
	
		Entry[254] = new Element(
		254, "assets/thumb/Brunswick_Target_Zone_Single_PurpleBlack.jpg",
		150, 148,
		"Target Zone Purple/B", "Brunswick Target Zone Single Purple/Black",
		"", "Brunswick",
		"29", "0",
		"1", 1,
		"Stück", "25",
		"", "pd-1996172209.htm",
		"", 1,
		"26", "0",
		 0)
	
		Entry[255] = new Element(
		255, "assets/thumb/Brunswick-Viper-Single-Army.jpg",
		150, 121,
		"Viper Single Army", "Brunswick Viper Single Tote Army Camo",
		"", "Brunswick",
		"29", "0",
		"1", 1,
		"Stück", "25",
		"", "pd305307728.htm",
		"", 1,
		"26", "0",
		 0)
	
		Entry[256] = new Element(
		256, "assets/thumb/Brunswick-Target-Zone-Charc.jpg",
		150, 136,
		"Target Zone Ch/B", "Brunswick Target Zone Single Charcoal/Black",
		"", "Brunswick",
		"29", "0",
		"1", 1,
		"Stück", "25",
		"", "pd-290452557.htm",
		"", 1,
		"26", "0",
		 0)
	
		Entry[257] = new Element(
		257, "assets/thumb/Brunswick-Gear-II-Single-BB.jpg",
		150, 179,
		"Gear II Single Blue", "Brunswick Gear II Single Tote Royal Blue/Black",
		"", "Brunswick",
		"29", "0",
		"1", 1,
		"Stück", "25",
		"", "pd301645629.htm",
		"", 1,
		"26", "0",
		 0)
	
		Entry[258] = new Element(
		258, "assets/thumb/Brunswick-Gear-II-Single-Re.jpg",
		150, 157,
		"Gear II Single Red", "Brunswick Gear II Single Tote Red/Black",
		"", "Brunswick",
		"29", "0",
		"1", 1,
		"Stück", "25",
		"", "pd1582469687.htm",
		"", 1,
		"26", "0",
		 0)
	
		Entry[259] = new Element(
		259, "assets/thumb/Brunswick-Gear-II-Single-Ch.jpg",
		150, 170,
		"Gear II Single Charc", "Brunswick Gear II Single Tote Charcoal/Black",
		"", "Brunswick",
		"29", "0",
		"1", 1,
		"Stück", "25",
		"", "pd1671828257.htm",
		"", 1,
		"26", "0",
		 0)
	
		Entry[260] = new Element(
		260, "assets/thumb/Brunswick-Gear-II-Single-Bl.jpg",
		150, 163,
		"Gear II Single Black", "Brunswick Gear II Single Tote Black",
		"", "Brunswick",
		"29", "0",
		"1", 1,
		"Stück", "25",
		"", "pd-1127301.htm",
		"", 1,
		"26", "0",
		 0)
	
		Entry[261] = new Element(
		261, "assets/thumb/Brunswick-Dyno-Single-Spira.jpg",
		150, 190,
		"Dyno Single Spiral", "Brunswick Dyno Single Spiral",
		"", "Brunswick",
		"25", "0",
		"1", 1,
		"Stück", "25",
		"", "pd2120737989.htm",
		"", 1,
		"26", "0",
		 0)
	
		Entry[262] = new Element(
		262, "assets/thumb/Brunswick-Dyno-Single-Smile.jpg",
		150, 188,
		"Dyno Single Smiley ", "Brunswick Dyno Single Smiley Face",
		"", "Brunswick",
		"25", "0",
		"1", 1,
		"Stück", "25",
		"", "pd537640575.htm",
		"", 1,
		"26", "0",
		 0)
	
		Entry[263] = new Element(
		263, "assets/thumb/Brunswick-Dyno-Single-Skull.jpg",
		150, 185,
		"Dyno Single Skull Cr", "Brunswick Dyno Single Skull Crazy",
		"", "Brunswick",
		"25", "0",
		"1", 1,
		"Stück", "25",
		"", "pd968923177.htm",
		"", 1,
		"26", "0",
		 0)
	
		Entry[264] = new Element(
		264, "assets/thumb/Brunswick-Dyno-Single-Monke.jpg",
		150, 181,
		"Dyno Single Monkeys", "Brunswick Dyno Single Monkeys",
		"", "Brunswick",
		"25", "0",
		"1", 1,
		"Stück", "25",
		"", "pd-128177085.htm",
		"", 1,
		"26", "0",
		 0)
	
		Entry[265] = new Element(
		265, "assets/thumb/Brunswick-Dyno-Single-Clear.jpg",
		150, 186,
		"Dyno Single Clear", "Brunswick Dyno Single Clear Vision",
		"", "Brunswick",
		"25", "0",
		"1", 1,
		"Stück", "25",
		"", "pd140923213.htm",
		"", 1,
		"26", "0",
		 0)
	
		Entry[266] = new Element(
		266, "assets/thumb/Brunswick-Players-Double-Bl.jpg",
		150, 97,
		"Players Double Bl/Bu", "Brunswick Players Double Tote Black/Burgundy ",
		"", "Brunswick",
		"39", "0",
		"1", 1,
		"Stück", "26",
		"", "pd-696992109.htm",
		"", 1,
		"27", "0",
		 0)
	
		Entry[267] = new Element(
		267, "assets/thumb/Brunswick-Flash-Double-Char.jpg",
		150, 115,
		"Flash Double Black/C", "Brunswick Flash Double Tote Black/Charcoal",
		"", "Brunswick",
		"49", "0",
		"1", 1,
		"Stück", "26",
		"", "pd876226350.htm",
		"", 1,
		"27", "0",
		 0)
	
		Entry[268] = new Element(
		268, "assets/thumb/Brunswick-Flash-Double-Blac.jpg",
		150, 117,
		"Flash Double Bl", "Brunswick Flash Double Tote Black",
		"", "Brunswick",
		"49", "0",
		"1", 1,
		"Stück", "26",
		"", "pd-338978560.htm",
		"", 1,
		"27", "0",
		 0)
	
		Entry[269] = new Element(
		269, "assets/thumb/Brunswick-Viper-Single-Fire.jpg",
		150, 123,
		"Viper Single Fire Sk", "Brunswick Viper Single Tote Fire Skull",
		"", "Brunswick",
		"29", "0",
		"1", 1,
		"Stück", "25",
		"", "pd-1011106050.htm",
		"", 1,
		"26", "0",
		 0)
	
		Entry[270] = new Element(
		270, "assets/thumb/Brunswick-Flash-1-Roller-Pu.jpg",
		150, 184,
		"1-Flash Purple/Black", "Brunswick Flash Single Roller Purple/Black",
		"Single Roller", "Brunswick",
		"69", "0",
		"1", 1,
		"Stück", "27",
		"", "pd-1533649488.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[271] = new Element(
		271, "assets/thumb/Brunswick-Flash-1-Roller-Pi.jpg",
		150, 203,
		"1-Flash Pink/Black", "Brunswick Flash Single Roller Pink/Black",
		"Single Roller", "Brunswick",
		"69", "0",
		"1", 1,
		"Stück", "27",
		"", "pd1626291038.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[272] = new Element(
		272, "assets/thumb/Brunswick-Flash-1-Roller-Bl.jpg",
		150, 192,
		"1-Flash Purple Black", "Brunswick Flash Single Roller Black",
		"Single Roller", "Brunswick",
		"69", "0",
		"1", 1,
		"Stück", "27",
		"", "pd-684046148.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[273] = new Element(
		273, "assets/thumb/Brunswick-Dyno-1-Roller-Sku.jpg",
		150, 220,
		"1-Dyno Skull Crazy", "Brunswick Dyno Single Roller Skull Crazy",
		"Single Roller", "",
		"49", "0",
		"1", 1,
		"Stück", "27",
		"", "pd723833906.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[274] = new Element(
		274, "assets/thumb/Brunswick-Players-Double-BS.jpg",
		150, 104,
		"Players Double Bl/St", "Brunswick Players Double Tote Black/Steel",
		"", "Brunswick",
		"39", "0",
		"1", 1,
		"Stück", "26",
		"", "pd-540780276.htm",
		"", 1,
		"27", "0",
		 0)
	
		Entry[275] = new Element(
		275, "assets/thumb/Brunswick-Gr-2-Roller-Jolly.jpg",
		150, 191,
		"2-Groovy Jolly", "Brunswick Groovy 2 Ball Roller Jolly Roger/Flame",
		"2 Ball Roller", "Brunswick",
		"79", "0",
		"1", 1,
		"Stück", "27",
		"", "pd247277281.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[276] = new Element(
		276, "assets/thumb/Brunswick-Gr-2-Roller-Infer.jpg",
		150, 198,
		"2-Groovy Inferno", "Brunswick Groovy 2 Ball Roller Inferno",
		"2 Ball Roller", "Brunswick",
		"79", "0",
		"1", 1,
		"Stück", "27",
		"", "pd516015212.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[277] = new Element(
		277, "assets/thumb/Brunswick-Gr-2-Roller-Blue-.jpg",
		150, 197,
		"2-Groovy Blue Infern", "Brunswick Groovy 2 Ball Roller Blue Inferno",
		"2 Ball Roller", "Brunswick",
		"79", "0",
		"1", 1,
		"Stück", "27",
		"", "pd1337487482.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[278] = new Element(
		278, "assets/thumb/Brunswick-Competitor-2-Roll.jpg",
		150, 216,
		"2-Compet Z 2 Black/R", "Brunswick Competitor Z 2 Ball Roller Black/Red",
		"2 Ball Roller", "Brunswick",
		"79", "0",
		"1", 1,
		"Stück", "27",
		"", "pd96184891.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[279] = new Element(
		279, "assets/images/nopicture.gif",
		77, 52,
		"2-Compet Z 2 Black/B", "Brunswick Competitor Z 2 Ball Roller Black/Blue",
		"2 Ball Roller", "Brunswick",
		"79", "0",
		"1", 1,
		"Stück", "27",
		"", "pd1519583295.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[280] = new Element(
		280, "assets/thumb/Brunswick-Competitor-Roller.jpg",
		150, 202,
		"2-Compet Z 2 Black", "Brunswick Competitor Z 2 Ball Roller Black",
		"2 Ball Roller", "Brunswick",
		"79", "0",
		"1", 1,
		"Stück", "27",
		"", "pd-1110442875.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[281] = new Element(
		281, "assets/thumb/Brunswick-Flash-3-Roller-Bl-Si.jpg",
		150, 257,
		"Flash 3 Ball Bl/Si", "Brunswick Flash 3 Ball Roller Black/Silver",
		"3 Ball Roller", "Brunswick",
		"139", "0",
		"1", 1,
		"Stück", "27",
		"", "pd-607225207.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[282] = new Element(
		282, "assets/thumb/Brunswick-Pro-Players-3-Roller-BS.jpg",
		150, 281,
		"Pro Players 3  B/S", "Brunswick Pro Players 3 Ball Roller Black/Steel",
		"3 Ball Roller", "Brunswick",
		"179", "0",
		"1", 1,
		"Stück", "27",
		"", "pd-1578506273.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[283] = new Element(
		283, "assets/thumb/Brunswick-Competitor-3-Roller-Bl-Bl.jpg",
		150, 285,
		"3-Competitor-Bl/Bl", "Brunswick Competitor Players 3 Ball Roller Black/Orion Blue ",
		"3 Ball Roller", "Brunswick",
		"99", "0",
		"1", 1,
		"Stück", "27",
		"", "pd-2072859219.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[284] = new Element(
		284, "assets/thumb/Brunswick-Stealth-2-Roller-Bl-Navy.jpg",
		150, 270,
		"2-Stealth Black/Navy", "Brunswick Stealth Double Roller Black/Navy",
		"Double Roller", "Brunswick",
		"99", "0",
		"1", 1,
		"Stück", "27",
		"", "pd2044865169.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[285] = new Element(
		285, "assets/thumb/Brunswick-Stealth-2-Roller-Bl-Silver.jpg",
		150, 247,
		"2-Stealth Black/Silv", "Brunswick Stealth Double Roller Black/Silver",
		"Double Roller", "Brunswick",
		"99", "0",
		"1", 1,
		"Stück", "27",
		"", "pd-762562777.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[286] = new Element(
		286, "assets/thumb/Brunswick-Pro-Players-4-Roller-BS.jpg",
		150, 233,
		"4-Competitor-Bl/Bl", "Brunswick Competitor Players 4 Ball Roller Black/Steel",
		"4 Ball Roller", "Brunswick",
		"199", "0",
		"1", 1,
		"Stück", "27",
		"", "pd780104605.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[287] = new Element(
		287, "assets/thumb/Brunswick-Slim-3-Roller-Bla.jpg",
		150, 67,
		"3-Slim-Bl", "Brunswick Slim 3 Ball Roller Black",
		"3 Ball Roller", "Brunswick",
		"79", "0",
		"1", 1,
		"Stück", "27",
		"", "pd-1363533439.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[288] = new Element(
		288, "assets/thumb/Brunswick-Slim-3-Roller-BBu.jpg",
		150, 60,
		"3-Slim-Bl-Bu", "Brunswick Slim 3 Ball Roller Black/Burgundy",
		"3 Ball Roller", "Brunswick",
		"89", "0",
		"1", 1,
		"Stück", "27",
		"", "pd533907351.htm",
		"", 1,
		"28", "0",
		 0)
	
		Entry[289] = new Element(
		289, "assets/thumb/Storm_1_Ball_Deluxe_Tote_RoyalBlack.jpg",
		150, 151,
		"1-Deluxe Tote B/Ro", "Storm 1 Ball Deluxe Tote Royal/Black",
		"", "Storm",
		"39", "0",
		"1", 1,
		"Stück", "33",
		"", "pd-152991063.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[290] = new Element(
		290, "assets/thumb/Storm-1-Deluxe-Ruby-Black.jpg",
		150, 151,
		"1-Deluxe Tote B/Ru", "Storm 1 Ball Deluxe Tote Ruby/Black",
		"", "Storm",
		"39", "0",
		"1", 1,
		"Stück", "33",
		"", "pd911042054.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[291] = new Element(
		291, "assets/thumb/Storm-1-Deluxe-Silver-Black.jpg",
		150, 152,
		"1-Deluxe Tote B/S", "Storm 1 Ball Deluxe Tote Silver Black",
		"", "Storm",
		"39", "0",
		"1", 1,
		"Stück", "33",
		"", "pd-116921254.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[292] = new Element(
		292, "assets/thumb/Storm-1-Deluxe-Teal-Black.jpg",
		150, 147,
		"1-Deluxe Tote B/T", "Storm 1 Ball Deluxe Tote Teal Black",
		"", "Storm",
		"39", "0",
		"1", 1,
		"Stück", "33",
		"", "pd-288402100.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[293] = new Element(
		293, "assets/thumb/Storm-Solo-1-Ball-Bl-Charco.jpg",
		150, 175,
		"1-Solo Black/Charcoa", "Storm Solo 1 Ball Tote Black/Charcoal",
		"", "Storm",
		"29", "0",
		"1", 1,
		"Stück", "33",
		"", "pd1675429953.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[294] = new Element(
		294, "assets/thumb/Storm-Solo-1-Ball-Bl-Pink.jpg",
		150, 170,
		"1-Solo Black/Pink", "Storm Solo 1 Ball Tote Black/Pink",
		"", "Storm",
		"29", "0",
		"1", 1,
		"Stück", "33",
		"", "pd-679312229.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[295] = new Element(
		295, "assets/thumb/Storm-Solo-1-Ball-Bl-Purple.jpg",
		150, 172,
		"1-Solo Black/Purple", "Storm Solo 1 Ball Tote Black/Purple",
		"", "Storm",
		"29", "0",
		"1", 1,
		"Stück", "33",
		"", "pd-1331206171.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[296] = new Element(
		296, "assets/thumb/Storm-Solo-1-Ball-Bl-Red.jpg",
		150, 173,
		"1-Solo Black/Red", "Storm Solo 1 Ball Tote Black/Red",
		"", "Storm",
		"29", "0",
		"1", 1,
		"Stück", "33",
		"", "pd-258943841.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[297] = new Element(
		297, "assets/thumb/Storm-Solo-1-Ball-Bl.jpg",
		150, 171,
		"1-Solo Black/Ro", "Storm Solo 1 Ball Tote Black/Royal",
		"", "Storm",
		"29", "0",
		"1", 1,
		"Stück", "33",
		"", "pd1226950985.htm",
		"", 1,
		"32", "0",
		 0)
	
		Entry[298] = new Element(
		298, "assets/thumb/Storm-2-Ball-Sapphire-Black.jpg",
		150, 102,
		"2-Tote Sapphire Blk", "Storm 2 Ball Tote Sapphire Black",
		"", "Storm",
		"35", "0",
		"1", 1,
		"Stück", "34",
		"", "pd220434217.htm",
		"", 1,
		"33", "0",
		 0)
	
		Entry[299] = new Element(
		299, "assets/thumb/Storm-2-Ball-Platinum-Black.jpg",
		150, 100,
		"2-Tote Platinum/Blk", "Storm 2 Ball Tote Storm 2 Ball Tote Platinum/Black",
		"", "Storm",
		"35", "0",
		"1", 1,
		"Stück", "34",
		"", "pd841190783.htm",
		"", 1,
		"33", "0",
		 0)
	
		Entry[300] = new Element(
		300, "assets/thumb/Storm-2-Ball-Sapphire-Black.jpg",
		150, 102,
		"2-Tote Plus Sa/Blk", "Storm 2 Ball Tote Plus Sapphire Black",
		"", "Storm",
		"45", "0",
		"1", 1,
		"Stück", "34",
		"", "pd-559920187.htm",
		"", 1,
		"33", "0",
		 0)
	
		Entry[301] = new Element(
		301, "assets/thumb/Storm-2-Ball-Platinum-Black.jpg",
		150, 100,
		"2-Tote Plus Pl/Blk", "Storm 2 Ball Tote Plus Platinum/Black",
		"", "Storm",
		"45", "0",
		"1", 1,
		"Stück", "34",
		"", "pd1117358971.htm",
		"", 1,
		"33", "0",
		 0)
	
		Entry[302] = new Element(
		302, "assets/thumb/Storm-Rascal-1-Roller-Teal-.jpg",
		150, 202,
		"1-Rasca Blk/Te", "Storm Rascal 1 Ball Roller Teal/Black",
		"1 Ball Roller", "Storm",
		"69", "0",
		"1", 1,
		"Stück", "35",
		"", "pd1080394735.htm",
		"", 1,
		"34", "0",
		 0)
	
		Entry[303] = new Element(
		303, "assets/thumb/Storm-Rascal-1-Roller-Ruby-.jpg",
		150, 202,
		"1-Rasca Blk/Ru", "Storm Rascal 1 Ball Roller Ruby/Black",
		"1 Ball Roller", "Storm",
		"69", "0",
		"1", 1,
		"Stück", "35",
		"", "pd-1816527847.htm",
		"", 1,
		"34", "0",
		 0)
	
		Entry[304] = new Element(
		304, "assets/thumb/Storm-Rascal-1-Roller-Purpl.jpg",
		150, 213,
		"1-Rasca Blk/Pu", "Storm Rascal 1 Ball Roller Purple/Black",
		"1 Ball Roller", "Storm",
		"69", "0",
		"1", 1,
		"Stück", "35",
		"", "pd354265779.htm",
		"", 1,
		"34", "0",
		 0)
	
		Entry[305] = new Element(
		305, "assets/thumb/Storm-Rascal-1-Roller-Pink-.jpg",
		150, 216,
		"1-Rasca Blk/Pi", "Storm Rascal 1 Ball Roller Pink/Black",
		"1 Ball Roller", "Storm",
		"69", "0",
		"1", 1,
		"Stück", "35",
		"", "pd141755965.htm",
		"", 1,
		"34", "0",
		 0)
	
		Entry[306] = new Element(
		306, "assets/thumb/Storm-Rascal-1-Roller-Cobal.jpg",
		150, 210,
		"1-Rasca Blk/Co", "Storm Rascal 1 Ball Roller Cobalt/Black",
		"1 Ball Roller", "Storm",
		"69", "0",
		"1", 1,
		"Stück", "35",
		"", "pd-1474346697.htm",
		"", 1,
		"34", "0",
		 0)
	
		Entry[307] = new Element(
		307, "assets/thumb/Storm-Rascal-1-Roller-Black.jpg",
		150, 206,
		"1-Rasca Blk", "Storm Rascal 1 Ball Roller Black",
		"1 Ball Roller", "Storm",
		"69", "0",
		"1", 1,
		"Stück", "35",
		"", "pd74115617.htm",
		"", 1,
		"34", "0",
		 0)
	
		Entry[308] = new Element(
		308, "assets/thumb/Storm-Streamline-2-Roller-B.jpg",
		150, 205,
		"2-Streamline Blk", "Storm Streamline 2 Ball Roller Black",
		"2 Ball Roller", "Storm",
		"109", "0",
		"1", 1,
		"Stück", "35",
		"", "pd-896292419.htm",
		"", 1,
		"34", "0",
		 0)
	
		Entry[309] = new Element(
		309, "assets/thumb/Storm-Streamline-2-Roller-C.jpg",
		150, 205,
		"2-Streamline Blk/Co", "Storm Streamline 2 Ball Roller Cobalt/Black",
		"2 Ball Roller", "Storm",
		"109", "0",
		"1", 1,
		"Stück", "35",
		"", "pd-1522136.htm",
		"", 1,
		"34", "0",
		 0)
	
		Entry[310] = new Element(
		310, "assets/thumb/Storm-Streamline-2-Roller-Pi.jpg",
		150, 205,
		"2-Streamline Blk/Pi", "Storm Streamline 2 Ball Roller Pink/Black",
		"2 Ball Roller", "Storm",
		"109", "0",
		"1", 1,
		"Stück", "35",
		"", "pd721159658.htm",
		"", 1,
		"34", "0",
		 0)
	
		Entry[311] = new Element(
		311, "assets/thumb/Storm-Streamline-2-Roller-S.jpg",
		150, 205,
		"2-Streamline Blk/Sc", "Storm Streamline 2 Ball Roller Scarlet/Black",
		"2 Ball Roller", "Storm",
		"109", "0",
		"1", 1,
		"Stück", "35",
		"", "pd1430550620.htm",
		"", 1,
		"34", "0",
		 0)
	
		Entry[312] = new Element(
		312, "assets/thumb/Storm-Rolling-2-Roller-Silv.jpg",
		150, 209,
		"2-Rolling Thu Si/Na", "Storm Rolling Thunder 2 Ball Roller Silver/Navy",
		"2 Ball Roller", "Storm",
		"129", "0",
		"1", 1,
		"Stück", "32",
		"", "pd1227101858.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[313] = new Element(
		313, "assets/thumb/Storm-Rolling-2-Roller-Ruby.jpg",
		150, 207,
		"2-Rolling Thu Ru/B", "Storm Rolling Thunder 2 Ball Roller Ruby/Black",
		"2 Ball Roller", "Storm",
		"129", "0",
		"1", 1,
		"Stück", "32",
		"", "pd-1265424992.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[314] = new Element(
		314, "assets/thumb/Storm-Streamline-3er-Cobalt.jpg",
		150, 254,
		"3-Streamline Co/Blk", "Storm Streamline 3 Ball Roller Cobalt/Black",
		"3 Ball Roller", "Storm",
		"179", "0",
		"1", 1,
		"Stück", "32",
		"", "pd2081096910.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[315] = new Element(
		315, "assets/thumb/Storm-Streamline-3er-Scarle.jpg",
		150, 254,
		"3-Streamline Sc/Blk", "Storm Streamline 3 Ball Roller Scarlet/Black",
		"3 Ball Roller", "",
		"179", "0",
		"1", 1,
		"Stück", "32",
		"", "pd-1109200980.htm",
		"", 1,
		"16", "0",
		 0)
	
		Entry[316] = new Element(
		316, "assets/thumb/Brunswick-Twisted-Fury-Dest.jpg",
		150, 150,
		"Fury Destruction-9", "Brunswick Twisted Fury Destruction",
		"12 - 16 lbs.", "Brunswick",
		"209", "0",
		"1", 1,
		"Stück", "5",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-643277543.htm",
		"", 1,
		"03-1", "0",
		 0)
	
		Entry[317] = new Element(
		317, "assets/thumb/AZO-PureTact.jpg",
		150, 150,
		"Pure Tactics-9", "AZO Pure Tactics",
		"12 -16 lbs", "AZO",
		"199", "0",
		"1", 1,
		"Stück", "4",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1316310110.htm",
		"", 1,
		"01-2", "0",
		 0)
	
		Entry[318] = new Element(
		318, "assets/thumb/AZO-Ultra-Radical-Solid.jpg",
		150, 150,
		"Ultra Radical Solid-1", "AZO Ultra Radical Solid",
		"12 -16 lbs", "AZO",
		"209", "0",
		"1", 1,
		"Stück", "4",
		"Gewicht;12 lbs@Bohrservice;Conventional + 30 €@", "pd1385910007.htm",
		"", 1,
		"01-2", "0",
		 0)
	
		Entry[319] = new Element(
		319, "assets/thumb/Brunswick-MaXXX-Zone.jpg",
		150, 150,
		"MaXXX Zone-9", "Brunswick MaXXX Zone",
		"12-16 lbs.", "Brunswick",
		"179", "0",
		"1", 1,
		"Stück", "5",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd17199560.htm",
		"", 1,
		"03-1", "0",
		 0)
	
		Entry[320] = new Element(
		320, "assets/thumb/Columbia-Loud-Noize.jpg",
		150, 150,
		"Loud Noize-9", "Columbia Loud Noize",
		"12 - 16 lbs.", "Columbia",
		"149", "0",
		"1", 1,
		"Stück", "6",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1238625371.htm",
		"", 1,
		"04-1", "0",
		 0)
	
		Entry[321] = new Element(
		321, "assets/thumb/Storm-Second-Dimension.jpg",
		150, 150,
		"Second Dimension-9", "Storm Second Dimension",
		"Special des Monats 12 - 16 lbs", "Storm",
		"199", "0",
		"1", 1,
		"Stück", "15",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1334743969.htm",
		"", 1,
		"11-1", "0",
		 0)
	
		Entry[322] = new Element(
		322, "assets/thumb/Brunswick-Rattler.jpg",
		150, 150,
		"Rattler-15", "Brunswick Rattler",
		"10 - 16 lbs.", "Brunswick",
		"179", "0",
		"1", 1,
		"Stück", "5",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1321140051.htm",
		"", 1,
		"03-1", "0",
		 0)
	
		Entry[323] = new Element(
		323, "assets/thumb/Brunswick-Wild-Ride.jpg",
		150, 150,
		"Wild Ride-1", "Brunswick Wild Ride",
		"12 - 16 lbs", "Brunswick",
		"229", "0",
		"1", 1,
		"Stück", "5",
		"Gewicht;12 lbs@Bohrservice;Conventional + 30 €@", "pd677898915.htm",
		"", 1,
		"03-1", "0",
		 0)
	
		Entry[324] = new Element(
		324, "assets/thumb/Brunswick-Avalanche-Slide.jpg",
		150, 150,
		"Avalanche Slide-15", "Brunswick Avalanche Slide",
		"10 - 16 lbs.", "Brunswick",
		"129", "0",
		"1", 1,
		"Stück", "5",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1206688170.htm",
		"", 1,
		"03-1", "0",
		 0)
	
		Entry[325] = new Element(
		325, "assets/thumb/Columbia-Jazz-Red-Blue.jpg",
		150, 150,
		"Jazz Red Blue-15", "Columbia Jazz Red Blue",
		"10 - 16 lbs.", "Columbia",
		"119", "0",
		"1", 1,
		"Stück", "6",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd113468421.htm",
		"", 1,
		"04-1", "0",
		 0)
	
		Entry[326] = new Element(
		326, "assets/thumb/Columbia-Perfect-Rival.jpg",
		150, 150,
		"Perfect Rival-1", "Columbia Perfect Rival",
		"12 - 16 lbs.", "Columbia",
		"209", "0",
		"1", 1,
		"Stück", "6",
		"Gewicht;12 lbs@Bohrservice;Conventional + 30 €@", "pd784745380.htm",
		"", 1,
		"04-1", "0",
		 0)
	
		Entry[327] = new Element(
		327, "assets/thumb/Columbia-Power-Swing.jpg",
		150, 150,
		"Power Swing-9", "Columbia Power Swing",
		"12 - 16 lbs.", "Columbia",
		"209", "0",
		"1", 1,
		"Stück", "6",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-27452668.htm",
		"", 1,
		"04-1", "0",
		 0)
	
		Entry[328] = new Element(
		328, "assets/thumb/Columbia-Scout-Reactive-Red.jpg",
		150, 150,
		"Scout R Red/Gold-15", "Columbia Scout Reactive Red/Gold",
		"10 - 16 lbs.", "Columbia",
		"119", "0",
		"1", 1,
		"Stück", "6",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1765603118.htm",
		"", 1,
		"04-1", "0",
		 0)
	
		Entry[329] = new Element(
		329, "assets/thumb/Ebonite-Magic.jpg",
		150, 150,
		"Magic-9", "Ebonite Magic",
		"12 - 16 lbs.", "Ebonite",
		"199", "0",
		"1", 1,
		"Stück", "7",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-2003899360.htm",
		"", 1,
		"06-1", "0",
		 0)
	
		Entry[330] = new Element(
		330, "assets/thumb/Ebonite-Striking-Motion.jpg",
		150, 150,
		"Striking Motion-15", "Ebonite Striking Motion",
		"10 - 16 lbs.", "Ebonite",
		"219", "0",
		"1", 1,
		"Stück", "7",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd394478341.htm",
		"", 1,
		"06-1", "0",
		 0)
	
		Entry[331] = new Element(
		331, "assets/thumb/Hammer-Hot-Sauce-Pearl.jpg",
		150, 150,
		"Hot Sauce Pearl-9", "Hammer Hot Sauce Pearl",
		"12 - 16 lbs.", "HAMMER",
		"209", "0",
		"1", 1,
		"Stück", "8",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-91425443.htm",
		"", 1,
		"07-1", "0",
		 0)
	
		Entry[332] = new Element(
		332, "assets/thumb/Hammer-Raw-Hammer-Acid.jpg",
		150, 150,
		"Raw Hammer Acid-9", "Hammer Raw Hammer Acid",
		"12 - 16 lbs.", "HAMMER",
		"159", "0",
		"1", 1,
		"Stück", "8",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd752400010.htm",
		"", 1,
		"07-1", "0",
		 0)
	
		Entry[333] = new Element(
		333, "assets/thumb/Hammer-The-Sauce.jpg",
		150, 150,
		"The Sauce-9", "Hammer The Sauce",
		"12 - 16 lbs", "HAMMER",
		"209", "0",
		"1", 1,
		"Stück", "8",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1279692365.htm",
		"", 1,
		"07-1", "0",
		 0)
	
		Entry[334] = new Element(
		334, "assets/thumb/Hammer-Vibe-Emerald.jpg",
		150, 150,
		"Vibe Emerald-9", "Hammer Vibe Emerald",
		"12 - 16 lbs.", "HAMMER",
		"139", "0",
		"1", 1,
		"Stück", "8",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-529694424.htm",
		"", 1,
		"07-1", "0",
		 0)
	
		Entry[335] = new Element(
		335, "assets/thumb/Brunswick-Wild-Thing.jpg",
		150, 150,
		"Wild Thing-9", "Brunswick Wild Thing",
		"12 -16 lbs", "Brunswick",
		"199", "0",
		"1", 1,
		"Stück", "5",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd410229713.htm",
		"", 1,
		"03-1", "0",
		 0)
	
		Entry[336] = new Element(
		336, "assets/thumb/Motiv-GT1.jpg",
		150, 150,
		"GT1", "Motiv GT1",
		"12 - 15 lbs", "Motiv",
		"199", "0",
		"1", 1,
		"Stück", "12",
		"", "pd527505268.htm",
		"", 1,
		"08-4", "0",
		 0)
	
		Entry[337] = new Element(
		337, "assets/thumb/Motiv-SX1.jpg",
		150, 150,
		"SX1-9", "Motiv SX1",
		"12 - 15 lbs", "Motiv",
		"199", "0",
		"1", 1,
		"Stück", "12",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1229860600.htm",
		"", 1,
		"08-4", "0",
		 0)
	
		Entry[338] = new Element(
		338, "assets/thumb/Motiv-TR2.jpg",
		150, 150,
		"TR2-9", "Motiv TR2",
		"12 - 15 lbs.", "Motiv",
		"189", "0",
		"1", 1,
		"Stück", "12",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd381728106.htm",
		"", 1,
		"08-4", "0",
		 0)
	
		Entry[339] = new Element(
		339, "assets/thumb/Motiv-TX1.jpg",
		150, 150,
		"TX1-9", "Motiv TX1",
		"12 - 15 lbs.", "Motiv",
		"179", "0",
		"1", 1,
		"Stück", "12",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd2133819276.htm",
		"", 1,
		"08-4", "0",
		 0)
	
		Entry[340] = new Element(
		340, "assets/thumb/monats_spez1009-bl.jpg",
		150, 113,
		"PurePhysics 1", "Special Bundel Pure Physics &amp;  PRO BOWL Polyesterball Blau",
		"12 -15lbs", "Columbia",
		"199", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1962598246.htm",
		"", 1,
		"44", "0",
		 0)
	
		Entry[341] = new Element(
		341, "assets/thumb/Lane1-Agent-Orange.jpg",
		150, 150,
		"Agent Orange-9", "Lane #1 Agent Orange",
		"12 - 16 lbs.", "Lane 1",
		"239", "0",
		"1", 1,
		"Stück", "9",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd440343157.htm",
		"", 1,
		"08-1", "0",
		 0)
	
		Entry[342] = new Element(
		342, "assets/thumb/Lane1-Chainsaw.jpg",
		150, 150,
		"Chainsaw-3", "Lane #1 Chainsaw",
		"14 - 16 lbs.", "Lane 1",
		"179", "0",
		"1", 1,
		"Stück", "9",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd2115899368.htm",
		"", 1,
		"08-1", "0",
		 0)
	
		Entry[343] = new Element(
		343, "assets/thumb/Lane1-Dynamo.jpg",
		150, 150,
		"Dynamo-6", "Lane #1 Dynamo",
		"13 - 16 lbs.", "Lane 1",
		"239", "0",
		"1", 1,
		"Stück", "9",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1703500582.htm",
		"", 1,
		"08-1", "0",
		 0)
	
		Entry[344] = new Element(
		344, "assets/thumb/Roto-Grip-Cell-Pearl.jpg",
		150, 151,
		"Cell Pearl-3", "Roto Grip Cell Pearl",
		"14 - 15 lbs.", "ROTO GRIP",
		"199", "0",
		"1", 1,
		"Stück", "14",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd466057970.htm",
		"", 1,
		"10-1", "0",
		 0)
	
		Entry[345] = new Element(
		345, "assets/thumb/Roto-Grip-Rogue-Cell.jpg",
		150, 150,
		"Rogue Cell-3", "Roto Grip Rogue Cell",
		"14 - 15 lbs.", "ROTO GRIP",
		"199", "0",
		"1", 1,
		"Stück", "14",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-107934710.htm",
		"", 1,
		"10-1", "0",
		 0)
	
		Entry[346] = new Element(
		346, "assets/thumb/Roto-Grip-Mars.jpg",
		150, 150,
		"Mars-9", "Roto Grip Mars",
		"12 - 15 lbs.", "ROTO GRIP",
		"139", "0",
		"1", 1,
		"Stück", "14",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd301876524.htm",
		"", 1,
		"10-1", "0",
		 0)
	
		Entry[347] = new Element(
		347, "assets/thumb/Storm-Virtual-Gravity.jpg",
		150, 150,
		"Virtual Gravity-1", "Storm Virtual Gravity",
		"12 - 16 lbs.", "Storm",
		"229", "0",
		"1", 1,
		"Stück", "15",
		"Gewicht;11 lbs@Bohrservice;Conventional + 30 €@", "pd353336628.htm",
		"", 1,
		"11-1", "0",
		 0)
	
		Entry[348] = new Element(
		348, "assets/thumb/Track-Rising-SE.jpg",
		150, 150,
		"Rising SE-9", "Track Rising SE",
		"12 -16 lbs.", "Track",
		"189", "0",
		"1", 1,
		"Stück", "16",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-158081900.htm",
		"", 1,
		"12-1", "0",
		 0)
	
		Entry[349] = new Element(
		349, "assets/thumb/Happy-Guy.jpg",
		150, 155,
		"Happy Guy-15", "Happy Guy",
		"10 - 15 lbs", "",
		"119", "0",
		"1", 1,
		"Stück", "18",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd43676225.htm",
		"", 1,
		"14-1", "0",
		 0)
	
		Entry[350] = new Element(
		350, "assets/thumb/Gambler-Royal-Flush.jpg",
		150, 162,
		"Royal Flush", "Gambler Royal Flush",
		"12 - 15 lbs.", "",
		"119", "0",
		"1", 1,
		"Stück", "18",
		"", "pd1918018571.htm",
		"", 1,
		"14-1", "0",
		 0)
	
		Entry[351] = new Element(
		351, "assets/thumb/Clearball-Strawberry.jpg",
		150, 150,
		"Strawberry-9", "Clearball Strawberry",
		"12 - 15 lbs", "",
		"119", "0",
		"1", 1,
		"Stück", "18",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1598690757.htm",
		"", 1,
		"14-1", "0",
		 0)
	
		Entry[352] = new Element(
		352, "assets/thumb/Columbia-Bedlam.jpg",
		150, 150,
		"Bedlam-9", "Columbia Bedlam",
		"12 - 16 lbs.", "Columbia",
		"179", "0",
		"1", 1,
		"Stück", "6",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd624831053.htm",
		"", 1,
		"04-1", "0",
		 0)
	
		Entry[353] = new Element(
		353, "assets/thumb/Columbia-Cool-Noize.jpg",
		150, 150,
		"Cool Noize-9", "Columbia Cool Noize",
		"12 - 16 lbs.", "Columbia",
		"149", "0",
		"1", 1,
		"Stück", "6",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1346031802.htm",
		"", 1,
		"04-1", "0",
		 0)
	
		Entry[354] = new Element(
		354, "assets/thumb/Columbia-Full-Swing.jpg",
		150, 150,
		"Full Swing-9", "Columbia Full Swing",
		"12 - 16 lbs.", "Columbia",
		"209", "0",
		"1", 1,
		"Stück", "6",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1694623779.htm",
		"", 1,
		"04-1", "0",
		 0)
	
		Entry[355] = new Element(
		355, "assets/thumb/Ebonite-Boom.jpg",
		150, 150,
		"Boom-15", "Ebonite Boom",
		"10 - 16 lbs.", "Ebonite",
		"139", "0",
		"1", 1,
		"Stück", "7",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1194666268.htm",
		"", 1,
		"06-1", "0",
		 0)
	
		Entry[356] = new Element(
		356, "assets/thumb/Ebonite-Evolve.jpg",
		150, 150,
		"Evolve-9", "Ebonite Evolve",
		"12 -16 lbs.", "Ebonite",
		"199", "0",
		"1", 1,
		"Stück", "7",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-434849827.htm",
		"", 1,
		"06-1", "0",
		 0)
	
		Entry[357] = new Element(
		357, "assets/thumb/Ebonite-Lane-Breaker.jpg",
		150, 150,
		"Lane Breaker-9", "Ebonite Lane Breaker",
		"12 - 16 lbs.", "Ebonite",
		"149", "0",
		"1", 1,
		"Stück", "7",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1922565898.htm",
		"", 1,
		"06-1", "0",
		 0)
	
		Entry[358] = new Element(
		358, "assets/thumb/Ebonite-Magic-Touch.jpg",
		150, 150,
		"Magic Touch-9", "Ebonite Magic Touch",
		"12 - 16 lbs.", "Ebonite",
		"199", "0",
		"1", 1,
		"Stück", "7",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd327301171.htm",
		"", 1,
		"06-1", "0",
		 0)
	
		Entry[359] = new Element(
		359, "assets/thumb/Ebonite-Smash.jpg",
		150, 150,
		"Smash-15", "Ebonite Smash",
		"10 -16 lbs.", "Ebonite",
		"139", "0",
		"1", 1,
		"Stück", "7",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1329737342.htm",
		"", 1,
		"06-1", "0",
		 0)
	
		Entry[360] = new Element(
		360, "assets/thumb/Hammer-Black-Widow-Sting.jpg",
		150, 150,
		"Black Widow Sting-9", "Hammer Black Widow Sting",
		"12 - 16 lbs.", "HAMMER",
		"199", "0",
		"1", 1,
		"Stück", "8",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1394559669.htm",
		"", 1,
		"07-1", "0",
		 0)
	
		Entry[361] = new Element(
		361, "assets/thumb/Hammer-Raw-Hammer-Burn.jpg",
		150, 150,
		"Raw Hammer Burn-9", "Hammer Raw Hammer Burn",
		"12 -16 lbs.", "HAMMER",
		"159", "0",
		"1", 1,
		"Stück", "8",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1786482464.htm",
		"", 1,
		"07-1", "0",
		 0)
	
		Entry[362] = new Element(
		362, "assets/thumb/Hammer-Vibe-Onyx.jpg",
		150, 150,
		"Onyx-9", "Hammer Vibe Onyx",
		"12 - 19 lbs", "HAMMER",
		"139", "0",
		"1", 1,
		"Stück", "8",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1269159807.htm",
		"", 1,
		"07-1", "0",
		 0)
	
		Entry[363] = new Element(
		363, "assets/thumb/Lane-Masters-Buzz-Attack.jpg",
		150, 150,
		"Buzz Attack-8", "Lane Masters Buzz Attack",
		"12 - 15 lbs.", "Lane Masters",
		"249", "0",
		"1", 1,
		"Stück", "10",
		"Gewicht;14 lbs@Bohrservice;Fingertip inkl. Einsätze + 50 €@", "pd-1744276852.htm",
		"", 1,
		"08-2", "0",
		 0)
	
		Entry[364] = new Element(
		364, "assets/thumb/Lane-Masters-Dynamic-Power.jpg",
		150, 150,
		"Dynamic Power-9", "Lane Masters Dynamic Power",
		"12 - 15 lbs.", "Lane Masters",
		"199", "0",
		"1", 1,
		"Stück", "10",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1034839794.htm",
		"", 1,
		"08-2", "0",
		 0)
	
		Entry[365] = new Element(
		365, "assets/thumb/Lane-Masters-Hornet.jpg",
		150, 150,
		"Hornet-9", "Lane Masters Hornet",
		"12 - 15 lbs.", "Lane Masters",
		"199", "0",
		"1", 1,
		"Stück", "10",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd973761680.htm",
		"", 1,
		"08-2", "0",
		 0)
	
		Entry[366] = new Element(
		366, "assets/thumb/Lane-Masters-Xtreme-Damage.jpg",
		150, 150,
		"Xtreme Damage-9", "Lane Masters Xtreme Damage",
		"12 - 15 lbs.", "Lane Masters",
		"199", "0",
		"1", 1,
		"Stück", "10",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1852521150.htm",
		"", 1,
		"08-2", "0",
		 0)
	
		Entry[367] = new Element(
		367, "assets/thumb/Lane1-Gemstone.jpg",
		150, 150,
		"GemStone-3", "Lane #1 GemStone",
		"14 - 16 lbs.", "Lane 1",
		"199", "0",
		"1", 1,
		"Stück", "9",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-768503239.htm",
		"", 1,
		"08-1", "0",
		 0)
	
		Entry[368] = new Element(
		368, "assets/thumb/Lane1-Dynamo-x2.jpg",
		150, 150,
		"Dynamo X2-6", "Lane #1 Dynamo X2",
		"13 - 16 lbs.", "Lane 1",
		"239", "0",
		"1", 1,
		"Stück", "9",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1474625347.htm",
		"", 1,
		"08-1", "0",
		 0)
	
		Entry[369] = new Element(
		369, "assets/thumb/Lane1-Chainsaw-Massacre.jpg",
		150, 150,
		"Chainsaw Massacre-6", "Lane #1 Chainsaw Massacre",
		"14 - 16 lbs.", "Lane 1",
		"239", "0",
		"1", 1,
		"Stück", "9",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1814616637.htm",
		"", 1,
		"08-1", "0",
		 0)
	
		Entry[370] = new Element(
		370, "assets/thumb/Legends-Black-Pearl.jpg",
		150, 150,
		"Black Pearl-9", "Legends Black Pearl",
		"12 - 15 lbs.", "",
		"199", "0",
		"1", 1,
		"Stück", "11",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1733633783.htm",
		"", 1,
		"08-3", "0",
		 0)
	
		Entry[371] = new Element(
		371, "assets/thumb/Legends-Black-Diamond.jpg",
		150, 150,
		"Black Diamond-9", "Legends Black Diamond",
		"12 - 15 lbs.", "Legends",
		"199", "0",
		"1", 1,
		"Stück", "11",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-475410029.htm",
		"", 1,
		"08-3", "0",
		 0)
	
		Entry[372] = new Element(
		372, "assets/thumb/Legends-Black-Pearl-Reactiv.jpg",
		150, 150,
		"Black Pearl Reactive-9", "Legends Black Pearl Reactive",
		"12 - 15 lbs.", "Legends",
		"199", "0",
		"1", 1,
		"Stück", "11",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd2042104845.htm",
		"", 1,
		"08-3", "0",
		 0)
	
		Entry[373] = new Element(
		373, "assets/thumb/Roto-Grip-Nomad.jpg",
		150, 150,
		"Nomad-9", "Roto Grip Nomad",
		"12 - 15 lbs", "ROTO GRIP",
		"149", "0",
		"1", 1,
		"Stück", "14",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd85211959.htm",
		"", 1,
		"10-1", "0",
		 0)
	
		Entry[374] = new Element(
		374, "assets/thumb/Roto-Grip-Nomad-Pearl.jpg",
		150, 150,
		"Nomad Pearl-9", "Roto Grip Nomad Pearl",
		"12 - 15 lbs.", "ROTO GRIP",
		"149", "0",
		"1", 1,
		"Stück", "14",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-412872943.htm",
		"", 1,
		"10-1", "0",
		 0)
	
		Entry[375] = new Element(
		375, "assets/thumb/Storm-Fast-Pearl.jpg",
		150, 150,
		"Fast Pearl-9", "Storm Fast Pearl",
		"12 - 15 lbs.", "Storm",
		"139", "0",
		"1", 1,
		"Stück", "15",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd694869083.htm",
		"", 1,
		"11-1", "0",
		 0)
	
		Entry[376] = new Element(
		376, "assets/thumb/Storm-Furious.jpg",
		150, 150,
		"Furious-9", "Storm Furious",
		"12 - 15 lbs.", "Storm",
		"139", "0",
		"1", 1,
		"Stück", "15",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-964608619.htm",
		"", 1,
		"11-1", "0",
		 0)
	
		Entry[377] = new Element(
		377, "assets/thumb/Storm-Natural.jpg",
		150, 150,
		"Natural-9", "Storm Natural",
		"12 - 15 lbs.", "Storm",
		"139", "0",
		"1", 1,
		"Stück", "15",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1304922431.htm",
		"", 1,
		"11-1", "0",
		 0)
	
		Entry[378] = new Element(
		378, "assets/thumb/Storm-Virtual-Energy.jpg",
		150, 150,
		"Virtual Energy-9", "Storm Virtual Energy",
		"12 -16 lbs.", "Storm",
		"199", "0",
		"1", 1,
		"Stück", "15",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-138060860.htm",
		"", 1,
		"11-1", "0",
		 0)
	
		Entry[379] = new Element(
		379, "assets/thumb/Track-505C.jpg",
		150, 150,
		"505C-9", "Track 505C",
		"12 -16 lbs.", "Track",
		"169", "0",
		"1", 1,
		"Stück", "16",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1904022621.htm",
		"", 1,
		"12-1", "0",
		 0)
	
		Entry[380] = new Element(
		380, "assets/thumb/Track-715A.jpg",
		150, 150,
		"715A-9", "Track 715A",
		"12 - 16 lbs.", "Track",
		"189", "0",
		"1", 1,
		"Stück", "16",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1699216472.htm",
		"", 1,
		"12-1", "0",
		 0)
	
		Entry[381] = new Element(
		381, "assets/thumb/Track-930T.jpg",
		150, 150,
		"930T-9", "Track 930T",
		"12 -16 lbs.", "Track",
		"199", "0",
		"1", 1,
		"Stück", "16",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd146689129.htm",
		"", 1,
		"12-1", "0",
		 0)
	
		Entry[382] = new Element(
		382, "assets/thumb/Hammer-Jigsaw.jpg",
		150, 150,
		"Jigsaw-3", "Hammer Jigsaw",
		"14 - 16 lbs.", "HAMMER",
		"199", "0",
		"1", 1,
		"Stück", "8",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1257249087.htm",
		"", 1,
		"07-1", "0",
		 0)
	
		Entry[383] = new Element(
		383, "assets/thumb/Hammer-Black-Widow-Nasty.jpg",
		150, 150,
		"Black Widow Nasty-9", "Hammer Black Widow Nasty",
		"12 -16 lbs", "HAMMER",
		"199", "0",
		"1", 1,
		"Stück", "8",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-1793144333.htm",
		"", 1,
		"07-1", "0",
		 0)
	
		Entry[384] = new Element(
		384, "assets/thumb/Ebonite-Mission.jpg",
		150, 150,
		"Mission-9", "Ebonite Mission",
		"12 - 16 lbs.", "Ebonite",
		"199", "0",
		"1", 1,
		"Stück", "7",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-648627875.htm",
		"", 1,
		"06-1", "0",
		 0)
	
		Entry[385] = new Element(
		385, "assets/thumb/Columbia-Pure-Physics.jpg",
		150, 150,
		"Pure Physics-1", "Columbia Pure Physics",
		"12 - 16 lbs", "Columbia",
		"229", "0",
		"1", 1,
		"Stück", "6",
		"Gewicht;12 lbs@Bohrservice;Conventional + 30 €@", "pd2051408368.htm",
		"", 1,
		"04-1", "0",
		 0)
	
		Entry[386] = new Element(
		386, "assets/thumb/PRO-BOWL-Polyester-Blau.jpg",
		150, 150,
		"PRO BOWL Blau-15", "PRO BOWL Polyester Blau",
		"8 - 16 lbs", "PRO BOWL",
		"59", "0",
		"1", 1,
		"Stück", "13",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd1187010178.htm",
		"", 1,
		"08-5", "0",
		 0)
	
		Entry[387] = new Element(
		387, "assets/thumb/PRO-BOWL-Polyester-Candy.jpg",
		150, 150,
		"PRO BOWL Candy-1", "PRO BOWL Polyester Candy",
		"8 - 16 lbs", "PRO BOWL",
		"89", "0",
		"1", 1,
		"Stück", "13",
		"Gewicht;10 lbs@Bohrservice;Conventional + 30 €@", "pd1142302143.htm",
		"", 1,
		"08-5", "0",
		 0)
	
		Entry[388] = new Element(
		388, "assets/thumb/PRO-BOWL-Polyester-Lime.jpg",
		150, 150,
		"PRO BOWL Lime-15", "PRO BOWL Polyester Lime",
		"8 - 16 lbs", "PRO BOWL",
		"59", "0",
		"1", 1,
		"Stück", "13",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-681036440.htm",
		"", 1,
		"08-5", "0",
		 0)
	
		Entry[389] = new Element(
		389, "assets/thumb/PRO-BOWL-Polyester-Orange.jpg",
		150, 150,
		"PRO BOWL Orange-15", "PRO BOWL Polyester Orange",
		"8 - 16 lbs", "PRO BOWL",
		"59", "0",
		"1", 1,
		"Stück", "13",
		"Gewicht;14 lbs@Bohrservice;ohne Bohrung@", "pd-30916019.htm",
		"", 1,
		"08-5", "0",
		 0)
	
		Entry[390] = new Element(
		390, "assets/thumb/monats_spez1009-ge.jpg",
		150, 113,
		"PurePhysics 2-2", "Special Bundel Pure Physics &amp;  PRO BOWL Polyesterball Lime",
		"12 -15lbs", "Columbia",
		"249", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1140798546.htm",
		"", 1,
		"44", "0",
		 0)
	
		Entry[391] = new Element(
		391, "assets/thumb/monats_spez1009-or.jpg",
		150, 113,
		"PurePhysics 2-3", "Special Bundel Pure Physics &amp;  PRO BOWL Polyesterball Orange",
		"12 -15lbs", "Columbia",
		"249", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1324294786.htm",
		"", 1,
		"44", "0",
		 0)
	
		Entry[392] = new Element(
		392, "assets/thumb/monats_spez1009-pi.jpg",
		150, 113,
		"PurePhysics 3-1", "Special Bundel Pure Physics &amp;  PRO BOWL Polyesterball Candy",
		"12 -15lbs", "Columbia",
		"299", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-1720921750.htm",
		"", 1,
		"44", "0",
		 0)
	
		Entry[393] = new Element(
		393, "assets/thumb/monats_spez1009-ge.jpg",
		150, 113,
		"PurePhysics 3-2", "Special Bundel Pure Physics &amp;  PRO BOWL Polyesterball Lime",
		"12 -15lbs", "Columbia",
		"299", "0",
		"1", 1,
		"Stück", "0",
		"", "pd-102548458.htm",
		"", 1,
		"44", "0",
		 0)
	
		Entry[394] = new Element(
		394, "assets/thumb/monats_spez1009-or.jpg",
		150, 113,
		"PurePhysics 3-3", "Special Bundel Pure Physics &amp;  PRO BOWL Polyesterball Orange",
		"12 -15lbs", "Columbia",
		"299", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1375668610.htm",
		"", 1,
		"44", "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();
			};
		};