	// 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/KTM.GIF",
		150, 57,
		"KTM-Ersatzteile", "KTM-Ersatzteilservice",
		"Original KTM-Ersatzteile", "",
		"0", "0",
		"1", 1,
		"Stück", "71",
		"", "pd-717653469.htm",
		"", 1,
		"T", "0",
		 1)
	
		Entry[1] = new Element(
		1, "assets/thumb/ETKatalog.jpg",
		559, 361,
		"BETA-Ersatzteile", "BETA Online-Ersatzteilbestellung",
		"Alle original BETA-Ersatzteile - hier zu bestellen!", "",
		"0", "0",
		"1", 1,
		"Stück", "1",
		"", "pd-2118693708.htm",
		"", 1,
		"B", "0",
		 1)
	
		Entry[2] = new Element(
		2, "assets/thumb/5017010000.jpg",
		150, 100,
		"5017010-004", "BETA Endurojacke",
		"Fahrerjacke in S, M, L, XL, XXL", "",
		"168.59", "0",
		"1", 1,
		"Stück", "42",
		"Grösse;XL@", "pd302844152.htm",
		"", 1,
		"8.1", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/5022165000.jpg",
		150, 100,
		"5022165-004", "BETA Enduroshirt",
		"Fahrershirt in S, M, L, XL, XXL", "",
		"68.43", "0",
		"1", 1,
		"Stück", "42",
		"Grösse;XL@", "pd-973102510.htm",
		"", 1,
		"8.1", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/5018010000.jpg",
		150, 100,
		"5018010-003", "BETA Endurohandschuhe",
		"Fahrerhandschuhe in S, M, L, XL", "",
		"37.69", "0",
		"1", 1,
		"Stück", "42",
		"Grösse;L@", "pd-921356836.htm",
		"", 1,
		"8.1", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/5025581000.jpg",
		360, 240,
		"5025581-004", "BETA Endurohose lang",
		"Lang geschnittene Endurohose in S, M, L, XL, XXL", "",
		"208.25", "0",
		"1", 1,
		"Stück", "42",
		"Grösse;XL@", "pd-276411882.htm",
		"", 1,
		"8.1", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/5025580000.jpg",
		150, 100,
		"5025580-004", "BETA Endurohose",
		"Fahrerhose in S, M, L, XL, XXL", "",
		"162.64", "0",
		"1", 1,
		"Stück", "42",
		"Grösse;XL@", "pd-958598271.htm",
		"", 1,
		"8.1", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/5022161000_hemd_gara.jpg",
		150, 100,
		"5022161-003", "BETA Trial Fahrershirt &quot;Gara&quot;",
		"Trialshirt in S, M, L, XL, XXL", "",
		"65.45", "0",
		"1", 1,
		"Stück", "44",
		"Grösse;L@", "pd-608781702.htm",
		"", 1,
		"8.3", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/5022101000_hemd_reissverschluss.jpg",
		150, 100,
		"5022100-004", "BETA Trial Fahrerhemd mit Reißverschluß",
		"Trialshirt in S, M, L, XL, XXL", "",
		"89.25", "0",
		"1", 1,
		"Stück", "44",
		"Grösse;XL@", "pd-1341310347.htm",
		"", 1,
		"8.3", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/5025571000_hose_gara.jpg",
		150, 100,
		"5025571-003", "BETA Trial Hose &quot;Gara&quot;",
		"Trialfahrerhose in S, M, L, XL, XXL", "",
		"114.04", "0",
		"1", 1,
		"Stück", "44",
		"Grösse;L@", "pd504593652.htm",
		"", 1,
		"8.3", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/5029121000_einteiler_gara.jpg",
		150, 100,
		"5029121-1", "BETA Trial Fahreranzug (Einteiler)",
		"Trialanzug in S, M, L, XL, XXL", "",
		"224.11", "0",
		"1", 1,
		"Stück", "44",
		"Grösse;L@", "pd-1141040297.htm",
		"", 1,
		"8.3", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/5018001000_handschuhe_trial.jpg",
		150, 100,
		"5018001-003", "BETA Trial Handschuhe",
		"Handschuhe in S, M, L, XL", "",
		"35.7", "0",
		"1", 1,
		"Stück", "44",
		"Grösse;L@", "pd987075897.htm",
		"", 1,
		"8.3", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/5017020000.jpg",
		150, 100,
		"5017020-003", "BETA Softshell Jacket",
		"in S, M, L, XL, XXL", "",
		"98.18", "0",
		"1", 1,
		"Stück", "43",
		"Grösse;L@", "pd-647588281.htm",
		"", 1,
		"8.2", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/nockenwelle_RR125.jpg",
		150, 90,
		"3404255100", "BETA Sportnockenwelle für RR 125 4T",
		"Ca. 15% Leistungszuwachs", "",
		"119", "0",
		"1", 1,
		"Stück", "39",
		"", "pd1270589320.htm",
		"", 1,
		"G", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/pignone_z13RR_2564055_800_medium.jpg",
		120, 80,
		"2564055800", "Ritzel 13 Zähne für RR 125 ´05/´06/´07",
		"", "",
		"20.99", "0",
		"1", 1,
		"Stück", "39",
		"", "pd1018611472.htm",
		"", 1,
		"G", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/20_12810_000_normal_medium.jpg",
		150, 100,
		"2012810000", "Kickstarter Kit für RR 125 4T",
		"", "",
		"178.95", "0",
		"1", 1,
		"Stück", "39",
		"", "pd-616892782.htm",
		"", 1,
		"G", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/lampenmaske_karbon_rev_3.jpg",
		150, 100,
		"007431408000", "Lampenmaske in Karbon Evo",
		"", "",
		"86.56", "0",
		"1", 1,
		"Stück", "40",
		"", "pd1813072572.htm",
		"", 1,
		"H", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/sitz_tank_rev_3.jpg",
		150, 100,
		"007450178000", "Sitz-/Tankkombination EVO",
		"", "",
		"341.53", "0",
		"1", 1,
		"Stück", "40",
		"", "pd1260373547.htm",
		"", 1,
		"H", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/scheibenschutz_evo.jpg",
		150, 100,
		"007431608000", "Scheibenschutz vorne in Karbon",
		"", "",
		"62.2", "0",
		"1", 1,
		"Stück", "40",
		"", "pd-67703458.htm",
		"", 1,
		"H", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/gehaeuse_magnesium.jpg",
		150, 100,
		"1206330800", "Gehäuse aus Magnesium Rev3 2T-Komplett",
		"", "",
		"238", "0",
		"1", 1,
		"Stück", "40",
		"", "pd-558411680.htm",
		"", 1,
		"H", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/gehaeuse_magnesium.jpg",
		150, 100,
		"1206332800", "Gehäuse aus Magnesium Evo 2T-Komplett",
		"", "",
		"297.5", "0",
		"1", 1,
		"Stück", "40",
		"", "pd-2015482482.htm",
		"", 1,
		"H", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/scheibenschutz_rev_3.jpg",
		150, 100,
		"1288264000", "Scheibenschutz vorne Rev3 in Karbon",
		"", "",
		"59.5", "0",
		"1", 1,
		"Stück", "40",
		"", "pd1569099804.htm",
		"", 1,
		"H", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/tankblende_rev_3.jpg",
		150, 100,
		"1288522000", "Tankblende in Karbon Rev3/Rev 4T",
		"", "",
		"53.55", "0",
		"1", 1,
		"Stück", "40",
		"", "pd630919206.htm",
		"", 1,
		"H", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/kupplungspumpe_rev_3.jpg",
		150, 100,
		"1291910053", "Kupplungspumpe Rev3 250/270",
		"", "",
		"67.83", "0",
		"1", 1,
		"Stück", "40",
		"", "pd-1148857222.htm",
		"", 1,
		"H", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/kruemmer_akrapovic_rev_3.jpg",
		150, 100,
		"2916286000", "Krümmer Akrapovich Rev 03 2T ´08 Racing",
		"", "",
		"217.77", "0",
		"1", 1,
		"Stück", "40",
		"", "pd-1804812654.htm",
		"", 1,
		"H", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/lenkerpolster_rev_3.jpg",
		150, 100,
		"2598901000", "Lenkerpolster Rev3 2T/4T ´07",
		"", "",
		"11.9", "0",
		"1", 1,
		"Stück", "40",
		"", "pd146765624.htm",
		"", 1,
		"H", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/kruemmer_racing.jpg",
		150, 100,
		"2916267000", "Krümmer Racing",
		"", "",
		"121.27", "0",
		"1", 1,
		"Stück", "40",
		"", "pd-1871202188.htm",
		"", 1,
		"H", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/lampenmaske_karbon_evo.jpg",
		150, 100,
		"2228701000", "Lampenmaske in Karbon (Rev3 2T/Rev 4T)",
		"", "",
		"77.35", "0",
		"1", 1,
		"Stück", "40",
		"", "pd1061896112.htm",
		"", 1,
		"H", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/Lenker_rev_3.jpg",
		150, 100,
		"2220464000", "Lenker Rev3-Evo BETA Racing",
		"", "",
		"63.07", "0",
		"1", 1,
		"Stück", "40",
		"", "pd992724322.htm",
		"", 1,
		"H", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/lenker_racing_00_06_rev_3.jpg",
		150, 100,
		"2220461000", "Lenker Rev3 BETA Racing ´00-´06",
		"", "",
		"63.07", "0",
		"1", 1,
		"Stück", "40",
		"", "pd63923762.htm",
		"", 1,
		"H", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/sportschalld_rev_4t.jpg",
		150, 100,
		"2203363800", "Sportschalldämpfer Rev 4T Racing",
		"", "",
		"297.5", "0",
		"1", 1,
		"Stück", "40",
		"", "pd-1199508906.htm",
		"", 1,
		"H", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/mittelschalld_rev_3.jpg",
		150, 100,
		"2203359100", "Mittelschalldämpfer Sportabt Rev3 250",
		"", "",
		"202.3", "0",
		"1", 1,
		"Stück", "40",
		"", "pd-1153857428.htm",
		"", 1,
		"H", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/tuningsatz_rev_4t.jpg",
		150, 100,
		"2012910000", "Tuningsatz Kopf/Zündung Rev 4T",
		"", "",
		"775.88", "0",
		"1", 1,
		"Stück", "40",
		"", "pd1966425708.htm",
		"", 1,
		"H", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/kit_rev_4t.jpg",
		150, 100,
		"2012909000", "Kit Rev 4T 300 cc",
		"", "",
		"648.91", "0",
		"1", 1,
		"Stück", "40",
		"", "pd-2055611928.htm",
		"", 1,
		"H", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/long_range_kit_rev_3.jpg",
		150, 100,
		"2012819000", "Sitz-/Tankkombination Rev3 2T ´06-´08",
		"", "",
		"343.32", "0",
		"1", 1,
		"Stück", "40",
		"", "pd1234449368.htm",
		"", 1,
		"H", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/alu_fussrasten_rev_evo.jpg",
		150, 100,
		"2012817000", "Alu-Fußrasten (Rev3/ Rev 4T, Evo 2T/Evo 4T)",
		"", "",
		"95.2", "0",
		"1", 1,
		"Stück", "40",
		"", "pd583733604.htm",
		"", 1,
		"H", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/long_range_kit_rev_3.jpg",
		150, 100,
		"2012816000", "Sitz-/Tankkombination Rev3 2T ´00-´05",
		"", "",
		"343.32", "0",
		"1", 1,
		"Stück", "40",
		"", "pd586980806.htm",
		"", 1,
		"H", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/gabelbruecke_rev_3.jpg",
		150, 100,
		"2012815000", "Gabelbrücke Rev3 Racing",
		"", "",
		"357", "0",
		"1", 1,
		"Stück", "40",
		"", "pd1769835454.htm",
		"", 1,
		"H", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/duesensatz_mikuni_rev_3.jpg",
		150, 100,
		"2009050000", "Düsensatz Mikuni Rev3 2T ´00-´07",
		"", "",
		"6.52", "0",
		"1", 1,
		"Stück", "40",
		"", "pd1295180714.htm",
		"", 1,
		"H", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/sitz_tank_rev_3.jpg",
		150, 100,
		"2012814000", "Sitz-/Tankkombination Rev3 - Rev 4T",
		"", "",
		"343.32", "0",
		"1", 1,
		"Stück", "40",
		"", "pd-1889677552.htm",
		"", 1,
		"H", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/zylinderkit_270_08_rev_3.jpg",
		150, 100,
		"2008408500", "Zylinderkit 270 ccm Rev3 Durchmesser 76 ´08",
		"", "",
		"470.05", "0",
		"1", 1,
		"Stück", "40",
		"", "pd28963682.htm",
		"", 1,
		"H", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/zylinderkit_270_08_rev_3.jpg",
		150, 100,
		"2008408400", "Zylinderkit 270 ccm Rev3 Durchmesser 76 ´07",
		"", "",
		"435.69", "0",
		"1", 1,
		"Stück", "40",
		"", "pd1815144212.htm",
		"", 1,
		"H", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/zylinderkit_270_08_rev_3.jpg",
		150, 100,
		"2008408300", "Zylinderkit 270 ccm Rev3 Durchmesser 76 ´06",
		"", "",
		"446.51", "0",
		"1", 1,
		"Stück", "40",
		"", "pd1752213494.htm",
		"", 1,
		"H", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/zylinderkit_270_00_01_02rev_3.jpg",
		150, 100,
		"2008408100", "Zylinderkit 270 ccm Rev3 Durchmesser 76 ´03/´04/´05",
		"", "",
		"446.51", "0",
		"1", 1,
		"Stück", "40",
		"", "pd1465548424.htm",
		"", 1,
		"H", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/zylinderkit_270_00_01_02rev_3.jpg",
		150, 100,
		"2008408000", "Zylinderkit 270 ccm Rev3 Durchmesser 76 ´00/´01/´02",
		"", "",
		"432.32", "0",
		"1", 1,
		"Stück", "40",
		"", "pd-42819766.htm",
		"", 1,
		"H", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/schwimmerkammervergr_vergaser_mikuni_rev_3.jpg",
		150, 100,
		"2000211000", "Schwimmerkammervergrößerung Vergaser Mikuni Rev-3",
		"", "",
		"13.09", "0",
		"1", 1,
		"Stück", "40",
		"", "pd1015378528.htm",
		"", 1,
		"H", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/fussdichtung_rev3.jpg",
		150, 100,
		"1661761020", "Fussdichtung Rev3 250/270",
		"", "",
		"9.13", "0",
		"1", 1,
		"Stück", "40",
		"", "pd413212558.htm",
		"", 1,
		"H", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/aufklebersatz_rev_3.jpg",
		150, 100,
		"1331485000", "Aufklebersatz Rev3/Rev 4T Racing",
		"", "",
		"35.7", "0",
		"1", 1,
		"Stück", "40",
		"", "pd-135509308.htm",
		"", 1,
		"H", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/fennek_stofftier.jpg",
		150, 150,
		"82317", "Fennek Stofftier von Wild Republic",
		"Wüstenfuchs aus Plüsch, ca. 30 cm", "",
		"19.95", "0",
		"1", 1,
		"Stück", "69",
		"", "pd1752034604.htm",
		"", 1,
		"R", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/racingshirt.jpg",
		150, 190,
		"RACINGSHIRT-5", "BETA Fahrershirt Racing mit individuellem Aufdruck",
		"Personalisiertes Shirt des Beta Racing Teams", "",
		"89.95", "0",
		"1", 1,
		"Stück", "42",
		"Grösse;XXL@", "pd1186067366.htm",
		"", 1,
		"8.1", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/RR2012.jpg",
		150, 101,
		"BETA Neumotorräder", "BETA Neumotorräder",
		"alle Modelle lieferbar", "",
		"0", "0",
		"1", 1,
		"Stück", "0",
		"", "pd1214558038.htm",
		"", 1,
		"A", "0",
		 1)
	
		Entry[51] = new Element(
		51, "assets/thumb/camelbak.jpg",
		150, 150,
		"60727", "Camelbak Trinksystem",
		"Classic 2,0 Liter", "",
		"49.95", "0",
		"1", 1,
		"Stück", "46",
		"", "pd-1144352936.htm",
		"", 1,
		"J", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/29325_0.jpg",
		150, 150,
		"89XN-S", "Crossbrille SCOTT 89 XN Recoil",
		"Endurobrille", "",
		"49.95", "0",
		"1", 1,
		"Stück", "46",
		"Farbe;Schwarz@", "pd136775265.htm",
		"", 1,
		"J", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/5010500000_strandfahne.jpg",
		150, 100,
		"5010510000", "Strandfahne &quot;BETA Racing&quot;",
		"", "",
		"95.2", "0",
		"1", 1,
		"Stück", "45",
		"", "pd1066952006.htm",
		"", 1,
		"8.4", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/zelt.jpg",
		150, 100,
		"5010042000", "Fahrerlagerzelt &quot;Beta Racing&quot; 3 x 3 Meter",
		"", "",
		"399", "0",
		"1", 1,
		"Stück", "45",
		"", "pd1751234423.htm",
		"", 1,
		"8.4", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/richtungspfeile.jpg",
		150, 100,
		"5010100000", "Richtungspfeil &quot;BETA Racing&quot;",
		"", "",
		"1.99", "0",
		"1", 1,
		"Stück", "45",
		"", "pd-249896871.htm",
		"", 1,
		"8.4", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/banner.jpg",
		150, 100,
		"2899990000", "Banner &quot;Beta Racing&quot;",
		"300 cm x 80 cm", "",
		"19.84", "0",
		"1", 1,
		"Stück", "45",
		"", "pd1234532253.htm",
		"", 1,
		"8.4", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/absperrband.jpg",
		150, 100,
		"1500010000", "Trassierband &quot;Beta Racing&quot;",
		"200m Rolle", "",
		"20.82", "0",
		"1", 1,
		"Stück", "45",
		"", "pd1736375059.htm",
		"", 1,
		"8.4", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/schluesselband.jpg",
		150, 100,
		"5010300000", "Schlüsselband &quot;Beta Racing&quot;",
		"", "",
		"1.99", "0",
		"1", 1,
		"Stück", "45",
		"", "pd1678852985.htm",
		"", 1,
		"8.4", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/gabelschutz-neopren.jpg",
		150, 151,
		"50945", "Gabelschützer Neopren",
		"von Acerbis", "",
		"22.95", "0",
		"1", 1,
		"Stück", "48",
		"", "pd63289242.htm",
		"", 1,
		"L", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/Progrip714.jpg",
		150, 150,
		"71403", "Progrip Handgriffe 714",
		"", "",
		"8.4", "0",
		"1", 1,
		"Stück", "48",
		"", "pd641251848.htm",
		"", 1,
		"L", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/acerbisRallyePro.jpg",
		150, 120,
		"1325XBL98", "Acerbis Handprotektoren Rallye Pro",
		"verschiedene Farben", "",
		"49.95", "0",
		"1", 1,
		"Stück", "48",
		"Farbe;Blau@", "pd-311557411.htm",
		"", 1,
		"L", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/montage1434.jpg",
		150, 81,
		"13060", "Anbausatz für Acerbis Handprotektoren Rallye Pro",
		"passen für alle 22mm Stahllenker, Alulenker, Magura etc.", "",
		"44.95", "0",
		"1", 1,
		"Stück", "48",
		"", "pd-475856199.htm",
		"", 1,
		"L", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/mefo_schlauch_packung.jpg",
		150, 150,
		"MSL15", "Mefo Wettbewerbsschläuche",
		"21&quot; (90/90-21, 80/100-21), 18&quot; (120/80-18 bis 150/70-18)", "",
		"20.4", "0",
		"1", 1,
		"Stück", "48,66",
		"Grösse;120/80-18 bis 150/70-18@", "pd880601739.htm",
		"", 1,
		"L,O", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/reifenhalter.jpg",
		150, 150,
		"D11P", "Reifenhalter",
		"für 18&quot; und 21&quot; Räder", "",
		"12", "0",
		"1", 1,
		"Stück", "48",
		"Grösse;18 Zoll@", "pd-450020413.htm",
		"", 1,
		"L", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/barkbusters.jpg",
		150, 94,
		"B4003", "Barkbusters VPS Handprotektoren",
		"Das Original aus Australien, versch. Farben lieferbar", "",
		"59.95", "0",
		"1", 1,
		"Stück", "48",
		"Farbe;Schwarz@", "pd140437534.htm",
		"", 1,
		"L", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/barkbustersmountingkit.jpg",
		150, 94,
		"B2505", "Barkbusters VPS Anbausatz",
		"Lenkerspezifischer Anbausatz", "",
		"47.95", "0",
		"1", 1,
		"Stück", "48",
		"Lenkertyp;Answer Pro Taper/Acerbis PHS/Reikon@", "pd346074785.htm",
		"", 1,
		"L", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/5025551000_hose_alp.jpg",
		150, 100,
		"5025551-1", "BETA Trial Hose &quot;Alp&quot;",
		"Trialfahrerhose in S, M, L, XL, XXL", "",
		"135.86", "0",
		"1", 1,
		"Stück", "44",
		"Grösse;L@", "pd815774239.htm",
		"", 1,
		"8.3", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/teppich_boano.jpg",
		150, 95,
		"BOANOTEPPICH", "BETA Teppich &quot;BOANO RACING&quot;",
		"Gummierte Matte", "",
		"75.95", "0",
		"1", 1,
		"Stück", "45",
		"", "pd1943963899.htm",
		"", 1,
		"8.4", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/werkzeugtasche_klein.jpg",
		150, 67,
		"5011012800", "BETA Werkzeugtasche",
		"Gürteltasche mit Feldflasche", "",
		"38.68", "0",
		"1", 1,
		"Stück", "42",
		"", "pd1261149855.htm",
		"", 1,
		"8.1", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/vansticker.jpg",
		150, 49,
		"5010030000", "Van Sticker &quot;Beta Racing&quot;",
		"Aufkleber für Auto/Transporter", "",
		"4.17", "0",
		"1", 1,
		"Stück", "45",
		"", "pd1289964398.htm",
		"", 1,
		"8.4", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/schluesselanhaenger.jpg",
		150, 61,
		"5010301000", "Schlüsselring &quot;BETA Racing&quot;",
		"", "",
		"0.99", "0",
		"1", 1,
		"Stück", "45",
		"", "pd2044401484.htm",
		"", 1,
		"8.4", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/gutschein_klein.jpg",
		150, 209,
		"GUTSCH50-1", "Gutschein",
		"2 Motive zur Auswahl", "",
		"50", "0",
		"1", 1,
		"Stück", "70",
		"Version;Motiv 1@Gutscheinwert;€ 50,00@", "pd1678306392.htm",
		"", 1,
		"S", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/images/nopicture.gif",
		77, 52,
		"GEBRAUCHT", "Gebrauchte Motorräder",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "67",
		"", "pd1264522540.htm",
		"", 1,
		"P", "0",
		 1)
	
		Entry[74] = new Element(
		74, "assets/thumb/5016400000.jpg",
		150, 100,
		"5016400-003", "BETA Paddock Jacke",
		"in S, M, L, XL, XXL", "",
		"107.1", "0",
		"1", 1,
		"Stück", "43",
		"Grösse;L@", "pd1267620602.htm",
		"", 1,
		"8.2", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/5011915_000_medium.jpg",
		150, 100,
		"5011915003", "BETA Racing Hemd",
		"in S, M, L, XL und XXL", "",
		"53.55", "0",
		"1", 1,
		"Stück", "43",
		"Grösse;L@", "pd231552720.htm",
		"", 1,
		"8.2", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/5025310_000_medium.jpg",
		150, 100,
		"5025310005", "BETA Polo Shirt",
		"in S, M, L, XL und XXL", "",
		"29.75", "0",
		"1", 1,
		"Stück", "43",
		"Grösse;XXL@", "pd-85835346.htm",
		"", 1,
		"8.2", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/5015100_000_medium.jpg",
		150, 100,
		"5015100003", "BETA Sweat Shirt",
		"", "",
		"53.55", "0",
		"1", 1,
		"Stück", "43",
		"Grösse;L@", "pd-491448762.htm",
		"", 1,
		"8.2", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/helmblau.jpg",
		150, 118,
		"305016S", "Progrip Endurohelm Crosshatch",
		"Einzelstücke in Weiss/Schwarz/Blau in S und XL", "",
		"99.9", "0",
		"1", 1,
		"Stück", "68",
		"Grösse;S@", "pd-1177945781.htm",
		"", 1,
		"Q", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/images/nopicture.gif",
		77, 52,
		"001013008 000", "CRANKASE ASSY, EVO 4T &rsquo;09",
		"", "",
		"858.51", "0",
		"1", 1,
		"", "2",
		"", "pd-313724573.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/images/nopicture.gif",
		77, 52,
		"001022508 000", "PISTON DIAM.84",
		"", "",
		"257.34", "0",
		"1", 1,
		"", "2",
		"", "pd1513054793.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/images/nopicture.gif",
		77, 52,
		"001022600 000", "CYLINDER DIAM. 84",
		"", "",
		"400.76", "0",
		"1", 1,
		"", "2",
		"", "pd-595311155.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/images/nopicture.gif",
		77, 52,
		"001031008 000", "REV 4T PRIMARY TRANSMISSION",
		"", "",
		"291.47", "0",
		"1", 1,
		"", "2",
		"", "pd-660859489.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/images/nopicture.gif",
		77, 52,
		"001031100 000", "CLUTCH HOUSING",
		"", "",
		"28.57", "0",
		"1", 1,
		"", "2",
		"", "pd1367904485.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/images/nopicture.gif",
		77, 52,
		"001031110 000", "RIVET 5X18",
		"", "",
		"0.17", "0",
		"1", 1,
		"", "2",
		"", "pd-512936765.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/images/nopicture.gif",
		77, 52,
		"001062008 000", "EVO 4T COMPLETE STARTER",
		"", "",
		"151.82", "0",
		"1", 1,
		"", "2",
		"", "pd2144064923.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/images/nopicture.gif",
		77, 52,
		"001062108 000", "KICKSTARTER",
		"", "",
		"151.82", "0",
		"1", 1,
		"", "2",
		"", "pd-825568087.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/images/nopicture.gif",
		77, 52,
		"001063000 000", "KICKSTARTER LEVER, REV 4T &rsquo;09",
		"", "",
		"68.08", "0",
		"1", 1,
		"", "2",
		"", "pd1164624193.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/images/nopicture.gif",
		77, 52,
		"001101100 000", "STATOR ASSY,EL. FLYWHEEL",
		"", "",
		"221.99", "0",
		"1", 1,
		"", "2",
		"", "pd-2026148521.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/images/nopicture.gif",
		77, 52,
		"001101110 000", "ROTOR FLYWHEEL",
		"", "",
		"249.71", "0",
		"1", 1,
		"", "2",
		"", "pd1924632413.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/images/nopicture.gif",
		77, 52,
		"001101500 000", "CDI EVO 4T &rsquo;09",
		"", "",
		"194.16", "0",
		"1", 1,
		"", "2",
		"", "pd362141907.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/images/nopicture.gif",
		77, 52,
		"001111150 000", "GASKET, CYLINDER HEAD",
		"", "",
		"14.68", "0",
		"1", 1,
		"", "2",
		"", "pd-662546631.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/images/nopicture.gif",
		77, 52,
		"001111160 000", "GASKET, CYLINDER HEAD",
		"", "",
		"15.38", "0",
		"1", 1,
		"", "2",
		"", "pd772658191.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/images/nopicture.gif",
		77, 52,
		"001111210 000", "HOT START BREATHING TUBE",
		"", "",
		"5", "0",
		"1", 1,
		"", "2",
		"", "pd-1934871339.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/images/nopicture.gif",
		77, 52,
		"001111300 000", "MUFFLER PIPE UNION",
		"", "",
		"62.13", "0",
		"1", 1,
		"", "2",
		"", "pd-1006481665.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/images/nopicture.gif",
		77, 52,
		"001111640 000", "CHAIN TENSIONER GASKET",
		"", "",
		"1.28", "0",
		"1", 1,
		"", "2",
		"", "pd106552075.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/images/nopicture.gif",
		77, 52,
		"001120008 000", "CARBURETOR, EVO 4T 250CC 2009",
		"", "",
		"619.86", "0",
		"1", 1,
		"", "2",
		"", "pd1909625062.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/images/nopicture.gif",
		77, 52,
		"001121008 000", "CARBURETOR, EVO 4T 300CC 2009",
		"", "",
		"623.89", "0",
		"1", 1,
		"", "2",
		"", "pd614119812.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/images/nopicture.gif",
		77, 52,
		"004050000 000", "SHIFT LEVER EVO-80",
		"", "",
		"38.06", "0",
		"1", 1,
		"", "2",
		"", "pd1516489554.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/images/nopicture.gif",
		77, 52,
		"006010000 000", "ENGINE CASE",
		"", "",
		"701.76", "0",
		"1", 1,
		"", "2",
		"", "pd1916798001.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/images/nopicture.gif",
		77, 52,
		"006010008 000", "ENGINE CASE, RR 4T MY&rsquo;10 -CPL-",
		"", "",
		"1158.58", "0",
		"1", 1,
		"", "2",
		"", "pd-729372208.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/images/nopicture.gif",
		77, 52,
		"006010030 000", "CRANKCASE GASKET",
		"", "",
		"10.52", "0",
		"1", 1,
		"", "2",
		"", "pd-1804588601.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[102] = new Element(
		102, "assets/images/nopicture.gif",
		77, 52,
		"006010110 000", "DOWEL 17.21.19",
		"", "",
		"5.6", "0",
		"1", 1,
		"", "2",
		"", "pd-309436083.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[103] = new Element(
		103, "assets/images/nopicture.gif",
		77, 52,
		"006010120 000", "BUSH (BACK) 17.21.12",
		"", "",
		"4.32", "0",
		"1", 1,
		"", "2",
		"", "pd1441982789.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/images/nopicture.gif",
		77, 52,
		"006010160 000", "RETAINIG PLATE MAINBEARING",
		"", "",
		"0.89", "0",
		"1", 1,
		"", "2",
		"", "pd1342356547.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/images/nopicture.gif",
		77, 52,
		"006010170 000", "GEAR BOX BEARING FIXING PLATE",
		"", "",
		"2.37", "0",
		"1", 1,
		"", "2",
		"", "pd-190520194.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/images/nopicture.gif",
		77, 52,
		"006010180 009", "RETAINIG PLATE (SHAFT SEAL RIGH",
		"", "",
		"2.14", "0",
		"1", 1,
		"", "2",
		"", "pd1594398428.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/images/nopicture.gif",
		77, 52,
		"006010190 009", "RETAINIG PLATE (BALANCER SHAFT)",
		"", "",
		"0.96", "0",
		"1", 1,
		"", "2",
		"", "pd1200048234.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/images/nopicture.gif",
		77, 52,
		"006010210 000", "SEALING OIL PLUG 73X9",
		"", "",
		"0.81", "0",
		"1", 1,
		"", "2",
		"", "pd-234248151.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/images/nopicture.gif",
		77, 52,
		"006010230 000", "FAIR LEAD BREATHING TUBE MEM",
		"", "",
		"2.91", "0",
		"1", 1,
		"", "2",
		"", "pd-474263937.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/images/nopicture.gif",
		77, 52,
		"006010240 000", "OILJET PISTON",
		"", "",
		"4.25", "0",
		"1", 1,
		"", "2",
		"", "pd-2048789307.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[111] = new Element(
		111, "assets/images/nopicture.gif",
		77, 52,
		"006010250 000", "LOCATING SCREW M8X16",
		"", "",
		"4.39", "0",
		"1", 1,
		"", "2",
		"", "pd1245142139.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/images/nopicture.gif",
		77, 52,
		"006010260 000", "CU-COPPER WASHER 8.14.3",
		"", "",
		"0.72", "0",
		"1", 1,
		"", "2",
		"", "pd-1755241695.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/images/nopicture.gif",
		77, 52,
		"006010270 000", "VENTILATION NOZZLE (GEARBOX)",
		"", "",
		"3.53", "0",
		"1", 1,
		"", "2",
		"", "pd-1832639945.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/images/nopicture.gif",
		77, 52,
		"006010300 000", "CLUTCH COVER INNER",
		"", "",
		"45.24", "0",
		"1", 1,
		"", "2",
		"", "pd413125800.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/images/nopicture.gif",
		77, 52,
		"006010308 000", "INNER CLUTCH COVER ASSY",
		"", "",
		"85.03", "0",
		"1", 1,
		"", "2",
		"", "pd-1073295555.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/images/nopicture.gif",
		77, 52,
		"006010310 000", "GASKET CLUTCH COVER",
		"", "",
		"5.49", "0",
		"1", 1,
		"", "2",
		"", "pd1239063475.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[117] = new Element(
		117, "assets/images/nopicture.gif",
		77, 52,
		"006010400 052", "EXTERNAL CLUTCH COVER",
		"", "",
		"33.84", "0",
		"1", 1,
		"", "2",
		"", "pd1365529881.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[118] = new Element(
		118, "assets/images/nopicture.gif",
		77, 52,
		"006010410 000", "GASKET CLUTCH COVER OUTER",
		"", "",
		"15.17", "0",
		"1", 1,
		"", "2",
		"", "pd1096516847.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[119] = new Element(
		119, "assets/images/nopicture.gif",
		77, 52,
		"006010500 052", "IGNITION COVER",
		"", "",
		"56.99", "0",
		"1", 1,
		"", "2",
		"", "pd-1958010090.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[120] = new Element(
		120, "assets/images/nopicture.gif",
		77, 52,
		"006010508 052", "FLYWHEEL COVER - COMPLETE",
		"", "",
		"78.16", "0",
		"1", 1,
		"", "2",
		"", "pd-944189259.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[121] = new Element(
		121, "assets/images/nopicture.gif",
		77, 52,
		"006010510 000", "FLYWHEEL COBER GASKET 0,6MM TH",
		"", "",
		"6.1", "0",
		"1", 1,
		"", "2",
		"", "pd881547755.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[122] = new Element(
		122, "assets/images/nopicture.gif",
		77, 52,
		"006010540 000", "CABLE RETAINING PLATE",
		"", "",
		"1.91", "0",
		"1", 1,
		"", "2",
		"", "pd2118983185.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[123] = new Element(
		123, "assets/images/nopicture.gif",
		77, 52,
		"006010560 000", "OIL CHECK GLASS, 22X30X8,5",
		"", "",
		"6.06", "0",
		"1", 1,
		"", "2",
		"", "pd-2083629401.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[124] = new Element(
		124, "assets/images/nopicture.gif",
		77, 52,
		"006011008 000", "ENGINE CASE, RR 4T MY&rsquo;11 -CPL-",
		"", "",
		"1168.35", "0",
		"1", 1,
		"", "2",
		"", "pd179853108.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[125] = new Element(
		125, "assets/images/nopicture.gif",
		77, 52,
		"006020110 000", "NUT M32X1 (MAIN BEARING)",
		"", "",
		"11.69", "0",
		"1", 1,
		"", "2",
		"", "pd1099946285.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[126] = new Element(
		126, "assets/images/nopicture.gif",
		77, 52,
		"006020200 000", "BALANCER SHAFT",
		"", "",
		"127.22", "0",
		"1", 1,
		"", "2",
		"", "pd69498659.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[127] = new Element(
		127, "assets/images/nopicture.gif",
		77, 52,
		"006020210 000", "BALANCER SHAFT WEIGHT",
		"", "",
		"44.49", "0",
		"1", 1,
		"", "2",
		"", "pd452025865.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[128] = new Element(
		128, "assets/images/nopicture.gif",
		77, 52,
		"006020508 000", "PISTON CPL. 450CC D=95MM",
		"", "",
		"196.11", "0",
		"1", 1,
		"", "2",
		"", "pd-1637517473.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[129] = new Element(
		129, "assets/images/nopicture.gif",
		77, 52,
		"006020510 000", "PISTON PIN",
		"", "",
		"17.79", "0",
		"1", 1,
		"", "2",
		"", "pd-59546373.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[130] = new Element(
		130, "assets/images/nopicture.gif",
		77, 52,
		"006020520 000", "CIRCLIP",
		"", "",
		"2.68", "0",
		"1", 1,
		"", "2",
		"", "pd1703829409.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[131] = new Element(
		131, "assets/images/nopicture.gif",
		77, 52,
		"006020538 000", "PISTON RING SET 400/450CC D=95M",
		"", "",
		"34.41", "0",
		"1", 1,
		"", "2",
		"", "pd-1846845310.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[132] = new Element(
		132, "assets/images/nopicture.gif",
		77, 52,
		"006020600 000", "CYLINDER D=95",
		"", "",
		"326.77", "0",
		"1", 1,
		"", "2",
		"", "pd-1040776576.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[133] = new Element(
		133, "assets/images/nopicture.gif",
		77, 52,
		"006020600 001", "CYLINDER D=95 SIZE=1",
		"", "",
		"326.77", "0",
		"1", 1,
		"", "2",
		"", "pd1083552439.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[134] = new Element(
		134, "assets/images/nopicture.gif",
		77, 52,
		"006020600 002", "CYLINDER D=95 SIZE=2",
		"", "",
		"326.77", "0",
		"1", 1,
		"", "2",
		"", "pd-1058745411.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[135] = new Element(
		135, "assets/images/nopicture.gif",
		77, 52,
		"006020620 000", "CYLINDER BASE GASKET 0,5MM",
		"", "",
		"9.1", "0",
		"1", 1,
		"", "2",
		"", "pd1920977061.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[136] = new Element(
		136, "assets/images/nopicture.gif",
		77, 52,
		"006020630 000", "CYLINDER HEAD GASKET D=95",
		"", "",
		"33.34", "0",
		"1", 1,
		"", "2",
		"", "pd977064795.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[137] = new Element(
		137, "assets/images/nopicture.gif",
		77, 52,
		"006020700 000", "BUSH 10,5.12.11 (CYLINDER BASE/",
		"", "",
		"2.65", "0",
		"1", 1,
		"", "2",
		"", "pd1648555265.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[138] = new Element(
		138, "assets/images/nopicture.gif",
		77, 52,
		"006021088 000", "CONNECTING ROD ASSY 400/450/510",
		"", "",
		"284.08", "0",
		"1", 1,
		"", "2",
		"", "pd-297161554.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[139] = new Element(
		139, "assets/images/nopicture.gif",
		77, 52,
		"006021200 000", "BALANCER SHAFT, RR 4T MY&rsquo;11",
		"", "",
		"129.66", "0",
		"1", 1,
		"", "2",
		"", "pd2078946355.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[140] = new Element(
		140, "assets/thumb/1232208000_motorschutz_carbon.jpg",
		150, 100,
		"1232208000", "Motorschutz RR 4T Carbon ",
		"hochwertiger, leichter Motorschutz", "",
		"124.95", "0",
		"1", 1,
		"Stück", "48,66,5,11",
		"", "pd1650268239.htm",
		"", 1,
		"L,O,C11,C21", "0",
		 0)
	
		Entry[141] = new Element(
		141, "assets/thumb/2011210000_rahmenprotektoren05-06.jpg",
		150, 100,
		"2011210000", "Rahmenprotektoren RR4T Carbon für RR4T 2005-2006",
		"leicht und robust", "",
		"52.36", "0",
		"1", 1,
		"Stück", "5",
		"", "pd525734677.htm",
		"", 1,
		"C11", "0",
		 0)
	
		Entry[142] = new Element(
		142, "assets/thumb/2011210100_rahmenprotektoren07-09.jpg",
		150, 100,
		"2011210100", "Rahmenprotektoren RR4T Carbon für RR4T 2007-2009",
		"leicht und robust", "",
		"52.36", "0",
		"1", 1,
		"Stück", "5",
		"", "pd948206010.htm",
		"", 1,
		"C11", "0",
		 0)
	
		Entry[143] = new Element(
		143, "assets/thumb/2011214000_racing_heck05-07.jpg",
		150, 100,
		"2011214000", "Sportheck RR4T 2005-2007",
		"mit LED Rücklicht", "",
		"30.74", "0",
		"1", 1,
		"Stück", "5",
		"", "pd1638535545.htm",
		"", 1,
		"C11", "0",
		 0)
	
		Entry[144] = new Element(
		144, "assets/thumb/led.jpg",
		150, 112,
		"1501769800", "LED-Rücklicht",
		"", "",
		"22.74", "0",
		"1", 1,
		"Stück", "9",
		"", "pd-461283041.htm",
		"", 1,
		"C15", "0",
		 0)
	
		Entry[145] = new Element(
		145, "assets/thumb/oelfilterset.jpg",
		150, 112,
		"00050000082", "Servicekit mit Ölfiltern und Dichtungen",
		"Für Beta RR4T Modelle", "",
		"23.7", "0",
		"1", 1,
		"Stück", "6",
		"", "pd1214040636.htm",
		"", 1,
		"C12", "0",
		 0)
	
		Entry[146] = new Element(
		146, "assets/thumb/luftfilter_rr4T.gif",
		150, 128,
		"016380100000", "Luftfilter Twinair für RR4T",
		"fertig eingeölt", "",
		"20.3", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12",
		"", "pd1170932786.htm",
		"", 1,
		"L,O,C11,C21,C12,C22", "0",
		 0)
	
		Entry[147] = new Element(
		147, "assets/thumb/2011803000_kabelbaum_estart05-07.jpg",
		150, 100,
		"2011803000", "Kabelbaum, vereinfacht, mit E-Start 2005-2007",
		"Version mit E-Start", "",
		"60.84", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-1005998846.htm",
		"", 1,
		"C11", "0",
		 0)
	
		Entry[148] = new Element(
		148, "assets/thumb/2012809000_luefter.jpg",
		150, 100,
		"2012809000", "Elektrischer Lüfter für RR4T",
		"inkl. Anbaukit und Thermostat RR4T 2005-2009", "",
		"93.21", "0",
		"1", 1,
		"Stück", "5",
		"", "pd1148401845.htm",
		"", 1,
		"C11", "0",
		 0)
	
		Entry[149] = new Element(
		149, "assets/thumb/2012902000_supermoto05-07_reifen.jpg",
		150, 100,
		"2012902000", "Supermoto Radsatz RR4T, bereift, 2005-2007",
		"mit Reifen und Einbaukit", "",
		"1190", "0",
		"1", 1,
		"Stück", "5",
		"", "pd509725423.htm",
		"", 1,
		"C11", "0",
		 0)
	
		Entry[150] = new Element(
		150, "assets/thumb/kettenrad_stahl.jpg",
		150, 145,
		"36081005-50", "Kettenrad Stahl für BETA RR4T",
		"42, 45, 48, 50, 52 Zähne", "",
		"35.95", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14",
		"Zähne;50@", "pd1194004997.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24", "0",
		 0)
	
		Entry[151] = new Element(
		151, "assets/thumb/oelfilterlang.jpg",
		150, 112,
		"3625185000", "Ölfilter lang einzeln",
		"für BETA RR4T Modelle", "",
		"7.54", "0",
		"1", 1,
		"Stück", "6",
		"", "pd1560440546.htm",
		"", 1,
		"C12", "0",
		 0)
	
		Entry[152] = new Element(
		152, "assets/thumb/DID520VT2.jpg",
		150, 109,
		"DID520VT2-110", "DID 520 VT2 X-Ring Kette",
		"inkl. Clip-Schloss, verschiedene Längen", "",
		"85.95", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35",
		"Glieder;110@", "pd1691784554.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4", "0",
		 0)
	
		Entry[153] = new Element(
		153, "assets/thumb/DID520VT2_clip.jpg",
		150, 113,
		"DID520VT2CLIP", "DID Clipschloss 520VT2",
		"für X-Ring Kette DID 520 VT2", "",
		"3.95", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27",
		"", "pd362547167.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24", "0",
		 0)
	
		Entry[154] = new Element(
		154, "assets/thumb/kettenrad.jpg",
		150, 112,
		"641001-50", "Kettenrad Alu für BETA RR4T",
		"42, 45, 46, 47, 48, 49, 50, 51, 52 Zähne", "",
		"39.95", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14",
		"Zähne;50@", "pd-1779229376.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24", "0",
		 0)
	
		Entry[155] = new Element(
		155, "assets/thumb/STEALTH.jpg",
		150, 92,
		"STEALTH-48", "Stealth Kettenräder",
		"für alle Beta RR4T: mit 48, 49, 50, 51 oder 52 Zähnen", "",
		"59.4", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14",
		"Zähne;48@", "pd2091619175.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24", "0",
		 0)
	
		Entry[156] = new Element(
		156, "assets/thumb/dustcoverRR4T.jpg",
		150, 150,
		"8617", "Dustcover Twinair",
		"Luftfilterüberzug", "",
		"8.5", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12",
		"", "pd1108807706.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22", "0",
		 0)
	
		Entry[157] = new Element(
		157, "assets/thumb/oelfilterkurz.jpg",
		150, 112,
		"3625361000", "Ölfilter kurz einzeln",
		"für alle BETA RR4T Modelle", "",
		"6.86", "0",
		"1", 1,
		"Stück", "6",
		"", "pd-1355663392.htm",
		"", 1,
		"C12", "0",
		 0)
	
		Entry[158] = new Element(
		158, "assets/thumb/020380050000_deckelluftfilter.jpg",
		150, 100,
		"020380050000", "Luftfilterkastenabdeckung",
		"Gegen Eindringen von Wasser und Schmutz", "",
		"20.83", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12",
		"", "pd1217673013.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22", "0",
		 0)
	
		Entry[159] = new Element(
		159, "assets/thumb/unterlegscheibe.jpg",
		150, 112,
		"016430200000", "Befestigungseinsätze für Tankspoiler",
		"Serie ab 2009", "",
		"2.7", "0",
		"1", 1,
		"Stück", "9",
		"", "pd757909605.htm",
		"", 1,
		"C15", "0",
		 0)
	
		Entry[160] = new Element(
		160, "assets/thumb/3625469800_stopfen_estart.jpg",
		150, 100,
		"3625469800", "Verschlußstopfen E-Start",
		"nach Ausbau des E-Starters", "",
		"1.99", "0",
		"1", 1,
		"Stück", "5",
		"", "pd1608910067.htm",
		"", 1,
		"C11", "0",
		 0)
	
		Entry[161] = new Element(
		161, "assets/thumb/zuendkerze-rr4t.jpg",
		150, 112,
		"DCPR8E", "Zündkerze NGK DCPR8E",
		"für BETA RR4T 2005-2009", "",
		"7.15", "0",
		"1", 1,
		"Stück", "6",
		"", "pd1860769446.htm",
		"", 1,
		"C12", "0",
		 0)
	
		Entry[162] = new Element(
		162, "assets/thumb/inspektion_rr4T.jpg",
		150, 200,
		"INSPRR4T", "Inspektionspaket für RR4T",
		"inkl. Ölfilter, Dichtungen, Öl", "",
		"49.95", "0",
		"1", 1,
		"Stück", "6",
		"", "pd1170848184.htm",
		"", 1,
		"C12", "0",
		 0)
	
		Entry[163] = new Element(
		163, "assets/thumb/bremsbel669si.jpg",
		150, 112,
		"MCB669SI", "Bremsbeläge Lucas RR4T (vorne)",
		"Sintermetall", "",
		"30.95", "0",
		"1", 1,
		"Stück", "7",
		"", "pd-1924865648.htm",
		"", 1,
		"C13", "0",
		 0)
	
		Entry[164] = new Element(
		164, "assets/thumb/bremsbel739si.jpg",
		150, 112,
		"MCB739SI", "Bremsbeläge Lucas RR4T (hinten)",
		"Sintermetall", "",
		"30.05", "0",
		"1", 1,
		"Stück", "7",
		"", "pd-530830062.htm",
		"", 1,
		"C13", "0",
		 0)
	
		Entry[165] = new Element(
		165, "assets/thumb/ventildeckeldichtung.jpg",
		150, 112,
		"3625183000", "Ventildeckeldichtung",
		"für BETA RR4T", "",
		"2.31", "0",
		"1", 1,
		"Stück", "6",
		"", "pd-735154327.htm",
		"", 1,
		"C12", "0",
		 0)
	
		Entry[166] = new Element(
		166, "assets/thumb/kupplungshebelkurz.jpg",
		150, 112,
		"KUPPLKURZ", "Kupplungshebel Sport kurz",
		"für RR4T 2005-2011", "",
		"15.95", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13",
		"", "pd49719983.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23", "0",
		 0)
	
		Entry[167] = new Element(
		167, "assets/thumb/bremshebelkurz.jpg",
		150, 112,
		"BREMSKURZ", "Bremshebel Sport kurz",
		"für RR4T ab 2005", "",
		"12.95", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13",
		"", "pd1212770104.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23", "0",
		 0)
	
		Entry[168] = new Element(
		168, "assets/thumb/schieblehre12.jpg",
		150, 112,
		"LEHRE12", "Ventileinstelllehre",
		"0,12 mm", "",
		"2.9", "0",
		"1", 1,
		"Stück", "6",
		"", "pd-1237833014.htm",
		"", 1,
		"C12", "0",
		 0)
	
		Entry[169] = new Element(
		169, "assets/thumb/Gabelfeder_marzocchi.jpg",
		150, 113,
		"GABEL5.0", "Härtere Gabelfedern für RR 4T",
		"", "",
		"89", "0",
		"1", 1,
		"Stück", "7",
		"", "pd-1820024375.htm",
		"", 1,
		"C13", "0",
		 0)
	
		Entry[170] = new Element(
		170, "assets/thumb/feder.jpg",
		150, 200,
		"FEDER-K5.8", "Stoßdämpferfeder K5.2, K5.6, K5.8, NEU: K6.0",
		"Ersatz für die Serienfeder", "",
		"75.45", "0",
		"1", 1,
		"Stück", "7",
		"Federhärte;K5.8@", "pd-1596772186.htm",
		"", 1,
		"C13", "0",
		 0)
	
		Entry[171] = new Element(
		171, "assets/thumb/entlueftung_marz.jpg",
		150, 112,
		"GABELENTL", "Gabelentlüftung für Marzocchi Shiver Gabel",
		"Kit mit zwei Ventilen, rot eloxiert", "",
		"32.73", "0",
		"1", 1,
		"Stück", "7",
		"", "pd365769631.htm",
		"", 1,
		"C13", "0",
		 0)
	
		Entry[172] = new Element(
		172, "assets/thumb/2011223000_racing_heck08-09.jpg",
		150, 100,
		"2011223000", "Sportheck RR4T 2008-2009",
		"mit LED Rücklicht", "",
		"35.7", "0",
		"1", 1,
		"Stück", "5",
		"", "pd555455996.htm",
		"", 1,
		"C11", "0",
		 0)
	
		Entry[173] = new Element(
		173, "assets/thumb/2011804000_kabelbaum_ohne_estart05-07.jpg",
		150, 100,
		"2011804000", "Kabelbaum, vereinfacht, ohne E-Start 2005-2007",
		"Version ohne E-Start", "",
		"15.83", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-1114973046.htm",
		"", 1,
		"C11", "0",
		 0)
	
		Entry[174] = new Element(
		174, "assets/thumb/2011807000_kabelbaum_estart08-09.jpg",
		150, 100,
		"2011807000", "Kabelbaum, vereinfacht, mit E-Start 2008-2009",
		"Version mit E-Start", "",
		"60.84", "0",
		"1", 1,
		"Stück", "5",
		"", "pd750386632.htm",
		"", 1,
		"C11", "0",
		 0)
	
		Entry[175] = new Element(
		175, "assets/thumb/2011808000_kabelbaum_ohne_estart08-09.jpg",
		150, 100,
		"2011808000", "Kabelbaum, vereinfacht, ohne E-Start 2008-2009",
		"Version ohne E-Start", "",
		"15.83", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-1288619722.htm",
		"", 1,
		"C11", "0",
		 0)
	
		Entry[176] = new Element(
		176, "assets/thumb/2532537000_fussrasten.jpg",
		150, 100,
		"2532537000", "Fußrasten breit",
		"Rallyefußrasten", "",
		"108.09", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13,5,11,55",
		"", "pd-1676541227.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23,C11,C21,M6", "0",
		 0)
	
		Entry[177] = new Element(
		177, "assets/thumb/2012902100_supermoto08_reifen.jpg",
		150, 100,
		"2012902100", "Supermoto Radsatz RR4T, bereift, 2008",
		"mit Reifen und Einbaukit", "",
		"1190", "0",
		"1", 1,
		"Stück", "5",
		"", "pd999151813.htm",
		"", 1,
		"C11", "0",
		 0)
	
		Entry[178] = new Element(
		178, "assets/thumb/2012902200_supermoto09_reifen.jpg",
		150, 100,
		"2012902200", "Supermoto Radsatz RR4T, bereift, 2009",
		"mit Reifen und Einbaukit", "",
		"1356.6", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-888735840.htm",
		"", 1,
		"C11", "0",
		 0)
	
		Entry[179] = new Element(
		179, "assets/thumb/2012903000_supermoto05-07_ohne_reifen.jpg",
		150, 100,
		"2012903000", "Supermoto Radsatz RR4T, unbereift, 2005-2007",
		"ohne Reifen, mit Einbaukit", "",
		"988.89", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-562895305.htm",
		"", 1,
		"C11", "0",
		 0)
	
		Entry[180] = new Element(
		180, "assets/thumb/2012903100_supermoto08_ohne_reifen.jpg",
		150, 100,
		"2012903100", "Supermoto Radsatz RR4T, unbereift, 2008",
		"ohne Reifen, mit Einbaukit", "",
		"988.89", "0",
		"1", 1,
		"Stück", "5",
		"", "pd456708026.htm",
		"", 1,
		"C11", "0",
		 0)
	
		Entry[181] = new Element(
		181, "assets/thumb/2012903200_supermoto09_ohne_reifen.jpg",
		150, 100,
		"2012903200", "Supermoto Radsatz RR4T, unbereift, 2009",
		"ohne Reifen, mit Einbaukit", "",
		"989.69", "0",
		"1", 1,
		"Stück", "5",
		"", "pd284096793.htm",
		"", 1,
		"C11", "0",
		 0)
	
		Entry[182] = new Element(
		182, "assets/thumb/2910500053_tankdeckel.jpg",
		150, 100,
		"2910500053", "Tankdeckel Alu",
		"rot eloxiert", "",
		"44.03", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13,5,11,55,5,11",
		"", "pd631770116.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23,C11,C21,M6,C11,C21", "0",
		 0)
	
		Entry[183] = new Element(
		183, "assets/thumb/020450158051_handprotektoren_weiss.jpg",
		150, 100,
		"020450158051", "Handprotektoren Vertigo",
		"Alubefestigung, Farbe: Weiss", "",
		"47.6", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13,5,11,55,5,11,5,11",
		"", "pd28008914.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23,C11,C21,M6,C11,C21,C11,C21", "0",
		 0)
	
		Entry[184] = new Element(
		184, "assets/thumb/020450158097_handprotektoren_rot.jpg",
		150, 100,
		"020450158097", "Handprotektoren Vertigo",
		"Alubefestigung, Farbe: Rot", "",
		"47.6", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13,5,11,55,5,11,5,11,5,11",
		"", "pd1092756560.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23,C11,C21,M6,C11,C21,C11,C21,C11,C21", "0",
		 0)
	
		Entry[185] = new Element(
		185, "assets/thumb/2012818000_schwarze_plastics.jpg",
		150, 113,
		"2012818000", "Plastiksatz in Schwarz komplett für RR4T 2008-2009",
		"inkl. Dekorsatz", "",
		"208.61", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-1832590988.htm",
		"", 1,
		"C11", "0",
		 0)
	
		Entry[186] = new Element(
		186, "assets/thumb/016430138000_aufkleber_gara09.jpg",
		150, 100,
		"016430138000", "Aufkleber BETA Factory Dekorsatz 2008-2009",
		"Original Dekorsatz der Racing Edition Modelle 2009", "",
		"69.41", "0",
		"1", 1,
		"Stück", "5",
		"", "pd1140691934.htm",
		"", 1,
		"C11", "0",
		 0)
	
		Entry[187] = new Element(
		187, "assets/thumb/1331479000_aufkleber_gara08.jpg",
		150, 100,
		"1331479000", "Aufkleber BETA Dekorsatz &quot;Gara&quot; 2005-2008",
		"Racing Dekorsatz", "",
		"69.41", "0",
		"1", 1,
		"Stück", "5",
		"", "pd-801493270.htm",
		"", 1,
		"C11", "0",
		 0)
	
		Entry[188] = new Element(
		188, "assets/thumb/2012803000_handprotektoren.jpg",
		150, 100,
		"2012803000", "Handprotektoren BETA",
		"für RR4T 2005-2009", "",
		"34.71", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13,5,11,55,5,11,5,11,5,11,5,11",
		"", "pd497906070.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23,C11,C21,M6,C11,C21,C11,C21,C11,C21,C11,C21", "0",
		 0)
	
		Entry[189] = new Element(
		189, "assets/thumb/1644565000_lufteinlass.jpg",
		150, 100,
		"1644565000", "Entlüftungsgitter &quot;Racing&quot;",
		"für RR4T 2008-2009", "",
		"30.94", "0",
		"1", 1,
		"Stück", "5",
		"", "pd849997633.htm",
		"", 1,
		"C11", "0",
		 0)
	
		Entry[190] = new Element(
		190, "assets/thumb/schlossstopfen_klein.jpg",
		150, 113,
		"GUMMISCHLOSS", "Abdeckung Lenkerschloss",
		"Gummiabdeckung gegen Schmutz", "",
		"1.25", "0",
		"1", 1,
		"Stück", "9",
		"", "pd1221296489.htm",
		"", 1,
		"C15", "0",
		 0)
	
		Entry[191] = new Element(
		191, "assets/thumb/hubstange.jpg",
		150, 483,
		"HUBSTANGELANG", "Hubstange lang für Stoßdämpfer",
		"+ 0,5 cm", "",
		"71.4", "0",
		"1", 1,
		"Stück", "9",
		"", "pd483614532.htm",
		"", 1,
		"C15", "0",
		 0)
	
		Entry[192] = new Element(
		192, "assets/thumb/kettenklotz.jpg",
		150, 122,
		"KETTENKLOTZ-ROT", "Kettenklotz Polystar",
		"aus dem Vollen: In Rot oder Weiss", "",
		"68.43", "0",
		"1", 1,
		"Stück", "9",
		"Farbe;Rot@", "pd963277327.htm",
		"", 1,
		"C15", "0",
		 0)
	
		Entry[193] = new Element(
		193, "assets/thumb/knzschutz_boano1.jpg",
		150, 145,
		"KNZS", "Kupplungsnehmerzylinderschutz BOANO",
		"Schutz des Nehmerzylinders", "",
		"44.63", "0",
		"1", 1,
		"Stück", "9",
		"", "pd-605296878.htm",
		"", 1,
		"C15", "0",
		 0)
	
		Entry[194] = new Element(
		194, "assets/thumb/kotfluegelhalter_carbon.jpg",
		150, 56,
		"KOTFLKARBON", "Kotflügelstrebe aus Karbon",
		"Edeles Teil als Kotflügelhalter", "",
		"69.32", "0",
		"1", 1,
		"Stück", "9",
		"", "pd1027265435.htm",
		"", 1,
		"C15", "0",
		 0)
	
		Entry[195] = new Element(
		195, "assets/thumb/lenkerklemm.jpg",
		150, 120,
		"LENKERKLEMMROT", "Lenkerklemmung Rot eloxiert",
		"Super stabil und tolle Optik", "",
		"83.3", "0",
		"1", 1,
		"Stück", "9",
		"", "pd1214319491.htm",
		"", 1,
		"C15", "0",
		 0)
	
		Entry[196] = new Element(
		196, "assets/thumb/leovince_1.jpg",
		150, 50,
		"LEOVINCERR4T", "Auspuffanlage LeoVince Titan",
		"Für RR400/450/525", "",
		"942.48", "0",
		"1", 1,
		"Stück", "9",
		"", "pd1142421458.htm",
		"", 1,
		"C15", "0",
		 0)
	
		Entry[197] = new Element(
		197, "assets/thumb/lufi_carbon1.jpg",
		150, 87,
		"LUFIDECKELBOANO", "Luftfilterdeckel Karbon",
		"Erstazdeckel für seitlichen Zugang zum Luftfilter", "",
		"95.2", "0",
		"1", 1,
		"Stück", "9",
		"", "pd1538976517.htm",
		"", 1,
		"C15", "0",
		 0)
	
		Entry[198] = new Element(
		198, "assets/thumb/lufi_carbon3.jpg",
		150, 112,
		"LUFIKITBOANO", "Luftfilter Kit seitlich aus Karbon",
		"Umbaukit für seitlichen Zugang zum Luftfilter", "",
		"113.05", "0",
		"1", 1,
		"Stück", "9",
		"", "pd1178884726.htm",
		"", 1,
		"C15", "0",
		 0)
	
		Entry[199] = new Element(
		199, "assets/thumb/oelstopfen.jpg",
		150, 112,
		"OELSTOPFEN", "Öleinfüllstopfen Aluminium RR4T",
		"Rot eloxiert", "",
		"17.85", "0",
		"1", 1,
		"Stück", "9",
		"", "pd1171449846.htm",
		"", 1,
		"C15", "0",
		 0)
	
		Entry[200] = new Element(
		200, "assets/thumb/ritzelschutz_carbon.jpg",
		150, 112,
		"RITZELKARBON", "Ritzelschutz Karbon",
		"Edeles Teil als Ritzschutz", "",
		"52.54", "0",
		"1", 1,
		"Stück", "9",
		"", "pd685170405.htm",
		"", 1,
		"C15", "0",
		 0)
	
		Entry[201] = new Element(
		201, "assets/thumb/Choke_Set_klein.jpg",
		150, 89,
		"RRCHOKE", "Choke-Verlängerung",
		"Umbaukit für RR 250, 400, 450, 525", "",
		"79.95", "0",
		"1", 1,
		"Stück", "9",
		"", "pd-1306343059.htm",
		"", 1,
		"C15", "0",
		 0)
	
		Entry[202] = new Element(
		202, "assets/thumb/kuehlerschutz.jpg",
		150, 112,
		"RRKUEHLER", "Kühlerschutz Alu",
		"Silber", "",
		"95.2", "0",
		"1", 1,
		"Stück", "9",
		"", "pd1152179431.htm",
		"", 1,
		"C15", "0",
		 0)
	
		Entry[203] = new Element(
		203, "assets/thumb/schutzfaenger_carbon.jpg",
		150, 222,
		"SCHMUTZPAD-1", "Schmutzfänger für&rsquo;s Hinterrad aus Karbon oder Karbon/Kevlar",
		"zum Schutz des Federbein", "",
		"52.54", "0",
		"1", 1,
		"Stück", "9",
		"Version;Karbon@", "pd-1791322413.htm",
		"", 1,
		"C15", "0",
		 0)
	
		Entry[204] = new Element(
		204, "assets/thumb/tank12l.jpg",
		150, 113,
		"TANK12-S", "Tank 12 Liter",
		"in Schwarz oder Weiss (Transparent) für alle RR4T Modelle -2009", "",
		"380.8", "0",
		"1", 1,
		"Stück", "9",
		"Farbe;Schwarz@", "pd95024480.htm",
		"", 1,
		"C15", "0",
		 0)
	
		Entry[205] = new Element(
		205, "assets/thumb/oelthermometerRR4T.jpg",
		150, 77,
		"THERMORR-2007", "Ölthermometer",
		"für BETA RR-4T Modelle", "",
		"54.95", "0",
		"1", 1,
		"Stück", "9",
		"Version;ab Modell 2007@", "pd793615320.htm",
		"", 1,
		"C15", "0",
		 0)
	
		Entry[206] = new Element(
		206, "assets/thumb/lenkererhoehungRR4T.jpg",
		150, 112,
		"040-0263", "Lenkererhöhung Touratech RR4T",
		"30mm", "",
		"42", "0",
		"1", 1,
		"Stück", "9",
		"", "pd1169891961.htm",
		"", 1,
		"C15", "0",
		 0)
	
		Entry[207] = new Element(
		207, "assets/thumb/350ccm.jpg",
		150, 98,
		"3625427800", "Hubraumerweiterung auf 350ccm",
		"Für BETA RR 250 4T", "",
		"595", "0",
		"1", 1,
		"Stück", "9",
		"", "pd-1481877237.htm",
		"", 1,
		"C15", "0",
		 0)
	
		Entry[208] = new Element(
		208, "assets/thumb/blende_carbon_rechts.jpg",
		150, 112,
		"BLENDEBOANO", "Seitenblende rechts aus Karbon",
		"Edeler Ersatz für die rechte Kunststoffblende", "",
		"70.21", "0",
		"1", 1,
		"Stück", "9",
		"", "pd-803426592.htm",
		"", 1,
		"C15", "0",
		 0)
	
		Entry[209] = new Element(
		209, "assets/thumb/bremfldeckel.jpg",
		150, 112,
		"BREMSFLDECKEL", "Bremsflüssigkeitsbehälterdeckel Alu RR4T",
		"Rot eloxiert", "",
		"22.61", "0",
		"1", 1,
		"Stück", "9",
		"", "pd157099796.htm",
		"", 1,
		"C15", "0",
		 0)
	
		Entry[210] = new Element(
		210, "assets/thumb/gabelbruecke.jpg",
		150, 162,
		"GABROT", "Gabelbrücke rot eloxiert",
		"", "",
		"454.58", "0",
		"1", 1,
		"Stück", "9",
		"", "pd-104257196.htm",
		"", 1,
		"C15", "0",
		 0)
	
		Entry[211] = new Element(
		211, "assets/thumb/gemisch.jpg",
		150, 74,
		"GEMISCHSCHR", "Gemischeinstellschraube RR 4T Keihin",
		"", "",
		"29.65", "0",
		"1", 1,
		"Stück", "9",
		"", "pd1221289597.htm",
		"", 1,
		"C15", "0",
		 0)
	
		Entry[212] = new Element(
		212, "assets/thumb/ritzel.jpg",
		150, 160,
		"RITZELRR-14", "Ritzel RR4T",
		"12, 13, 14, 15 Zähne", "",
		"11.85", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13,5,11,55,5,11,5,11,5,11,5,11,8,14",
		"Zähne;14@", "pd-1125353459.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23,C11,C21,M6,C11,C21,C11,C21,C11,C21,C11,C21,C14,C24", "0",
		 0)
	
		Entry[213] = new Element(
		213, "assets/thumb/oelfilterRR4TMY10.jpg",
		150, 112,
		"006080700000", "Ölfilter für RR4T ab 2010",
		"Motorölfilter für BETA RR 400/450/520 ab 2010", "",
		"10.23", "0",
		"1", 1,
		"Stück", "12",
		"", "pd1269535980.htm",
		"", 1,
		"C22", "0",
		 0)
	
		Entry[214] = new Element(
		214, "assets/thumb/lkar8a-9.jpg",
		150, 150,
		"LKAR8A-9", "Zündkerze NGK LKAR8A-9",
		"für BETA RR4T ab 2010", "",
		"14", "0",
		"1", 1,
		"Stück", "12",
		"", "pd1269685109.htm",
		"", 1,
		"C22", "0",
		 0)
	
		Entry[215] = new Element(
		215, "assets/thumb/getriebeoel.jpg",
		150, 200,
		"82.608020", "Motorex Getriebeöl Racing Pro 10W-40",
		"Mineralisches Getriebeöl, 4 Liter Kanister", "",
		"70.95", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13,5,11,55,5,11,5,11,5,11,5,11,8,14,12,59",
		"", "pd278254722.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23,C11,C21,M6,C11,C21,C11,C21,C11,C21,C11,C21,C14,C24,C22,N2", "0",
		 0)
	
		Entry[216] = new Element(
		216, "assets/thumb/motorex_10_cross_power-4l.jpg",
		150, 230,
		"82.403010", "Motorex Cross Power 4T 10W-50",
		"Synthetisches Hochliestungsmotoröl", "",
		"19.95", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13,5,11,55,5,11,5,11,5,11,5,11,8,14,12,59,12,58,6",
		"Grösse;1 Liter@", "pd1279961908.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23,C11,C21,M6,C11,C21,C11,C21,C11,C21,C11,C21,C14,C24,C22,N2,C22,N1,C12", "0",
		 0)
	
		Entry[217] = new Element(
		217, "assets/thumb/TankMY10_1.jpg",
		150, 127,
		"TANKMY10-S", "Tank 15 Liter",
		"für BETA RR4T 350/400/450/498/520 ab Modelljahr 2010", "",
		"380.8", "0",
		"1", 1,
		"Stück", "15",
		"Farbe;Schwarz@", "pd-427703911.htm",
		"", 1,
		"C25", "0",
		 0)
	
		Entry[218] = new Element(
		218, "assets/thumb/piastraAlp125_01750018_000_medium.jpg",
		150, 100,
		"017450018000", "Aluminium-Motorschutz für Alp 125",
		"", "",
		"87.47", "0",
		"1", 1,
		"Stück", "18",
		"", "pd1235484780.htm",
		"", 1,
		"D11", "0",
		 0)
	
		Entry[219] = new Element(
		219, "assets/thumb/piastraAlp200_01750028_000_medium.jpg",
		150, 100,
		"017450028000", "Aluminium-Motorschutz für Alp 200",
		"", "",
		"87.47", "0",
		"1", 1,
		"Stück", "18",
		"", "pd584387706.htm",
		"", 1,
		"D11", "0",
		 0)
	
		Entry[220] = new Element(
		220, "assets/thumb/baulettoAlp_1115920_medium.jpg",
		150, 100,
		"1115920000", "Topbox/Topcase",
		"für Alp 4.0/125/200 und Urban 125/200", "",
		"90.3", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13,5,11,55,5,11,5,11,5,11,5,11,8,14,12,59,12,58,6,18,24,38",
		"", "pd1645070374.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23,C11,C21,M6,C11,C21,C11,C21,C11,C21,C11,C21,C14,C24,C22,N2,C22,N1,C12,D11,D21,F1", "0",
		 0)
	
		Entry[221] = new Element(
		221, "assets/thumb/tank_alp200.jpg",
		150, 113,
		"2002531000", "Zusatztank für Alp 200",
		"für Alp 200 bis Bj. 07", "",
		"100.74", "0",
		"1", 1,
		"Stück", "18",
		"", "pd-1594601561.htm",
		"", 1,
		"D11", "0",
		 0)
	
		Entry[222] = new Element(
		222, "assets/thumb/20_11226_000_medium.jpg",
		150, 113,
		"2011227000", "Gepäckträger Alp125/200",
		"", "",
		"65.5", "0",
		"1", 1,
		"Stück", "18",
		"", "pd-1367249096.htm",
		"", 1,
		"D11", "0",
		 0)
	
		Entry[223] = new Element(
		223, "assets/thumb/borssatucano2011229_medium.jpg",
		150, 100,
		"2011229000", "Original Beta Seitentasche für Alp 125/200",
		"ab Modell 2008", "",
		"159.91", "0",
		"1", 1,
		"Stück", "18",
		"", "pd360563396.htm",
		"", 1,
		"D11", "0",
		 0)
	
		Entry[224] = new Element(
		224, "assets/thumb/2012804000_handprotektoren.jpg",
		150, 100,
		"2012804000", "BETA Handprotektoren",
		"Für Alp/M4/Urban", "",
		"30.74", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13,5,11,55,5,11,5,11,5,11,5,11,8,14,12,59,12,58,6,18,24,38,18,24,38,32",
		"", "pd-1114116492.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23,C11,C21,M6,C11,C21,C11,C21,C11,C21,C11,C21,C14,C24,C22,N2,C22,N1,C12,D11,D21,F1,D11,D21,F1,E1", "0",
		 0)
	
		Entry[225] = new Element(
		225, "assets/thumb/ritzel_alp_200_4.0.jpg",
		150, 96,
		"2564062000", "BETA Ritzel für Alp 200 13 Zähne",
		"13er Ritzel", "",
		"17.85", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13,5,11,55,5,11,5,11,5,11,5,11,8,14,12,59,12,58,6,18,24,38,18,24,38,32,18,21",
		"", "pd1169828757.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23,C11,C21,M6,C11,C21,C11,C21,C11,C21,C11,C21,C14,C24,C22,N2,C22,N1,C12,D11,D21,F1,D11,D21,F1,E1,D11,D14", "0",
		 0)
	
		Entry[226] = new Element(
		226, "assets/thumb/ritzel_alp_200_4.0.jpg",
		150, 96,
		"2564066000", "BETA Ritzel für Alp 200 12 Zähne",
		"12er Ritzel", "",
		"17.85", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13,5,11,55,5,11,5,11,5,11,5,11,8,14,12,59,12,58,6,18,24,38,18,24,38,32,18,21,18,21",
		"", "pd-455364661.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23,C11,C21,M6,C11,C21,C11,C21,C11,C21,C11,C21,C14,C24,C22,N2,C22,N1,C12,D11,D21,F1,D11,D21,F1,E1,D11,D14,D11,D14", "0",
		 0)
	
		Entry[227] = new Element(
		227, "assets/thumb/alp40ritzel.jpg",
		150, 96,
		"2564078000", "BETA Ritzel für Alp 4.0 14 Zähne",
		"14er Ritzel", "",
		"22.61", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13,5,11,55,5,11,5,11,5,11,5,11,8,14,12,59,12,58,6,18,24,38,18,24,38,32,18,21,18,21,24,27",
		"", "pd566496881.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23,C11,C21,M6,C11,C21,C11,C21,C11,C21,C11,C21,C14,C24,C22,N2,C22,N1,C12,D11,D21,F1,D11,D21,F1,E1,D11,D14,D11,D14,D21,D24", "0",
		 0)
	
		Entry[228] = new Element(
		228, "assets/thumb/borssatucano2011229_medium.jpg",
		150, 100,
		"018450018000", "Seitentasche mit Seitenträger für Alp 4.0",
		"Original BETA Zubehör", "",
		"160.65", "0",
		"1", 1,
		"Stück", "24",
		"", "pd1251892915.htm",
		"", 1,
		"D21", "0",
		 0)
	
		Entry[229] = new Element(
		229, "assets/thumb/auspuff_alu.jpg",
		150, 112,
		"1647350000", "BETA Racing Auspuffanlage Aluminium",
		"Für BETA M4/Motard/Alp 4.0 ohne ABE", "",
		"476", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13,5,11,55,5,11,5,11,5,11,5,11,8,14,12,59,12,58,6,18,24,38,18,24,38,32,18,21,18,21,24,27,24,32",
		"", "pd1199877905.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23,C11,C21,M6,C11,C21,C11,C21,C11,C21,C11,C21,C14,C24,C22,N2,C22,N1,C12,D11,D21,F1,D11,D21,F1,E1,D11,D14,D11,D14,D21,D24,D21,E1", "0",
		 0)
	
		Entry[230] = new Element(
		230, "assets/thumb/kickstart.jpg",
		150, 112,
		"2002052000", "BETA Kickstarter-Kit Alp 4.0/Motard 4.0/M4",
		"auch für Suzuki DR 350 SE", "",
		"196.35", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13,5,11,55,5,11,5,11,5,11,5,11,8,14,12,59,12,58,6,18,24,38,18,24,38,32,18,21,18,21,24,27,24,32,24,32",
		"", "pd1169887725.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23,C11,C21,M6,C11,C21,C11,C21,C11,C21,C11,C21,C14,C24,C22,N2,C22,N1,C12,D11,D21,F1,D11,D21,F1,E1,D11,D14,D11,D14,D21,D24,D21,E1,D21,E1", "0",
		 0)
	
		Entry[231] = new Element(
		231, "assets/thumb/2002520000_distanzhuelsen.jpg",
		150, 100,
		"2002520000", "Distanzhülsen für Kotflügel",
		"für Alp 4.0", "",
		"5.12", "0",
		"1", 1,
		"Stück", "24",
		"", "pd-800343978.htm",
		"", 1,
		"D21", "0",
		 0)
	
		Entry[232] = new Element(
		232, "assets/thumb/gepaecktraeger_alp_motard.jpg",
		150, 65,
		"2008236000", "BETA Gepäckträger Alp 4.0/Motard 4.0",
		"Gepäckträger", "",
		"74.97", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13,5,11,55,5,11,5,11,5,11,5,11,8,14,12,59,12,58,6,18,24,38,18,24,38,32,18,21,18,21,24,27,24,32,24,32,24,32",
		"", "pd-459355513.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23,C11,C21,M6,C11,C21,C11,C21,C11,C21,C11,C21,C14,C24,C22,N2,C22,N1,C12,D11,D21,F1,D11,D21,F1,E1,D11,D14,D11,D14,D21,D24,D21,E1,D21,E1,D21,E1", "0",
		 0)
	
		Entry[233] = new Element(
		233, "assets/thumb/dichtringe.jpg",
		150, 112,
		"3510460000", "Dichtungen für Ölablassschrauben Alp 4.0/M4/Motard 4.0",
		"Set für Motor und Rahmen", "",
		"1.98", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13,5,11,55,5,11,5,11,5,11,5,11,8,14,12,59,12,58,6,18,24,38,18,24,38,32,18,21,18,21,24,27,24,32,24,32,24,32,25,33",
		"", "pd1182943817.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23,C11,C21,M6,C11,C21,C11,C21,C11,C21,C11,C21,C14,C24,C22,N2,C22,N1,C12,D11,D21,F1,D11,D21,F1,E1,D11,D14,D11,D14,D21,D24,D21,E1,D21,E1,D21,E1,D22,E2", "0",
		 0)
	
		Entry[234] = new Element(
		234, "assets/thumb/oelfilter_original.jpg",
		150, 112,
		"3532170000", "Ölfilter Original BETA (Suzuki)",
		"für Alp 4.0/Motard 4.0/M4", "",
		"10.51", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13,5,11,55,5,11,5,11,5,11,5,11,8,14,12,59,12,58,6,18,24,38,18,24,38,32,18,21,18,21,24,27,24,32,24,32,24,32,25,33,25,33",
		"", "pd1303396945.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23,C11,C21,M6,C11,C21,C11,C21,C11,C21,C11,C21,C14,C24,C22,N2,C22,N1,C12,D11,D21,F1,D11,D21,F1,E1,D11,D14,D11,D14,D21,D24,D21,E1,D21,E1,D21,E1,D22,E2,D22,E2", "0",
		 0)
	
		Entry[235] = new Element(
		235, "assets/thumb/CR9EK.jpg",
		150, 88,
		"CR9EK", "Zündkerze für BETA Alp 4.0/Motard 4.0/M4",
		"von NGK", "",
		"9.4", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13,5,11,55,5,11,5,11,5,11,5,11,8,14,12,59,12,58,6,18,24,38,18,24,38,32,18,21,18,21,24,27,24,32,24,32,24,32,25,33,25,33,25,33",
		"", "pd1529812199.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23,C11,C21,M6,C11,C21,C11,C21,C11,C21,C11,C21,C14,C24,C22,N2,C22,N1,C12,D11,D21,F1,D11,D21,F1,E1,D11,D14,D11,D14,D21,D24,D21,E1,D21,E1,D21,E1,D22,E2,D22,E2,D22,E2", "0",
		 0)
	
		Entry[236] = new Element(
		236, "assets/thumb/luftfilteralp4.0.jpg",
		150, 112,
		"1525094800", "Luftfilter",
		"für Alp 4.0/M4/Motard 4.0", "",
		"22.47", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13,5,11,55,5,11,5,11,5,11,5,11,8,14,12,59,12,58,6,18,24,38,18,24,38,32,18,21,18,21,24,27,24,32,24,32,24,32,25,33,25,33,25,33,25,33",
		"Version;ab Modell 2007@", "pd1665998972.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23,C11,C21,M6,C11,C21,C11,C21,C11,C21,C11,C21,C14,C24,C22,N2,C22,N1,C12,D11,D21,F1,D11,D21,F1,E1,D11,D14,D11,D14,D21,D24,D21,E1,D21,E1,D21,E1,D22,E2,D22,E2,D22,E2,D22,E2", "0",
		 0)
	
		Entry[237] = new Element(
		237, "assets/thumb/oelfilterAlp40.jpg",
		150, 112,
		"X319", "Ölfilter für BETA Alp 4.0, M4 und Motard 4.0",
		"Champion X319", "",
		"4.95", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13,5,11,55,5,11,5,11,5,11,5,11,8,14,12,59,12,58,6,18,24,38,18,24,38,32,18,21,18,21,24,27,24,32,24,32,24,32,25,33,25,33,25,33,25,33,25,33",
		"", "pd-1427528212.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23,C11,C21,M6,C11,C21,C11,C21,C11,C21,C11,C21,C14,C24,C22,N2,C22,N1,C12,D11,D21,F1,D11,D21,F1,E1,D11,D14,D11,D14,D21,D24,D21,E1,D21,E1,D21,E1,D22,E2,D22,E2,D22,E2,D22,E2,D22,E2", "0",
		 0)
	
		Entry[238] = new Element(
		238, "assets/thumb/bremsbelaege_alp.jpg",
		150, 112,
		"2525244000", "Original Bremsbeläge",
		"Vorne und hinten", "",
		"38.31", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13,5,11,55,5,11,5,11,5,11,5,11,8,14,12,59,12,58,6,18,24,38,18,24,38,32,18,21,18,21,24,27,24,32,24,32,24,32,25,33,25,33,25,33,25,33,25,33,26,34",
		"Version;Alp 4.0 vorne@", "pd1931211819.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23,C11,C21,M6,C11,C21,C11,C21,C11,C21,C11,C21,C14,C24,C22,N2,C22,N1,C12,D11,D21,F1,D11,D21,F1,E1,D11,D14,D11,D14,D21,D24,D21,E1,D21,E1,D21,E1,D22,E2,D22,E2,D22,E2,D22,E2,D22,E2,D23,E3", "0",
		 0)
	
		Entry[239] = new Element(
		239, "assets/thumb/gabelfedern_alp4.0.jpg",
		150, 200,
		"600-150", "Wilbers Gabelfedern für Alp 4.0",
		"progressiv", "",
		"99", "0",
		"1", 1,
		"Stück", "26",
		"", "pd-1980023045.htm",
		"", 1,
		"D23", "0",
		 0)
	
		Entry[240] = new Element(
		240, "assets/thumb/gabeloel_wilbers.jpg",
		150, 112,
		"610-005-00", "Wilbers Gabelöl 5W",
		"1 Liter", "",
		"14.9", "0",
		"1", 1,
		"Stück", "26",
		"", "pd-1155584841.htm",
		"", 1,
		"D23", "0",
		 0)
	
		Entry[241] = new Element(
		241, "assets/thumb/federbein_wilbers_alp4.0.jpg",
		150, 226,
		"630-884-00", "Wilbers Federbein für Alp 4.0",
		"Typ 630", "",
		"479", "0",
		"1", 1,
		"Stück", "26",
		"", "pd1216818900.htm",
		"", 1,
		"D23", "0",
		 0)
	
		Entry[242] = new Element(
		242, "assets/thumb/tiefer_alp4.0.jpg",
		150, 200,
		"630-884-T", "Tieferlegungssatz für BETA ALP 4.0 von Wilbers",
		"Sitzhöhe um 65mm tiefergelegt", "",
		"618", "0",
		"1", 1,
		"Stück", "26",
		"", "pd1295638856.htm",
		"", 1,
		"D23", "0",
		 0)
	
		Entry[243] = new Element(
		243, "assets/thumb/kettenradalpm4.jpg",
		150, 150,
		"170-345-48", "Alu Kettenrad für BETA Alp 4.0",
		"in verschiedenen Größen", "",
		"64.95", "0",
		"1", 1,
		"Stück", "27",
		"Zähne;48@", "pd1325932308.htm",
		"", 1,
		"D24", "0",
		 0)
	
		Entry[244] = new Element(
		244, "assets/thumb/kruemmer.jpg",
		150, 119,
		"KRUEMMERALP4.0", "Leistungskrümmer für Alp 4.0",
		"Edelstahl", "",
		"109", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13,5,11,55,5,11,5,11,5,11,5,11,8,14,12,59,12,58,6,18,24,38,18,24,38,32,18,21,18,21,24,27,24,32,24,32,24,32,25,33,25,33,25,33,25,33,25,33,26,34,28,36",
		"", "pd1295556423.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23,C11,C21,M6,C11,C21,C11,C21,C11,C21,C11,C21,C14,C24,C22,N2,C22,N1,C12,D11,D21,F1,D11,D21,F1,E1,D11,D14,D11,D14,D21,D24,D21,E1,D21,E1,D21,E1,D22,E2,D22,E2,D22,E2,D22,E2,D22,E2,D23,E3,D25,E5", "0",
		 0)
	
		Entry[245] = new Element(
		245, "assets/thumb/auspuff_sr_klein.jpg",
		150, 113,
		"SRKPL-E", "Auspuffanlage komplett für BETA Alp 4.0/M4/Motard 4.0",
		"Edelstahlkrümmer mit Edelstahl- oder Titan-Endtopf inkl. EG-ABE", "",
		"687", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13,5,11,55,5,11,5,11,5,11,5,11,8,14,12,59,12,58,6,18,24,38,18,24,38,32,18,21,18,21,24,27,24,32,24,32,24,32,25,33,25,33,25,33,25,33,25,33,26,34,28,36,28,36",
		"Version;Edelstahlkrümmer+Edelstahlendtopf@", "pd-1175401691.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23,C11,C21,M6,C11,C21,C11,C21,C11,C21,C11,C21,C14,C24,C22,N2,C22,N1,C12,D11,D21,F1,D11,D21,F1,E1,D11,D14,D11,D14,D21,D24,D21,E1,D21,E1,D21,E1,D22,E2,D22,E2,D22,E2,D22,E2,D22,E2,D23,E3,D25,E5,D25,E5", "0",
		 0)
	
		Entry[246] = new Element(
		246, "assets/thumb/TM36.jpg",
		150, 193,
		"TM36ALP4.0", "Mikuni Flachschiebervergaser TM36",
		"Einbaufähiges Vergaserkit für die Alp 4.0", "",
		"279", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13,5,11,55,5,11,5,11,5,11,5,11,8,14,12,59,12,58,6,18,24,38,18,24,38,32,18,21,18,21,24,27,24,32,24,32,24,32,25,33,25,33,25,33,25,33,25,33,26,34,28,36,28,36,28,36",
		"", "pd1280430111.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23,C11,C21,M6,C11,C21,C11,C21,C11,C21,C11,C21,C14,C24,C22,N2,C22,N1,C12,D11,D21,F1,D11,D21,F1,E1,D11,D14,D11,D14,D21,D24,D21,E1,D21,E1,D21,E1,D22,E2,D22,E2,D22,E2,D22,E2,D22,E2,D23,E3,D25,E5,D25,E5,D25,E5", "0",
		 0)
	
		Entry[247] = new Element(
		247, "assets/thumb/fussrasten_alp_klein.jpg",
		150, 102,
		"PPALP4.0", "Breite Fussrasten für Alp 4.0",
		"Bessere Kontrolle - mit einzigartigem Federgelenk", "",
		"159", "0",
		"1", 1,
		"Stück", "29",
		"", "pd1221224185.htm",
		"", 1,
		"D26", "0",
		 0)
	
		Entry[248] = new Element(
		248, "assets/thumb/motorschutz2.jpg",
		150, 112,
		"MSALP4", "Alu-Motorschutz für Alp 4.0",
		"Endlich erhältlich!", "",
		"179.95", "0",
		"1", 1,
		"Stück", "29",
		"", "pd-1458765918.htm",
		"", 1,
		"D26", "0",
		 0)
	
		Entry[249] = new Element(
		249, "assets/thumb/nost_vorne_klein.jpg",
		150, 150,
		"8200-S", "Hoher Vorderradkotflügel Acerbis",
		"in Weiss oder Schwarz", "",
		"19.95", "0",
		"1", 1,
		"Stück", "29",
		"Farbe;Schwarz@", "pd1197104914.htm",
		"", 1,
		"D26", "0",
		 0)
	
		Entry[250] = new Element(
		250, "assets/thumb/lampenmaske_klein.jpg",
		150, 113,
		"3026S", "Lampenmaske DHH Acerbis",
		"für Alp 4.0", "",
		"71.95", "0",
		"1", 1,
		"Stück", "29",
		"Farbe;Schwarz@", "pd-887334484.htm",
		"", 1,
		"D26", "0",
		 0)
	
		Entry[251] = new Element(
		251, "assets/thumb/thermometer_alp.jpg",
		150, 200,
		"RR02", "Ölthermometer",
		"für Alp 4.0, Motard 4.0, M4", "",
		"54.95", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13,5,11,55,5,11,5,11,5,11,5,11,8,14,12,59,12,58,6,18,24,38,18,24,38,32,18,21,18,21,24,27,24,32,24,32,24,32,25,33,25,33,25,33,25,33,25,33,26,34,28,36,28,36,28,36,28,36",
		"", "pd1197463970.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23,C11,C21,M6,C11,C21,C11,C21,C11,C21,C11,C21,C14,C24,C22,N2,C22,N1,C12,D11,D21,F1,D11,D21,F1,E1,D11,D14,D11,D14,D21,D24,D21,E1,D21,E1,D21,E1,D22,E2,D22,E2,D22,E2,D22,E2,D22,E2,D23,E3,D25,E5,D25,E5,D25,E5,D25,E5", "0",
		 0)
	
		Entry[252] = new Element(
		252, "assets/thumb/lenkererhalp40.jpg",
		150, 112,
		"0400266", "Lenkererhöhung für Alp 4.0",
		"30mm, aus Aluminium", "",
		"39.95", "0",
		"1", 1,
		"Stück", "30",
		"", "pd1207924658.htm",
		"", 1,
		"D27", "0",
		 0)
	
		Entry[253] = new Element(
		253, "assets/thumb/MCL155.jpg",
		150, 150,
		"MCL155-C", "Aluminiumlenker hoch von LUCAS",
		"mit ABE", "",
		"51.95", "0",
		"1", 1,
		"Stück", "30",
		"Farbe;silber@", "pd-2047237060.htm",
		"", 1,
		"D27", "0",
		 0)
	
		Entry[254] = new Element(
		254, "assets/thumb/017450048097_langesitzbank_rot.jpg",
		150, 100,
		"017450048-013", "Kit lange Sitzbank komplett",
		"in allen Originalfarben", "",
		"54.74", "0",
		"1", 1,
		"Stück", "38",
		"Farbe;grau@", "pd1356812903.htm",
		"", 1,
		"F1", "0",
		 0)
	
		Entry[255] = new Element(
		255, "assets/thumb/urban_windschild.jpg",
		150, 113,
		"1293370000", "Windschild",
		"", "",
		"74.38", "0",
		"1", 1,
		"Stück", "38",
		"", "pd-1452125614.htm",
		"", 1,
		"F1", "0",
		 0)
	
		Entry[256] = new Element(
		256, "assets/thumb/seitentasche.jpg",
		150, 112,
		"2011225000", "Seitentasche",
		"", "",
		"144.87", "0",
		"1", 1,
		"Stück", "38",
		"", "pd-11430349.htm",
		"", 1,
		"F1", "0",
		 0)
	
		Entry[257] = new Element(
		257, "assets/thumb/urban_gepeacktraeger.jpg",
		150, 113,
		"2011226000", "Gepäckträger Urban 125/200",
		"", "",
		"65.5", "0",
		"1", 1,
		"Stück", "38",
		"", "pd-53619815.htm",
		"", 1,
		"F1", "0",
		 0)
	
		Entry[258] = new Element(
		258, "assets/images/nopicture.gif",
		77, 52,
		"1525095000", "Luftfilter für Beta Alp 125/200",
		"", "",
		"29.71", "0",
		"1", 1,
		"Stück", "19",
		"Version;ab Modell 2008@", "pd-488601943.htm",
		"", 1,
		"D12", "0",
		 0)
	
		Entry[259] = new Element(
		259, "assets/images/nopicture.gif",
		77, 52,
		"3522720000", "Ölfilter Original Beta für Alp 200",
		"", "",
		"12.08", "0",
		"1", 1,
		"Stück", "19",
		"", "pd1440832583.htm",
		"", 1,
		"D12", "0",
		 0)
	
		Entry[260] = new Element(
		260, "assets/thumb/x328.jpg",
		150, 168,
		"X328", "Ölfilter CHAMPION Alp 200",
		"alternativ zum original Beta Ölfilter", "",
		"6.95", "0",
		"1", 1,
		"Stück", "19",
		"", "pd-1084434483.htm",
		"", 1,
		"D12", "0",
		 0)
	
		Entry[261] = new Element(
		261, "assets/thumb/bremsbelaege_alp.jpg",
		150, 112,
		"25252410001", "Bremsbeläge für Beta Alp",
		"vorne und hinten", "",
		"18.58", "0",
		"1", 1,
		"Stück", "20",
		"Version;Alp 125 bis 2007 vorn/hinten@", "pd632591025.htm",
		"", 1,
		"D13", "0",
		 0)
	
		Entry[262] = new Element(
		262, "assets/thumb/wilbers_alp200.jpg",
		150, 202,
		"630-582-00", "Wilbers Federbein für Alp 200",
		"Typ 630", "",
		"429", "0",
		"1", 1,
		"Stück", "20",
		"", "pd2122970314.htm",
		"", 1,
		"D13", "0",
		 0)
	
		Entry[263] = new Element(
		263, "assets/thumb/wirthalp200.jpg",
		150, 110,
		"FNR13842", "Gabelfedern progressiv Wirth",
		"für Alp 200 4T", "",
		"89.99", "0",
		"1", 1,
		"Stück", "20",
		"", "pd1200650827.htm",
		"", 1,
		"D13", "0",
		 0)
	
		Entry[264] = new Element(
		264, "assets/thumb/DEVIL.jpg",
		150, 87,
		"DEVIL", "Kennzeichenträger DEVIL mit LED-Rücklicht",
		"mit e-Prüfzeichen", "",
		"38.95", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13,5,11,55,5,11,5,11,5,11,5,11,8,14,12,59,12,58,6,18,24,38,18,24,38,32,18,21,18,21,24,27,24,32,24,32,24,32,25,33,25,33,25,33,25,33,25,33,26,34,28,36,28,36,28,36,28,36,29,22",
		"", "pd1179564331.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23,C11,C21,M6,C11,C21,C11,C21,C11,C21,C11,C21,C14,C24,C22,N2,C22,N1,C12,D11,D21,F1,D11,D21,F1,E1,D11,D14,D11,D14,D21,D24,D21,E1,D21,E1,D21,E1,D22,E2,D22,E2,D22,E2,D22,E2,D22,E2,D23,E3,D25,E5,D25,E5,D25,E5,D25,E5,D26,D16", "0",
		 0)
	
		Entry[265] = new Element(
		265, "assets/thumb/alp200heck_klein.jpg",
		150, 150,
		"8326S", "Sportheck für Alp 200",
		"LED Rück- und Bremslicht", "",
		"34.95", "0",
		"1", 1,
		"Stück", "22",
		"", "pd-613627930.htm",
		"", 1,
		"D16", "0",
		 0)
	
		Entry[266] = new Element(
		266, "assets/thumb/kotflalp200_klein.jpg",
		150, 143,
		"P85621-12", "Kotflügel Polisport vorne hoch",
		"für BETA Alp 200", "",
		"19", "0",
		"1", 1,
		"Stück", "22",
		"Farbe;weiß@", "pd807055757.htm",
		"", 1,
		"D16", "0",
		 0)
	
		Entry[267] = new Element(
		267, "assets/thumb/gepaecktraeger_alp_motard.jpg",
		150, 100,
		"2012807000", "BETA Gepäckträger M4",
		"Gepäckträger", "",
		"76.76", "0",
		"1", 1,
		"Stück", "32",
		"", "pd1468592141.htm",
		"", 1,
		"E1", "0",
		 0)
	
		Entry[268] = new Element(
		268, "assets/images/nopicture.gif",
		77, 52,
		"2564077000", "Ritzel M4/Motard 4.0 mit 15 Zähnen",
		"Original Beta Ersatzteil", "",
		"46.21", "0",
		"1", 1,
		"", "35",
		"", "pd1325949402.htm",
		"", 1,
		"E4", "0",
		 0)
	
		Entry[269] = new Element(
		269, "assets/thumb/kettenradm4.jpg",
		150, 150,
		"163-045-44", "Stahl Kettenrad für BETA Motard 4.0/M4",
		"in verschiedenen Größen", "",
		"39.95", "0",
		"1", 1,
		"Stück", "35",
		"Zähne;44@", "pd2065318141.htm",
		"", 1,
		"E4", "0",
		 0)
	
		Entry[270] = new Element(
		270, "assets/thumb/lufipulver.jpg",
		150, 150,
		"159004", "TWIN AIR Luftfilterreiniger Bio",
		"1 Liter Pulver", "",
		"12.8", "0",
		"1", 1,
		"Stück", "63",
		"", "pd1907324539.htm",
		"", 1,
		"N6", "0",
		 0)
	
		Entry[271] = new Element(
		271, "assets/thumb/twin-air-bio-oil.jpg",
		150, 253,
		"159017", "TWIN AIR Luftfilteröl Bio",
		"1 Liter", "",
		"18", "0",
		"1", 1,
		"Stück", "63",
		"", "pd1235732607.htm",
		"", 1,
		"N6", "0",
		 0)
	
		Entry[272] = new Element(
		272, "assets/thumb/twin_air_spray.jpg",
		150, 120,
		"159018", "TWIN AIR Luftfilterspray Bio",
		"500 ml", "",
		"13.5", "0",
		"1", 1,
		"Stück", "63",
		"", "pd1112211141.htm",
		"", 1,
		"N6", "0",
		 0)
	
		Entry[273] = new Element(
		273, "assets/thumb/magurablood.jpg",
		150, 150,
		"BLOOD", "Magura Blood",
		"Öl für hydraulische Kupplungen", "",
		"5.95", "0",
		"1", 1,
		"Stück", "61",
		"", "pd-1429851223.htm",
		"", 1,
		"N4", "0",
		 0)
	
		Entry[274] = new Element(
		274, "assets/thumb/ultra4_klein.jpg",
		150, 234,
		"4371", "SHELL Advance Ultra 4",
		"10W-40, 15W-50, 1 oder 4 Liter", "",
		"15.95", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13,5,11,55,5,11,5,11,5,11,5,11,8,14,12,59,12,58,6,18,24,38,18,24,38,32,18,21,18,21,24,27,24,32,24,32,24,32,25,33,25,33,25,33,25,33,25,33,26,34,28,36,28,36,28,36,28,36,29,22,58,6",
		"Version;1l 15W-50@", "pd-941015271.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23,C11,C21,M6,C11,C21,C11,C21,C11,C21,C11,C21,C14,C24,C22,N2,C22,N1,C12,D11,D21,F1,D11,D21,F1,E1,D11,D14,D11,D14,D21,D24,D21,E1,D21,E1,D21,E1,D22,E2,D22,E2,D22,E2,D22,E2,D22,E2,D23,E3,D25,E5,D25,E5,D25,E5,D25,E5,D26,D16,N1,C12", "0",
		 0)
	
		Entry[275] = new Element(
		275, "assets/thumb/ultra2_klein.jpg",
		150, 252,
		"4638", "SHELL Advance Ultra 2",
		"1 Liter", "",
		"13.95", "0",
		"1", 1,
		"Stück", "58",
		"", "pd64126703.htm",
		"", 1,
		"N1", "0",
		 0)
	
		Entry[276] = new Element(
		276, "assets/thumb/661_chainclean.jpg",
		150, 150,
		"611CLEAN", "Motorex Kettenreiniger &quot;Chain Clean&quot;",
		"", "",
		"11.95", "0",
		"1", 1,
		"Stück", "62",
		"", "pd880420068.htm",
		"", 1,
		"N5", "0",
		 0)
	
		Entry[277] = new Element(
		277, "assets/thumb/kettenspray_motorex.jpg",
		150, 253,
		"622", "MOTOREX Chain Lube 622 Offroad",
		"", "",
		"11.5", "0",
		"1", 1,
		"Stück", "62",
		"Grösse;500 ml@", "pd-1949752098.htm",
		"", 1,
		"N5", "0",
		 0)
	
		Entry[278] = new Element(
		278, "assets/thumb/montierhebel.jpg",
		150, 62,
		"4969", "Reifenmontierhebel, 3er-Set",
		"", "",
		"36.95", "0",
		"1", 1,
		"Stück", "65",
		"", "pd18042570.htm",
		"", 1,
		"N8", "0",
		 0)
	
		Entry[279] = new Element(
		279, "assets/thumb/injexzoom.jpg",
		150, 78,
		"ZOOM", "Luftpumpe Injex Zoom",
		"", "",
		"22", "0",
		"1", 1,
		"Stück", "65",
		"", "pd1604079164.htm",
		"", 1,
		"N8", "0",
		 0)
	
		Entry[280] = new Element(
		280, "assets/thumb/shell_coolant.jpg.jpg",
		80, 80,
		"4073", "SHELL Advance Coolant",
		"1 Liter", "",
		"8.45", "0",
		"1", 1,
		"Stück", "64",
		"", "pd875022711.htm",
		"", 1,
		"N7", "0",
		 0)
	
		Entry[281] = new Element(
		281, "assets/thumb/motorex_fork_5w.jpg",
		150, 285,
		"MOTOREX-7,5W", "Motorex Gabelöl",
		"Racing Fork Oil", "",
		"15.95", "0",
		"1", 1,
		"Stück", "60",
		"Viskosität;7,5W@", "pd-438538411.htm",
		"", 1,
		"N3", "0",
		 0)
	
		Entry[282] = new Element(
		282, "assets/thumb/fluid75.jpg",
		150, 102,
		"FLUID75", "Motorex Fluid 75",
		"Öl für hydraulische Kupplungen", "",
		"7.99", "0",
		"1", 1,
		"Stück", "61",
		"", "pd-209465531.htm",
		"", 1,
		"N4", "0",
		 0)
	
		Entry[283] = new Element(
		283, "assets/thumb/kuppldeckelkomplRR4T2007.jpg",
		150, 112,
		"3625470000", "Kupplungsdeckel Beta RR4T komplett (wie Serie ab 2007)",
		"mit separatem oberen Kupplungsdeckel", "",
		"86.9", "0",
		"1", 1,
		"Stück", "7",
		"", "pd1171471646.htm",
		"", 1,
		"C13", "0",
		 0)
	
		Entry[284] = new Element(
		284, "assets/thumb/BC15001_bardahlXTC6010W50.jpg",
		150, 150,
		"BC15001", "Bardahl XTC 660 10W-50 1 Liter",
		"die Empfehlung aus dem BETA Werkstatthandbuch", "",
		"16.95", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13,5,11,55,5,11,5,11,5,11,5,11,8,14,12,59,12,58,6,18,24,38,18,24,38,32,18,21,18,21,24,27,24,32,24,32,24,32,25,33,25,33,25,33,25,33,25,33,26,34,28,36,28,36,28,36,28,36,29,22,58,6,58,12",
		"", "pd1119636897.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23,C11,C21,M6,C11,C21,C11,C21,C11,C21,C11,C21,C14,C24,C22,N2,C22,N1,C12,D11,D21,F1,D11,D21,F1,E1,D11,D14,D11,D14,D21,D24,D21,E1,D21,E1,D21,E1,D22,E2,D22,E2,D22,E2,D22,E2,D22,E2,D23,E3,D25,E5,D25,E5,D25,E5,D25,E5,D26,D16,N1,C12,N1,C22", "0",
		 0)
	
		Entry[285] = new Element(
		285, "assets/thumb/BGB1001_bardahlgearbox10W30.jpg",
		150, 150,
		"BGB1001", "Bardahl Gear Box 10W-30 1 Liter",
		"Die Empfehlung aus dem Beta Werkstatthandbuch", "",
		"18.3", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13,5,11,55,5,11,5,11,5,11,5,11,8,14,12,59,12,58,6,18,24,38,18,24,38,32,18,21,18,21,24,27,24,32,24,32,24,32,25,33,25,33,25,33,25,33,25,33,26,34,28,36,28,36,28,36,28,36,29,22,58,6,58,12,59,12",
		"", "pd-26919878.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23,C11,C21,M6,C11,C21,C11,C21,C11,C21,C11,C21,C14,C24,C22,N2,C22,N1,C12,D11,D21,F1,D11,D21,F1,E1,D11,D14,D11,D14,D21,D24,D21,E1,D21,E1,D21,E1,D22,E2,D22,E2,D22,E2,D22,E2,D22,E2,D23,E3,D25,E5,D25,E5,D25,E5,D25,E5,D26,D16,N1,C12,N1,C22,N2,C22", "0",
		 0)
	
		Entry[286] = new Element(
		286, "assets/thumb/INSPRR4T10-motoroel.jpg",
		150, 150,
		"INSPRR4T10Motor", "Inspektionsset BETA RR4T ab 2010 Motorölwechsel",
		"inkl. 1 Liter Motoröl, Ölfilter, Ölsieb und 4 O-Ringe", "",
		"36.4", "0",
		"1", 1,
		"Stück", "12",
		"", "pd1327150735.htm",
		"", 1,
		"C22", "0",
		 0)
	
		Entry[287] = new Element(
		287, "assets/thumb/INSPRR4T10-getriebeoel.jpg",
		150, 150,
		"INSPRR4T10Gebriebe", "Inspektionsset BETA RR4T ab 2010 Getriebeölwechsel",
		"inkl. 1 Liter Bardahl Getriebeöl und 1 O-Ring", "",
		"18.3", "0",
		"1", 1,
		"Stück", "12",
		"", "pd-97653774.htm",
		"", 1,
		"C22", "0",
		 0)
	
		Entry[288] = new Element(
		288, "assets/thumb/INSPRR4T10-komplett.jpg",
		150, 150,
		"INSPRR4T10Komplett", "Inspektionsset BETA RR4T ab 2010 komplett Motor-/Getriebeölwechsel",
		"inkl. 1 Liter Bardahl Motoröl, 1 Liter Bardahl Getriebeöl, Ölfilter, Ölsieb und 5 O-Ringe", "",
		"54.1", "0",
		"1", 1,
		"Stück", "12",
		"", "pd-1058205007.htm",
		"", 1,
		"C22", "0",
		 0)
	
		Entry[289] = new Element(
		289, "assets/thumb/006150008000_schalthebel.jpg",
		150, 100,
		"006150008000", "Schalthebel Racing",
		"Rot eloxiert", "",
		"50.04", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1611745161.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[290] = new Element(
		290, "assets/thumb/006150070000_stopfenkettenspanner.jpg",
		150, 100,
		"006150070000", "Stopfen Steuerkettennspanner Rot eloxiert",
		"für RR4T 2010-2011", "",
		"18.84", "0",
		"1", 1,
		"Stück", "11",
		"", "pd578649311.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[291] = new Element(
		291, "assets/thumb/006150200000_stopfenstartermotor.jpg",
		150, 100,
		"006150208000", "Startergehäusedeckel Rot eloxiert",
		"mit O-Ring", "",
		"17.85", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-146978267.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[292] = new Element(
		292, "assets/thumb/007450438000_luefter.jpg",
		150, 100,
		"007450438000", "Elektrischer Lüfter Kit",
		"für RR4T ab 2010", "",
		"95.2", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1116483803.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[293] = new Element(
		293, "assets/thumb/RB-KL2.jpg",
		150, 132,
		"RB-KL", "Rallyevorbau für Roadbookhalter",
		"Klemmfäuste für den Lenker", "",
		"169.95", "0",
		"1", 1,
		"Stück", "54",
		"", "pd882189744.htm",
		"", 1,
		"M5", "0",
		 0)
	
		Entry[294] = new Element(
		294, "assets/thumb/5012210000_cap.jpg",
		150, 100,
		"5012210000", "BETA Cap",
		"Beta Racing Schriftzug", "",
		"9.1", "0",
		"1", 1,
		"Stück", "43",
		"", "pd1325608794.htm",
		"", 1,
		"8.2", "0",
		 0)
	
		Entry[295] = new Element(
		295, "assets/thumb/5025610000_hose_lang.jpg",
		150, 100,
		"5025610-004", "BETA Hose lang",
		"Mit Beta Racing Logo", "",
		"55.93", "0",
		"1", 1,
		"Stück", "43",
		"Grösse;XL@", "pd-1881089323.htm",
		"", 1,
		"8.2", "0",
		 0)
	
		Entry[296] = new Element(
		296, "assets/thumb/5025605000_hose_kurz.jpg",
		150, 100,
		"5025605-1", "BETA Hose kurz",
		"Mit Beta Racing Logo", "",
		"53.55", "0",
		"1", 1,
		"Stück", "43",
		"Grösse;L@", "pd362471420.htm",
		"", 1,
		"8.2", "0",
		 0)
	
		Entry[297] = new Element(
		297, "assets/thumb/5010031000_aufkleber_lkw_97x55.jpg",
		150, 101,
		"5010031000", "Van Sticker &quot;Beta Racing&quot; Gross",
		"", "",
		"11.33", "0",
		"1", 1,
		"Stück", "45",
		"", "pd-1536864989.htm",
		"", 1,
		"8.4", "0",
		 0)
	
		Entry[298] = new Element(
		298, "assets/thumb/5010310000_kugelschreiber.jpg",
		150, 100,
		"5010310000", "Kugelschreiber &quot;BETA Racing&quot;",
		"", "",
		"0.99", "0",
		"1", 1,
		"Stück", "45",
		"", "pd1807098889.htm",
		"", 1,
		"8.4", "0",
		 0)
	
		Entry[299] = new Element(
		299, "assets/thumb/5010252000_aufkleber_set.jpg",
		150, 100,
		"5010253000", "Aufkleber-Set &quot;BETA Racing&quot;",
		"Verschiedene kleine Aufkleber", "",
		"0.99", "0",
		"1", 1,
		"Stück", "45",
		"", "pd1427090783.htm",
		"", 1,
		"8.4", "0",
		 0)
	
		Entry[300] = new Element(
		300, "assets/thumb/5010044000_teppich.jpg",
		150, 100,
		"5010044000", "BETA Montage-/Tankmatte",
		"Original BETA Zubehör", "",
		"105.91", "0",
		"1", 1,
		"Stück", "45",
		"", "pd424472229.htm",
		"", 1,
		"8.4", "0",
		 0)
	
		Entry[301] = new Element(
		301, "assets/thumb/016423200000_stealth48.jpg",
		150, 93,
		"016423200000", "Stealth Kettenrad 48 Zähne",
		"Rot eloxiert", "",
		"68.43", "0",
		"1", 1,
		"Stück", "11",
		"", "pd812093057.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[302] = new Element(
		302, "assets/thumb/020320600000_motorschutzkevlar.jpg",
		150, 101,
		"020320600000", "Motorschutz Kevlar Carbon",
		"neues Design", "",
		"124.95", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1381104791.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[303] = new Element(
		303, "assets/thumb/020331430000_feder5.4.jpg",
		150, 100,
		"020331430000", "Feder Stossdämpfer 5.4",
		"für RR4T ab 2010", "",
		"75.96", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-196759395.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[304] = new Element(
		304, "assets/thumb/020342008000_marzocchi50.jpg",
		150, 100,
		"020342008000", "Marzocchi Shiver Gabel ø 50mm",
		"für RR4T Modelljahr 2011", "",
		"1353.63", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-663888877.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[305] = new Element(
		305, "assets/thumb/020372018000_titankruemmer400-.jpg",
		150, 106,
		"020372018000", "Titan Werkskrümmer RR400-520",
		"für RR4T 400/450/498/520", "",
		"431.97", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-218166151.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[306] = new Element(
		306, "assets/thumb/020372208000_titanschalldaempfer.jpg",
		150, 106,
		"020372208000", "Titan Werks-Endschalldämpfer",
		"für RR4T ab 2010", "",
		"511.7", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-1085895857.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[307] = new Element(
		307, "assets/thumb/016430808000_startnummerngelb.jpg",
		150, 100,
		"020430808000 ", "Startnummernfelder in Gelb",
		"für RR4T ab 2010", "",
		"18.84", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-859259371.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[308] = new Element(
		308, "assets/thumb/020431080000_sitzbankbezug10.jpg",
		150, 100,
		"020431080000", "Sitzbankbezug Factory 2010",
		"rutschfest, mit Kartentasche", "",
		"49.59", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-1626962357.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[309] = new Element(
		309, "assets/thumb/020432210000_sitzbankbezug11.jpg",
		150, 100,
		"020432210000", "Sitzbankbezug Factory 2011",
		"rutschfest, mit Kartentasche", "",
		"53.55", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-599678607.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[310] = new Element(
		310, "assets/thumb/020450108000_startnummerngruen.jpg",
		150, 100,
		"020450108000", "Startnummernfelder in Grün",
		"für RR4T ab 2010", "",
		"18.84", "0",
		"1", 1,
		"Stück", "11",
		"", "pd2136475911.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[311] = new Element(
		311, "assets/thumb/020450118000_aufkeberracing10.jpg",
		150, 100,
		"020450118000", "Dekorsatz Factory 2010",
		"für RR4T ab 2010", "",
		"79.34", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1049514637.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[312] = new Element(
		312, "assets/thumb/020450120000_federvorspanner.jpg",
		150, 100,
		"020450120000", "Einsteller für die Federvorspannung",
		"für RR4T ab 2010", "",
		"126.94", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1966419305.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[313] = new Element(
		313, "assets/thumb/020450138000_phds.jpg",
		150, 100,
		"020450138000", "PHDS-Lenkeraufnahme",
		"für RR4T ab 2010", "",
		"196.35", "0",
		"1", 1,
		"Stück", "11",
		"", "pd405515412.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[314] = new Element(
		314, "assets/thumb/020450168000_federn4.8.jpg",
		150, 100,
		"020450168000", "Gabelfedern ø 45mm K4.8",
		"für RR4T 2010", "",
		"38.68", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1327162154.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[315] = new Element(
		315, "assets/thumb/020450178000_kompressiongabel.jpg",
		150, 100,
		"020450178000", "Vorspannhülsen ø 45mm",
		"für RR4T 2010", "",
		"43.64", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1060103528.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[316] = new Element(
		316, "assets/thumb/020450188000_soziusfussrasten.jpg",
		150, 100,
		"020450188000", "Soziusfussrasten Kit",
		"für RR4T ab 2010", "",
		"148.75", "0",
		"1", 1,
		"Stück", "11",
		"", "pd991953381.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[317] = new Element(
		317, "assets/thumb/020450208000_supermotobereift10.jpg",
		150, 100,
		"020450208000", "Supermoto Radsatz RR4T, bereift, 2010",
		"mit Reifen und Einbaukit", "",
		"1356.6", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-1747669349.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[318] = new Element(
		318, "assets/thumb/020450438000_titanauspuffanlage.jpg",
		150, 106,
		"020450438000", "Auspuffanlage Arrow Volltitan RR350",
		"für RR4T 350", "",
		"940.1", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1373848129.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[319] = new Element(
		319, "assets/thumb/2011807100_kabelbaum_estart.jpg",
		150, 100,
		"2011807100", "Kabelbaum, vereinfacht, mit E-Start ab 2010",
		"Version mit E-Start", "",
		"60.49", "0",
		"1", 1,
		"Stück", "11",
		"", "pd793499223.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[320] = new Element(
		320, "assets/thumb/2011808100_kabelbaum_ohne_estart.jpg",
		150, 100,
		"2011808100", "Kabelbaum, vereinfacht, ohne E-Start ab 2010",
		"Version ohne E-Start", "",
		"44.63", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-1966989219.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[321] = new Element(
		321, "assets/thumb/020450248000_supermotounbereift10.jpg",
		150, 100,
		"020450248000", "Supermoto Radsatz RR4T, unbereift, 2010",
		"ohne Reifen, mit Einbaukit", "",
		"988.89", "0",
		"1", 1,
		"Stück", "11",
		"", "pd164024787.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[322] = new Element(
		322, "assets/thumb/020450218000_cdi400.jpg",
		150, 100,
		"020450218000", "CDI mit 2 Mappings für RR400 ab 2010",
		"mit Schalter", "",
		"226.1", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1507850297.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[323] = new Element(
		323, "assets/thumb/020450228000_cdi450.jpg",
		150, 100,
		"020450228000", "CDI mit 2 Mappings für RR450 ab 2010",
		"mit Schalter", "",
		"226.1", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-435659505.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[324] = new Element(
		324, "assets/thumb/020450238000_cdi498.jpg",
		150, 100,
		"020450238000", "CDI mit 2 Mappings für RR520 ab 2010 (RR498 ab 2012)",
		"mit Schalter", "",
		"226.1", "0",
		"1", 1,
		"Stück", "11",
		"", "pd992863701.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[325] = new Element(
		325, "assets/thumb/2909601053_oelstopfen.jpg",
		150, 118,
		"2909601053", "Öleinfüllstopfen Racing",
		"Rot eloxiert", "",
		"14.28", "0",
		"1", 1,
		"Stück", "11",
		"", "pd240579595.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[326] = new Element(
		326, "assets/thumb/006080600000_oelfilterdeckel.jpg",
		150, 119,
		"006150058000", "Ölfilterdeckel Racing",
		"Rot eloxiert", "",
		"18.9", "0",
		"1", 1,
		"Stück", "11",
		"", "pd2026292529.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[327] = new Element(
		327, "assets/thumb/020372028000_titankruemmer350.jpg",
		150, 100,
		"020372028000", "Titan Werkskrümmer RR350",
		"für RR350 ab 2011", "",
		"431.97", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1983435463.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[328] = new Element(
		328, "assets/thumb/007450278000_schaltercdi350.jpg",
		150, 100,
		"020400450000", "Schalter für 2 Mappings RR350",
		"nur für RR350 ab 2011", "",
		"47.12", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-284478899.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[329] = new Element(
		329, "assets/thumb/020410020000_bremsscheibevorne.jpg",
		150, 100,
		"020410020000", "Wave Bremsscheibe vorne ø 260mm",
		"für RR4T ab 2010", "",
		"123.53", "0",
		"1", 1,
		"Stück", "11",
		"", "pd200275267.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[330] = new Element(
		330, "assets/thumb/020420080000_bremsscheibehinten.jpg",
		150, 100,
		"020420080000", "Wave-Bremsscheibe hinten ø 240mm ",
		"für RR4T ab 2010", "",
		"110.76", "0",
		"1", 1,
		"Stück", "11",
		"", "pd712870185.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[331] = new Element(
		331, "assets/thumb/020410200000_bolzenvorderrad.jpg",
		150, 100,
		"020410200000", "Steckachseneinsatz Vorderrad",
		"für RR4T ab 2012", "",
		"9.88", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-77732411.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[332] = new Element(
		332, "assets/thumb/020450408000_titanauspuffanlage.jpg",
		150, 106,
		"020450408000", "Auspuffanlage Arrow Volltitan RR400-520",
		"für RR4T 400-520 ab 2010", "",
		"940.1", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-1253807968.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[333] = new Element(
		333, "assets/thumb/020450638000_aufkleberracing12.jpg",
		150, 100,
		"020450638000", "Dekorsatz Factory 2012",
		"für RR4T ab 2010", "",
		"0", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-1479934002.htm",
		"", 1,
		"C21", "0",
		 3)
	
		Entry[334] = new Element(
		334, "assets/thumb/020450428000_federn4.8_50.jpg",
		150, 100,
		"020450428000", "Gabelfedern ø 50mm K4.8",
		"für RR4T 2011", "",
		"80.92", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-1142917768.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[335] = new Element(
		335, "assets/thumb/006150060000_schraubenelox.jpg",
		150, 100,
		"006150060000", "Schraubstopfen Motor",
		"Rot eloxiert", "",
		"2.98", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1894157807.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[336] = new Element(
		336, "assets/thumb/020434210000_sitzbankbezug12.jpg",
		150, 100,
		"020434210000", "Sitzbankbezug Factory 2012",
		"rutschfest, mit Kartentasche", "",
		"0", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1782514101.htm",
		"", 1,
		"C21", "0",
		 3)
	
		Entry[337] = new Element(
		337, "assets/thumb/020450388000_rahmenschutzkarbon.jpg",
		150, 100,
		"020450388000", "Rahmenschutz Kevlar Carbon",
		"für RR4T ab 2010", "",
		"133.28", "0",
		"1", 1,
		"Stück", "11",
		"", "pd945421310.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[338] = new Element(
		338, "assets/thumb/020450418000_aufkleberfactory11.jpg",
		150, 100,
		"020450418000", "Dekorsatz Factory 2011",
		"für RR4T ab 2010", "",
		"79.34", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-1196328356.htm",
		"", 1,
		"C21", "0",
		 0)
	
		Entry[339] = new Element(
		339, "assets/thumb/020450658000_supermotounbereift12.jpg",
		150, 100,
		"020450658000", "Supermoto Radsatz RR4T, unbereift, 2012",
		"ohne Reifen, mit Einbaukit", "",
		"0", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1153548041.htm",
		"", 1,
		"C21", "0",
		 3)
	
		Entry[340] = new Element(
		340, "assets/thumb/020450588000_deckelbremse12.jpg",
		150, 100,
		"020450588000", "Bremspumpendeckel Racing",
		"Rot eloxiert", "",
		"0", "0",
		"1", 1,
		"Stück", "11",
		"", "pd1729151071.htm",
		"", 1,
		"C21", "0",
		 3)
	
		Entry[341] = new Element(
		341, "assets/thumb/5010251052-zierstreifenfelgen_schwarz.jpg",
		150, 100,
		"5010251052", "Zierstreifen Schwarz für Felgen",
		"Schwarz", "",
		"25.79", "0",
		"1", 1,
		"Stück", "11",
		"", "pd203438501.htm",
		"", 1,
		"C21", "0",
		 3)
	
		Entry[342] = new Element(
		342, "assets/thumb/5010251053_zierstreifenfelgen_rot.jpg",
		150, 100,
		"5010251053", "Zierstreifen Rot für Felgen",
		"Rot", "",
		"25.79", "0",
		"1", 1,
		"Stück", "11",
		"", "pd-2055820197.htm",
		"", 1,
		"C21", "0",
		 3)
	
		Entry[343] = new Element(
		343, "assets/thumb/kettensatzRR4T.jpg",
		150, 150,
		"KSRR4T-STAHL", "Kettensatz BETA RR4T 10% Ersparnis",
		"wahlweise mit Alu-, Stahl oder Stealth Kettenrad, alle Übersetzungen", "",
		"123.95", "0",
		"1", 1,
		"Stück", "14",
		"Kettenrad;Stahl@", "pd1327672335.htm",
		"", 1,
		"C24", "0",
		 0)
	
		Entry[344] = new Element(
		344, "assets/thumb/sieb.JPG",
		150, 139,
		"006080518-SET", "Ölsieb für RR4T ab 2010",
		"inkl. 2 O-Ringe", "",
		"8.18", "0",
		"1", 1,
		"Stück", "12",
		"", "pd1354678313.htm",
		"", 1,
		"C22", "0",
		 0)
	
		Entry[345] = new Element(
		345, "assets/thumb/691AKettentrenner.jpg",
		150, 107,
		"691A", "Kettentrennwerkzeug",
		"von Regina", "",
		"32.95", "0",
		"1", 1,
		"Stück", "65",
		"", "pd-1965676929.htm",
		"", 1,
		"N8", "0",
		 0)
	
		Entry[346] = new Element(
		346, "assets/thumb/IMO100R.JPG",
		150, 70,
		"011-0001", "Touratech IMO 100R",
		"", "",
		"339", "0",
		"1", 1,
		"Stück", "53",
		"", "pd1203015404.htm",
		"", 1,
		"M4", "0",
		 0)
	
		Entry[347] = new Element(
		347, "assets/thumb/IMO50R.JPG",
		150, 65,
		"011-0401", "Touratech IMO 100R50",
		"", "",
		"389", "0",
		"1", 1,
		"Stück", "53",
		"", "pd72376846.htm",
		"", 1,
		"M4", "0",
		 0)
	
		Entry[348] = new Element(
		348, "assets/thumb/RBTT.JPG",
		150, 110,
		"020-0010", "Roadbookhalter Touratech RB-TTi",
		"Elektrischer Roadbookhalter", "",
		"289", "0",
		"1", 1,
		"Stück", "51",
		"", "pd576703606.htm",
		"", 1,
		"M2", "0",
		 0)
	
		Entry[349] = new Element(
		349, "assets/thumb/RB01.JPG",
		150, 105,
		"021-0010", "Roadbookhalter Touratech RB-01",
		"Manuell bedienbarer Roadbookhalter", "",
		"139.9", "0",
		"1", 1,
		"Stück", "51",
		"", "pd-996135160.htm",
		"", 1,
		"M2", "0",
		 0)
	
		Entry[350] = new Element(
		350, "assets/thumb/roadbookmd.jpg",
		150, 112,
		"MD-RB", "Roadbookhalter MD",
		"elektrischer Roadbookhalter", "",
		"429", "0",
		"1", 1,
		"Stück", "50",
		"", "pd3859475.htm",
		"", 1,
		"M1", "0",
		 0)
	
		Entry[351] = new Element(
		351, "assets/thumb/icovr.jpg",
		150, 79,
		"ICO-VRL", "Tripmaster ICO VR Light",
		"Rallyetripmaster inkl. Fernbedienung und Sonsorkabel", "",
		"399", "0",
		"1", 1,
		"Stück", "52",
		"", "pd1506644192.htm",
		"", 1,
		"M3", "0",
		 0)
	
		Entry[352] = new Element(
		352, "assets/images/nopicture.gif",
		77, 52,
		"MD-SCHEIBE", "Ersatzscheibe MD",
		"für MD-Roadbookhalter", "",
		"35", "0",
		"1", 1,
		"Stück", "50",
		"", "pd-1798395784.htm",
		"", 1,
		"M1", "0",
		 0)
	
		Entry[353] = new Element(
		353, "assets/thumb/riemen.jpg",
		150, 86,
		"MD-RIEMEN", "Ersatzriemen MD",
		"für MD-Roadbookhalter", "",
		"17.5", "0",
		"1", 1,
		"Stück", "50",
		"", "pd-341481291.htm",
		"", 1,
		"M1", "0",
		 0)
	
		Entry[354] = new Element(
		354, "assets/images/nopicture.gif",
		77, 52,
		"MD-MOTOR", "Ersatzmotor MD",
		"für MD-Roadbookhalter", "",
		"79.95", "0",
		"1", 1,
		"Stück", "50",
		"", "pd-1433155842.htm",
		"", 1,
		"M1", "0",
		 0)
	
		Entry[355] = new Element(
		355, "assets/images/nopicture.gif",
		77, 52,
		"MD-FB", "Fernbedienung MD",
		"für MD-Roadbookhalter", "",
		"29.95", "0",
		"1", 1,
		"Stück", "50",
		"", "pd541445923.htm",
		"", 1,
		"M1", "0",
		 0)
	
		Entry[356] = new Element(
		356, "assets/thumb/ICO-FB.jpg",
		150, 111,
		"ICO-FB", "Fernbedienung für ICO VR Light",
		"Originalfernbedienung von ICO", "",
		"70", "0",
		"1", 1,
		"Stück", "52",
		"", "pd-667333196.htm",
		"", 1,
		"M3", "0",
		 0)
	
		Entry[357] = new Element(
		357, "assets/images/nopicture.gif",
		77, 52,
		"ICO-SENSOR", "Sensorkabel für ICO VR Light",
		"inkl. Befestigungskit", "",
		"59", "0",
		"1", 1,
		"Stück", "52",
		"", "pd1589579009.htm",
		"", 1,
		"M3", "0",
		 0)
	
		Entry[358] = new Element(
		358, "assets/images/nopicture.gif",
		77, 52,
		"ICO-MD", "Adapterplatte MD-ICO",
		"zur Montage von MD-Roadbookhalter mit ICO Tripmaster", "",
		"86", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13,5,11,55,5,11,5,11,5,11,5,11,8,14,12,59,12,58,6,18,24,38,18,24,38,32,18,21,18,21,24,27,24,32,24,32,24,32,25,33,25,33,25,33,25,33,25,33,26,34,28,36,28,36,28,36,28,36,29,22,58,6,58,12,59,12,52,50",
		"", "pd848698906.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23,C11,C21,M6,C11,C21,C11,C21,C11,C21,C11,C21,C14,C24,C22,N2,C22,N1,C12,D11,D21,F1,D11,D21,F1,E1,D11,D14,D11,D14,D21,D24,D21,E1,D21,E1,D21,E1,D22,E2,D22,E2,D22,E2,D22,E2,D22,E2,D23,E3,D25,E5,D25,E5,D25,E5,D25,E5,D26,D16,N1,C12,N1,C22,N2,C22,M3,M1", "0",
		 0)
	
		Entry[359] = new Element(
		359, "assets/thumb/lenkermittelstrebe.JPG",
		150, 110,
		"040-0601", "Lenkermittelstrebe",
		"Nachrüstung", "",
		"22.9", "0",
		"1", 1,
		"Stück", "55",
		"", "pd-1103716460.htm",
		"", 1,
		"M6", "0",
		 0)
	
		Entry[360] = new Element(
		360, "assets/thumb/INSPALP4.jpg",
		150, 150,
		"INSPALP4-3L", "Inspektionsset für BETA ALP 4.0/Motard 4.0/M4",
		"inkl. allen Dichtringen und Ölfilter, wahlweise mit 3 L Motoröl", "",
		"58.95", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13,5,11,55,5,11,5,11,5,11,5,11,8,14,12,59,12,58,6,18,24,38,18,24,38,32,18,21,18,21,24,27,24,32,24,32,24,32,25,33,25,33,25,33,25,33,25,33,26,34,28,36,28,36,28,36,28,36,29,22,58,6,58,12,59,12,52,50,25,33",
		"Ölmenge;3 Liter@", "pd88626506.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23,C11,C21,M6,C11,C21,C11,C21,C11,C21,C11,C21,C14,C24,C22,N2,C22,N1,C12,D11,D21,F1,D11,D21,F1,E1,D11,D14,D11,D14,D21,D24,D21,E1,D21,E1,D21,E1,D22,E2,D22,E2,D22,E2,D22,E2,D22,E2,D23,E3,D25,E5,D25,E5,D25,E5,D25,E5,D26,D16,N1,C12,N1,C22,N2,C22,M3,M1,D22,E2", "0",
		 0)
	
		Entry[361] = new Element(
		361, "assets/thumb/Garmin_logo.jpg",
		150, 44,
		"GARMIN", "GARMIN GPS",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "56",
		"", "pd104795244.htm",
		"", 1,
		"M7", "0",
		 3)
	
		Entry[362] = new Element(
		362, "assets/thumb/d_schild_schwarz_fennek.jpg",
		150, 95,
		"AUFKLARAB", "D-Schild mit arabischem Schriftzug &quot;Alemania&quot;",
		"", "",
		"1.95", "0",
		"1", 1,
		"Stück", "69",
		"", "pd1935623102.htm",
		"", 1,
		"R", "0",
		 0)
	
		Entry[363] = new Element(
		363, "assets/thumb/evs_r4.jpg",
		150, 98,
		"EVS-R4", "EVS Neck Support R4",
		"Genickschutz", "",
		"119.9", "0",
		"1", 1,
		"Stück", "47",
		"", "pd-2072621372.htm",
		"", 1,
		"K", "0",
		 0)
	
		Entry[364] = new Element(
		364, "assets/thumb/alpinestars_bionic_jacket_bns_klein.jpg",
		150, 150,
		"BIONIC-BNS-L", "Alpinestars Bionic BNS",
		"Protektorenhemd", "",
		"229.95", "0",
		"1", 1,
		"Stück", "47",
		"Grösse;L@", "pd-654883065.htm",
		"", 1,
		"K", "0",
		 0)
	
		Entry[365] = new Element(
		365, "assets/thumb/bns.jpg",
		150, 150,
		"BNS-SB-L", "Alpinestars BNS Neck Support",
		"Genickschutz", "",
		"249.95", "0",
		"1", 1,
		"Stück", "47",
		"Grösse;L@", "pd1327767078.htm",
		"", 1,
		"K", "0",
		 0)
	
		Entry[366] = new Element(
		366, "assets/thumb/Ufo_MTB6107.jpg",
		150, 160,
		"MTB6107-L", "UFO Protektoren Short MTB 6107",
		"Protektoren-Unterhose", "",
		"81.7", "0",
		"1", 1,
		"Stück", "47",
		"Grösse;L@", "pd1408975817.htm",
		"", 1,
		"K", "0",
		 0)
	
		Entry[367] = new Element(
		367, "assets/thumb/sportkennzeichen_klein.jpg",
		150, 113,
		"SPKENNZ", "Sportkennzeichen",
		"geprägte Ausführung", "",
		"19.95", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13,5,11,55,5,11,5,11,5,11,5,11,8,14,12,59,12,58,6,18,24,38,18,24,38,32,18,21,18,21,24,27,24,32,24,32,24,32,25,33,25,33,25,33,25,33,25,33,26,34,28,36,28,36,28,36,28,36,29,22,58,6,58,12,59,12,52,50,25,33,48,15,9",
		"", "pd1903658878.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23,C11,C21,M6,C11,C21,C11,C21,C11,C21,C11,C21,C14,C24,C22,N2,C22,N1,C12,D11,D21,F1,D11,D21,F1,E1,D11,D14,D11,D14,D21,D24,D21,E1,D21,E1,D21,E1,D22,E2,D22,E2,D22,E2,D22,E2,D22,E2,D23,E3,D25,E5,D25,E5,D25,E5,D25,E5,D26,D16,N1,C12,N1,C22,N2,C22,M3,M1,D22,E2,L,C25,C15", "0",
		 0)
	
		Entry[368] = new Element(
		368, "assets/thumb/reifen.jpg",
		150, 128,
		"REIFEN", "Reifen aller Marken",
		"Enduro-, Cross- und Strassenreifen", "",
		"0", "0",
		"1", 1,
		"Stück", "66",
		"", "pd-1251216420.htm",
		"", 1,
		"O", "0",
		 3)
	
		Entry[369] = new Element(
		369, "assets/thumb/zap_v2_klein.jpg",
		150, 104,
		"Z-7300-R", "ZAP Kupplungsarmatur V2",
		"in Blau oder Rot", "",
		"59.95", "0",
		"1", 1,
		"Stück", "48,66,5,11,6,12,8,14,8,14,27,35,8,14,27,8,14,8,14,6,12,6,11,5,12,7,13,7,13,5,11,55,5,11,5,11,5,11,5,11,8,14,12,59,12,58,6,18,24,38,18,24,38,32,18,21,18,21,24,27,24,32,24,32,24,32,25,33,25,33,25,33,25,33,25,33,26,34,28,36,28,36,28,36,28,36,29,22,58,6,58,12,59,12,52,50,25,33,48,15,9,26,20",
		"Farbe;Rot@", "pd766567692.htm",
		"", 1,
		"L,O,C11,C21,C12,C22,C14,C24,C14,C24,D24,E4,C14,C24,D24,C14,C24,C14,C24,C12,C22,C12,C21,C11,C22,C13,C23,C13,C23,C11,C21,M6,C11,C21,C11,C21,C11,C21,C11,C21,C14,C24,C22,N2,C22,N1,C12,D11,D21,F1,D11,D21,F1,E1,D11,D14,D11,D14,D21,D24,D21,E1,D21,E1,D21,E1,D22,E2,D22,E2,D22,E2,D22,E2,D22,E2,D23,E3,D25,E5,D25,E5,D25,E5,D25,E5,D26,D16,N1,C12,N1,C22,N2,C22,M3,M1,D22,E2,L,C25,C15,D23,D13", "0",
		 0)
	
		Entry[370] = new Element(
		370, "assets/thumb/thor_force_klein.jpg",
		150, 256,
		"THORFORCE-L/XL", "THOR FORCE Knee Guard",
		"Knieprotektor", "",
		"79.95", "0",
		"1", 1,
		"Stück", "47",
		"Grösse;L/XL@", "pd1328041723.htm",
		"", 1,
		"K", "0",
		 0)
	
		Entry[371] = new Element(
		371, "assets/images/nopicture.gif",
		77, 52,
		"006021508 000", "PISTON ASSY 510CC D=100MM",
		"", "",
		"229.99", "0",
		"1", 1,
		"", "2",
		"", "pd820365079.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[372] = new Element(
		372, "assets/images/nopicture.gif",
		77, 52,
		"006021520 000", "CIRCLIP",
		"", "",
		"1.49", "0",
		"1", 1,
		"", "2",
		"", "pd1339007385.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[373] = new Element(
		373, "assets/images/nopicture.gif",
		77, 52,
		"006021538 000", "PISTON RING SET 510CC D=100MM",
		"", "",
		"38.64", "0",
		"1", 1,
		"", "2",
		"", "pd534357359.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[374] = new Element(
		374, "assets/images/nopicture.gif",
		77, 52,
		"006021600 000", "CYLINDER D=100",
		"", "",
		"324.69", "0",
		"1", 1,
		"", "2",
		"", "pd-112895348.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[375] = new Element(
		375, "assets/images/nopicture.gif",
		77, 52,
		"006021600 001", "CYLINDER D=100 SIZE=1",
		"", "",
		"326.77", "0",
		"1", 1,
		"", "2",
		"", "pd1498801461.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[376] = new Element(
		376, "assets/images/nopicture.gif",
		77, 52,
		"006021600 002", "CYLINDER D=100 SIZE=2",
		"", "",
		"326.77", "0",
		"1", 1,
		"", "2",
		"", "pd-810515861.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[377] = new Element(
		377, "assets/images/nopicture.gif",
		77, 52,
		"006021630 000", "CYLINDER HEAD GASKET D=100",
		"", "",
		"32.37", "0",
		"1", 1,
		"", "2",
		"", "pd1176138650.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[378] = new Element(
		378, "assets/images/nopicture.gif",
		77, 52,
		"006022008 000", "CRANKSHAFT ASSY 450/510CC",
		"", "",
		"642.59", "0",
		"1", 1,
		"", "2",
		"", "pd-682066147.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[379] = new Element(
		379, "assets/images/nopicture.gif",
		77, 52,
		"006022508 000", "PISTON ASSY 400CC D=95MM",
		"", "",
		"211.87", "0",
		"1", 1,
		"", "2",
		"", "pd1135038099.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[380] = new Element(
		380, "assets/images/nopicture.gif",
		77, 52,
		"006023008 000", "CRANKSHAFT ASSY 400CC",
		"", "",
		"494.3", "0",
		"1", 1,
		"", "2",
		"", "pd-590363911.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[381] = new Element(
		381, "assets/images/nopicture.gif",
		77, 52,
		"006023508 000", "PISTON ASSY 450CC D=95MM RR4T M",
		"", "",
		"190.4", "0",
		"1", 1,
		"", "2",
		"", "pd1839049560.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[382] = new Element(
		382, "assets/images/nopicture.gif",
		77, 52,
		"006023508 001", "PISTON CPL. 450CC D=95MM SIZE=1",
		"", "",
		"196.11", "0",
		"1", 1,
		"", "2",
		"", "pd-2146927983.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[383] = new Element(
		383, "assets/images/nopicture.gif",
		77, 52,
		"006023508 002", "PISTON CPL. 450CC D=95MM SIZE=2",
		"", "",
		"196.11", "0",
		"1", 1,
		"", "2",
		"", "pd-1537538265.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[384] = new Element(
		384, "assets/images/nopicture.gif",
		77, 52,
		"006024008 000", "CRANKSHAFT CPL, 520CC",
		"", "",
		"633.1", "0",
		"1", 1,
		"", "2",
		"", "pd-91168442.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[385] = new Element(
		385, "assets/images/nopicture.gif",
		77, 52,
		"006024508 000", "PISTON CPL. 510CC D=100MM RR4T",
		"", "",
		"223.29", "0",
		"1", 1,
		"", "2",
		"", "pd-426311452.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[386] = new Element(
		386, "assets/images/nopicture.gif",
		77, 52,
		"006024508 001", "PISTON CPL. 520CC D=100MM SIZE=",
		"", "",
		"229.99", "0",
		"1", 1,
		"", "2",
		"", "pd471727533.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[387] = new Element(
		387, "assets/images/nopicture.gif",
		77, 52,
		"006024508 002", "PISTON CPL. 520CC D=100MM SIZE=",
		"", "",
		"229.99", "0",
		"1", 1,
		"", "2",
		"", "pd65089443.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[388] = new Element(
		388, "assets/images/nopicture.gif",
		77, 52,
		"006025508 000", "PISTON CPL. 400CC D=95MM RR4T M",
		"", "",
		"211.87", "0",
		"1", 1,
		"", "2",
		"", "pd332063154.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[389] = new Element(
		389, "assets/images/nopicture.gif",
		77, 52,
		"006025508 001", "PISTON CPL. 400CC D=95MM SIZE=1",
		"", "",
		"210.82", "0",
		"1", 1,
		"", "2",
		"", "pd1330563721.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[390] = new Element(
		390, "assets/images/nopicture.gif",
		77, 52,
		"006025508 002", "PISTON CPL. 400CC D=95MM SIZE=2",
		"", "",
		"210.82", "0",
		"1", 1,
		"", "2",
		"", "pd-928860193.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[391] = new Element(
		391, "assets/images/nopicture.gif",
		77, 52,
		"006030118 000", "CLUTCH BASKET -CPL-",
		"", "",
		"184.69", "0",
		"1", 1,
		"", "2",
		"", "pd-770693681.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[392] = new Element(
		392, "assets/images/nopicture.gif",
		77, 52,
		"006030218 000", "CHAIN SPROCKET",
		"", "",
		"165.1", "0",
		"1", 1,
		"", "2",
		"", "pd742775957.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[393] = new Element(
		393, "assets/images/nopicture.gif",
		77, 52,
		"006030230 000", "NUT M20X1,5LH (PRIMARY GEAR)",
		"", "",
		"6.78", "0",
		"1", 1,
		"", "2",
		"", "pd-873281333.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[394] = new Element(
		394, "assets/images/nopicture.gif",
		77, 52,
		"006030300 000", "PRESSURE CAP",
		"", "",
		"21.24", "0",
		"1", 1,
		"", "2",
		"", "pd-532568079.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[395] = new Element(
		395, "assets/images/nopicture.gif",
		77, 52,
		"006030400 000", "INNER CLUTCH HUB",
		"", "",
		"55", "0",
		"1", 1,
		"", "2",
		"", "pd-1692306553.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[396] = new Element(
		396, "assets/images/nopicture.gif",
		77, 52,
		"006030500 000", "STEEL DISK",
		"", "",
		"4.79", "0",
		"1", 1,
		"", "2",
		"", "pd-464535283.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[397] = new Element(
		397, "assets/images/nopicture.gif",
		77, 52,
		"006030520 000", "CLUTCH DISK",
		"", "",
		"14.98", "0",
		"1", 1,
		"", "2",
		"", "pd15344131.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[398] = new Element(
		398, "assets/images/nopicture.gif",
		77, 52,
		"006030530 000", "CLUTCH DISK -MACHINED-",
		"", "",
		"17.59", "0",
		"1", 1,
		"", "2",
		"", "pd1068574512.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[399] = new Element(
		399, "assets/images/nopicture.gif",
		77, 52,
		"006030550 000", "CLUTCH SPRING",
		"", "",
		"1.34", "0",
		"1", 1,
		"", "2",
		"", "pd2128511977.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[400] = new Element(
		400, "assets/images/nopicture.gif",
		77, 52,
		"006030570 000", "SPRING WASHER SEAT",
		"", "",
		"3.62", "0",
		"1", 1,
		"", "2",
		"", "pd452796638.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[401] = new Element(
		401, "assets/images/nopicture.gif",
		77, 52,
		"006030580 000", "SPRING WASHER",
		"", "",
		"3.86", "0",
		"1", 1,
		"", "2",
		"", "pd-27219396.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[402] = new Element(
		402, "assets/images/nopicture.gif",
		77, 52,
		"006030588 000", "KIT JUDDER SPRING",
		"", "",
		"71.1", "0",
		"1", 1,
		"", "2",
		"", "pd1331628746.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[403] = new Element(
		403, "assets/images/nopicture.gif",
		77, 52,
		"006030610 000", "CLUTCH BUSH",
		"", "",
		"12.71", "0",
		"1", 1,
		"", "2",
		"", "pd-294585051.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[404] = new Element(
		404, "assets/images/nopicture.gif",
		77, 52,
		"006030620 000", "THRUST WASHER 21,7X38X3",
		"", "",
		"3.53", "0",
		"1", 1,
		"", "2",
		"", "pd-1554870209.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[405] = new Element(
		405, "assets/images/nopicture.gif",
		77, 52,
		"006030630 000", "NEEDLE BEARING 26.30.22",
		"", "",
		"8.68", "0",
		"1", 1,
		"", "2",
		"", "pd282725509.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[406] = new Element(
		406, "assets/images/nopicture.gif",
		77, 52,
		"006030640 000", "CLUTCH SAFE WASHER",
		"", "",
		"1.28", "0",
		"1", 1,
		"", "2",
		"", "pd-971752901.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[407] = new Element(
		407, "assets/images/nopicture.gif",
		77, 52,
		"006030640 009", "CLUTCH SAFE WASHER",
		"", "",
		"1.71", "0",
		"1", 1,
		"", "2",
		"", "pd-1059400184.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[408] = new Element(
		408, "assets/images/nopicture.gif",
		77, 52,
		"006030650 000", "S/ARM SPECIAL NUT 18.1,50",
		"", "",
		"6.13", "0",
		"1", 1,
		"", "2",
		"", "pd1641466742.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[409] = new Element(
		409, "assets/images/nopicture.gif",
		77, 52,
		"006030700 000", "CLUTCH PUSH ROD",
		"", "",
		"4.52", "0",
		"1", 1,
		"", "2",
		"", "pd-418892063.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[410] = new Element(
		410, "assets/images/nopicture.gif",
		77, 52,
		"006030710 000", "LIFTER, CLUTCH PUSH ROD",
		"", "",
		"9.06", "0",
		"1", 1,
		"", "2",
		"", "pd1800952823.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[411] = new Element(
		411, "assets/images/nopicture.gif",
		77, 52,
		"006030718 000", "LIFTER, CLUTCH PUSH ROD ASSY",
		"", "",
		"13.41", "0",
		"1", 1,
		"", "2",
		"", "pd-1188782339.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[412] = new Element(
		412, "assets/images/nopicture.gif",
		77, 52,
		"006030800 000", "CLUTCH SLAVE CYLINDER COVER MAC",
		"", "",
		"12.99", "0",
		"1", 1,
		"", "2",
		"", "pd-667684493.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[413] = new Element(
		413, "assets/images/nopicture.gif",
		77, 52,
		"006030808 000", "CLUTCH SLAVE CYLINDER ASSY",
		"", "",
		"22.42", "0",
		"1", 1,
		"", "2",
		"", "pd851222745.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[414] = new Element(
		414, "assets/images/nopicture.gif",
		77, 52,
		"006030818 000", "PISTON CLUTCH SLAVE CYLINDER AS",
		"", "",
		"8.6", "0",
		"1", 1,
		"", "2",
		"", "pd954447535.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[415] = new Element(
		415, "assets/images/nopicture.gif",
		77, 52,
		"006030830 000", "SPRING SLAVE CYLINDER",
		"", "",
		"0.85", "0",
		"1", 1,
		"", "2",
		"", "pd-1580509067.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[416] = new Element(
		416, "assets/images/nopicture.gif",
		77, 52,
		"006030850 000", "GASKET CLUTCH SLAVE CYLINDER",
		"", "",
		"0.4", "0",
		"1", 1,
		"", "2",
		"", "pd-523753557.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[417] = new Element(
		417, "assets/images/nopicture.gif",
		77, 52,
		"006031118 000", "CLUTCH BASKET -CPL-",
		"", "",
		"207.39", "0",
		"1", 1,
		"", "2",
		"", "pd-1851672940.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[418] = new Element(
		418, "assets/images/nopicture.gif",
		77, 52,
		"006031400 000", "INNER CLUTCH HUB RR 4T MY&rsquo;11",
		"", "",
		"55.75", "0",
		"1", 1,
		"", "2",
		"", "pd-1553641758.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[419] = new Element(
		419, "assets/images/nopicture.gif",
		77, 52,
		"006031530 000", "DISK CLUTCH FRICTION",
		"", "",
		"50.8", "0",
		"1", 1,
		"", "2",
		"", "pd877861851.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[420] = new Element(
		420, "assets/images/nopicture.gif",
		77, 52,
		"006031560 000", "CLUTCH SPRING WASHER",
		"", "",
		"1.89", "0",
		"1", 1,
		"", "2",
		"", "pd-1491754543.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[421] = new Element(
		421, "assets/images/nopicture.gif",
		77, 52,
		"006040008 000", "GEARBOX ASSY",
		"", "",
		"561.47", "0",
		"1", 1,
		"", "2",
		"", "pd1646362727.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[422] = new Element(
		422, "assets/images/nopicture.gif",
		77, 52,
		"006040100 000", "MAINSHAFT WITH BUSH",
		"", "",
		"115.24", "0",
		"1", 1,
		"", "2",
		"", "pd-338683936.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[423] = new Element(
		423, "assets/images/nopicture.gif",
		77, 52,
		"006040110 000", "MAINSHAFT",
		"", "",
		"115.24", "0",
		"1", 1,
		"", "2",
		"", "pd483684737.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[424] = new Element(
		424, "assets/images/nopicture.gif",
		77, 52,
		"006040120 000", "2ø GEAR MAINSHAFT",
		"", "",
		"30.35", "0",
		"1", 1,
		"", "2",
		"", "pd-2075780883.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[425] = new Element(
		425, "assets/images/nopicture.gif",
		77, 52,
		"006040130 000", "3ø/4ø GEAR MAINSHAFT",
		"", "",
		"79.67", "0",
		"1", 1,
		"", "2",
		"", "pd2039200995.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[426] = new Element(
		426, "assets/images/nopicture.gif",
		77, 52,
		"006040150 000", "5ø GEAR MAINSHAFT",
		"", "",
		"46.28", "0",
		"1", 1,
		"", "2",
		"", "pd1674123721.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[427] = new Element(
		427, "assets/images/nopicture.gif",
		77, 52,
		"006040160 000", "6ø GEAR MAINSHAFT",
		"", "",
		"49.03", "0",
		"1", 1,
		"", "2",
		"", "pd-1992648417.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[428] = new Element(
		428, "assets/images/nopicture.gif",
		77, 52,
		"006040200 000", "COUNTERSHAFT",
		"", "",
		"74.08", "0",
		"1", 1,
		"", "2",
		"", "pd-1234648987.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[429] = new Element(
		429, "assets/images/nopicture.gif",
		77, 52,
		"006040210 000", "1ø GEAR COUNTERSHAFT",
		"", "",
		"50.06", "0",
		"1", 1,
		"", "2",
		"", "pd536187163.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[430] = new Element(
		430, "assets/images/nopicture.gif",
		77, 52,
		"006040220 000", "2ø GEAR COUNTERSHAFT",
		"", "",
		"48.69", "0",
		"1", 1,
		"", "2",
		"", "pd-2102859583.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[431] = new Element(
		431, "assets/images/nopicture.gif",
		77, 52,
		"006040230 000", "3ø GEAR COUNTERSHAFT",
		"", "",
		"45.94", "0",
		"1", 1,
		"", "2",
		"", "pd-942415657.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[432] = new Element(
		432, "assets/images/nopicture.gif",
		77, 52,
		"1255868 074", "CONVEYOR, RIGHT",
		"", "",
		"29.2", "0",
		"1", 1,
		"", "2",
		"", "pd-1064685341.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[433] = new Element(
		433, "assets/images/nopicture.gif",
		77, 52,
		"1255868 075", "CONVEYOR, RIGHT",
		"", "",
		"29.2", "0",
		"1", 1,
		"", "2",
		"", "pd842837449.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[434] = new Element(
		434, "assets/images/nopicture.gif",
		77, 52,
		"1255869 040", "CONVEYOR, RIGHT",
		"", "",
		"37.2", "0",
		"1", 1,
		"", "2",
		"", "pd-56079073.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[435] = new Element(
		435, "assets/images/nopicture.gif",
		77, 52,
		"1255870 052", "SCOOTER L/C RH CONVEYOR",
		"", "",
		"28.84", "0",
		"1", 1,
		"", "2",
		"", "pd-1679977371.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[436] = new Element(
		436, "assets/images/nopicture.gif",
		77, 52,
		"1255870 085", "ARK RH CONVEYOR",
		"", "",
		"28.84", "0",
		"1", 1,
		"", "2",
		"", "pd-1622768357.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[437] = new Element(
		437, "assets/images/nopicture.gif",
		77, 52,
		"1255872 000", "RH CONVEYOR, MOTARD 4.0 &rsquo;05",
		"", "",
		"73.27", "0",
		"1", 1,
		"", "2",
		"", "pd-1145897791.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[438] = new Element(
		438, "assets/images/nopicture.gif",
		77, 52,
		"1255872 400", "RH CONVEYOR, M4",
		"", "",
		"73.27", "0",
		"1", 1,
		"", "2",
		"", "pd-1313073961.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[439] = new Element(
		439, "assets/images/nopicture.gif",
		77, 52,
		"1255872 459", "RH CONVEYOR, M4",
		"", "",
		"80.76", "0",
		"1", 1,
		"", "2",
		"", "pd-1672052003.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[440] = new Element(
		440, "assets/images/nopicture.gif",
		77, 52,
		"1255873 000", "LH CONVEYOR, MOTARD 4.0 &rsquo;05",
		"", "",
		"73.27", "0",
		"1", 1,
		"", "2",
		"", "pd-1087637421.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[441] = new Element(
		441, "assets/images/nopicture.gif",
		77, 52,
		"1255873 400", "LH CONVEYOR, M4",
		"", "",
		"73.27", "0",
		"1", 1,
		"", "2",
		"", "pd370377401.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[442] = new Element(
		442, "assets/images/nopicture.gif",
		77, 52,
		"1255873 459", "LH CONVEYOR, M4",
		"", "",
		"80.76", "0",
		"1", 1,
		"", "2",
		"", "pd650177423.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[443] = new Element(
		443, "assets/images/nopicture.gif",
		77, 52,
		"1255878 019", "CONVEYOR, LEFT",
		"", "",
		"32.2", "0",
		"1", 1,
		"", "2",
		"", "pd-612165547.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[444] = new Element(
		444, "assets/images/nopicture.gif",
		77, 52,
		"1255878 033", "CONVEYOR, LEFT",
		"", "",
		"30.74", "0",
		"1", 1,
		"", "2",
		"", "pd-374773109.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[445] = new Element(
		445, "assets/images/nopicture.gif",
		77, 52,
		"1255878 052", "CONVEYOR, LEFT",
		"", "",
		"28.36", "0",
		"1", 1,
		"", "2",
		"", "pd1743265713.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[446] = new Element(
		446, "assets/images/nopicture.gif",
		77, 52,
		"1255878 063", "CONVEYOR, LEFT",
		"", "",
		"29.2", "0",
		"1", 1,
		"", "2",
		"", "pd819179847.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[447] = new Element(
		447, "assets/images/nopicture.gif",
		77, 52,
		"1255878 074", "CONVEYOR, LEFT",
		"", "",
		"29.2", "0",
		"1", 1,
		"", "2",
		"", "pd1800090829.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[448] = new Element(
		448, "assets/images/nopicture.gif",
		77, 52,
		"1255878 075", "CONVEYOR, LEFT",
		"", "",
		"29.2", "0",
		"1", 1,
		"", "2",
		"", "pd-2039891005.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[449] = new Element(
		449, "assets/images/nopicture.gif",
		77, 52,
		"1255879 040", "CONVEYOR, LEFT CRUISER",
		"", "",
		"34.7", "0",
		"1", 1,
		"", "2",
		"", "pd274117545.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[450] = new Element(
		450, "assets/images/nopicture.gif",
		77, 52,
		"1255890 000", "CONVEYOR SCOOTER 125/150",
		"", "",
		"14.37", "0",
		"1", 1,
		"", "2",
		"", "pd2131576319.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[451] = new Element(
		451, "assets/images/nopicture.gif",
		77, 52,
		"1255901 000", "NUTS COVER SWINGING ARM",
		"", "",
		"2.85", "0",
		"1", 1,
		"", "2",
		"", "pd938653765.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[452] = new Element(
		452, "assets/images/nopicture.gif",
		77, 52,
		"1255910 000", "PUMP COVER BRAKET",
		"", "",
		"6.77", "0",
		"1", 1,
		"", "2",
		"", "pd1322503163.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[453] = new Element(
		453, "assets/images/nopicture.gif",
		77, 52,
		"1255911 000", "BRAKE PUMP COVER",
		"", "",
		"11.11", "0",
		"1", 1,
		"", "2",
		"", "pd-2036261215.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[454] = new Element(
		454, "assets/images/nopicture.gif",
		77, 52,
		"1255912 000", "PUMP COVER BRAKET",
		"", "",
		"10.04", "0",
		"1", 1,
		"", "2",
		"", "pd-2046654025.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[455] = new Element(
		455, "assets/images/nopicture.gif",
		77, 52,
		"1255913 000", "COVER FOR THROTTLE ASSY MINI CR",
		"", "",
		"6.19", "0",
		"1", 1,
		"", "2",
		"", "pd-543587651.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[456] = new Element(
		456, "assets/images/nopicture.gif",
		77, 52,
		"1255915 000", "COVER LOCK",
		"", "",
		"0.61", "0",
		"1", 1,
		"", "2",
		"", "pd-242582733.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[457] = new Element(
		457, "assets/images/nopicture.gif",
		77, 52,
		"1255916 000", "PUMP COVER BRAKET, BLACK ANODIZ",
		"", "",
		"10.09", "0",
		"1", 1,
		"", "2",
		"", "pd-1448787815.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[458] = new Element(
		458, "assets/images/nopicture.gif",
		77, 52,
		"1255930 052", "BOX COVER SCOOTER",
		"", "",
		"19.89", "0",
		"1", 1,
		"", "2",
		"", "pd1531206767.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[459] = new Element(
		459, "assets/images/nopicture.gif",
		77, 52,
		"1255930 067", "BOX COVER SCOOTER",
		"", "",
		"19.6", "0",
		"1", 1,
		"", "2",
		"", "pd-105155531.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[460] = new Element(
		460, "assets/images/nopicture.gif",
		77, 52,
		"1255960 000", "TWIST GRIP COVER TR-34",
		"", "",
		"5.19", "0",
		"1", 1,
		"", "2",
		"", "pd-1511216789.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[461] = new Element(
		461, "assets/images/nopicture.gif",
		77, 52,
		"1255965 000", "TWIST GRIP COVER",
		"", "",
		"4.78", "0",
		"1", 1,
		"", "2",
		"", "pd2136799633.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[462] = new Element(
		462, "assets/images/nopicture.gif",
		77, 52,
		"1255970 000", "BRAKE PLIERS COVER",
		"", "",
		"0.89", "0",
		"1", 1,
		"", "2",
		"", "pd-2132828633.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[463] = new Element(
		463, "assets/images/nopicture.gif",
		77, 52,
		"1256500 067", "BATTERY COVER",
		"", "",
		"7.07", "0",
		"1", 1,
		"", "2",
		"", "pd-827298643.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[464] = new Element(
		464, "assets/images/nopicture.gif",
		77, 52,
		"1256510 052", "BATTERY COVER",
		"", "",
		"7.13", "0",
		"1", 1,
		"", "2",
		"", "pd-1349175645.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[465] = new Element(
		465, "assets/images/nopicture.gif",
		77, 52,
		"1256510 067", "BATTERY COVER SCOOTER/95",
		"", "",
		"7.13", "0",
		"1", 1,
		"", "2",
		"", "pd1683892617.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[466] = new Element(
		466, "assets/images/nopicture.gif",
		77, 52,
		"1256515 059", "COVER, CRUISER BATTERY",
		"", "",
		"2.75", "0",
		"1", 1,
		"", "2",
		"", "pd-1596117281.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[467] = new Element(
		467, "assets/images/nopicture.gif",
		77, 52,
		"1256520 052", "FRAME NUMBERS COVER",
		"", "",
		"4.06", "0",
		"1", 1,
		"", "2",
		"", "pd2133609509.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[468] = new Element(
		468, "assets/images/nopicture.gif",
		77, 52,
		"1256520 067", "FRAME NUMBERS COVER",
		"", "",
		"4.06", "0",
		"1", 1,
		"", "2",
		"", "pd-774176037.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[469] = new Element(
		469, "assets/images/nopicture.gif",
		77, 52,
		"1256521 067", "FRAME NUMERS COVER",
		"", "",
		"11.46", "0",
		"1", 1,
		"", "2",
		"", "pd-1420119935.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[470] = new Element(
		470, "assets/images/nopicture.gif",
		77, 52,
		"1256522 040", "&quot;PLEXIGLAS COVER&quot;&quot;SCOOTER EIKON,&quot;",
		"", "",
		"8.7", "0",
		"1", 1,
		"", "2",
		"", "pd952233623.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[471] = new Element(
		471, "assets/images/nopicture.gif",
		77, 52,
		"1256523 067", "PLEXIGLAX  COVER SCOOTER EIKON",
		"", "",
		"3.52", "0",
		"1", 1,
		"", "2",
		"", "pd-1681984867.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[472] = new Element(
		472, "assets/images/nopicture.gif",
		77, 52,
		"1256524 067", "PLEXIGLAX COVER SCOOTER EIKON 5",
		"", "",
		"4.54", "0",
		"1", 1,
		"", "2",
		"", "pd-1286541805.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[473] = new Element(
		473, "assets/images/nopicture.gif",
		77, 52,
		"1256525 159", "COVER, RACE DIP",
		"", "",
		"2.73", "0",
		"1", 1,
		"", "2",
		"", "pd-1398772103.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[474] = new Element(
		474, "assets/images/nopicture.gif",
		77, 52,
		"1256528 025", "COVER, CRUISER OIL TANK",
		"", "",
		"43.24", "0",
		"1", 1,
		"", "2",
		"", "pd890158415.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[475] = new Element(
		475, "assets/images/nopicture.gif",
		77, 52,
		"1256530 052", "BATTERY COVER",
		"", "",
		"8.16", "0",
		"1", 1,
		"", "2",
		"", "pd743718933.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[476] = new Element(
		476, "assets/images/nopicture.gif",
		77, 52,
		"1256530 067", "BATTERY COVER",
		"", "",
		"8.16", "0",
		"1", 1,
		"", "2",
		"", "pd826660939.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[477] = new Element(
		477, "assets/images/nopicture.gif",
		77, 52,
		"1256531 033", "BATTERY COVER, EIKON",
		"", "",
		"25.33", "0",
		"1", 1,
		"", "2",
		"", "pd1167672177.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[478] = new Element(
		478, "assets/images/nopicture.gif",
		77, 52,
		"1256531 034", "BATTERY COVER EIKON",
		"", "",
		"25.33", "0",
		"1", 1,
		"", "2",
		"", "pd2092989191.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[479] = new Element(
		479, "assets/images/nopicture.gif",
		77, 52,
		"1256531 036", "BATTERY COVER SC.125/150",
		"", "",
		"25.33", "0",
		"1", 1,
		"", "2",
		"", "pd666113165.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[480] = new Element(
		480, "assets/images/nopicture.gif",
		77, 52,
		"1256531 038", "BATTERY COVER",
		"", "",
		"29.9", "0",
		"1", 1,
		"", "2",
		"", "pd-1555783293.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[481] = new Element(
		481, "assets/images/nopicture.gif",
		77, 52,
		"1256531 041", "BATTERY COVER",
		"", "",
		"29.9", "0",
		"1", 1,
		"", "2",
		"", "pd-934604951.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[482] = new Element(
		482, "assets/images/nopicture.gif",
		77, 52,
		"1256531 042", "BATTERY COVER",
		"", "",
		"29.9", "0",
		"1", 1,
		"", "2",
		"", "pd1825572799.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[483] = new Element(
		483, "assets/images/nopicture.gif",
		77, 52,
		"1256531 044", "BATTERY COVER, EIKON",
		"", "",
		"24.6", "0",
		"1", 1,
		"", "2",
		"", "pd1526878213.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[484] = new Element(
		484, "assets/images/nopicture.gif",
		77, 52,
		"1256531 052", "BATTERY COVER",
		"", "",
		"29.9", "0",
		"1", 1,
		"", "2",
		"", "pd244591035.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[485] = new Element(
		485, "assets/images/nopicture.gif",
		77, 52,
		"1256531 063", "BATTERY COVER, EIKON",
		"", "",
		"25.47", "0",
		"1", 1,
		"", "2",
		"", "pd1524085345.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[486] = new Element(
		486, "assets/images/nopicture.gif",
		77, 52,
		"1256531 087", "BATTERY COVER SC.125/150",
		"", "",
		"29.9", "0",
		"1", 1,
		"", "2",
		"", "pd1135756151.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[487] = new Element(
		487, "assets/images/nopicture.gif",
		77, 52,
		"1256532 067", "RH HANDLE COVER",
		"", "",
		"1.98", "0",
		"1", 1,
		"", "2",
		"", "pd-1052847491.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[488] = new Element(
		488, "assets/images/nopicture.gif",
		77, 52,
		"1256533 067", "LH HANDLE COVER",
		"", "",
		"1.98", "0",
		"1", 1,
		"", "2",
		"", "pd1236750579.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[489] = new Element(
		489, "assets/images/nopicture.gif",
		77, 52,
		"1256534 000", "COVER, TWIST GRIP",
		"", "",
		"1.88", "0",
		"1", 1,
		"", "2",
		"", "pd-956494759.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[490] = new Element(
		490, "assets/images/nopicture.gif",
		77, 52,
		"1256536 000", "CARBURETTOR COVER",
		"", "",
		"17.98", "0",
		"1", 1,
		"", "2",
		"", "pd2094534191.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[491] = new Element(
		491, "assets/images/nopicture.gif",
		77, 52,
		"1256550 823", "COVER, CRUISER CLUTCH CRANKCASE",
		"", "",
		"57.76", "0",
		"1", 1,
		"", "2",
		"", "pd1254456309.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[492] = new Element(
		492, "assets/images/nopicture.gif",
		77, 52,
		"1262080 058", "CLUTCH COVER",
		"", "",
		"89.63", "0",
		"1", 1,
		"", "2",
		"", "pd267188011.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[493] = new Element(
		493, "assets/images/nopicture.gif",
		77, 52,
		"1618387 057", "LEFT FORK SLIDER, 15.08049/52",
		"", "",
		"256.59", "0",
		"1", 1,
		"", "2",
		"", "pd1438097051.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[494] = new Element(
		494, "assets/images/nopicture.gif",
		77, 52,
		"1618392 000", "LEFT FORK LEG 15.08133/4",
		"", "",
		"228.41", "0",
		"1", 1,
		"", "2",
		"", "pd541045313.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[495] = new Element(
		495, "assets/images/nopicture.gif",
		77, 52,
		"1618393 000", "LH FORCK, ALP 4.0 D.46",
		"", "",
		"255.03", "0",
		"1", 1,
		"", "2",
		"", "pd-1195522473.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[496] = new Element(
		496, "assets/images/nopicture.gif",
		77, 52,
		"1618394 000", "LH FORCK, MOTARD 4.0 D.46",
		"", "",
		"266.59", "0",
		"1", 1,
		"", "2",
		"", "pd1799721053.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[497] = new Element(
		497, "assets/images/nopicture.gif",
		77, 52,
		"1618395 000", "LEFT FORK SLIDER, 15.03125",
		"", "",
		"105.4", "0",
		"1", 1,
		"", "2",
		"", "pd-1380466221.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[498] = new Element(
		498, "assets/images/nopicture.gif",
		77, 52,
		"1618395 059", "LEFT FORK SLIDER, 15.03125.059",
		"", "",
		"104.18", "0",
		"1", 1,
		"", "2",
		"", "pd-184915911.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[499] = new Element(
		499, "assets/images/nopicture.gif",
		77, 52,
		"1618396 000", "LEFT FORK SLIDER, 15.03126",
		"", "",
		"227.22", "0",
		"1", 1,
		"", "2",
		"", "pd1114131727.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[500] = new Element(
		500, "assets/images/nopicture.gif",
		77, 52,
		"1618397 000", "LEFT LEG FRONT FORK, MINI CROSS",
		"", "",
		"166.35", "0",
		"1", 1,
		"", "2",
		"", "pd542070229.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[501] = new Element(
		501, "assets/images/nopicture.gif",
		77, 52,
		"1618398 000", "LH FORK SLIDER",
		"", "",
		"255.07", "0",
		"1", 1,
		"", "2",
		"", "pd1434635.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[502] = new Element(
		502, "assets/images/nopicture.gif",
		77, 52,
		"1618399 000", "LH FORK SLIDER",
		"", "",
		"237.03", "0",
		"1", 1,
		"", "2",
		"", "pd-1906363087.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[503] = new Element(
		503, "assets/images/nopicture.gif",
		77, 52,
		"1618401 000", "RIGHT FORK SLIDER, 15.03125",
		"", "",
		"204.39", "0",
		"1", 1,
		"", "2",
		"", "pd155632327.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[504] = new Element(
		504, "assets/images/nopicture.gif",
		77, 52,
		"1618402 000", "LEFT FORK SLIDER, 15.03125",
		"", "",
		"235.47", "0",
		"1", 1,
		"", "2",
		"", "pd-494230963.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[505] = new Element(
		505, "assets/images/nopicture.gif",
		77, 52,
		"1618403 000", "RIGHT FORK SLIDER, 15.03126",
		"", "",
		"204.39", "0",
		"1", 1,
		"", "2",
		"", "pd1799152963.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[506] = new Element(
		506, "assets/images/nopicture.gif",
		77, 52,
		"1618403 059", "RIGHT FORK SLIDER, 15.03126.059",
		"", "",
		"208.1", "0",
		"1", 1,
		"", "2",
		"", "pd-531367639.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[507] = new Element(
		507, "assets/images/nopicture.gif",
		77, 52,
		"1618404 000", "LEFT FORK SLIDER, 15.03126",
		"", "",
		"235.47", "0",
		"1", 1,
		"", "2",
		"", "pd1597114239.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[508] = new Element(
		508, "assets/images/nopicture.gif",
		77, 52,
		"1618404 059", "LEFT FORK SLIDER, 15.03126.059",
		"", "",
		"238.53", "0",
		"1", 1,
		"", "2",
		"", "pd-17082939.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[509] = new Element(
		509, "assets/images/nopicture.gif",
		77, 52,
		"1618631 000", "RH COMPL.FORK SLIDER EIKON",
		"", "",
		"163.61", "0",
		"1", 1,
		"", "2",
		"", "pd-145513093.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[510] = new Element(
		510, "assets/images/nopicture.gif",
		77, 52,
		"1618632 000", "RH COMPL.FORK SLIDER",
		"", "",
		"192.83", "0",
		"1", 1,
		"", "2",
		"", "pd1322947617.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[511] = new Element(
		511, "assets/images/nopicture.gif",
		77, 52,
		"1618633 000", "RIGHT COMPL. FORK, CRUISER",
		"", "",
		"286.5", "0",
		"1", 1,
		"", "2",
		"", "pd1937701687.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[512] = new Element(
		512, "assets/images/nopicture.gif",
		77, 52,
		"1618636 057", "RH FORK SLIDER",
		"", "",
		"181.4", "0",
		"1", 1,
		"", "2",
		"", "pd1283543101.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[513] = new Element(
		513, "assets/images/nopicture.gif",
		77, 52,
		"1618638 057", "RH FORK SLIDER, 15.08047/8/9",
		"", "",
		"256.59", "0",
		"1", 1,
		"", "2",
		"", "pd968688819.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[514] = new Element(
		514, "assets/images/nopicture.gif",
		77, 52,
		"1618639 057", "RH FORK SLIDER",
		"", "",
		"213.64", "0",
		"1", 1,
		"", "2",
		"", "pd-40835559.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[515] = new Element(
		515, "assets/images/nopicture.gif",
		77, 52,
		"1618640 052", "COMPL.SLIDER TECHNO",
		"", "",
		"201.01", "0",
		"1", 1,
		"", "2",
		"", "pd780041711.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[516] = new Element(
		516, "assets/images/nopicture.gif",
		77, 52,
		"1618641 035", "COMPL.SLIDER REV3",
		"", "",
		"203.64", "0",
		"1", 1,
		"", "2",
		"", "pd1935176117.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[517] = new Element(
		517, "assets/images/nopicture.gif",
		77, 52,
		"1618641 052", "RH FOR SLIDER",
		"", "",
		"449", "0",
		"1", 1,
		"", "2",
		"", "pd-392699157.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[518] = new Element(
		518, "assets/images/nopicture.gif",
		77, 52,
		"1618641 053", "RH FORK SLIDER",
		"", "",
		"449", "0",
		"1", 1,
		"", "2",
		"", "pd-1892626671.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[519] = new Element(
		519, "assets/images/nopicture.gif",
		77, 52,
		"1618642 000", "RH COMPL.FORK SLIDER ARK",
		"", "",
		"221.31", "0",
		"1", 1,
		"", "2",
		"", "pd-50499673.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[520] = new Element(
		520, "assets/images/nopicture.gif",
		77, 52,
		"1618642 059", "RH COMPL.FORK SLIDER ARK",
		"", "",
		"225.8", "0",
		"1", 1,
		"", "2",
		"", "pd-1533502931.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[521] = new Element(
		521, "assets/images/nopicture.gif",
		77, 52,
		"2598917 019", "SILENCER SHIELD",
		"", "",
		"45.01", "0",
		"1", 1,
		"", "2",
		"", "pd27580637.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[522] = new Element(
		522, "assets/images/nopicture.gif",
		77, 52,
		"2598918 000", "SILENCER SHIELD",
		"", "",
		"55.99", "0",
		"1", 1,
		"", "2",
		"", "pd-375179079.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[523] = new Element(
		523, "assets/images/nopicture.gif",
		77, 52,
		"2598920 052", "LIQUID TANK PROTECTION MX-50",
		"", "",
		"5.83", "0",
		"1", 1,
		"", "2",
		"", "pd-1695575665.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[524] = new Element(
		524, "assets/images/nopicture.gif",
		77, 52,
		"2598921 000", "ALP 200CC E2 MUFFLER PROTECTION",
		"", "",
		"113.03", "0",
		"1", 1,
		"", "2",
		"", "pd791293525.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[525] = new Element(
		525, "assets/images/nopicture.gif",
		77, 52,
		"2598921 019", "ALP4T E2 MUFFLER PROTECTION - G",
		"", "",
		"134.37", "0",
		"1", 1,
		"", "2",
		"", "pd759066763.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[526] = new Element(
		526, "assets/images/nopicture.gif",
		77, 52,
		"2598922 100", "COVER, SLIDING BLOCK",
		"", "",
		"10.53", "0",
		"1", 1,
		"", "2",
		"", "pd-958622287.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[527] = new Element(
		527, "assets/images/nopicture.gif",
		77, 52,
		"2598922 800", "COVER, SLIDING BLOCK",
		"", "",
		"14.19", "0",
		"1", 1,
		"", "2",
		"", "pd-638249145.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[528] = new Element(
		528, "assets/images/nopicture.gif",
		77, 52,
		"2598923 000", "RR4T RH CARBON FRAME PROTECTION",
		"", "",
		"93.63", "0",
		"1", 1,
		"", "2",
		"", "pd807602893.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[529] = new Element(
		529, "assets/images/nopicture.gif",
		77, 52,
		"2598924 000", "RR4T LH CARBON FRAME PROTECTION",
		"", "",
		"62.42", "0",
		"1", 1,
		"", "2",
		"", "pd161317315.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[530] = new Element(
		530, "assets/images/nopicture.gif",
		77, 52,
		"2598925 000", "RR4T RH FRAME PROTECTION",
		"", "",
		"11.85", "0",
		"1", 1,
		"", "2",
		"", "pd453503401.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[531] = new Element(
		531, "assets/images/nopicture.gif",
		77, 52,
		"2598926 000", "RR4T LH FRAME PROTECTION",
		"", "",
		"11.85", "0",
		"1", 1,
		"", "2",
		"", "pd-717657089.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[532] = new Element(
		532, "assets/images/nopicture.gif",
		77, 52,
		"2598931 000", "RR4T RH FRAME PROTECTION",
		"", "",
		"8.68", "0",
		"1", 1,
		"", "2",
		"", "pd-656935271.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[533] = new Element(
		533, "assets/images/nopicture.gif",
		77, 52,
		"2598932 000", "RR4T RH CARBON FRAME PROTECTION",
		"", "",
		"93.63", "0",
		"1", 1,
		"", "2",
		"", "pd-1077018001.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[534] = new Element(
		534, "assets/images/nopicture.gif",
		77, 52,
		"2598933 014", "MUFFLER PROTECTION ALP4/M4 GREY",
		"", "",
		"51.43", "0",
		"1", 1,
		"", "2",
		"", "pd-1053455819.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[535] = new Element(
		535, "assets/images/nopicture.gif",
		77, 52,
		"2598934 014", "SILENCER SHIELD",
		"", "",
		"20.21", "0",
		"1", 1,
		"", "2",
		"", "pd1837936491.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[536] = new Element(
		536, "assets/images/nopicture.gif",
		77, 52,
		"2598934 159", "SILENCER SHIELD",
		"", "",
		"17.98", "0",
		"1", 1,
		"", "2",
		"", "pd-850104431.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[537] = new Element(
		537, "assets/images/nopicture.gif",
		77, 52,
		"2598955 000", "REAR SPROCKET PROTECTION",
		"", "",
		"2.94", "0",
		"1", 1,
		"", "2",
		"", "pd1058048219.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[538] = new Element(
		538, "assets/images/nopicture.gif",
		77, 52,
		"2598965 000", "RH FRONT SHIELD PROTECTION",
		"", "",
		"58.74", "0",
		"1", 1,
		"", "2",
		"", "pd1055106689.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[539] = new Element(
		539, "assets/images/nopicture.gif",
		77, 52,
		"2598966 000", "LH FRONT SHIELD PROTECTION",
		"", "",
		"58.74", "0",
		"1", 1,
		"", "2",
		"", "pd1787548823.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[540] = new Element(
		540, "assets/images/nopicture.gif",
		77, 52,
		"2598970 053", "RH FORK TUBE PROTECTION ZERO",
		"", "",
		"4.27", "0",
		"1", 1,
		"", "2",
		"", "pd728975517.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[541] = new Element(
		541, "assets/images/nopicture.gif",
		77, 52,
		"2598980 053", "LH FORK TUBE PROTECTION ZERO",
		"", "",
		"4.27", "0",
		"1", 1,
		"", "2",
		"", "pd1588933651.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[542] = new Element(
		542, "assets/images/nopicture.gif",
		77, 52,
		"2598995 000", "PROTECTION, LOOK SADDLE",
		"", "",
		"2.57", "0",
		"1", 1,
		"", "2",
		"", "pd1291199609.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[543] = new Element(
		543, "assets/images/nopicture.gif",
		77, 52,
		"2599210 000", "PUSHBUTTON FOR DIRECTION INDICA",
		"", "",
		"2.16", "0",
		"1", 1,
		"", "2",
		"", "pd-1686936753.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[544] = new Element(
		544, "assets/images/nopicture.gif",
		77, 52,
		"2599215 000", "PUSHBUTTON FOR DIGITAL SPEEDOME",
		"", "",
		"41.84", "0",
		"1", 1,
		"", "2",
		"", "pd-719235563.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[545] = new Element(
		545, "assets/images/nopicture.gif",
		77, 52,
		"2599216 000", "REV-3 HORN BUTTON",
		"", "",
		"21.08", "0",
		"1", 1,
		"", "2",
		"", "pd-1502552501.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[546] = new Element(
		546, "assets/images/nopicture.gif",
		77, 52,
		"2599217 000", "HORN BUTTON",
		"", "",
		"21.38", "0",
		"1", 1,
		"", "2",
		"", "pd-938231439.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[547] = new Element(
		547, "assets/images/nopicture.gif",
		77, 52,
		"2599500 047", "UNDER FUEL TANK PROTECTION SCOO",
		"", "",
		"69.9", "0",
		"1", 1,
		"", "2",
		"", "pd1289216263.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[548] = new Element(
		548, "assets/images/nopicture.gif",
		77, 52,
		"2599500 048", "UNDER FUEL TANK PROTECTION",
		"", "",
		"69.9", "0",
		"1", 1,
		"", "2",
		"", "pd-2072909171.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[549] = new Element(
		549, "assets/images/nopicture.gif",
		77, 52,
		"2599500 051", "UNDER TANK FUEL PROTECTION",
		"", "",
		"73.57", "0",
		"1", 1,
		"", "2",
		"", "pd1489921923.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[550] = new Element(
		550, "assets/images/nopicture.gif",
		77, 52,
		"2599500 052", "UNDER TANK FUEL PROTECTION",
		"", "",
		"75.78", "0",
		"1", 1,
		"", "2",
		"", "pd-448641687.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[551] = new Element(
		551, "assets/images/nopicture.gif",
		77, 52,
		"2599500 053", "UNDER FUEL TANK PROTECTION",
		"", "",
		"75.78", "0",
		"1", 1,
		"", "2",
		"", "pd1991388607.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[552] = new Element(
		552, "assets/images/nopicture.gif",
		77, 52,
		"2599500 054", "UNDER FUEL TANK PROTECTION",
		"", "",
		"69.9", "0",
		"1", 1,
		"", "2",
		"", "pd428402181.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[553] = new Element(
		553, "assets/images/nopicture.gif",
		77, 52,
		"2599500 059", "UNDER FUEL TANK PROTECTION",
		"", "",
		"75.78", "0",
		"1", 1,
		"", "2",
		"", "pd-971722821.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[554] = new Element(
		554, "assets/images/nopicture.gif",
		77, 52,
		"2599500 063", "UNDER FUEL TANK PROTECTION",
		"", "",
		"75.78", "0",
		"1", 1,
		"", "2",
		"", "pd228829281.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[555] = new Element(
		555, "assets/images/nopicture.gif",
		77, 52,
		"2599500 068", "UNDER FUEL TANK PROTECTION",
		"", "",
		"75.78", "0",
		"1", 1,
		"", "2",
		"", "pd1383541111.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[556] = new Element(
		556, "assets/images/nopicture.gif",
		77, 52,
		"2599500 069", "UNDER FUEL TANK PROTECTION",
		"", "",
		"69.9", "0",
		"1", 1,
		"", "2",
		"", "pd40249469.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[557] = new Element(
		557, "assets/images/nopicture.gif",
		77, 52,
		"2599500 070", "UNDER FUEL TANK PROTECTION",
		"", "",
		"75.78", "0",
		"1", 1,
		"", "2",
		"", "pd1875285747.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[558] = new Element(
		558, "assets/images/nopicture.gif",
		77, 52,
		"2599500 071", "UNDER FUEL TANK PROTECTION",
		"", "",
		"69.9", "0",
		"1", 1,
		"", "2",
		"", "pd-1376402855.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[559] = new Element(
		559, "assets/images/nopicture.gif",
		77, 52,
		"2599500 073", "UNDER FUEL TANK PROTECTION",
		"", "",
		"69.9", "0",
		"1", 1,
		"", "2",
		"", "pd-1231571921.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[560] = new Element(
		560, "assets/images/nopicture.gif",
		77, 52,
		"2599500 075", "UNDER FUEL TANK PROTECTION",
		"", "",
		"75.78", "0",
		"1", 1,
		"", "2",
		"", "pd40210933.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[561] = new Element(
		561, "assets/images/nopicture.gif",
		77, 52,
		"2599500 078", "UNDER FUEL TANK PROTECTION",
		"", "",
		"69.9", "0",
		"1", 1,
		"", "2",
		"", "pd472055083.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[562] = new Element(
		562, "assets/images/nopicture.gif",
		77, 52,
		"2599500 080", "UNDER FUEL TANK PROTECTION",
		"", "",
		"75.78", "0",
		"1", 1,
		"", "2",
		"", "pd1980920657.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[563] = new Element(
		563, "assets/images/nopicture.gif",
		77, 52,
		"2599500 081", "UNDER FUEL TANK PROTECTION",
		"", "",
		"82.61", "0",
		"1", 1,
		"", "2",
		"", "pd1644211687.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[564] = new Element(
		564, "assets/images/nopicture.gif",
		77, 52,
		"2599500 087", "UNDER FUEL TANK PROTECTION",
		"", "",
		"69.9", "0",
		"1", 1,
		"", "2",
		"", "pd1774125677.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[565] = new Element(
		565, "assets/images/nopicture.gif",
		77, 52,
		"2599500 089", "UNDER FUEL TANK PROTECTION SCOO",
		"", "",
		"73.11", "0",
		"1", 1,
		"", "2",
		"", "pd-643513757.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[566] = new Element(
		566, "assets/images/nopicture.gif",
		77, 52,
		"2599500 090", "UNDER FUEL TANK PROTECTION SCOO",
		"", "",
		"73.94", "0",
		"1", 1,
		"", "2",
		"", "pd141531977.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[567] = new Element(
		567, "assets/images/nopicture.gif",
		77, 52,
		"2599500 091", "UNDER FUEL TANK PROTECTION SCOO",
		"", "",
		"69.9", "0",
		"1", 1,
		"", "2",
		"", "pd932902559.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[568] = new Element(
		568, "assets/images/nopicture.gif",
		77, 52,
		"2599520 032", "UNDER PROTECTION",
		"", "",
		"76.45", "0",
		"1", 1,
		"", "2",
		"", "pd-1123657243.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[569] = new Element(
		569, "assets/images/nopicture.gif",
		77, 52,
		"2599520 033", "UNDER PROTECTION SCOOTER ARK",
		"", "",
		"72.05", "0",
		"1", 1,
		"", "2",
		"", "pd-226310501.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[570] = new Element(
		570, "assets/images/nopicture.gif",
		77, 52,
		"2599520 049", "UNDER FUEL TANK PROTECTION",
		"", "",
		"69.7", "0",
		"1", 1,
		"", "2",
		"", "pd429857345.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[571] = new Element(
		571, "assets/images/nopicture.gif",
		77, 52,
		"2599520 052", "UNDER PROTECTION",
		"", "",
		"69.7", "0",
		"1", 1,
		"", "2",
		"", "pd1774939735.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[572] = new Element(
		572, "assets/images/nopicture.gif",
		77, 52,
		"2599520 053", "UNDER PROTECTION",
		"", "",
		"69.7", "0",
		"1", 1,
		"", "2",
		"", "pd-861177763.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[573] = new Element(
		573, "assets/images/nopicture.gif",
		77, 52,
		"2599520 057", "UNDER PROTECTION",
		"", "",
		"69.7", "0",
		"1", 1,
		"", "2",
		"", "pd-802166317.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[574] = new Element(
		574, "assets/images/nopicture.gif",
		77, 52,
		"2599520 059", "UNDER PROTECTION",
		"", "",
		"69.69", "0",
		"1", 1,
		"", "2",
		"", "pd-3223495.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[575] = new Element(
		575, "assets/images/nopicture.gif",
		77, 52,
		"2599520 063", "UNDER PROTECTION",
		"", "",
		"69.7", "0",
		"1", 1,
		"", "2",
		"", "pd-1779239665.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[576] = new Element(
		576, "assets/images/nopicture.gif",
		77, 52,
		"2599520 069", "UNDER PROTECTION",
		"", "",
		"69.7", "0",
		"1", 1,
		"", "2",
		"", "pd1014644181.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[577] = new Element(
		577, "assets/images/nopicture.gif",
		77, 52,
		"2599520 075", "UNDER PROTECTION",
		"", "",
		"69.07", "0",
		"1", 1,
		"", "2",
		"", "pd-824505333.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[578] = new Element(
		578, "assets/images/nopicture.gif",
		77, 52,
		"2599520 084", "UNDER PROTECTION",
		"", "",
		"69.77", "0",
		"1", 1,
		"", "2",
		"", "pd-1303864015.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[579] = new Element(
		579, "assets/images/nopicture.gif",
		77, 52,
		"2599520 085", "UNDER FUEL TANK PROTECTION",
		"", "",
		"69.7", "0",
		"1", 1,
		"", "2",
		"", "pd-806458681.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[580] = new Element(
		580, "assets/images/nopicture.gif",
		77, 52,
		"2599520 087", "UNDER PROTECTION",
		"", "",
		"69.7", "0",
		"1", 1,
		"", "2",
		"", "pd2065336909.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[581] = new Element(
		581, "assets/images/nopicture.gif",
		77, 52,
		"2599520 094", "UNDER PROTECTION",
		"", "",
		"80.69", "0",
		"1", 1,
		"", "2",
		"", "pd15666499.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[582] = new Element(
		582, "assets/images/nopicture.gif",
		77, 52,
		"2599520 097", "UNDER PROTECTION",
		"", "",
		"69.23", "0",
		"1", 1,
		"", "2",
		"", "pd955408681.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[583] = new Element(
		583, "assets/images/nopicture.gif",
		77, 52,
		"2599520 098", "UNDER FUEL TANK PROTECTION",
		"", "",
		"69.7", "0",
		"1", 1,
		"", "2",
		"", "pd-1651069057.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[584] = new Element(
		584, "assets/images/nopicture.gif",
		77, 52,
		"2599530 044", "UNDER PROTECTION",
		"", "",
		"95", "0",
		"1", 1,
		"", "2",
		"", "pd697318853.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[585] = new Element(
		585, "assets/images/nopicture.gif",
		77, 52,
		"2599530 057", "UNDER PROTECTION",
		"", "",
		"138.15", "0",
		"1", 1,
		"", "2",
		"", "pd-493695621.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[586] = new Element(
		586, "assets/images/nopicture.gif",
		77, 52,
		"2599531 033", "UNDER PROTECTION SC. 125/150",
		"", "",
		"76.6", "0",
		"1", 1,
		"", "2",
		"", "pd-1949434847.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[587] = new Element(
		587, "assets/images/nopicture.gif",
		77, 52,
		"2599531 034", "UNDER PROTECTION SC. 125/150",
		"", "",
		"76.6", "0",
		"1", 1,
		"", "2",
		"", "pd-499080393.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[588] = new Element(
		588, "assets/images/nopicture.gif",
		77, 52,
		"2599531 036", "UNDER PROTECTION SCOOTER 125/15",
		"", "",
		"76.6", "0",
		"1", 1,
		"", "2",
		"", "pd-222611395.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[589] = new Element(
		589, "assets/images/nopicture.gif",
		77, 52,
		"2599531 038", "UNDER PROTECTION SC.125/150",
		"", "",
		"97.39", "0",
		"1", 1,
		"", "2",
		"", "pd-47633229.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[590] = new Element(
		590, "assets/images/nopicture.gif",
		77, 52,
		"2599531 044", "UNDER PROTECTION SC.50/125/150",
		"", "",
		"87.96", "0",
		"1", 1,
		"", "2",
		"", "pd-495366631.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[591] = new Element(
		591, "assets/images/nopicture.gif",
		77, 52,
		"2599531 063", "YELLOW LOWER PANEL, EIKON 50/12",
		"", "",
		"81.87", "0",
		"1", 1,
		"", "2",
		"", "pd-1170397713.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[592] = new Element(
		592, "assets/images/nopicture.gif",
		77, 52,
		"2599531 087", "UNDER PROTECTION SCOOTER 125/15",
		"", "",
		"101.5", "0",
		"1", 1,
		"", "2",
		"", "pd-757638731.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[593] = new Element(
		593, "assets/images/nopicture.gif",
		77, 52,
		"2599800 052", "RH TANK PROTECTION TECHNO/96",
		"", "",
		"5.54", "0",
		"1", 1,
		"", "2",
		"", "pd2060520171.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[594] = new Element(
		594, "assets/images/nopicture.gif",
		77, 52,
		"2599810 052", "LH TANK PROTECTION TECHNO/96",
		"", "",
		"5.54", "0",
		"1", 1,
		"", "2",
		"", "pd1940797201.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[595] = new Element(
		595, "assets/images/nopicture.gif",
		77, 52,
		"2599910 000", "FRAME PROTECTION ZERO-92",
		"", "",
		"106.8", "0",
		"1", 1,
		"", "2",
		"", "pd1180243879.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[596] = new Element(
		596, "assets/images/nopicture.gif",
		77, 52,
		"2599920 052", "TANK PROTECTION TECHNO",
		"", "",
		"5.41", "0",
		"1", 1,
		"", "2",
		"", "pd-822312403.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[597] = new Element(
		597, "assets/images/nopicture.gif",
		77, 52,
		"2599940 052", "SEAT TAIL PROTECTION CHRONO-502",
		"", "",
		"4.68", "0",
		"1", 1,
		"", "2",
		"", "pd-1444591581.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[598] = new Element(
		598, "assets/images/nopicture.gif",
		77, 52,
		"2599950 052", "RH TANK PROTECTION RK6-50/95",
		"", "",
		"8.54", "0",
		"1", 1,
		"", "2",
		"", "pd-1530751223.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[599] = new Element(
		599, "assets/images/nopicture.gif",
		77, 52,
		"2599955 000", "ARM, FLOAT",
		"", "",
		"12.52", "0",
		"1", 1,
		"", "2",
		"", "pd1734170719.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[600] = new Element(
		600, "assets/images/nopicture.gif",
		77, 52,
		"2599956 000", "PLATE",
		"", "",
		"6.47", "0",
		"1", 1,
		"", "2",
		"", "pd480154021.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[601] = new Element(
		601, "assets/images/nopicture.gif",
		77, 52,
		"2599960 052", "LH TANK PROTECTION RK6-50/95",
		"", "",
		"8.54", "0",
		"1", 1,
		"", "2",
		"", "pd1887224923.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[602] = new Element(
		602, "assets/images/nopicture.gif",
		77, 52,
		"2599970 052", "RH TANK PROTECTION ALP/95",
		"", "",
		"4.22", "0",
		"1", 1,
		"", "2",
		"", "pd-1456976383.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[603] = new Element(
		603, "assets/images/nopicture.gif",
		77, 52,
		"2599980 052", "LH TANK PROTECTION ALP/95",
		"", "",
		"4.22", "0",
		"1", 1,
		"", "2",
		"", "pd1770965015.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[604] = new Element(
		604, "assets/images/nopicture.gif",
		77, 52,
		"2700300 000", "SPARK PLUG PROTECTOR",
		"", "",
		"6.74", "0",
		"1", 1,
		"", "2",
		"", "pd-1190303715.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[605] = new Element(
		605, "assets/images/nopicture.gif",
		77, 52,
		"2700349 000", "ROTOR ASSY, REV 3 125CC (31.032",
		"", "",
		"134.97", "0",
		"1", 1,
		"", "2",
		"", "pd-1343594605.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[606] = new Element(
		606, "assets/images/nopicture.gif",
		77, 52,
		"2700350 000", "ROTOR ASSY",
		"", "",
		"149.29", "0",
		"1", 1,
		"", "2",
		"", "pd-1846723591.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[607] = new Element(
		607, "assets/images/nopicture.gif",
		77, 52,
		"2700354 000", "ROTOR ASSY",
		"", "",
		"26.62", "0",
		"1", 1,
		"", "2",
		"", "pd-1607579953.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[608] = new Element(
		608, "assets/images/nopicture.gif",
		77, 52,
		"2700359 000", "FLYWHEEL ROTOR RR 50/2000",
		"", "",
		"77.04", "0",
		"1", 1,
		"", "2",
		"", "pd1895097749.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[609] = new Element(
		609, "assets/images/nopicture.gif",
		77, 52,
		"2700361 000", "RR AM6 FLYWHEEL ROTOR",
		"", "",
		"89.89", "0",
		"1", 1,
		"", "2",
		"", "pd-1740834357.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[610] = new Element(
		610, "assets/images/nopicture.gif",
		77, 52,
		"2700362 000", "REV 80 FLYWHEEL ROTOR ( AET )",
		"", "",
		"99.22", "0",
		"1", 1,
		"", "2",
		"", "pd-851754767.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[611] = new Element(
		611, "assets/images/nopicture.gif",
		77, 52,
		"2700363 000", "REV 3&rsquo;03&rsquo;04&rsquo;05 FLYWHEEL ROTOR 3",
		"", "",
		"127.79", "0",
		"1", 1,
		"", "2",
		"", "pd-252136313.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[612] = new Element(
		612, "assets/images/nopicture.gif",
		77, 52,
		"2700365 000", "ROTOR ASSY,ELECTRIC FLYWHEEL(31",
		"", "",
		"81.63", "0",
		"1", 1,
		"", "2",
		"", "pd1474095629.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[613] = new Element(
		613, "assets/images/nopicture.gif",
		77, 52,
		"2700367 000", "FLYWHEEL ROTOR",
		"", "",
		"249.71", "0",
		"1", 1,
		"", "2",
		"", "pd-339774717.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[614] = new Element(
		614, "assets/images/nopicture.gif",
		77, 52,
		"2700370 000", "REV 3 &rsquo;07 FLYWHEEL ROTOR 310323",
		"", "",
		"155.48", "0",
		"1", 1,
		"", "2",
		"", "pd366492905.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[615] = new Element(
		615, "assets/images/nopicture.gif",
		77, 52,
		"2910307 000", "STOPPER SCHOCK ABSORBER, ALP/MO",
		"", "",
		"7.82", "0",
		"1", 1,
		"", "2",
		"", "pd-584658969.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[616] = new Element(
		616, "assets/images/nopicture.gif",
		77, 52,
		"2910308 000", "LIMIT STOP PLUG, SHOCK ABSORBER",
		"", "",
		"14.57", "0",
		"1", 1,
		"", "2",
		"", "pd-1214647187.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[617] = new Element(
		617, "assets/images/nopicture.gif",
		77, 52,
		"2910311 000", "FORK END TAP",
		"", "",
		"5.1", "0",
		"1", 1,
		"", "2",
		"", "pd-2105473949.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[618] = new Element(
		618, "assets/images/nopicture.gif",
		77, 52,
		"2910312 000", "RUBBER, TANK CRUISER",
		"", "",
		"5.32", "0",
		"1", 1,
		"", "2",
		"", "pd-278024887.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[619] = new Element(
		619, "assets/images/nopicture.gif",
		77, 52,
		"2910313 000", "RUBBER, BATTERY CRUISER",
		"", "",
		"9.91", "0",
		"1", 1,
		"", "2",
		"", "pd-422618977.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[620] = new Element(
		620, "assets/images/nopicture.gif",
		77, 52,
		"2910314 000", "RUBBER, BATTERY",
		"", "",
		"0.75", "0",
		"1", 1,
		"", "2",
		"", "pd244943845.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[621] = new Element(
		621, "assets/images/nopicture.gif",
		77, 52,
		"2910315 000", "TANK RUBBER PAD ALP/MOTARD 4.0",
		"", "",
		"3.7", "0",
		"1", 1,
		"", "2",
		"", "pd1590773915.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[622] = new Element(
		622, "assets/images/nopicture.gif",
		77, 52,
		"2910316 000", "RUBBER, BATTERY (VRMYBR)",
		"", "",
		"7.17", "0",
		"1", 1,
		"", "2",
		"", "pd844721217.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[623] = new Element(
		623, "assets/images/nopicture.gif",
		77, 52,
		"2910317 000", "RUBBER, BUMBER RR 4T",
		"", "",
		"0.56", "0",
		"1", 1,
		"", "2",
		"", "pd1242959959.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[624] = new Element(
		624, "assets/images/nopicture.gif",
		77, 52,
		"2910326 000", "RUBBER",
		"", "",
		"1.04", "0",
		"1", 1,
		"", "2",
		"", "pd-2042697123.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[625] = new Element(
		625, "assets/images/nopicture.gif",
		77, 52,
		"2910340 000", "SLIDING BLOCK TR-240",
		"", "",
		"17.33", "0",
		"1", 1,
		"", "2",
		"", "pd494447571.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[626] = new Element(
		626, "assets/images/nopicture.gif",
		77, 52,
		"2910440 000", "SLIDING BLOCK",
		"", "",
		"12.21", "0",
		"1", 1,
		"", "2",
		"", "pd-1022533063.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[627] = new Element(
		627, "assets/images/nopicture.gif",
		77, 52,
		"2910500 159", "TANK PLUG, RR 4T &rsquo;09",
		"", "",
		"4.55", "0",
		"1", 1,
		"", "2",
		"", "pd-312748273.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[628] = new Element(
		628, "assets/images/nopicture.gif",
		77, 52,
		"2910501 000", "TANK PLUG, RR 4T",
		"", "",
		"11.42", "0",
		"1", 1,
		"", "2",
		"", "pd861269973.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[629] = new Element(
		629, "assets/images/nopicture.gif",
		77, 52,
		"2910502 159", "TANK PLUG, ALP 125-200",
		"", "",
		"17.96", "0",
		"1", 1,
		"", "2",
		"", "pd-207221237.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[630] = new Element(
		630, "assets/images/nopicture.gif",
		77, 52,
		"2910504 000", "TANK PLUG W/LOCK AND KEYS, CRUI",
		"", "",
		"40.38", "0",
		"1", 1,
		"", "2",
		"", "pd433286961.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[631] = new Element(
		631, "assets/images/nopicture.gif",
		77, 52,
		"2910508 000", "TANK PLUG W/LOCK AND KEYS,ALP/M",
		"", "",
		"39.01", "0",
		"1", 1,
		"", "2",
		"", "pd1300073671.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[632] = new Element(
		632, "assets/images/nopicture.gif",
		77, 52,
		"2910510 000", "TANK PLUG TRIAL",
		"", "",
		"20.08", "0",
		"1", 1,
		"", "2",
		"", "pd361135181.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[633] = new Element(
		633, "assets/images/nopicture.gif",
		77, 52,
		"2910512 800", "FUEL TANK PLUG W/BREATHER VALVE",
		"", "",
		"25.75", "0",
		"1", 1,
		"", "2",
		"", "pd-322678973.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[634] = new Element(
		634, "assets/images/nopicture.gif",
		77, 52,
		"2910512 859", "FUEL TANK PLUG W/BREATHER VALVE",
		"", "",
		"30.52", "0",
		"1", 1,
		"", "2",
		"", "pd-544115927.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[635] = new Element(
		635, "assets/images/nopicture.gif",
		77, 52,
		"2910513 000", "TANK PLUG ALP-4T",
		"", "",
		"15.15", "0",
		"1", 1,
		"", "2",
		"", "pd2035552639.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[636] = new Element(
		636, "assets/images/nopicture.gif",
		77, 52,
		"2910526 000", "OIL CAP",
		"", "",
		"25.45", "0",
		"1", 1,
		"", "2",
		"", "pd2127851461.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[637] = new Element(
		637, "assets/images/nopicture.gif",
		77, 52,
		"2910527 000", "PLUG",
		"", "",
		"7.13", "0",
		"1", 1,
		"", "2",
		"", "pd-1644540037.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[638] = new Element(
		638, "assets/images/nopicture.gif",
		77, 52,
		"2910528 000", "BALANCE PLUG",
		"", "",
		"4.11", "0",
		"1", 1,
		"", "2",
		"", "pd-850833887.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[639] = new Element(
		639, "assets/images/nopicture.gif",
		77, 52,
		"2910531 000", "FILTER PLUG",
		"", "",
		"32.53", "0",
		"1", 1,
		"", "2",
		"", "pd-46906057.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[640] = new Element(
		640, "assets/images/nopicture.gif",
		77, 52,
		"2910532 000", "LEFT OIL PUMP PLUG",
		"", "",
		"10.14", "0",
		"1", 1,
		"", "2",
		"", "pd-350246339.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[641] = new Element(
		641, "assets/images/nopicture.gif",
		77, 52,
		"2910533 000", "RIGHT OIL PUMP PLUG",
		"", "",
		"17.58", "0",
		"1", 1,
		"", "2",
		"", "pd-911544653.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[642] = new Element(
		642, "assets/images/nopicture.gif",
		77, 52,
		"2910533 800", "RIGHT OIL PUMP PLUG ASSY",
		"", "",
		"24.48", "0",
		"1", 1,
		"", "2",
		"", "pd-73867239.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[643] = new Element(
		643, "assets/images/nopicture.gif",
		77, 52,
		"3404079 000", "ROD, PUSH",
		"", "",
		"8.38", "0",
		"1", 1,
		"", "2",
		"", "pd352887307.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[644] = new Element(
		644, "assets/images/nopicture.gif",
		77, 52,
		"3404080 000", "BOSS, CLUTCH",
		"", "",
		"81.42", "0",
		"1", 1,
		"", "2",
		"", "pd-171433167.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[645] = new Element(
		645, "assets/images/nopicture.gif",
		77, 52,
		"3404080 100", "BOSS, CLUTCH",
		"", "",
		"22.73", "0",
		"1", 1,
		"", "2",
		"", "pd181493959.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[646] = new Element(
		646, "assets/images/nopicture.gif",
		77, 52,
		"3404081 100", "PLATE, THRUST",
		"", "",
		"1.51", "0",
		"1", 1,
		"", "2",
		"", "pd-875663283.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[647] = new Element(
		647, "assets/images/nopicture.gif",
		77, 52,
		"3404082 000", "ROD, PUSH",
		"", "",
		"53.25", "0",
		"1", 1,
		"", "2",
		"", "pd832398147.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[648] = new Element(
		648, "assets/images/nopicture.gif",
		77, 52,
		"3404082 100", "ROD, PUSH",
		"", "",
		"11.02", "0",
		"1", 1,
		"", "2",
		"", "pd367044393.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[649] = new Element(
		649, "assets/images/nopicture.gif",
		77, 52,
		"3404083 000", "PUSH LEVER COMP.",
		"", "",
		"52.48", "0",
		"1", 1,
		"", "2",
		"", "pd-1299815041.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[650] = new Element(
		650, "assets/images/nopicture.gif",
		77, 52,
		"3404083 100", "PUSH LEVER COMP.",
		"", "",
		"15.76", "0",
		"1", 1,
		"", "2",
		"", "pd1042211781.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[651] = new Element(
		651, "assets/images/nopicture.gif",
		77, 52,
		"3404084 000", "BOLT, WASHER",
		"", "",
		"1.28", "0",
		"1", 1,
		"", "2",
		"", "pd1301930875.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[652] = new Element(
		652, "assets/images/nopicture.gif",
		77, 52,
		"3404084 100", "BOLT, WASHER",
		"", "",
		"1.4", "0",
		"1", 1,
		"", "2",
		"", "pd901972513.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[653] = new Element(
		653, "assets/images/nopicture.gif",
		77, 52,
		"3404085 000", "NUT",
		"", "",
		"3.78", "0",
		"1", 1,
		"", "2",
		"", "pd-1902831305.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[654] = new Element(
		654, "assets/images/nopicture.gif",
		77, 52,
		"3404085 100", "NUT",
		"", "",
		"5.38", "0",
		"1", 1,
		"", "2",
		"", "pd675061309.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[655] = new Element(
		655, "assets/images/nopicture.gif",
		77, 52,
		"3404086 000", "WASHER, PLATE",
		"", "",
		"3.78", "0",
		"1", 1,
		"", "2",
		"", "pd-1520368973.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[656] = new Element(
		656, "assets/images/nopicture.gif",
		77, 52,
		"3404086 100", "WASHER, PLATE",
		"", "",
		"3.07", "0",
		"1", 1,
		"", "2",
		"", "pd2014123033.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[657] = new Element(
		657, "assets/images/nopicture.gif",
		77, 52,
		"3404087 000", "WASHER, CONICAL SPRING",
		"", "",
		"2.78", "0",
		"1", 1,
		"", "2",
		"", "pd-1639031825.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[658] = new Element(
		658, "assets/images/nopicture.gif",
		77, 52,
		"3404088 000", "WASHER, LOCK",
		"", "",
		"2.5", "0",
		"1", 1,
		"", "2",
		"", "pd560168885.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[659] = new Element(
		659, "assets/images/nopicture.gif",
		77, 52,
		"3404088 100", "WASHER, LOCK",
		"", "",
		"2.24", "0",
		"1", 1,
		"", "2",
		"", "pd1980866795.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[660] = new Element(
		660, "assets/images/nopicture.gif",
		77, 52,
		"3404089 000", "KEY, STRAIGHT",
		"", "",
		"3.96", "0",
		"1", 1,
		"", "2",
		"", "pd1584971025.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[661] = new Element(
		661, "assets/images/nopicture.gif",
		77, 52,
		"3404089 100", "KEY, STRAIGHT",
		"", "",
		"3.83", "0",
		"1", 1,
		"", "2",
		"", "pd1165954471.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[662] = new Element(
		662, "assets/images/nopicture.gif",
		77, 52,
		"3404090 000", "OIL, SEAL",
		"", "",
		"6.92", "0",
		"1", 1,
		"", "2",
		"", "pd699099181.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[663] = new Element(
		663, "assets/images/nopicture.gif",
		77, 52,
		"3404090 100", "OIL, SEAL",
		"", "",
		"2.5", "0",
		"1", 1,
		"", "2",
		"", "pd-2130272733.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[664] = new Element(
		664, "assets/images/nopicture.gif",
		77, 52,
		"3404091 000", "BALL",
		"", "",
		"0.41", "0",
		"1", 1,
		"", "2",
		"", "pd-111420151.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[665] = new Element(
		665, "assets/images/nopicture.gif",
		77, 52,
		"3404091 100", "BALL",
		"", "",
		"0.19", "0",
		"1", 1,
		"", "2",
		"", "pd133172831.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[666] = new Element(
		666, "assets/images/nopicture.gif",
		77, 52,
		"3404092 000", "CIRCLIP (1EV)",
		"", "",
		"0.55", "0",
		"1", 1,
		"", "2",
		"", "pd-779602011.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[667] = new Element(
		667, "assets/images/nopicture.gif",
		77, 52,
		"3404092 100", "CIRCLIP",
		"", "",
		"0.49", "0",
		"1", 1,
		"", "2",
		"", "pd2136398427.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[668] = new Element(
		668, "assets/images/nopicture.gif",
		77, 52,
		"3404093 000", "GEAR, 2ND PINION",
		"", "",
		"55.94", "0",
		"1", 1,
		"", "2",
		"", "pd-2027400191.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[669] = new Element(
		669, "assets/images/nopicture.gif",
		77, 52,
		"3404093 100", "GEAR, 2ND PINION",
		"", "",
		"16.59", "0",
		"1", 1,
		"", "2",
		"", "pd887504407.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[670] = new Element(
		670, "assets/images/nopicture.gif",
		77, 52,
		"3404094 000", "GEAR, 3RD PINION",
		"", "",
		"76.92", "0",
		"1", 1,
		"", "2",
		"", "pd-783692259.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[671] = new Element(
		671, "assets/images/nopicture.gif",
		77, 52,
		"3404094 100", "GEAR, 3RD PINION",
		"", "",
		"17.99", "0",
		"1", 1,
		"", "2",
		"", "pd-2058013293.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[672] = new Element(
		672, "assets/images/nopicture.gif",
		77, 52,
		"3404095 000", "GEAR, 1ST WHEEL",
		"", "",
		"61.9", "0",
		"1", 1,
		"", "2",
		"", "pd-2081684999.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[673] = new Element(
		673, "assets/images/nopicture.gif",
		77, 52,
		"3404095 100", "GEAR, 1ST WHEEL",
		"", "",
		"21.89", "0",
		"1", 1,
		"", "2",
		"", "pd-2103280433.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[674] = new Element(
		674, "assets/images/nopicture.gif",
		77, 52,
		"3404096 000", "GEAR, 4TH WHEEL",
		"", "",
		"81.65", "0",
		"1", 1,
		"", "2",
		"", "pd278662037.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[675] = new Element(
		675, "assets/images/nopicture.gif",
		77, 52,
		"3404096 100", "GEAR, 4TH WHEEL",
		"", "",
		"25.15", "0",
		"1", 1,
		"", "2",
		"", "pd1443925963.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[676] = new Element(
		676, "assets/images/nopicture.gif",
		77, 52,
		"3404097 000", "GEAR, 5TH PINION",
		"", "",
		"85.43", "0",
		"1", 1,
		"", "2",
		"", "pd684771057.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[677] = new Element(
		677, "assets/images/nopicture.gif",
		77, 52,
		"3404097 100", "GEAR, 5TH PINION",
		"", "",
		"91.77", "0",
		"1", 1,
		"", "2",
		"", "pd-1713263993.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[678] = new Element(
		678, "assets/images/nopicture.gif",
		77, 52,
		"3404098 000", "GEAR, 5TH WHEEL",
		"", "",
		"88.66", "0",
		"1", 1,
		"", "2",
		"", "pd503762957.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[679] = new Element(
		679, "assets/images/nopicture.gif",
		77, 52,
		"3404098 100", "GEAR, 5TH WHEEL",
		"", "",
		"87.76", "0",
		"1", 1,
		"", "2",
		"", "pd-1496069885.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[680] = new Element(
		680, "assets/images/nopicture.gif",
		77, 52,
		"3404099 000", "GEAR, 2ND WHEEL",
		"", "",
		"86.47", "0",
		"1", 1,
		"", "2",
		"", "pd1536983785.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[681] = new Element(
		681, "assets/images/nopicture.gif",
		77, 52,
		"3404099 100", "GEAR, 2ND WHEEL",
		"", "",
		"19.2", "0",
		"1", 1,
		"", "2",
		"", "pd-1856198849.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[682] = new Element(
		682, "assets/images/nopicture.gif",
		77, 52,
		"3404100 000", "PLATE, COVER",
		"", "",
		"159.84", "0",
		"1", 1,
		"", "2",
		"", "pd376306565.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[683] = new Element(
		683, "assets/images/nopicture.gif",
		77, 52,
		"3404100 100", "PLATE, COVER",
		"", "",
		"0.91", "0",
		"1", 1,
		"", "2",
		"", "pd1386594619.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[684] = new Element(
		684, "assets/images/nopicture.gif",
		77, 52,
		"3404101 000", "WASHER PLATE",
		"", "",
		"2.96", "0",
		"1", 1,
		"", "2",
		"", "pd238097889.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[685] = new Element(
		685, "assets/images/nopicture.gif",
		77, 52,
		"3404101 100", "WASHER PLATE",
		"", "",
		"2.88", "0",
		"1", 1,
		"", "2",
		"", "pd1497912055.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[686] = new Element(
		686, "assets/images/nopicture.gif",
		77, 52,
		"3404102 000", "WASHER PLATE",
		"", "",
		"5.1", "0",
		"1", 1,
		"", "2",
		"", "pd-57577987.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[687] = new Element(
		687, "assets/images/nopicture.gif",
		77, 52,
		"3404102 100", "WASHER PLATE",
		"", "",
		"4.92", "0",
		"1", 1,
		"", "2",
		"", "pd2110347379.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[688] = new Element(
		688, "assets/images/nopicture.gif",
		77, 52,
		"3404103 000", "OIL SEAL",
		"", "",
		"6.33", "0",
		"1", 1,
		"", "2",
		"", "pd235691993.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[689] = new Element(
		689, "assets/images/nopicture.gif",
		77, 52,
		"3404103 100", "OIL SEAL",
		"", "",
		"2.61", "0",
		"1", 1,
		"", "2",
		"", "pd383094191.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[690] = new Element(
		690, "assets/images/nopicture.gif",
		77, 52,
		"3404103 200", "OIL SEAL",
		"", "",
		"2.43", "0",
		"1", 1,
		"", "2",
		"", "pd1011353246.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[691] = new Element(
		691, "assets/images/nopicture.gif",
		77, 52,
		"3404104 000", "SPROCKET, DRIVE",
		"", "",
		"40.28", "0",
		"1", 1,
		"", "2",
		"", "pd-2138241163.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[692] = new Element(
		692, "assets/images/nopicture.gif",
		77, 52,
		"3404104 100", "SPROCKET, DRIVE",
		"", "",
		"39.87", "0",
		"1", 1,
		"", "2",
		"", "pd-1455591765.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[693] = new Element(
		693, "assets/images/nopicture.gif",
		77, 52,
		"3404105 000", "SCREW, PAN HEAD",
		"", "",
		"0.5", "0",
		"1", 1,
		"", "2",
		"", "pd1137197265.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[694] = new Element(
		694, "assets/images/nopicture.gif",
		77, 52,
		"3404105 100", "SCREW, PAN HEAD",
		"", "",
		"0.91", "0",
		"1", 1,
		"", "2",
		"", "pd1873885031.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[695] = new Element(
		695, "assets/images/nopicture.gif",
		77, 52,
		"3404106 000", "BOLT",
		"", "",
		"0.68", "0",
		"1", 1,
		"", "2",
		"", "pd928557037.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[696] = new Element(
		696, "assets/images/nopicture.gif",
		77, 52,
		"3404106 100", "BOLT",
		"", "",
		"2.61", "0",
		"1", 1,
		"", "2",
		"", "pd-1237523485.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[697] = new Element(
		697, "assets/images/nopicture.gif",
		77, 52,
		"3404106 200", "BOLT",
		"", "",
		"2.53", "0",
		"1", 1,
		"", "2",
		"", "pd272958972.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[698] = new Element(
		698, "assets/images/nopicture.gif",
		77, 52,
		"3404107 000", "SEGMENT",
		"", "",
		"49.2", "0",
		"1", 1,
		"", "2",
		"", "pd1654298825.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[699] = new Element(
		699, "assets/images/nopicture.gif",
		77, 52,
		"3404107 100", "SEGMENT",
		"", "",
		"46.85", "0",
		"1", 1,
		"", "2",
		"", "pd-981192673.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[700] = new Element(
		700, "assets/images/nopicture.gif",
		77, 52,
		"3404107 200", "SEGMENT",
		"", "",
		"45.48", "0",
		"1", 1,
		"", "2",
		"", "pd-393098102.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[701] = new Element(
		701, "assets/images/nopicture.gif",
		77, 52,
		"3404108 000", "FORK, SHIFT 1",
		"", "",
		"39.73", "0",
		"1", 1,
		"", "2",
		"", "pd1112026981.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[702] = new Element(
		702, "assets/images/nopicture.gif",
		77, 52,
		"3404108 100", "FORK, SHIFT 1",
		"", "",
		"12.27", "0",
		"1", 1,
		"", "2",
		"", "pd-641820645.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[703] = new Element(
		703, "assets/images/nopicture.gif",
		77, 52,
		"3404108 200", "FORK, SHIFT 1",
		"", "",
		"11.91", "0",
		"1", 1,
		"", "2",
		"", "pd1020947912.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[704] = new Element(
		704, "assets/images/nopicture.gif",
		77, 52,
		"3404109 000", "FORK, SHIFT 2",
		"", "",
		"38.19", "0",
		"1", 1,
		"", "2",
		"", "pd131418049.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[705] = new Element(
		705, "assets/images/nopicture.gif",
		77, 52,
		"3404109 100", "FORK, SHIFT 2",
		"", "",
		"16.26", "0",
		"1", 1,
		"", "2",
		"", "pd1634949079.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[706] = new Element(
		706, "assets/images/nopicture.gif",
		77, 52,
		"3404109 200", "FORK, SHIFT 2",
		"", "",
		"11.84", "0",
		"1", 1,
		"", "2",
		"", "pd-469292746.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[707] = new Element(
		707, "assets/images/nopicture.gif",
		77, 52,
		"3404110 000", "FORK, SHIFT 3",
		"", "",
		"39.73", "0",
		"1", 1,
		"", "2",
		"", "pd1720417757.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[708] = new Element(
		708, "assets/images/nopicture.gif",
		77, 52,
		"3404110 100", "FORK, SHIFT 3",
		"", "",
		"12.2", "0",
		"1", 1,
		"", "2",
		"", "pd2146790227.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[709] = new Element(
		709, "assets/images/nopicture.gif",
		77, 52,
		"3404110 200", "FORK, SHIFT 3",
		"", "",
		"11.84", "0",
		"1", 1,
		"", "2",
		"", "pd-1379382700.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[710] = new Element(
		710, "assets/images/nopicture.gif",
		77, 52,
		"3404111 000", "BAR, SHIFT FORK GU",
		"", "",
		"5.92", "0",
		"1", 1,
		"", "2",
		"", "pd1248210361.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[711] = new Element(
		711, "assets/images/nopicture.gif",
		77, 52,
		"3404111 100", "BAR, SHIFT FORK GU",
		"", "",
		"2.5", "0",
		"1", 1,
		"", "2",
		"", "pd-1885368689.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[712] = new Element(
		712, "assets/images/nopicture.gif",
		77, 52,
		"3404111 200", "BAR, SHIFT FORK GU",
		"", "",
		"2.43", "0",
		"1", 1,
		"", "2",
		"", "pd-1434122078.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[713] = new Element(
		713, "assets/images/nopicture.gif",
		77, 52,
		"3404112 000", "BAR, SHIFT FORK GU",
		"", "",
		"7.01", "0",
		"1", 1,
		"", "2",
		"", "pd-1800506539.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[714] = new Element(
		714, "assets/images/nopicture.gif",
		77, 52,
		"3404112 100", "BAR, SHIFT FORK GU",
		"", "",
		"2.31", "0",
		"1", 1,
		"", "2",
		"", "pd533740939.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[715] = new Element(
		715, "assets/images/nopicture.gif",
		77, 52,
		"3404112 200", "BAR, SHIFT FORK GU",
		"", "",
		"2.25", "0",
		"1", 1,
		"", "2",
		"", "pd-194680928.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[716] = new Element(
		716, "assets/images/nopicture.gif",
		77, 52,
		"3404113 000", "PIN, DOWEL",
		"", "",
		"1.91", "0",
		"1", 1,
		"", "2",
		"", "pd-1168692559.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[717] = new Element(
		717, "assets/images/nopicture.gif",
		77, 52,
		"3404113 100", "PIN, DOWEL",
		"", "",
		"0.72", "0",
		"1", 1,
		"", "2",
		"", "pd-1431980985.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[718] = new Element(
		718, "assets/images/nopicture.gif",
		77, 52,
		"3404113 200", "PIN, DOWEL",
		"", "",
		"0.7", "0",
		"1", 1,
		"", "2",
		"", "pd-353429810.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[719] = new Element(
		719, "assets/images/nopicture.gif",
		77, 52,
		"3404114 000", "BRUSH SET",
		"", "",
		"16.11", "0",
		"1", 1,
		"", "2",
		"", "pd-535236659.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[720] = new Element(
		720, "assets/images/nopicture.gif",
		77, 52,
		"3404114 100", "BRUSH SET",
		"", "",
		"27.38", "0",
		"1", 1,
		"", "2",
		"", "pd-25563453.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[721] = new Element(
		721, "assets/images/nopicture.gif",
		77, 52,
		"3404115 000", "BOLT",
		"", "",
		"15.89", "0",
		"1", 1,
		"", "2",
		"", "pd-800186711.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[722] = new Element(
		722, "assets/images/nopicture.gif",
		77, 52,
		"3404115 100", "BOLT",
		"", "",
		"19.35", "0",
		"1", 1,
		"", "2",
		"", "pd387885311.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[723] = new Element(
		723, "assets/images/nopicture.gif",
		77, 52,
		"3404116 000", "CORD COMP.",
		"", "",
		"34.14", "0",
		"1", 1,
		"", "2",
		"", "pd-426847419.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[724] = new Element(
		724, "assets/images/nopicture.gif",
		77, 52,
		"3404116 100", "ELECTRIC EQUIPMENT",
		"", "",
		"25.53", "0",
		"1", 1,
		"", "2",
		"", "pd-489070853.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[725] = new Element(
		725, "assets/images/nopicture.gif",
		77, 52,
		"3404117 000", "WASHER (3SX)",
		"", "",
		"0.55", "0",
		"1", 1,
		"", "2",
		"", "pd-854791775.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[726] = new Element(
		726, "assets/images/nopicture.gif",
		77, 52,
		"3404118 000", "O-RING (1RL)",
		"", "",
		"4.6", "0",
		"1", 1,
		"", "2",
		"", "pd790580407.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[727] = new Element(
		727, "assets/images/nopicture.gif",
		77, 52,
		"3404118 100", "O-RING (1RL)",
		"", "",
		"4.39", "0",
		"1", 1,
		"", "2",
		"", "pd-1481638467.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[728] = new Element(
		728, "assets/images/nopicture.gif",
		77, 52,
		"3404119 000", "O-RING (50MM)",
		"", "",
		"3.64", "0",
		"1", 1,
		"", "2",
		"", "pd-1190040013.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[729] = new Element(
		729, "assets/images/nopicture.gif",
		77, 52,
		"3404119 100", "O-RING (50MM)",
		"", "",
		"3.56", "0",
		"1", 1,
		"", "2",
		"", "pd150039449.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[730] = new Element(
		730, "assets/images/nopicture.gif",
		77, 52,
		"3404120 000", "BOLT, FLANGE",
		"", "",
		"0.68", "0",
		"1", 1,
		"", "2",
		"", "pd498630511.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[731] = new Element(
		731, "assets/images/nopicture.gif",
		77, 52,
		"3404120 100", "BOLT, FLANGE",
		"", "",
		"0.91", "0",
		"1", 1,
		"", "2",
		"", "pd-864530635.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[732] = new Element(
		732, "assets/images/nopicture.gif",
		77, 52,
		"3404121 000", "SCREW, PAN HEAD",
		"", "",
		"0.55", "0",
		"1", 1,
		"", "2",
		"", "pd637598827.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[733] = new Element(
		733, "assets/images/nopicture.gif",
		77, 52,
		"3404121 100", "SCREW, PAN HEAD",
		"", "",
		"0.76", "0",
		"1", 1,
		"", "2",
		"", "pd-1284143983.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[734] = new Element(
		734, "assets/images/nopicture.gif",
		77, 52,
		"3404124 000", "GEAR, DRIVE",
		"", "",
		"100.22", "0",
		"1", 1,
		"", "2",
		"", "pd-1435033305.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[735] = new Element(
		735, "assets/images/nopicture.gif",
		77, 52,
		"3404124 100", "GEAR, DRIVE",
		"", "",
		"179.64", "0",
		"1", 1,
		"", "2",
		"", "pd1589618605.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[736] = new Element(
		736, "assets/images/nopicture.gif",
		77, 52,
		"3404125 000", "CRANKSHAFT ASSY",
		"", "",
		"522.25", "0",
		"1", 1,
		"", "2",
		"", "pd180545955.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[737] = new Element(
		737, "assets/images/nopicture.gif",
		77, 52,
		"3521860 000", "FORK GEART SHIFT",
		"", "",
		"53.93", "0",
		"1", 1,
		"", "2",
		"", "pd384834495.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[738] = new Element(
		738, "assets/images/nopicture.gif",
		77, 52,
		"3521870 000", "FORK GEAR SHIFT",
		"", "",
		"53.93", "0",
		"1", 1,
		"", "2",
		"", "pd-1276083195.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[739] = new Element(
		739, "assets/images/nopicture.gif",
		77, 52,
		"3521880 000", "SHAFT GEAR SHIFT FORK",
		"", "",
		"12.73", "0",
		"1", 1,
		"", "2",
		"", "pd-948077125.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[740] = new Element(
		740, "assets/images/nopicture.gif",
		77, 52,
		"3521900 000", "CAM",
		"", "",
		"95.85", "0",
		"1", 1,
		"", "2",
		"", "pd-1666111903.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[741] = new Element(
		741, "assets/images/nopicture.gif",
		77, 52,
		"3521920 000", "CAM",
		"", "",
		"19.75", "0",
		"1", 1,
		"", "2",
		"", "pd-1804019849.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[742] = new Element(
		742, "assets/images/nopicture.gif",
		77, 52,
		"3521990 000", "STOPPER GEAR SHIFT CAM",
		"", "",
		"17.75", "0",
		"1", 1,
		"", "2",
		"", "pd-1455246241.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[743] = new Element(
		743, "assets/images/nopicture.gif",
		77, 52,
		"3522010 000", "SPRING",
		"", "",
		"3.2", "0",
		"1", 1,
		"", "2",
		"", "pd1798801021.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[744] = new Element(
		744, "assets/images/nopicture.gif",
		77, 52,
		"3522040 000", "PLATE GEAR SHIFT CAM STOPPER",
		"", "",
		"16.24", "0",
		"1", 1,
		"", "2",
		"", "pd347022579.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[745] = new Element(
		745, "assets/images/nopicture.gif",
		77, 52,
		"3522270 000", "MOTOR ASSY COMPL.",
		"", "",
		"511.71", "0",
		"1", 1,
		"", "2",
		"", "pd1401487449.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[746] = new Element(
		746, "assets/images/nopicture.gif",
		77, 52,
		"3522390 000", "BRACKET",
		"", "",
		"99.3", "0",
		"1", 1,
		"", "2",
		"", "pd294986287.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[747] = new Element(
		747, "assets/images/nopicture.gif",
		77, 52,
		"3522440 000", "ROTOR ASSY",
		"", "",
		"486.14", "0",
		"1", 1,
		"", "2",
		"", "pd1670950901.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[748] = new Element(
		748, "assets/images/nopicture.gif",
		77, 52,
		"3522441 000", "ROTOR ASSY",
		"", "",
		"454.73", "0",
		"1", 1,
		"", "2",
		"", "pd2135116587.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[749] = new Element(
		749, "assets/images/nopicture.gif",
		77, 52,
		"3522480 000", "KEY",
		"", "",
		"2.57", "0",
		"1", 1,
		"", "2",
		"", "pd-1415351983.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[750] = new Element(
		750, "assets/images/nopicture.gif",
		77, 52,
		"3522490 000", "CLAMP",
		"", "",
		"1.76", "0",
		"1", 1,
		"", "2",
		"", "pd-869147673.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[751] = new Element(
		751, "assets/images/nopicture.gif",
		77, 52,
		"3522500 000", "O RING",
		"", "",
		"1.56", "0",
		"1", 1,
		"", "2",
		"", "pd-2075402131.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[752] = new Element(
		752, "assets/images/nopicture.gif",
		77, 52,
		"3522510 000", "LOCK WASHER",
		"", "",
		"1.3", "0",
		"1", 1,
		"", "2",
		"", "pd-2068524957.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[753] = new Element(
		753, "assets/images/nopicture.gif",
		77, 52,
		"3522520 000", "PIN CRANK",
		"", "",
		"30.52", "0",
		"1", 1,
		"", "2",
		"", "pd1316378953.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[754] = new Element(
		754, "assets/images/nopicture.gif",
		77, 52,
		"3522530 000", "BAR",
		"", "",
		"1.99", "0",
		"1", 1,
		"", "2",
		"", "pd104326303.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[755] = new Element(
		755, "assets/images/nopicture.gif",
		77, 52,
		"3522540 000", "PLUG",
		"", "",
		"12.73", "0",
		"1", 1,
		"", "2",
		"", "pd-924518427.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[756] = new Element(
		756, "assets/images/nopicture.gif",
		77, 52,
		"3522600 000", "PUMP ASSY ENGINE OIL",
		"", "",
		"104.55", "0",
		"1", 1,
		"", "2",
		"", "pd-1103457125.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[757] = new Element(
		757, "assets/images/nopicture.gif",
		77, 52,
		"3522610 000", "GEAR OIL PUMP DRIVEN",
		"", "",
		"29.56", "0",
		"1", 1,
		"", "2",
		"", "pd-678193087.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[758] = new Element(
		758, "assets/images/nopicture.gif",
		77, 52,
		"3522620 000", "ROLLER",
		"", "",
		"0.96", "0",
		"1", 1,
		"", "2",
		"", "pd822877271.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[759] = new Element(
		759, "assets/images/nopicture.gif",
		77, 52,
		"3522630 000", "E RING",
		"", "",
		"0.96", "0",
		"1", 1,
		"", "2",
		"", "pd1490277981.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[760] = new Element(
		760, "assets/images/nopicture.gif",
		77, 52,
		"3522640 000", "SCREW",
		"", "",
		"1.19", "0",
		"1", 1,
		"", "2",
		"", "pd-1001949229.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[761] = new Element(
		761, "assets/images/nopicture.gif",
		77, 52,
		"3522650 000", "STRAINER ENGINE OIL",
		"", "",
		"4.82", "0",
		"1", 1,
		"", "2",
		"", "pd1680412217.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[762] = new Element(
		762, "assets/images/nopicture.gif",
		77, 52,
		"3522660 000", "SCREW",
		"", "",
		"1.62", "0",
		"1", 1,
		"", "2",
		"", "pd152003343.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[763] = new Element(
		763, "assets/images/nopicture.gif",
		77, 52,
		"3522670 000", "CAP OIL STRAINER",
		"", "",
		"11.7", "0",
		"1", 1,
		"", "2",
		"", "pd249846741.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[764] = new Element(
		764, "assets/images/nopicture.gif",
		77, 52,
		"3522680 000", "O RING",
		"", "",
		"2.48", "0",
		"1", 1,
		"", "2",
		"", "pd34232843.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[765] = new Element(
		765, "assets/images/nopicture.gif",
		77, 52,
		"3522690 000", "BOLT",
		"", "",
		"1.46", "0",
		"1", 1,
		"", "2",
		"", "pd-1837065423.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[766] = new Element(
		766, "assets/images/nopicture.gif",
		77, 52,
		"3522700 000", "PLUG",
		"", "",
		"3.07", "0",
		"1", 1,
		"", "2",
		"", "pd-1591830329.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[767] = new Element(
		767, "assets/images/nopicture.gif",
		77, 52,
		"3522720 000", "FILTER OIL",
		"", "",
		"14.13", "0",
		"1", 1,
		"", "2",
		"", "pd1891526733.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[768] = new Element(
		768, "assets/images/nopicture.gif",
		77, 52,
		"3522730 000", "O RING",
		"", "",
		"2.11", "0",
		"1", 1,
		"", "2",
		"", "pd2028870467.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[769] = new Element(
		769, "assets/images/nopicture.gif",
		77, 52,
		"3522740 000", "CAP OIL FILTER",
		"", "",
		"22.84", "0",
		"1", 1,
		"", "2",
		"", "pd-243261655.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[770] = new Element(
		770, "assets/images/nopicture.gif",
		77, 52,
		"3522750 000", "O RING",
		"", "",
		"3.76", "0",
		"1", 1,
		"", "2",
		"", "pd1578278271.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[771] = new Element(
		771, "assets/images/nopicture.gif",
		77, 52,
		"3522760 000", "SPRING",
		"", "",
		"0.83", "0",
		"1", 1,
		"", "2",
		"", "pd375774149.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[772] = new Element(
		772, "assets/images/nopicture.gif",
		77, 52,
		"3522770 000", "STUD BOLT",
		"", "",
		"1.35", "0",
		"1", 1,
		"", "2",
		"", "pd1947835259.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[773] = new Element(
		773, "assets/images/nopicture.gif",
		77, 52,
		"3522780 000", "STUD BOLT",
		"", "",
		"2.74", "0",
		"1", 1,
		"", "2",
		"", "pd-534152671.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[774] = new Element(
		774, "assets/images/nopicture.gif",
		77, 52,
		"3522790 000", "NUT",
		"", "",
		"1.61", "0",
		"1", 1,
		"", "2",
		"", "pd-499101385.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[775] = new Element(
		775, "assets/images/nopicture.gif",
		77, 52,
		"3522800 000", "SPACER",
		"", "",
		"12.09", "0",
		"1", 1,
		"", "2",
		"", "pd-2118478275.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[776] = new Element(
		776, "assets/images/nopicture.gif",
		77, 52,
		"3522810 000", "PLATE CLUTCH DRIVE",
		"", "",
		"14.28", "0",
		"1", 1,
		"", "2",
		"", "pd737131187.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[777] = new Element(
		777, "assets/images/nopicture.gif",
		77, 52,
		"3522820 000", "GEAR 3RD DRIVE",
		"", "",
		"82.84", "0",
		"1", 1,
		"", "2",
		"", "pd-585462759.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[778] = new Element(
		778, "assets/images/nopicture.gif",
		77, 52,
		"3522830 000", "GEAR 4TH DRIVE",
		"", "",
		"62.14", "0",
		"1", 1,
		"", "2",
		"", "pd-386362385.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[779] = new Element(
		779, "assets/images/nopicture.gif",
		77, 52,
		"3522840 000", "FORK GEAR SHIFT",
		"", "",
		"59.48", "0",
		"1", 1,
		"", "2",
		"", "pd1710782389.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[780] = new Element(
		780, "assets/images/nopicture.gif",
		77, 52,
		"3522850 000", "CLAMP",
		"", "",
		"1.51", "0",
		"1", 1,
		"", "2",
		"", "pd1502566635.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[781] = new Element(
		781, "assets/images/nopicture.gif",
		77, 52,
		"3522860 000", "CLAMP",
		"", "",
		"1.56", "0",
		"1", 1,
		"", "2",
		"", "pd1175270673.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[782] = new Element(
		782, "assets/images/nopicture.gif",
		77, 52,
		"3530010 000", "HEAD ASSY, ENGINE",
		"", "",
		"1087.22", "0",
		"1", 1,
		"", "2",
		"", "pd302532007.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[783] = new Element(
		783, "assets/images/nopicture.gif",
		77, 52,
		"3530020 000", "GUIDE, VALVE",
		"", "",
		"35.51", "0",
		"1", 1,
		"", "2",
		"", "pd1597464621.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[784] = new Element(
		784, "assets/images/nopicture.gif",
		77, 52,
		"3530030 000", "BOLT 6,55",
		"", "",
		"1.64", "0",
		"1", 1,
		"", "2",
		"", "pd-1168943581.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[785] = new Element(
		785, "assets/images/nopicture.gif",
		77, 52,
		"3530040 000", "GASKET, CYLINDER HEAD",
		"", "",
		"31.03", "0",
		"1", 1,
		"", "2",
		"", "pd-2024319735.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[786] = new Element(
		786, "assets/images/nopicture.gif",
		77, 52,
		"3530050 000", "PIN L22",
		"", "",
		"1.76", "0",
		"1", 1,
		"", "2",
		"", "pd-1657256353.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[787] = new Element(
		787, "assets/images/nopicture.gif",
		77, 52,
		"3530060 000", "BOLT 6, 155",
		"", "",
		"3.08", "0",
		"1", 1,
		"", "2",
		"", "pd434843557.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[788] = new Element(
		788, "assets/images/nopicture.gif",
		77, 52,
		"3530070 000", "BOLT 10, 180",
		"", "",
		"10.96", "0",
		"1", 1,
		"", "2",
		"", "pd-2091740581.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[789] = new Element(
		789, "assets/images/nopicture.gif",
		77, 52,
		"3530080 000", "BOLT 10, 155",
		"", "",
		"15.71", "0",
		"1", 1,
		"", "2",
		"", "pd-1150628863.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[790] = new Element(
		790, "assets/images/nopicture.gif",
		77, 52,
		"3530090 000", "BOLT",
		"", "",
		"1.62", "0",
		"1", 1,
		"", "2",
		"", "pd365786647.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[791] = new Element(
		791, "assets/images/nopicture.gif",
		77, 52,
		"3530100 000", "BOLT 6, 35",
		"", "",
		"1.46", "0",
		"1", 1,
		"", "2",
		"", "pd-362559971.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[792] = new Element(
		792, "assets/images/nopicture.gif",
		77, 52,
		"3530110 000", "BOLT 6, 40",
		"", "",
		"1.51", "0",
		"1", 1,
		"", "2",
		"", "pd-991957613.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[793] = new Element(
		793, "assets/images/nopicture.gif",
		77, 52,
		"3530120 000", "STUD BOLT",
		"", "",
		"2.49", "0",
		"1", 1,
		"", "2",
		"", "pd-1168803335.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[794] = new Element(
		794, "assets/images/nopicture.gif",
		77, 52,
		"3530130 000", "WASHER",
		"", "",
		"1.64", "0",
		"1", 1,
		"", "2",
		"", "pd-301419313.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[795] = new Element(
		795, "assets/images/nopicture.gif",
		77, 52,
		"3530140 000", "SPARK PLUG NGK, CR9EK",
		"", "",
		"21.9", "0",
		"1", 1,
		"", "2",
		"", "pd-733150315.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[796] = new Element(
		796, "assets/images/nopicture.gif",
		77, 52,
		"3530200 000", "CAP, INSPECTION",
		"", "",
		"12.94", "0",
		"1", 1,
		"", "2",
		"", "pd-1106622517.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[797] = new Element(
		797, "assets/images/nopicture.gif",
		77, 52,
		"3530210 000", "O RING",
		"", "",
		"3.89", "0",
		"1", 1,
		"", "2",
		"", "pd-1723777295.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[798] = new Element(
		798, "assets/images/nopicture.gif",
		77, 52,
		"006040240 000", "4ø GEAR COUNTERSHAFT",
		"", "",
		"45.74", "0",
		"1", 1,
		"", "2",
		"", "pd1105407709.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[799] = new Element(
		799, "assets/images/nopicture.gif",
		77, 52,
		"006040250 000", "5ø GEAR COUNTERSHAFT",
		"", "",
		"59.91", "0",
		"1", 1,
		"", "2",
		"", "pd414745683.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[800] = new Element(
		800, "assets/images/nopicture.gif",
		77, 52,
		"006040260 000", "6ø GEAR COUNTERSHAFT",
		"", "",
		"61.68", "0",
		"1", 1,
		"", "2",
		"", "pd-1490882887.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[801] = new Element(
		801, "assets/images/nopicture.gif",
		77, 52,
		"006040300 000", "THRUST WASHER 23.32.1,5",
		"", "",
		"1.42", "0",
		"1", 1,
		"", "2",
		"", "pd-896649329.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[802] = new Element(
		802, "assets/images/nopicture.gif",
		77, 52,
		"006040310 000", "THRUST WASHER 26.32.1,5",
		"", "",
		"1.42", "0",
		"1", 1,
		"", "2",
		"", "pd1807828053.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[803] = new Element(
		803, "assets/images/nopicture.gif",
		77, 52,
		"006040320 000", "THRUST WASHER 17.30.1",
		"", "",
		"1.15", "0",
		"1", 1,
		"", "2",
		"", "pd1128494731.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[804] = new Element(
		804, "assets/images/nopicture.gif",
		77, 52,
		"006040330 000", "THRUST WASHER 20.30.1",
		"", "",
		"1.15", "0",
		"1", 1,
		"", "2",
		"", "pd-37680207.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[805] = new Element(
		805, "assets/images/nopicture.gif",
		77, 52,
		"006040400 000", "DISTANCE BUSH",
		"", "",
		"7.21", "0",
		"1", 1,
		"", "2",
		"", "pd-595165881.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[806] = new Element(
		806, "assets/images/nopicture.gif",
		77, 52,
		"006040410 000", "SPROCKET FIXING DISK SPRING 17,",
		"", "",
		"1.56", "0",
		"1", 1,
		"", "2",
		"", "pd-1410670387.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[807] = new Element(
		807, "assets/images/nopicture.gif",
		77, 52,
		"006040420 000", "SCREW M10X18",
		"", "",
		"6.42", "0",
		"1", 1,
		"", "2",
		"", "pd-582924349.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[808] = new Element(
		808, "assets/images/nopicture.gif",
		77, 52,
		"006040500 000", "SPROCKET 13-Z",
		"", "",
		"13.81", "0",
		"1", 1,
		"", "2",
		"", "pd-1414979671.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[809] = new Element(
		809, "assets/images/nopicture.gif",
		77, 52,
		"006040520 000", "SPROCKET 15-Z",
		"", "",
		"17.97", "0",
		"1", 1,
		"", "2",
		"", "pd1381122318.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[810] = new Element(
		810, "assets/images/nopicture.gif",
		77, 52,
		"006050000 000", "GEAR CHANGE LEVER",
		"", "",
		"26.75", "0",
		"1", 1,
		"", "2",
		"", "pd-64649748.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[811] = new Element(
		811, "assets/images/nopicture.gif",
		77, 52,
		"006050008 000", "GEAR CHANGE LEVER CPL",
		"", "",
		"33.17", "0",
		"1", 1,
		"", "2",
		"", "pd-489319937.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[812] = new Element(
		812, "assets/images/nopicture.gif",
		77, 52,
		"006050108 000", "SHIFT SHAFT CPL.",
		"", "",
		"48.04", "0",
		"1", 1,
		"", "2",
		"", "pd1914179066.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[813] = new Element(
		813, "assets/images/nopicture.gif",
		77, 52,
		"006050148 000", "MOVEABLE PLATE ASSY (WITH BOLT)",
		"", "",
		"16.89", "0",
		"1", 1,
		"", "2",
		"", "pd-357197929.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[814] = new Element(
		814, "assets/images/nopicture.gif",
		77, 52,
		"006050160 000", "SPRING BOLT 0,8MM",
		"", "",
		"13.92", "0",
		"1", 1,
		"", "2",
		"", "pd895402909.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[815] = new Element(
		815, "assets/images/nopicture.gif",
		77, 52,
		"006050170 000", "GEAR BOX RETURN SPRING",
		"", "",
		"1.86", "0",
		"1", 1,
		"", "2",
		"", "pd-266787053.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[816] = new Element(
		816, "assets/images/nopicture.gif",
		77, 52,
		"006050200 000", "FORK 1/4 GEAR",
		"", "",
		"29.81", "0",
		"1", 1,
		"", "2",
		"", "pd346285125.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[817] = new Element(
		817, "assets/images/nopicture.gif",
		77, 52,
		"006050210 000", "FORK 5/6 GEAR",
		"", "",
		"29.61", "0",
		"1", 1,
		"", "2",
		"", "pd907597819.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[818] = new Element(
		818, "assets/images/nopicture.gif",
		77, 52,
		"006050250 000", "SPINDLE (FORKS)",
		"", "",
		"5.49", "0",
		"1", 1,
		"", "2",
		"", "pd-1373828447.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[819] = new Element(
		819, "assets/images/nopicture.gif",
		77, 52,
		"006050270 000", "BUSHING 6.8.5,2",
		"", "",
		"1.57", "0",
		"1", 1,
		"", "2",
		"", "pd1209030071.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[820] = new Element(
		820, "assets/images/nopicture.gif",
		77, 52,
		"006050300 000", "GEAR CAM",
		"", "",
		"43.76", "0",
		"1", 1,
		"", "2",
		"", "pd705441469.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[821] = new Element(
		821, "assets/images/nopicture.gif",
		77, 52,
		"006050408 000", "DETENT CAM ALU ASSY",
		"", "",
		"21.3", "0",
		"1", 1,
		"", "2",
		"", "pd1382876979.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[822] = new Element(
		822, "assets/images/nopicture.gif",
		77, 52,
		"006050508 000", "DETENT LEVER ASSY",
		"", "",
		"8.41", "0",
		"1", 1,
		"", "2",
		"", "pd704294041.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[823] = new Element(
		823, "assets/images/nopicture.gif",
		77, 52,
		"006050540 000", "SPACER (DETENT LEVER)",
		"", "",
		"2.48", "0",
		"1", 1,
		"", "2",
		"", "pd-674781073.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[824] = new Element(
		824, "assets/images/nopicture.gif",
		77, 52,
		"006060008 000", "KICKSTARTER LEVER CPL.",
		"", "",
		"78.91", "0",
		"1", 1,
		"", "2",
		"", "pd698327093.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[825] = new Element(
		825, "assets/images/nopicture.gif",
		77, 52,
		"006060080 000", "WASHER COUNTER SUNK SCREW KICK",
		"", "",
		"0.61", "0",
		"1", 1,
		"", "2",
		"", "pd2140976491.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[826] = new Element(
		826, "assets/images/nopicture.gif",
		77, 52,
		"006060100 000", "KICKSTART SHAFT",
		"", "",
		"28.68", "0",
		"1", 1,
		"", "2",
		"", "pd725345681.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[827] = new Element(
		827, "assets/images/nopicture.gif",
		77, 52,
		"006060110 000", "KICKSTART GEAR Z=40",
		"", "",
		"45.51", "0",
		"1", 1,
		"", "2",
		"", "pd-1979160025.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[828] = new Element(
		828, "assets/images/nopicture.gif",
		77, 52,
		"006060130 000", "RETURN SPRING (KICKSTARTER LEVE",
		"", "",
		"4.31", "0",
		"1", 1,
		"", "2",
		"", "pd-1045030739.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[829] = new Element(
		829, "assets/images/nopicture.gif",
		77, 52,
		"006060140 000", "KICKSTARTER SLEEVE",
		"", "",
		"46.89", "0",
		"1", 1,
		"", "2",
		"", "pd1567051641.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[830] = new Element(
		830, "assets/images/nopicture.gif",
		77, 52,
		"006060150 000", "SPRING",
		"", "",
		"0.32", "0",
		"1", 1,
		"", "2",
		"", "pd-683490653.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[831] = new Element(
		831, "assets/images/nopicture.gif",
		77, 52,
		"006060160 000", "KICKSTARTER RAMP",
		"", "",
		"5", "0",
		"1", 1,
		"", "2",
		"", "pd-730425975.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[832] = new Element(
		832, "assets/images/nopicture.gif",
		77, 52,
		"006060318 000", "KICKSTARTER INTERMEDIATE GEAR A",
		"", "",
		"29.91", "0",
		"1", 1,
		"", "2",
		"", "pd1054571231.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[833] = new Element(
		833, "assets/images/nopicture.gif",
		77, 52,
		"006061120 000", "KICKSTARTER SPACER",
		"", "",
		"1.72", "0",
		"1", 1,
		"", "2",
		"", "pd956528677.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[834] = new Element(
		834, "assets/images/nopicture.gif",
		77, 52,
		"006070000 000", "E-STARTER, 0,45KW",
		"", "",
		"205.3", "0",
		"1", 1,
		"", "2",
		"", "pd-1296691493.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[835] = new Element(
		835, "assets/images/nopicture.gif",
		77, 52,
		"006070300 000", "STARTER CLUTCH GEAR",
		"", "",
		"59.86", "0",
		"1", 1,
		"", "2",
		"", "pd-27485055.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[836] = new Element(
		836, "assets/images/nopicture.gif",
		77, 52,
		"006070310 000", "NEEDLE BEARING HK2516",
		"", "",
		"4.71", "0",
		"1", 1,
		"", "2",
		"", "pd1774566039.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[837] = new Element(
		837, "assets/images/nopicture.gif",
		77, 52,
		"006070400 000", "CAM CLUTCH (BORG WARNER FWD3316",
		"", "",
		"77.11", "0",
		"1", 1,
		"", "2",
		"", "pd1792167096.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[838] = new Element(
		838, "assets/images/nopicture.gif",
		77, 52,
		"006071108 000", "TORQUE LIMITER ASSY MY&rsquo;11",
		"", "",
		"104.94", "0",
		"1", 1,
		"", "2",
		"", "pd1737786959.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[839] = new Element(
		839, "assets/images/nopicture.gif",
		77, 52,
		"006071200 000", "INTERMEDIATE GEAR MY&rsquo;10",
		"", "",
		"104.94", "0",
		"1", 1,
		"", "2",
		"", "pd102211229.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[840] = new Element(
		840, "assets/images/nopicture.gif",
		77, 52,
		"3625034 000", "CU-SEAL RING 6X10X1",
		"", "",
		"0.31", "0",
		"1", 1,
		"", "2",
		"", "pd-1896991509.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[841] = new Element(
		841, "assets/images/nopicture.gif",
		77, 52,
		"3625035 000", "SEAL RING CU 8X12X1",
		"", "",
		"0.25", "0",
		"1", 1,
		"", "2",
		"", "pd-1502121711.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[842] = new Element(
		842, "assets/images/nopicture.gif",
		77, 52,
		"3625038 000", "BALL. BEARING 6201",
		"", "",
		"7.26", "0",
		"1", 1,
		"", "2",
		"", "pd904716711.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[843] = new Element(
		843, "assets/images/nopicture.gif",
		77, 52,
		"3625039 000", "BALL. BEARING 6203",
		"", "",
		"6.71", "0",
		"1", 1,
		"", "2",
		"", "pd1889360941.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[844] = new Element(
		844, "assets/images/nopicture.gif",
		77, 52,
		"3625040 000", "BALL. BEARING 6205",
		"", "",
		"8.43", "0",
		"1", 1,
		"", "2",
		"", "pd781824547.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[845] = new Element(
		845, "assets/images/nopicture.gif",
		77, 52,
		"3625041 000", "CYL.ROLLER BEAR",
		"", "",
		"9.87", "0",
		"1", 1,
		"", "2",
		"", "pd1861554441.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[846] = new Element(
		846, "assets/images/nopicture.gif",
		77, 52,
		"3625042 000", "BALL BEARING 61805 C3",
		"", "",
		"19.34", "0",
		"1", 1,
		"", "2",
		"", "pd2038194783.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[847] = new Element(
		847, "assets/images/nopicture.gif",
		77, 52,
		"3625043 000", "SHAFT SEAL RING 10X18X4 BSL",
		"", "",
		"4.31", "0",
		"1", 1,
		"", "2",
		"", "pd-1464030299.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[848] = new Element(
		848, "assets/images/nopicture.gif",
		77, 52,
		"3625044 000", "SHAFT SEAL RING 14X24X6 B",
		"", "",
		"2.31", "0",
		"1", 1,
		"", "2",
		"", "pd1894805083.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[849] = new Element(
		849, "assets/images/nopicture.gif",
		77, 52,
		"3625045 000", "SHAFT SEAL RING 19X30X7",
		"", "",
		"2.48", "0",
		"1", 1,
		"", "2",
		"", "pd-1439954943.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[850] = new Element(
		850, "assets/images/nopicture.gif",
		77, 52,
		"3625046 000", "SHAFT SEAL RING 30X47X7 BSL VIT",
		"", "",
		"8.91", "0",
		"1", 1,
		"", "2",
		"", "pd-337571305.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[851] = new Element(
		851, "assets/images/nopicture.gif",
		77, 52,
		"3625047 000", "SHAFT SEAL RING 32X45X7 BSL NBR",
		"", "",
		"1.99", "0",
		"1", 1,
		"", "2",
		"", "pd-711933411.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[852] = new Element(
		852, "assets/images/nopicture.gif",
		77, 52,
		"3625048 000", "O-RING 17,17 X 1,78 GLO",
		"", "",
		"0.32", "0",
		"1", 1,
		"", "2",
		"", "pd-465221229.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[853] = new Element(
		853, "assets/images/nopicture.gif",
		77, 52,
		"3625049 000", "O RING 25,12X1,78 NBR70",
		"", "",
		"0.18", "0",
		"1", 1,
		"", "2",
		"", "pd-567659015.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[854] = new Element(
		854, "assets/images/nopicture.gif",
		77, 52,
		"3625050 000", "O RING 5,10X1,60 NBR70",
		"", "",
		"0.13", "0",
		"1", 1,
		"", "2",
		"", "pd1100659953.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[855] = new Element(
		855, "assets/images/nopicture.gif",
		77, 52,
		"3625051 000", "O-RING 9 X 1,5",
		"", "",
		"0.13", "0",
		"1", 1,
		"", "2",
		"", "pd1566298319.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[856] = new Element(
		856, "assets/images/nopicture.gif",
		77, 52,
		"3625052 000", "O-RING 12 X 2",
		"", "",
		"0.13", "0",
		"1", 1,
		"", "2",
		"", "pd-2000322667.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[857] = new Element(
		857, "assets/images/nopicture.gif",
		77, 52,
		"3625053 000", "O-RING 12,5 X 1,5 NBR",
		"", "",
		"0.13", "0",
		"1", 1,
		"", "2",
		"", "pd94839755.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[858] = new Element(
		858, "assets/images/nopicture.gif",
		77, 52,
		"3625054 000", "O-RING 19 X 3",
		"", "",
		"0.15", "0",
		"1", 1,
		"", "2",
		"", "pd-1910932751.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[859] = new Element(
		859, "assets/images/nopicture.gif",
		77, 52,
		"006072108 000", "TORQUE LIMITER ASSY MY&rsquo;10",
		"", "",
		"105.03", "0",
		"1", 1,
		"", "2",
		"", "pd243890707.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[860] = new Element(
		860, "assets/images/nopicture.gif",
		77, 52,
		"006080008 000", "OIL PUMP 40,56 B19",
		"", "",
		"25", "0",
		"1", 1,
		"", "2",
		"", "pd1195104889.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[861] = new Element(
		861, "assets/images/nopicture.gif",
		77, 52,
		"006080010 000", "OILPUMP COVER (SUCTION PUMP)",
		"", "",
		"0.8", "0",
		"1", 1,
		"", "2",
		"", "pd1510990246.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[862] = new Element(
		862, "assets/images/nopicture.gif",
		77, 52,
		"006080108 000", "OIL PUMP 40,56 B5",
		"", "",
		"23.78", "0",
		"1", 1,
		"", "2",
		"", "pd-1387787953.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[863] = new Element(
		863, "assets/images/nopicture.gif",
		77, 52,
		"006080110 000", "OILPUMP COVER (PRESSURE PUMP)",
		"", "",
		"6.53", "0",
		"1", 1,
		"", "2",
		"", "pd-690066411.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[864] = new Element(
		864, "assets/images/nopicture.gif",
		77, 52,
		"006080220 000", "OIL PUMP GEAR",
		"", "",
		"1.62", "0",
		"1", 1,
		"", "2",
		"", "pd-569646005.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[865] = new Element(
		865, "assets/images/nopicture.gif",
		77, 52,
		"006080300 000", "INTERMEDIATE GEAR (OIL PUMP)",
		"", "",
		"1.28", "0",
		"1", 1,
		"", "2",
		"", "pd-1837224079.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[866] = new Element(
		866, "assets/images/nopicture.gif",
		77, 52,
		"006080320 000", "SHAFT INTERMEDIATE GEAR OIL PUM",
		"", "",
		"4.02", "0",
		"1", 1,
		"", "2",
		"", "pd1717520135.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[867] = new Element(
		867, "assets/images/nopicture.gif",
		77, 52,
		"006080400 000", "SPRING (PRESSURE VALVE)",
		"", "",
		"0.92", "0",
		"1", 1,
		"", "2",
		"", "pd136298637.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[868] = new Element(
		868, "assets/images/nopicture.gif",
		77, 52,
		"006080410 000", "SPRING (VENTILATION)",
		"", "",
		"0.86", "0",
		"1", 1,
		"", "2",
		"", "pd1321741699.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[869] = new Element(
		869, "assets/images/nopicture.gif",
		77, 52,
		"006080500 000", "OIL DRAIN PLUG",
		"", "",
		"11.69", "0",
		"1", 1,
		"", "2",
		"", "pd-131499159.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[870] = new Element(
		870, "assets/images/nopicture.gif",
		77, 52,
		"006080508 000", "OIL DRAIN PLUG",
		"", "",
		"14.93", "0",
		"1", 1,
		"", "2",
		"", "pd-1174177724.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[871] = new Element(
		871, "assets/images/nopicture.gif",
		77, 52,
		"006080510 000", "OIL FILTER",
		"", "",
		"6.28", "0",
		"1", 1,
		"", "2",
		"", "pd671372223.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[872] = new Element(
		872, "assets/images/nopicture.gif",
		77, 52,
		"006080518 000", "OIL FILTER",
		"", "",
		"8", "0",
		"1", 1,
		"", "2",
		"", "pd-421681134.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[873] = new Element(
		873, "assets/images/nopicture.gif",
		77, 52,
		"006080528 000", "MAGNET SCREW M14X1,5",
		"", "",
		"5.27", "0",
		"1", 1,
		"", "2",
		"", "pd-1929413627.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[874] = new Element(
		874, "assets/images/nopicture.gif",
		77, 52,
		"006080530 000", "OILSIEVE (CRANKCASE)",
		"", "",
		"6.93", "0",
		"1", 1,
		"", "2",
		"", "pd86955152.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[875] = new Element(
		875, "assets/images/nopicture.gif",
		77, 52,
		"006080538 000", "OILSIEVE (CRANKCASE)",
		"", "",
		"7.78", "0",
		"1", 1,
		"", "2",
		"", "pd-581750507.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[876] = new Element(
		876, "assets/images/nopicture.gif",
		77, 52,
		"006080600 000", "OIL FILTER CAP",
		"", "",
		"3.62", "0",
		"1", 1,
		"", "2",
		"", "pd-66767429.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[877] = new Element(
		877, "assets/images/nopicture.gif",
		77, 52,
		"006080700 000", "OIL FILTER",
		"", "",
		"10.54", "0",
		"1", 1,
		"", "2",
		"", "pd610246241.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[878] = new Element(
		878, "assets/images/nopicture.gif",
		77, 52,
		"006080800 000", "OILRAMP",
		"", "",
		"1.35", "0",
		"1", 1,
		"", "2",
		"", "pd648810359.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[879] = new Element(
		879, "assets/images/nopicture.gif",
		77, 52,
		"006080810 000", "DISTANCE BUSH",
		"", "",
		"2.37", "0",
		"1", 1,
		"", "2",
		"", "pd1182629501.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[880] = new Element(
		880, "assets/images/nopicture.gif",
		77, 52,
		"006081200 000", "OIL PUMP SHAFT",
		"", "",
		"22.95", "0",
		"1", 1,
		"", "2",
		"", "pd306568435.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[881] = new Element(
		881, "assets/images/nopicture.gif",
		77, 52,
		"006081310 000", "SHAFT INTERMEDIATE GEAR OIL PUM",
		"", "",
		"6.18", "0",
		"1", 1,
		"", "2",
		"", "pd652114009.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[882] = new Element(
		882, "assets/images/nopicture.gif",
		77, 52,
		"006081508 000", "OIL DRAIN PLUG",
		"", "",
		"11.73", "0",
		"1", 1,
		"", "2",
		"", "pd-1929236149.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[883] = new Element(
		883, "assets/images/nopicture.gif",
		77, 52,
		"006081528 000", "MAGNET SCREW M14X1,5",
		"", "",
		"6.07", "0",
		"1", 1,
		"", "2",
		"", "pd-90436290.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[884] = new Element(
		884, "assets/images/nopicture.gif",
		77, 52,
		"006090000 000", "IMPELLER WATER PUMP",
		"", "",
		"2.56", "0",
		"1", 1,
		"", "2",
		"", "pd-1815651793.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[885] = new Element(
		885, "assets/images/nopicture.gif",
		77, 52,
		"006090100 000", "SHAFT WATER PUMP",
		"", "",
		"10.64", "0",
		"1", 1,
		"", "2",
		"", "pd-889870347.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[886] = new Element(
		886, "assets/images/nopicture.gif",
		77, 52,
		"006090110 000", "BUSH WATER PUMP IR 8.12.10",
		"", "",
		"5.74", "0",
		"1", 1,
		"", "2",
		"", "pd1657340715.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[887] = new Element(
		887, "assets/images/nopicture.gif",
		77, 52,
		"006090120 000", "WASHER WATER PUMP",
		"", "",
		"0.34", "0",
		"1", 1,
		"", "2",
		"", "pd-1300240047.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[888] = new Element(
		888, "assets/images/nopicture.gif",
		77, 52,
		"006090200 000", "WATER PUMP COVER",
		"", "",
		"5.63", "0",
		"1", 1,
		"", "2",
		"", "pd-381479961.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[889] = new Element(
		889, "assets/images/nopicture.gif",
		77, 52,
		"006090210 000", "GASKET WATER PUMP",
		"", "",
		"4.22", "0",
		"1", 1,
		"", "2",
		"", "pd-1650468755.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[890] = new Element(
		890, "assets/images/nopicture.gif",
		77, 52,
		"006100100 000", "ROTOR, FLYWHEEL",
		"", "",
		"194.22", "0",
		"1", 1,
		"", "2",
		"", "pd1728677987.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[891] = new Element(
		891, "assets/images/nopicture.gif",
		77, 52,
		"006100200 000", "STATOR, FLYWHEEL",
		"", "",
		"113.71", "0",
		"1", 1,
		"", "2",
		"", "pd-860237495.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[892] = new Element(
		892, "assets/images/nopicture.gif",
		77, 52,
		"006100300 000", "PICK UP",
		"", "",
		"50.59", "0",
		"1", 1,
		"", "2",
		"", "pd621288607.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[893] = new Element(
		893, "assets/images/nopicture.gif",
		77, 52,
		"006100500 000", "SPARK PLUG, M12X1,25",
		"", "",
		"4.08", "0",
		"1", 1,
		"", "2",
		"", "pd-703598619.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[894] = new Element(
		894, "assets/images/nopicture.gif",
		77, 52,
		"006100550 000", "SPARK PLUG CONNECTOR RR4T MY&rsquo;10",
		"", "",
		"22.11", "0",
		"1", 1,
		"", "2",
		"", "pd876498075.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[895] = new Element(
		895, "assets/images/nopicture.gif",
		77, 52,
		"006110008 000", "CYLINDERHEAD MACHINED CPL.",
		"", "",
		"436.55", "0",
		"1", 1,
		"", "2",
		"", "pd-316796863.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[896] = new Element(
		896, "assets/images/nopicture.gif",
		77, 52,
		"006110080 000", "CONNECTION NOZZLE M20.1,5",
		"", "",
		"3.35", "0",
		"1", 1,
		"", "2",
		"", "pd-193244073.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[897] = new Element(
		897, "assets/images/nopicture.gif",
		77, 52,
		"006110090 000", "OIL JET",
		"", "",
		"5.74", "0",
		"1", 1,
		"", "2",
		"", "pd934661725.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[898] = new Element(
		898, "assets/images/nopicture.gif",
		77, 52,
		"006110120 000", "WASHER 10,5.18,5.2,5",
		"", "",
		"3", "0",
		"1", 1,
		"", "2",
		"", "pd1591357395.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[899] = new Element(
		899, "assets/images/nopicture.gif",
		77, 52,
		"006110130 000", "SCREW M10.1,25 L=134",
		"", "",
		"5.15", "0",
		"1", 1,
		"", "2",
		"", "pd-1931835847.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[900] = new Element(
		900, "assets/images/nopicture.gif",
		77, 52,
		"006110190 000", "STUD BOLT M8X30 DIN 913 A2 INOX",
		"", "",
		"0.84", "0",
		"1", 1,
		"", "2",
		"", "pd-1390482020.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[901] = new Element(
		901, "assets/images/nopicture.gif",
		77, 52,
		"006110200 052", "CYLINDERHEAD COVER",
		"", "",
		"28.12", "0",
		"1", 1,
		"", "2",
		"", "pd-805463281.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[902] = new Element(
		902, "assets/images/nopicture.gif",
		77, 52,
		"006110210 000", "SEALING PLUG (EJOFORM ALTRACS G",
		"", "",
		"15.44", "0",
		"1", 1,
		"", "2",
		"", "pd-1185066027.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[903] = new Element(
		903, "assets/images/nopicture.gif",
		77, 52,
		"006110220 000", "SEALING CYLINDERHEAD COVER",
		"", "",
		"2.16", "0",
		"1", 1,
		"", "2",
		"", "pd-838069749.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[904] = new Element(
		904, "assets/images/nopicture.gif",
		77, 52,
		"006110250 000", "SCREW HEAD COVER",
		"", "",
		"4.44", "0",
		"1", 1,
		"", "2",
		"", "pd641274673.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[905] = new Element(
		905, "assets/images/nopicture.gif",
		77, 52,
		"006110260 000", "RUBBER, SCREW CYLINDEHEAD COVER",
		"", "",
		"1.32", "0",
		"1", 1,
		"", "2",
		"", "pd107729095.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[906] = new Element(
		906, "assets/images/nopicture.gif",
		77, 52,
		"006110300 000", "FINGER FOLLOWER",
		"", "",
		"57.98", "0",
		"1", 1,
		"", "2",
		"", "pd2091802701.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[907] = new Element(
		907, "assets/images/nopicture.gif",
		77, 52,
		"006110310 000", "SHAFT (FINGER FOLLOWER)",
		"", "",
		"5.42", "0",
		"1", 1,
		"", "2",
		"", "pd2134823747.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[908] = new Element(
		908, "assets/images/nopicture.gif",
		77, 52,
		"006110320 000", "VALVE INLET",
		"", "",
		"24.61", "0",
		"1", 1,
		"", "2",
		"", "pd-1541433559.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[909] = new Element(
		909, "assets/images/nopicture.gif",
		77, 52,
		"006110330 000", "VALVE EXHAUST",
		"", "",
		"41.8", "0",
		"1", 1,
		"", "2",
		"", "pd-1197550209.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[910] = new Element(
		910, "assets/images/nopicture.gif",
		77, 52,
		"006110340 000", "VALVE SPRING",
		"", "",
		"19.05", "0",
		"1", 1,
		"", "2",
		"", "pd900518853.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[911] = new Element(
		911, "assets/images/nopicture.gif",
		77, 52,
		"006110360 000", "VALVE SPRING UPPER RETAINER",
		"", "",
		"4.54", "0",
		"1", 1,
		"", "2",
		"", "pd966349691.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[912] = new Element(
		912, "assets/images/nopicture.gif",
		77, 52,
		"006110370 000", "VALVE SPRING LOWER SUPPORT",
		"", "",
		"2.06", "0",
		"1", 1,
		"", "2",
		"", "pd1099952673.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[913] = new Element(
		913, "assets/images/nopicture.gif",
		77, 52,
		"006110380 000", "VALVE COLLET",
		"", "",
		"0.39", "0",
		"1", 1,
		"", "2",
		"", "pd-991196873.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[914] = new Element(
		914, "assets/images/nopicture.gif",
		77, 52,
		"006110390 000", "VALVE STEM SEAL",
		"", "",
		"2.32", "0",
		"1", 1,
		"", "2",
		"", "pd37260861.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[915] = new Element(
		915, "assets/images/nopicture.gif",
		77, 52,
		"006110402 000", "WASHER 2,000",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd-1211597526.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[916] = new Element(
		916, "assets/images/nopicture.gif",
		77, 52,
		"006110402 005", "WASHER 2,050",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd1019154280.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[917] = new Element(
		917, "assets/images/nopicture.gif",
		77, 52,
		"006110402 010", "SHIM 2,100",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd-1561386026.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[918] = new Element(
		918, "assets/images/nopicture.gif",
		77, 52,
		"006110402 015", "SHIM 2,150",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd-1834531340.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[919] = new Element(
		919, "assets/images/nopicture.gif",
		77, 52,
		"006110402 020", "SHIM 2,200",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd-1760105150.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[920] = new Element(
		920, "assets/images/nopicture.gif",
		77, 52,
		"006110402 025", "SHIM 2,250",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd459824448.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[921] = new Element(
		921, "assets/images/nopicture.gif",
		77, 52,
		"006110402 030", "SHIM 2,300",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd955090286.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[922] = new Element(
		922, "assets/images/nopicture.gif",
		77, 52,
		"006110402 032", "SHIM 2,325",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd-1466441396.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[923] = new Element(
		923, "assets/images/nopicture.gif",
		77, 52,
		"006110402 035", "SHIM 2,350",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd1421039706.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[924] = new Element(
		924, "assets/images/nopicture.gif",
		77, 52,
		"006110402 037", "SHIM 2,375",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd815537688.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[925] = new Element(
		925, "assets/images/nopicture.gif",
		77, 52,
		"006110402 040", "SHIM 2,400",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd1390907910.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[926] = new Element(
		926, "assets/images/nopicture.gif",
		77, 52,
		"006110402 042", "SHIM 2,425",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd-2093473884.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[927] = new Element(
		927, "assets/images/nopicture.gif",
		77, 52,
		"006110402 045", "SHIM 2,450",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd-1347150222.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[928] = new Element(
		928, "assets/images/nopicture.gif",
		77, 52,
		"006110402 047", "SHIM 2,475",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd-1093160464.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[929] = new Element(
		929, "assets/images/nopicture.gif",
		77, 52,
		"006110402 050", "SHIM 2,500",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd555329950.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[930] = new Element(
		930, "assets/images/nopicture.gif",
		77, 52,
		"006110402 052", "SHIM 2,525",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd312172796.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[931] = new Element(
		931, "assets/images/nopicture.gif",
		77, 52,
		"006110402 055", "SHIM 2,550",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd-673472630.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[932] = new Element(
		932, "assets/images/nopicture.gif",
		77, 52,
		"006110402 057", "SHIM 2,575",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd421820616.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[933] = new Element(
		933, "assets/images/nopicture.gif",
		77, 52,
		"006110402 060", "SHIM 2,600",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd120335414.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[934] = new Element(
		934, "assets/images/nopicture.gif",
		77, 52,
		"006110402 062", "SHIM 2,625",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd-668924588.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[935] = new Element(
		935, "assets/images/nopicture.gif",
		77, 52,
		"006110402 065", "SHIM 2,650",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd-1625801822.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[936] = new Element(
		936, "assets/images/nopicture.gif",
		77, 52,
		"006110402 067", "SHIM 2,675",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd815256224.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[937] = new Element(
		937, "assets/images/nopicture.gif",
		77, 52,
		"006110402 070", "SHIM 2,700",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd-441222706.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[938] = new Element(
		938, "assets/images/nopicture.gif",
		77, 52,
		"006110402 072", "SHIM 2,725",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd1274309804.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[939] = new Element(
		939, "assets/images/nopicture.gif",
		77, 52,
		"006110402 075", "SHIM 2,750",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd1527009978.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[940] = new Element(
		940, "assets/images/nopicture.gif",
		77, 52,
		"006110402 077", "SHIM 2,775",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd1372790648.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[941] = new Element(
		941, "assets/images/nopicture.gif",
		77, 52,
		"006110402 080", "SHIM 2,800",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd330297958.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[942] = new Element(
		942, "assets/images/nopicture.gif",
		77, 52,
		"006110402 082", "SHIM 2,825",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd1921840900.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[943] = new Element(
		943, "assets/images/nopicture.gif",
		77, 52,
		"006110402 085", "SHIM 2,850",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd1986413778.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[944] = new Element(
		944, "assets/images/nopicture.gif",
		77, 52,
		"006110402 087", "SHIM 2,875",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd310624080.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[945] = new Element(
		945, "assets/images/nopicture.gif",
		77, 52,
		"006110402 090", "SHIM 2,900",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd135132670.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[946] = new Element(
		946, "assets/images/nopicture.gif",
		77, 52,
		"006110402 092", "SHIM 2,925",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd-1574042532.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[947] = new Element(
		947, "assets/images/nopicture.gif",
		77, 52,
		"006110402 095", "SHIM 2,950",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd-1297059350.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[948] = new Element(
		948, "assets/images/nopicture.gif",
		77, 52,
		"006110402 097", "SHIM 2,975",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd1860375080.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[949] = new Element(
		949, "assets/images/nopicture.gif",
		77, 52,
		"006110403 000", "SHIM 3,000",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd-1289362282.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[950] = new Element(
		950, "assets/images/nopicture.gif",
		77, 52,
		"006110403 005", "SHIM 3,050",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd2020013236.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[951] = new Element(
		951, "assets/images/nopicture.gif",
		77, 52,
		"006110403 010", "SHIM 3,100",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd427899394.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[952] = new Element(
		952, "assets/images/nopicture.gif",
		77, 52,
		"006110403 015", "SHIM 3,150",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd389445632.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[953] = new Element(
		953, "assets/images/nopicture.gif",
		77, 52,
		"006110403 020", "SHIM 3,200",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd-2009326034.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[954] = new Element(
		954, "assets/images/nopicture.gif",
		77, 52,
		"006110450 000", "SEALING PLUG (SHAFT FINGER)",
		"", "",
		"4.6", "0",
		"1", 1,
		"", "2",
		"", "pd830370483.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[955] = new Element(
		955, "assets/images/nopicture.gif",
		77, 52,
		"006110458 000", "SEALING PLUG (SHAFT FINGER)",
		"", "",
		"8.51", "0",
		"1", 1,
		"", "2",
		"", "pd452019313.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[956] = new Element(
		956, "assets/images/nopicture.gif",
		77, 52,
		"006110500 000", "CAMSHAFT IN 450CC",
		"", "",
		"133.61", "0",
		"1", 1,
		"", "2",
		"", "pd-651688935.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[957] = new Element(
		957, "assets/images/nopicture.gif",
		77, 52,
		"006110518 000", "CAMSHAFT EX CPL. 450/520",
		"", "",
		"189.99", "0",
		"1", 1,
		"", "2",
		"", "pd649880583.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[958] = new Element(
		958, "assets/images/nopicture.gif",
		77, 52,
		"006110530 000", "NEEDLE ROLLER BEARING NK35/20R",
		"", "",
		"17.26", "0",
		"1", 1,
		"", "2",
		"", "pd-1566389265.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[959] = new Element(
		959, "assets/images/nopicture.gif",
		77, 52,
		"006110550 000", "AUTODECO WEIGHT",
		"", "",
		"12.99", "0",
		"1", 1,
		"", "2",
		"", "pd-1316130891.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[960] = new Element(
		960, "assets/images/nopicture.gif",
		77, 52,
		"006110560 000", "AUTODECO SHAFT",
		"", "",
		"12.99", "0",
		"1", 1,
		"", "2",
		"", "pd-1676865301.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[961] = new Element(
		961, "assets/images/nopicture.gif",
		77, 52,
		"006110570 000", "BEARING BOLT",
		"", "",
		"2.19", "0",
		"1", 1,
		"", "2",
		"", "pd-1532908271.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[962] = new Element(
		962, "assets/images/nopicture.gif",
		77, 52,
		"006110580 000", "SPRING",
		"", "",
		"1.08", "0",
		"1", 1,
		"", "2",
		"", "pd764509607.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[963] = new Element(
		963, "assets/images/nopicture.gif",
		77, 52,
		"006110600 000", "TIMING CHAIN Z=126",
		"", "",
		"54.47", "0",
		"1", 1,
		"", "2",
		"", "pd2076399661.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[964] = new Element(
		964, "assets/images/nopicture.gif",
		77, 52,
		"006110610 000", "TIMING CHAIN GUIDE",
		"", "",
		"3.64", "0",
		"1", 1,
		"", "2",
		"", "pd849350179.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[965] = new Element(
		965, "assets/images/nopicture.gif",
		77, 52,
		"006110618 000", "TIMING CHAIN GUIDE",
		"", "",
		"9.1", "0",
		"1", 1,
		"", "2",
		"", "pd-778689139.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[966] = new Element(
		966, "assets/images/nopicture.gif",
		77, 52,
		"006110620 000", "TIMING CHAIN TENSIONER",
		"", "",
		"3.91", "0",
		"1", 1,
		"", "2",
		"", "pd1817365769.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[967] = new Element(
		967, "assets/images/nopicture.gif",
		77, 52,
		"006110628 000", "TIMING CHAIN TENSIONER",
		"", "",
		"17.18", "0",
		"1", 1,
		"", "2",
		"", "pd1796807299.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[968] = new Element(
		968, "assets/images/nopicture.gif",
		77, 52,
		"006110630 000", "TIMING CHAIN GUIDE HEAD",
		"", "",
		"1.42", "0",
		"1", 1,
		"", "2",
		"", "pd1635810911.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[969] = new Element(
		969, "assets/images/nopicture.gif",
		77, 52,
		"006110640 000", "CHAIN PROTECTOR",
		"", "",
		"1.69", "0",
		"1", 1,
		"", "2",
		"", "pd692987813.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[970] = new Element(
		970, "assets/images/nopicture.gif",
		77, 52,
		"006110650 000", "DUSTANCE BUSH, 6,2.9.9",
		"", "",
		"0.69", "0",
		"1", 1,
		"", "2",
		"", "pd-1504818597.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[971] = new Element(
		971, "assets/images/nopicture.gif",
		77, 52,
		"006110660 000", "DUSTANCE BUSH",
		"", "",
		"2.81", "0",
		"1", 1,
		"", "2",
		"", "pd648889345.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[972] = new Element(
		972, "assets/images/nopicture.gif",
		77, 52,
		"006110670 000", "CAMCHAIN TENSIONER HYDRAULIC",
		"", "",
		"34.07", "0",
		"1", 1,
		"", "2",
		"", "pd95727127.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[973] = new Element(
		973, "assets/images/nopicture.gif",
		77, 52,
		"006110680 000", "SCREW PLUG (CAMCHAIN TENSIONER)",
		"", "",
		"8.31", "0",
		"1", 1,
		"", "2",
		"", "pd-1434599907.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[974] = new Element(
		974, "assets/images/nopicture.gif",
		77, 52,
		"006110688 000", "SCREW PLUG (CAMCHAIN TENSIONER)",
		"", "",
		"9.44", "0",
		"1", 1,
		"", "2",
		"", "pd-470273943.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[975] = new Element(
		975, "assets/images/nopicture.gif",
		77, 52,
		"006110700 000", "CHAIN GUIDE, IGNITION COVER",
		"", "",
		"2.56", "0",
		"1", 1,
		"", "2",
		"", "pd57320851.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[976] = new Element(
		976, "assets/images/nopicture.gif",
		77, 52,
		"006111080 000", "CONNECTION NOZZLE M20.1,5",
		"", "",
		"8.97", "0",
		"1", 1,
		"", "2",
		"", "pd-7133172.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[977] = new Element(
		977, "assets/images/nopicture.gif",
		77, 52,
		"006111330 000", "VALVE EXHAUST",
		"", "",
		"24.99", "0",
		"1", 1,
		"", "2",
		"", "pd-1641874150.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[978] = new Element(
		978, "assets/images/nopicture.gif",
		77, 52,
		"006111390 000", "VALVE STEM SEAL",
		"", "",
		"2.01", "0",
		"1", 1,
		"", "2",
		"", "pd-313569064.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[979] = new Element(
		979, "assets/images/nopicture.gif",
		77, 52,
		"006111500 000", "CAMSHAFT IN 510CC",
		"", "",
		"133.5", "0",
		"1", 1,
		"", "2",
		"", "pd363204799.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[980] = new Element(
		980, "assets/images/nopicture.gif",
		77, 52,
		"006111671 000", "SCREW CHAIN TENSIONER",
		"", "",
		"25.14", "0",
		"1", 1,
		"", "2",
		"", "pd-473202427.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[981] = new Element(
		981, "assets/images/nopicture.gif",
		77, 52,
		"006111672 000", "PISTON",
		"", "",
		"11.42", "0",
		"1", 1,
		"", "2",
		"", "pd673497787.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[982] = new Element(
		982, "assets/images/nopicture.gif",
		77, 52,
		"006111673 000", "CHAIN TIGHTENER SPRING",
		"", "",
		"9.28", "0",
		"1", 1,
		"", "2",
		"", "pd723383137.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[983] = new Element(
		983, "assets/images/nopicture.gif",
		77, 52,
		"006111678 000", "CHAIN TENSIONER CPL RR4T",
		"", "",
		"57.69", "0",
		"1", 1,
		"", "2",
		"", "pd-1824101257.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[984] = new Element(
		984, "assets/images/nopicture.gif",
		77, 52,
		"006111688 000", "COMPLETE CAP",
		"", "",
		"11.79", "0",
		"1", 1,
		"", "2",
		"", "pd594748285.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[985] = new Element(
		985, "assets/images/nopicture.gif",
		77, 52,
		"006112500 000", "CAMSHAFT IN",
		"", "",
		"129.72", "0",
		"1", 1,
		"", "2",
		"", "pd922813126.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[986] = new Element(
		986, "assets/images/nopicture.gif",
		77, 52,
		"006112518 000", "EXHAUST CAMSHAFT ASSY 400CC",
		"", "",
		"189.99", "0",
		"1", 1,
		"", "2",
		"", "pd-1020786189.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[987] = new Element(
		987, "assets/images/nopicture.gif",
		77, 52,
		"006120008 000", "CARBURETOR KEIHIN FCRMX 39  (45",
		"", "",
		"774.1", "0",
		"1", 1,
		"", "2",
		"", "pd129954297.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[988] = new Element(
		988, "assets/images/nopicture.gif",
		77, 52,
		"006120010 000", "JET NEEDLE OBDTS KEIHIN",
		"", "",
		"18.15", "0",
		"1", 1,
		"", "2",
		"", "pd1215229135.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[989] = new Element(
		989, "assets/images/nopicture.gif",
		77, 52,
		"006120020 000", "LEAK JET, 40 KEIHIN",
		"", "",
		"4.46", "0",
		"1", 1,
		"", "2",
		"", "pd73006692.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[990] = new Element(
		990, "assets/images/nopicture.gif",
		77, 52,
		"006120030 000", "LEAK JET, 50 KEIHIN",
		"", "",
		"4.38", "0",
		"1", 1,
		"", "2",
		"", "pd1863064370.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[991] = new Element(
		991, "assets/images/nopicture.gif",
		77, 52,
		"006120040 000", "&quot;AC SPRING, &quot;&quot;GREEN&quot;&quot; KEIHIN&quot;",
		"", "",
		"5.44", "0",
		"1", 1,
		"", "2",
		"", "pd519961493.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[992] = new Element(
		992, "assets/images/nopicture.gif",
		77, 52,
		"006120070 000", "&quot;LEAK JET, &quot;&quot;0&quot;&quot; KEIHIN&quot;",
		"", "",
		"3.93", "0",
		"1", 1,
		"", "2",
		"", "pd-1307902800.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[993] = new Element(
		993, "assets/images/nopicture.gif",
		77, 52,
		"006120080 000", "FLOAT NEEDLE VALVE",
		"", "",
		"18.72", "0",
		"1", 1,
		"", "2",
		"", "pd379612505.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[994] = new Element(
		994, "assets/images/nopicture.gif",
		77, 52,
		"006120090 000", "CLAMP FLOAT NEEDLE VALVE",
		"", "",
		"3.81", "0",
		"1", 1,
		"", "2",
		"", "pd-879864017.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[995] = new Element(
		995, "assets/images/nopicture.gif",
		77, 52,
		"006120100 000", "CARBURETOR KEIHIN FCRMX 39 450C",
		"", "",
		"802.56", "0",
		"1", 1,
		"", "2",
		"", "pd353432158.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[996] = new Element(
		996, "assets/images/nopicture.gif",
		77, 52,
		"006120108 000", "CARBURETOR KEIHIN FCRMX 39  (45",
		"", "",
		"775.49", "0",
		"1", 1,
		"", "2",
		"", "pd-1519850251.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[997] = new Element(
		997, "assets/images/nopicture.gif",
		77, 52,
		"006120850 000", "INTAKE MANIFORD",
		"", "",
		"25.05", "0",
		"1", 1,
		"", "2",
		"", "pd-1344155605.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[998] = new Element(
		998, "assets/images/nopicture.gif",
		77, 52,
		"006120900 000", "ENGINE VENTILATION HOSE RR4T MY",
		"", "",
		"7.55", "0",
		"1", 1,
		"", "2",
		"", "pd84148171.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[999] = new Element(
		999, "assets/images/nopicture.gif",
		77, 52,
		"006121008 000", "CARBURETOR KEIHIN FCRMX 39 (400",
		"", "",
		"774.1", "0",
		"1", 1,
		"", "2",
		"", "pd11646705.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1000] = new Element(
		1000, "assets/images/nopicture.gif",
		77, 52,
		"006122008 000", "CARBURETOR KEIHIN FCRMX 39 (520",
		"", "",
		"780.95", "0",
		"1", 1,
		"", "2",
		"", "pd1248598663.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1001] = new Element(
		1001, "assets/images/nopicture.gif",
		77, 52,
		"006140020 000", "WRENCH SOCKET 36MM (NUT CRANKSH",
		"", "",
		"191.17", "0",
		"1", 1,
		"", "2",
		"", "pd-1691428932.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1002] = new Element(
		1002, "assets/images/nopicture.gif",
		77, 52,
		"006140030 000", "INSERT FOR VALVESPRING FITTING",
		"", "",
		"86.63", "0",
		"1", 1,
		"", "2",
		"", "pd-144772022.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1003] = new Element(
		1003, "assets/images/nopicture.gif",
		77, 52,
		"006140040 000", "LOCKING TOOL FOR INNER CLUTCH H",
		"", "",
		"71.8", "0",
		"1", 1,
		"", "2",
		"", "pd-489497720.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1004] = new Element(
		1004, "assets/images/nopicture.gif",
		77, 52,
		"006140050 000", "CHAINTENSIONER RELEASE TOOL",
		"", "",
		"46.65", "0",
		"1", 1,
		"", "2",
		"", "pd930368758.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1005] = new Element(
		1005, "assets/images/nopicture.gif",
		77, 52,
		"006140070 000", "SEPARATOR CRANKSHAFT",
		"", "",
		"152.02", "0",
		"1", 1,
		"", "2",
		"", "pd-707718124.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1006] = new Element(
		1006, "assets/images/nopicture.gif",
		77, 52,
		"006140110 000", "LOCATING SCREW CRANKSHAFT",
		"", "",
		"47.9", "0",
		"1", 1,
		"", "2",
		"", "pd-1872107422.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1007] = new Element(
		1007, "assets/images/nopicture.gif",
		77, 52,
		"006140140 000", "ADAPTER MOUTING RACK ASSY",
		"", "",
		"185.76", "0",
		"1", 1,
		"", "2",
		"", "pd-954446496.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1008] = new Element(
		1008, "assets/images/nopicture.gif",
		77, 52,
		"006140150 000", "PULLER PRIMARY GEAR",
		"", "",
		"237.25", "0",
		"1", 1,
		"", "2",
		"", "pd1008693902.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1009] = new Element(
		1009, "assets/images/nopicture.gif",
		77, 52,
		"006140160 000", "20-30MM INSERT FOR PULLER",
		"", "",
		"149.3", "0",
		"1", 1,
		"", "2",
		"", "pd-1463020692.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1010] = new Element(
		1010, "assets/images/nopicture.gif",
		77, 52,
		"006140170 000", "PISTON RING",
		"", "",
		"73.9", "0",
		"1", 1,
		"", "2",
		"", "pd-483960966.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1011] = new Element(
		1011, "assets/images/nopicture.gif",
		77, 52,
		"006140180 000", "LIMIT PLUG GAUGE FOR VALVE GUID",
		"", "",
		"48.15", "0",
		"1", 1,
		"", "2",
		"", "pd-1377258952.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1012] = new Element(
		1012, "assets/images/nopicture.gif",
		77, 52,
		"006140200 000", "WRENCH FOR MIXTURE CONTROL SCRE",
		"", "",
		"40.22", "0",
		"1", 1,
		"", "2",
		"", "pd-1015889114.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1013] = new Element(
		1013, "assets/images/nopicture.gif",
		77, 52,
		"006140210 000", "GAUGE FOR VALVE CLEARANCE",
		"", "",
		"10.41", "0",
		"1", 1,
		"", "2",
		"", "pd16201156.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1014] = new Element(
		1014, "assets/images/nopicture.gif",
		77, 52,
		"006400108 000", "INGNITION COIL RR 4T MY&rsquo;10",
		"", "",
		"25.69", "0",
		"1", 1,
		"", "2",
		"", "pd1297530893.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1015] = new Element(
		1015, "assets/images/nopicture.gif",
		77, 52,
		"006450018 000", "KIT, VALVE SHIM RR MY&rsquo;10",
		"", "",
		"196.35", "0",
		"1", 1,
		"", "2",
		"", "pd-105012846.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1016] = new Element(
		1016, "assets/images/nopicture.gif",
		77, 52,
		"007010008 033", "CRANKASE, EVO-2T&rsquo;11",
		"", "",
		"363.96", "0",
		"1", 1,
		"", "2",
		"", "pd1531275792.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1017] = new Element(
		1017, "assets/images/nopicture.gif",
		77, 52,
		"007010030 000", "CRANKCASE GASKET EVO 2T MY&rsquo;11",
		"", "",
		"4.06", "0",
		"1", 1,
		"", "2",
		"", "pd-1715822914.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1018] = new Element(
		1018, "assets/images/nopicture.gif",
		77, 52,
		"007020008 000", "CRANKSHAFT, EVO-2T 125CC FACTOR",
		"", "",
		"386.16", "0",
		"1", 1,
		"", "2",
		"", "pd150330140.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1019] = new Element(
		1019, "assets/images/nopicture.gif",
		77, 52,
		"007020108 000", "REV 3 200CC &rsquo;09 CRANKSHAFT",
		"", "",
		"520.67", "0",
		"1", 1,
		"", "2",
		"", "pd1483028739.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1020] = new Element(
		1020, "assets/images/nopicture.gif",
		77, 52,
		"007020300 000", "PISTON D.72,5 MY&rsquo;10",
		"", "",
		"90.5", "0",
		"1", 1,
		"", "2",
		"", "pd16721578.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1021] = new Element(
		1021, "assets/images/nopicture.gif",
		77, 52,
		"007020308 000", "COMPL.PISTON D.72,5",
		"", "",
		"106.4", "0",
		"1", 1,
		"", "2",
		"", "pd-1354009879.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1022] = new Element(
		1022, "assets/images/nopicture.gif",
		77, 52,
		"007020400 000", "PISTON D.54, EVO-2T 125CC",
		"", "",
		"190.77", "0",
		"1", 1,
		"", "2",
		"", "pd-1076265391.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1023] = new Element(
		1023, "assets/images/nopicture.gif",
		77, 52,
		"007020408 000", "PISTON D.54, EVO-2T 125CC",
		"", "",
		"142.77", "0",
		"1", 1,
		"", "2",
		"", "pd-1513368344.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1024] = new Element(
		1024, "assets/images/nopicture.gif",
		77, 52,
		"007020410 000", "PISTON RING D.54, EVO-2T 125CC",
		"", "",
		"45.61", "0",
		"1", 1,
		"", "2",
		"", "pd-1867553450.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1025] = new Element(
		1025, "assets/images/nopicture.gif",
		77, 52,
		"007020420 000", "PISTON PIN, EVO-2T 125CC FACTOR",
		"", "",
		"12.34", "0",
		"1", 1,
		"", "2",
		"", "pd-1632148620.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1026] = new Element(
		1026, "assets/images/nopicture.gif",
		77, 52,
		"007020430 000", "NEEDLE BEARING, EVO-2T 125CC FA",
		"", "",
		"32.99", "0",
		"1", 1,
		"", "2",
		"", "pd-1175828798.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1027] = new Element(
		1027, "assets/images/nopicture.gif",
		77, 52,
		"007020440 000", "CIRCLIP, EVO-2T 125 FACTORY",
		"", "",
		"0.86", "0",
		"1", 1,
		"", "2",
		"", "pd48935143.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1028] = new Element(
		1028, "assets/images/nopicture.gif",
		77, 52,
		"007020458 000", "COMPL.PISTON D.79",
		"", "",
		"272.59", "0",
		"1", 1,
		"", "2",
		"", "pd-1151025811.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1029] = new Element(
		1029, "assets/images/nopicture.gif",
		77, 52,
		"007020508 000", "CONNECTING ROD EVO 125CC MY&rsquo;11",
		"", "",
		"151.09", "0",
		"1", 1,
		"", "2",
		"", "pd1143034560.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1030] = new Element(
		1030, "assets/images/nopicture.gif",
		77, 52,
		"007020530 000", "NEEDLE BEARING 15.19.20",
		"", "",
		"16.31", "0",
		"1", 1,
		"", "2",
		"", "pd150304494.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1031] = new Element(
		1031, "assets/images/nopicture.gif",
		77, 52,
		"007020608 000", "CRANKSHAFT, EVO 2T 125CC MY&rsquo;11",
		"", "",
		"402.02", "0",
		"1", 1,
		"", "2",
		"", "pd-118018356.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1032] = new Element(
		1032, "assets/images/nopicture.gif",
		77, 52,
		"007030100 000", "CLUTCH CENTER, EVO 2T/4T MY&rsquo;10",
		"", "",
		"63.31", "0",
		"1", 1,
		"", "2",
		"", "pd-632490653.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1033] = new Element(
		1033, "assets/images/nopicture.gif",
		77, 52,
		"007030248 000", "PRIMARY DRIVE WITH CUP 250/290/",
		"", "",
		"301.44", "0",
		"1", 1,
		"", "2",
		"", "pd-1691786790.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1034] = new Element(
		1034, "assets/images/nopicture.gif",
		77, 52,
		"007030500 000", "CLUTCH PLATE SP.40/10",
		"", "",
		"19.61", "0",
		"1", 1,
		"", "2",
		"", "pd-898153576.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1035] = new Element(
		1035, "assets/images/nopicture.gif",
		77, 52,
		"007031248 000", "PRIMARY DRIVE WITH CUP, 125/200",
		"", "",
		"301.45", "0",
		"1", 1,
		"", "2",
		"", "pd731722630.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1036] = new Element(
		1036, "assets/images/nopicture.gif",
		77, 52,
		"007041008 000", "GEARBOX ASSY, EVO 2T MY&rsquo;11",
		"", "",
		"647.31", "0",
		"1", 1,
		"", "2",
		"", "pd-490797495.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1037] = new Element(
		1037, "assets/images/nopicture.gif",
		77, 52,
		"007060108 000", "KICKSTARTER",
		"", "",
		"104.79", "0",
		"1", 1,
		"", "2",
		"", "pd-1704650945.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1038] = new Element(
		1038, "assets/images/nopicture.gif",
		77, 52,
		"007060158 000", "KICKSTARTER ASSY",
		"", "",
		"112.61", "0",
		"1", 1,
		"", "2",
		"", "pd-1972638843.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1039] = new Element(
		1039, "assets/images/nopicture.gif",
		77, 52,
		"007060208 000", "KICKSTARTER LEVER ASSY",
		"", "",
		"87.44", "0",
		"1", 1,
		"", "2",
		"", "pd-795528901.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1040] = new Element(
		1040, "assets/images/nopicture.gif",
		77, 52,
		"007090100 000", "INOX WASHER WATER PUMP EVO 2T",
		"", "",
		"1.19", "0",
		"1", 1,
		"", "2",
		"", "pd2092735780.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1041] = new Element(
		1041, "assets/images/nopicture.gif",
		77, 52,
		"007100110 000", "EVO 2T 125CC DIGITAL CDI UNIT",
		"", "",
		"195.41", "0",
		"1", 1,
		"", "2",
		"", "pd-1116863007.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1042] = new Element(
		1042, "assets/images/nopicture.gif",
		77, 52,
		"007100120 000", "EVO 2T 250CC DIGITAL CDI",
		"", "",
		"195.41", "0",
		"1", 1,
		"", "2",
		"", "pd-1601256713.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1043] = new Element(
		1043, "assets/images/nopicture.gif",
		77, 52,
		"007100130 000", "DIGITAL CDI EVO 2T 200CC",
		"", "",
		"200.37", "0",
		"1", 1,
		"", "2",
		"", "pd285040125.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1044] = new Element(
		1044, "assets/images/nopicture.gif",
		77, 52,
		"007100140 000", "EVO 2T 290CC DIGITAL CDI",
		"", "",
		"195.41", "0",
		"1", 1,
		"", "2",
		"", "pd-1982412685.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1045] = new Element(
		1045, "assets/images/nopicture.gif",
		77, 52,
		"007100150 000", "EVO 2T 250CC DIGITAL CDI GB",
		"", "",
		"191.11", "0",
		"1", 1,
		"", "2",
		"", "pd-1567434766.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1046] = new Element(
		1046, "assets/images/nopicture.gif",
		77, 52,
		"007100200 000", "ELECTRIC FLYWHEEL 125CC EVO-2T",
		"", "",
		"385.5", "0",
		"1", 1,
		"", "2",
		"", "pd-670365840.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1047] = new Element(
		1047, "assets/images/nopicture.gif",
		77, 52,
		"007100210 000", "FLYWHEEL ROTOR, EVO-2T FACTORY-",
		"", "",
		"158.78", "0",
		"1", 1,
		"", "2",
		"", "pd-775661153.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1048] = new Element(
		1048, "assets/images/nopicture.gif",
		77, 52,
		"007100220 000", "PIC-UP SPACER",
		"", "",
		"26.16", "0",
		"1", 1,
		"", "2",
		"", "pd-744293602.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1049] = new Element(
		1049, "assets/images/nopicture.gif",
		77, 52,
		"007110010 000", "CYLINDER, D.79 EVO 2T MY&rsquo;11",
		"", "",
		"670.34", "0",
		"1", 1,
		"", "2",
		"", "pd-1686473499.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1050] = new Element(
		1050, "assets/images/nopicture.gif",
		77, 52,
		"007110100 000", "CYLINDER HEAD GASKET EVO-2T&rsquo;09/",
		"", "",
		"23.24", "0",
		"1", 1,
		"", "2",
		"", "pd-1332260903.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1051] = new Element(
		1051, "assets/images/nopicture.gif",
		77, 52,
		"007110150 000", "COMBUSTION CHAMBER",
		"", "",
		"51.34", "0",
		"1", 1,
		"", "2",
		"", "pd-1025831300.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1052] = new Element(
		1052, "assets/images/nopicture.gif",
		77, 52,
		"007110200 000", "EXT. HEAD CAP EVO 2T MY&rsquo;10",
		"", "",
		"40.95", "0",
		"1", 1,
		"", "2",
		"", "pd-693565174.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1053] = new Element(
		1053, "assets/images/nopicture.gif",
		77, 52,
		"007401500 000", "HORN, RACE",
		"", "",
		"17.97", "0",
		"1", 1,
		"", "2",
		"", "pd1354022979.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1054] = new Element(
		1054, "assets/images/nopicture.gif",
		77, 52,
		"007410000 058", "FRONT WHEEL",
		"", "",
		"529.82", "0",
		"1", 1,
		"", "2",
		"", "pd798357449.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1055] = new Element(
		1055, "assets/images/nopicture.gif",
		77, 52,
		"007410018 000", "FRONT HUB",
		"", "",
		"178.95", "0",
		"1", 1,
		"", "2",
		"", "pd1200269087.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1056] = new Element(
		1056, "assets/images/nopicture.gif",
		77, 52,
		"007410018 059", "FRONT HUB EVO 2T/4T",
		"", "",
		"180.78", "0",
		"1", 1,
		"", "2",
		"", "pd2060505130.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1057] = new Element(
		1057, "assets/images/nopicture.gif",
		77, 52,
		"007410030 000", "INNER REAR HUB SPACER",
		"", "",
		"10.41", "0",
		"1", 1,
		"", "2",
		"", "pd-1125410200.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1058] = new Element(
		1058, "assets/images/nopicture.gif",
		77, 52,
		"007410110 000", "SPOKE 3X256 FRONT WHEEL",
		"", "",
		"1.24", "0",
		"1", 1,
		"", "2",
		"", "pd1102020197.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1059] = new Element(
		1059, "assets/images/nopicture.gif",
		77, 52,
		"007410120 000", "SPOKE 3X258 FRON WHEEL",
		"", "",
		"1.24", "0",
		"1", 1,
		"", "2",
		"", "pd-1244496101.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1060] = new Element(
		1060, "assets/images/nopicture.gif",
		77, 52,
		"007410130 000", "NIPPLES 3,0 ALUMINIUM 5MM",
		"", "",
		"1.8", "0",
		"1", 1,
		"", "2",
		"", "pd-1480096063.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1061] = new Element(
		1061, "assets/images/nopicture.gif",
		77, 52,
		"007410300 000", "FRONT WHEEL PIN",
		"", "",
		"29.7", "0",
		"1", 1,
		"", "2",
		"", "pd1321971415.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1062] = new Element(
		1062, "assets/images/nopicture.gif",
		77, 52,
		"007410500 000", "RIM MONRAD 21.1,6 -32",
		"", "",
		"97.26", "0",
		"1", 1,
		"", "2",
		"", "pd756526301.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1063] = new Element(
		1063, "assets/images/nopicture.gif",
		77, 52,
		"007411000 058", "FRONT WHEEL, EVO 2T/4T MY&rsquo;11",
		"", "",
		"479.8", "0",
		"1", 1,
		"", "2",
		"", "pd-960846122.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1064] = new Element(
		1064, "assets/images/nopicture.gif",
		77, 52,
		"007411040 000", "FRONT BRAKE DISK EVO 2T 300CC",
		"", "",
		"112.22", "0",
		"1", 1,
		"", "2",
		"", "pd1033587753.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1065] = new Element(
		1065, "assets/images/nopicture.gif",
		77, 52,
		"007411110 000", "SPOKE 3X256 FRONT WHEEL, EVO 2T",
		"", "",
		"1.13", "0",
		"1", 1,
		"", "2",
		"", "pd-133529356.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1066] = new Element(
		1066, "assets/images/nopicture.gif",
		77, 52,
		"007411120 000", "SPOKE 3X258 FRONT WHEEL, EVO 2T",
		"", "",
		"1.13", "0",
		"1", 1,
		"", "2",
		"", "pd-1749508030.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1067] = new Element(
		1067, "assets/images/nopicture.gif",
		77, 52,
		"007411130 000", "NIPPLES 3,5 x 0,60 EVO 2T/4T MY",
		"", "",
		"1.29", "0",
		"1", 1,
		"", "2",
		"", "pd743262272.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1068] = new Element(
		1068, "assets/images/nopicture.gif",
		77, 52,
		"007411140 000", "BEAD 21, EVO 2T/4T MY&rsquo;11",
		"", "",
		"4.7", "0",
		"1", 1,
		"", "2",
		"", "pd531993215.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1069] = new Element(
		1069, "assets/images/nopicture.gif",
		77, 52,
		"007420000 058", "REAR WHEEL, EVO 2T 250/290",
		"", "",
		"678.22", "0",
		"1", 1,
		"", "2",
		"", "pd-818335149.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1070] = new Element(
		1070, "assets/images/nopicture.gif",
		77, 52,
		"007420008 058", "REAR WHEEL",
		"", "",
		"853.43", "0",
		"1", 1,
		"", "2",
		"", "pd-1265939271.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1071] = new Element(
		1071, "assets/images/nopicture.gif",
		77, 52,
		"007420018 000", "REAR HUB WITH BEARINGS",
		"", "",
		"203.47", "0",
		"1", 1,
		"", "2",
		"", "pd568706447.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1072] = new Element(
		1072, "assets/images/nopicture.gif",
		77, 52,
		"007420018 059", "REAR HUB WITH BEARINGS, EVO 2T/",
		"", "",
		"210.74", "0",
		"1", 1,
		"", "2",
		"", "pd296249454.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1073] = new Element(
		1073, "assets/images/nopicture.gif",
		77, 52,
		"007420020 000", "rear wheel inner spacer",
		"", "",
		"9.19", "0",
		"1", 1,
		"", "2",
		"", "pd-446987691.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1074] = new Element(
		1074, "assets/images/nopicture.gif",
		77, 52,
		"007420040 000", "REAR BRAKE DISK",
		"", "",
		"86.29", "0",
		"1", 1,
		"", "2",
		"", "pd-845159285.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1075] = new Element(
		1075, "assets/images/nopicture.gif",
		77, 52,
		"007420120 000", "SPOKE 3,5X216 REAR WHEEL",
		"", "",
		"1.36", "0",
		"1", 1,
		"", "2",
		"", "pd-1184159311.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1076] = new Element(
		1076, "assets/images/nopicture.gif",
		77, 52,
		"007420130 000", "SPOKE 3,5X220 REAR WHEEL",
		"", "",
		"1.36", "0",
		"1", 1,
		"", "2",
		"", "pd452315975.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1077] = new Element(
		1077, "assets/images/nopicture.gif",
		77, 52,
		"007420140 000", "NIPPLES 3,5 REAR WHEEL",
		"", "",
		"1.8", "0",
		"1", 1,
		"", "2",
		"", "pd-1990009139.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1078] = new Element(
		1078, "assets/images/nopicture.gif",
		77, 52,
		"007420150 000", "SPECIAL SCREW 8.33",
		"", "",
		"1.59", "0",
		"1", 1,
		"", "2",
		"", "pd-307137085.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1079] = new Element(
		1079, "assets/images/nopicture.gif",
		77, 52,
		"007420160 000", "DISK SPEC. SCREW M6X16",
		"", "",
		"1.91", "0",
		"1", 1,
		"", "2",
		"", "pd-225641047.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1080] = new Element(
		1080, "assets/images/nopicture.gif",
		77, 52,
		"007420200 000", "REAR SPACER HUB",
		"", "",
		"7.16", "0",
		"1", 1,
		"", "2",
		"", "pd236232703.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1081] = new Element(
		1081, "assets/images/nopicture.gif",
		77, 52,
		"007420300 000", "REAR WHEEL PIN",
		"", "",
		"34.99", "0",
		"1", 1,
		"", "2",
		"", "pd-1301175739.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1082] = new Element(
		1082, "assets/images/nopicture.gif",
		77, 52,
		"007420500 000", "RIM MONRAD 18.2,15 -32",
		"", "",
		"207.82", "0",
		"1", 1,
		"", "2",
		"", "pd1574225403.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1083] = new Element(
		1083, "assets/images/nopicture.gif",
		77, 52,
		"007421000 058", "REAR WHEEL, EVO 2T 125",
		"", "",
		"679.12", "0",
		"1", 1,
		"", "2",
		"", "pd886514615.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1084] = new Element(
		1084, "assets/images/nopicture.gif",
		77, 52,
		"007421008 058", "REAR WHEEL WITH TYRE, EVO 2T 12",
		"", "",
		"843.69", "0",
		"1", 1,
		"", "2",
		"", "pd-688531259.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1085] = new Element(
		1085, "assets/images/nopicture.gif",
		77, 52,
		"007421040 000", "REAR BRAKE DISK EVO 2T 300CC",
		"", "",
		"91.78", "0",
		"1", 1,
		"", "2",
		"", "pd142467195.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1086] = new Element(
		1086, "assets/images/nopicture.gif",
		77, 52,
		"007421120 000", "SPOKE 3,5X165 REAR WHEEL MY&rsquo;11",
		"", "",
		"1.17", "0",
		"1", 1,
		"", "2",
		"", "pd2113502284.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1087] = new Element(
		1087, "assets/images/nopicture.gif",
		77, 52,
		"007421130 000", "SPOKE 3,5X175 REAR WHEEL MY&rsquo;11",
		"", "",
		"1.17", "0",
		"1", 1,
		"", "2",
		"", "pd1392143194.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1088] = new Element(
		1088, "assets/images/nopicture.gif",
		77, 52,
		"007421140 000", "NIPPLES 3,5 REAR WHEEL MY&rsquo;11",
		"", "",
		"1.56", "0",
		"1", 1,
		"", "2",
		"", "pd1092970776.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1089] = new Element(
		1089, "assets/images/nopicture.gif",
		77, 52,
		"007421170 000", "SPOKE JOINT 3,5X35 REAR WHEEL M",
		"", "",
		"6.19", "0",
		"1", 1,
		"", "2",
		"", "pd425579782.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1090] = new Element(
		1090, "assets/images/nopicture.gif",
		77, 52,
		"007421180 000", "SPOKE JOINT 3,5X34 REAR WHEEL M",
		"", "",
		"6.19", "0",
		"1", 1,
		"", "2",
		"", "pd1581521572.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1091] = new Element(
		1091, "assets/images/nopicture.gif",
		77, 52,
		"007421500 000", "RIM MONRAD EVO 2T/4T MY&rsquo;11",
		"", "",
		"275.76", "0",
		"1", 1,
		"", "2",
		"", "pd1764528498.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1092] = new Element(
		1092, "assets/images/nopicture.gif",
		77, 52,
		"007421600 000", "VALVE, EVO 2T/4T MY&rsquo;11",
		"", "",
		"2.37", "0",
		"1", 1,
		"", "2",
		"", "pd2003918064.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1093] = new Element(
		1093, "assets/images/nopicture.gif",
		77, 52,
		"007422000 058", "REAR WHEEL, EVO 2T 200",
		"", "",
		"683.16", "0",
		"1", 1,
		"", "2",
		"", "pd1269279933.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1094] = new Element(
		1094, "assets/images/nopicture.gif",
		77, 52,
		"007422008 058", "FRONT WHEEL WITH TYRE EVO 2T 20",
		"", "",
		"851.56", "0",
		"1", 1,
		"", "2",
		"", "pd479938337.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1095] = new Element(
		1095, "assets/images/nopicture.gif",
		77, 52,
		"007423000 058", "REAR WHEEL, EVO 2T 250/290 MY&rsquo;1",
		"", "",
		"714.68", "0",
		"1", 1,
		"", "2",
		"", "pd-476623714.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1096] = new Element(
		1096, "assets/images/nopicture.gif",
		77, 52,
		"007424000 058", "REAR WHEEL, EVO 2T 125 MY&rsquo;11",
		"", "",
		"710.92", "0",
		"1", 1,
		"", "2",
		"", "pd1518189564.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1097] = new Element(
		1097, "assets/images/nopicture.gif",
		77, 52,
		"007425000 058", "REAR WHEEL, EVO 2T 200 MY&rsquo;11",
		"", "",
		"713.99", "0",
		"1", 1,
		"", "2",
		"", "pd932278922.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1098] = new Element(
		1098, "assets/images/nopicture.gif",
		77, 52,
		"007430008 011", "COMPLETE RIGHT RADIATOR PANEL E",
		"", "",
		"30.56", "0",
		"1", 1,
		"", "2",
		"", "pd196772808.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1099] = new Element(
		1099, "assets/images/nopicture.gif",
		77, 52,
		"007430008 059", "RIGHT RADIATOR PANEL EVO",
		"", "",
		"29.65", "0",
		"1", 1,
		"", "2",
		"", "pd-508775117.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1100] = new Element(
		1100, "assets/images/nopicture.gif",
		77, 52,
		"007430008 097", "COMPLETE RIGHT RADIATOR PANEL E",
		"", "",
		"36.32", "0",
		"1", 1,
		"", "2",
		"", "pd-633730407.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1101] = new Element(
		1101, "assets/images/nopicture.gif",
		77, 52,
		"007430010 000", "GUIDING SLIT RUBBER",
		"", "",
		"10.61", "0",
		"1", 1,
		"", "2",
		"", "pd164509295.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1102] = new Element(
		1102, "assets/images/nopicture.gif",
		77, 52,
		"007430020 059", "LH TANK SIDE - MAT BLACK",
		"", "",
		"29.65", "0",
		"1", 1,
		"", "2",
		"", "pd-645865931.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1103] = new Element(
		1103, "assets/images/nopicture.gif",
		77, 52,
		"007430028 011", "COMPLETE LEFT RADIATOR PANEL EV",
		"", "",
		"30.3", "0",
		"1", 1,
		"", "2",
		"", "pd-646107338.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1104] = new Element(
		1104, "assets/images/nopicture.gif",
		77, 52,
		"007430028 059", "LEFT RADIATOR PANEL EVO",
		"", "",
		"26.1", "0",
		"1", 1,
		"", "2",
		"", "pd1704469355.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1105] = new Element(
		1105, "assets/images/nopicture.gif",
		77, 52,
		"007430028 097", "COMPLETE LEFT RADIATOR PANEL EV",
		"", "",
		"36.59", "0",
		"1", 1,
		"", "2",
		"", "pd1201472401.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1106] = new Element(
		1106, "assets/images/nopicture.gif",
		77, 52,
		"007430031 059", "SWITCH DEVICE CLIP",
		"", "",
		"0.99", "0",
		"1", 1,
		"", "2",
		"", "pd335984679.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1107] = new Element(
		1107, "assets/images/nopicture.gif",
		77, 52,
		"007430031 097", "SWITCH DEVICE CLIP",
		"", "",
		"1.68", "0",
		"1", 1,
		"", "2",
		"", "pd827659949.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1108] = new Element(
		1108, "assets/images/nopicture.gif",
		77, 52,
		"007430040 000", "RH TANK SIDE GRILL",
		"", "",
		"15.97", "0",
		"1", 1,
		"", "2",
		"", "pd-2110656349.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1109] = new Element(
		1109, "assets/images/nopicture.gif",
		77, 52,
		"007430040 059", "RH SIDE BLACK TANK GRILL",
		"", "",
		"21.44", "0",
		"1", 1,
		"", "2",
		"", "pd1441887113.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1110] = new Element(
		1110, "assets/images/nopicture.gif",
		77, 52,
		"007430050 000", "LH TANK SIDE GRILL",
		"", "",
		"15.97", "0",
		"1", 1,
		"", "2",
		"", "pd-1568044833.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1111] = new Element(
		1111, "assets/images/nopicture.gif",
		77, 52,
		"007430050 059", "LH SIDE BLACK TANK GRILL",
		"", "",
		"21.44", "0",
		"1", 1,
		"", "2",
		"", "pd-1596443099.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1112] = new Element(
		1112, "assets/images/nopicture.gif",
		77, 52,
		"007430061 059", "RH LOWER TANK SIDE - BLACK",
		"", "",
		"9.34", "0",
		"1", 1,
		"", "2",
		"", "pd-271516453.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1113] = new Element(
		1113, "assets/images/nopicture.gif",
		77, 52,
		"007430071 059", "LH LOWER TANK SIDE - BLACK",
		"", "",
		"9.34", "0",
		"1", 1,
		"", "2",
		"", "pd1424571009.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1114] = new Element(
		1114, "assets/images/nopicture.gif",
		77, 52,
		"007430101 097", "FRONT FENDER - RED/BLACK",
		"", "",
		"36.26", "0",
		"1", 1,
		"", "2",
		"", "pd2010876055.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1115] = new Element(
		1115, "assets/images/nopicture.gif",
		77, 52,
		"007430108 011", "COMPLETE FRONT FENDER - WHITE/B",
		"", "",
		"36.88", "0",
		"1", 1,
		"", "2",
		"", "pd-2053497699.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1116] = new Element(
		1116, "assets/images/nopicture.gif",
		77, 52,
		"007430108 097", "FRONT FENDER - RED/BLACK",
		"", "",
		"38.02", "0",
		"1", 1,
		"", "2",
		"", "pd-368564205.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1117] = new Element(
		1117, "assets/images/nopicture.gif",
		77, 52,
		"007430118 011", "COMPLETE FRONT FENDER - WHITE/B",
		"", "",
		"35.95", "0",
		"1", 1,
		"", "2",
		"", "pd1971699796.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1118] = new Element(
		1118, "assets/images/nopicture.gif",
		77, 52,
		"007430200 097", "REAR FENDER - RED",
		"", "",
		"84.02", "0",
		"1", 1,
		"", "2",
		"", "pd970078329.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1119] = new Element(
		1119, "assets/images/nopicture.gif",
		77, 52,
		"007430208 011", "COMPLETE REAR FENDER-EVO2T 125&rsquo;",
		"", "",
		"87.23", "0",
		"1", 1,
		"", "2",
		"", "pd1702729551.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1120] = new Element(
		1120, "assets/images/nopicture.gif",
		77, 52,
		"007430208 097", "COMPLETE REAR FENDER 125CC RED",
		"", "",
		"100.93", "0",
		"1", 1,
		"", "2",
		"", "pd1418111509.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1121] = new Element(
		1121, "assets/images/nopicture.gif",
		77, 52,
		"007430220 059", "REAR FENDER FRONT RH NET",
		"", "",
		"15", "0",
		"1", 1,
		"", "2",
		"", "pd-2094640565.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1122] = new Element(
		1122, "assets/images/nopicture.gif",
		77, 52,
		"007430230 059", "REAR FENDER FRONT LH NET",
		"", "",
		"15", "0",
		"1", 1,
		"", "2",
		"", "pd521555313.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1123] = new Element(
		1123, "assets/images/nopicture.gif",
		77, 52,
		"007430308 011", "REAR MUDGUARD EVO MY&rsquo;10-WHITE-+",
		"", "",
		"83.03", "0",
		"1", 1,
		"", "2",
		"", "pd-680749817.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1124] = new Element(
		1124, "assets/images/nopicture.gif",
		77, 52,
		"007430308 097", "EVO COMPLETE REAR FENDER RED",
		"", "",
		"94", "0",
		"1", 1,
		"", "2",
		"", "pd291880589.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1125] = new Element(
		1125, "assets/images/nopicture.gif",
		77, 52,
		"007430318 011", "COMPLETE REAR FENDER WITH NETS",
		"", "",
		"67.28", "0",
		"1", 1,
		"", "2",
		"", "pd-308842846.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1126] = new Element(
		1126, "assets/images/nopicture.gif",
		77, 52,
		"007430408 059", "FRONT MASK EVO -BLACK-",
		"", "",
		"35.62", "0",
		"1", 1,
		"", "2",
		"", "pd-407479421.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1127] = new Element(
		1127, "assets/images/nopicture.gif",
		77, 52,
		"007430458 059", "FRONT MASK",
		"", "",
		"35.23", "0",
		"1", 1,
		"", "2",
		"", "pd867916137.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1128] = new Element(
		1128, "assets/images/nopicture.gif",
		77, 52,
		"007430501 059", "LOWER COIL SUPPORT - BLACK",
		"", "",
		"3.05", "0",
		"1", 1,
		"", "2",
		"", "pd-2003419744.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1129] = new Element(
		1129, "assets/images/nopicture.gif",
		77, 52,
		"007430511 059", "UPPER COIL SUPPORT - BLACK",
		"", "",
		"3.72", "0",
		"1", 1,
		"", "2",
		"", "pd287562958.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1130] = new Element(
		1130, "assets/images/nopicture.gif",
		77, 52,
		"007430601 059", "FRONT DISK COVER - BLACK",
		"", "",
		"6.01", "0",
		"1", 1,
		"", "2",
		"", "pd1335976383.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1131] = new Element(
		1131, "assets/images/nopicture.gif",
		77, 52,
		"007430810 000", "FRONT FENDER EVO &rsquo;09 DECAL",
		"", "",
		"4.84", "0",
		"1", 1,
		"", "2",
		"", "pd911948293.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1132] = new Element(
		1132, "assets/images/nopicture.gif",
		77, 52,
		"007430820 000", "EVO &rsquo;09 REAR FENDER DECAL - FRO",
		"", "",
		"15.17", "0",
		"1", 1,
		"", "2",
		"", "pd-1845550149.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1133] = new Element(
		1133, "assets/images/nopicture.gif",
		77, 52,
		"007430830 000", "EVO 2T &rsquo;09 HEADLIGHT HOLDER DEC",
		"", "",
		"1.9", "0",
		"1", 1,
		"", "2",
		"", "pd451099745.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1134] = new Element(
		1134, "assets/images/nopicture.gif",
		77, 52,
		"007430840 000", "EVO &rsquo;09 SWINGING ARM DECAL (COU",
		"", "",
		"1.52", "0",
		"1", 1,
		"", "2",
		"", "pd-779035273.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1135] = new Element(
		1135, "assets/images/nopicture.gif",
		77, 52,
		"007430850 000", "EVO &rsquo;09 LH SIDE DECAL",
		"", "",
		"1.9", "0",
		"1", 1,
		"", "2",
		"", "pd191298685.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1136] = new Element(
		1136, "assets/images/nopicture.gif",
		77, 52,
		"007430860 000", "EVO &rsquo;09 RH SIDE DECAL",
		"", "",
		"1.9", "0",
		"1", 1,
		"", "2",
		"", "pd1837337331.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1137] = new Element(
		1137, "assets/images/nopicture.gif",
		77, 52,
		"007430870 000", "EVO MY&rsquo;09 E MY&rsquo;10 CDI DECAL",
		"", "",
		"0.76", "0",
		"1", 1,
		"", "2",
		"", "pd-1152657831.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1138] = new Element(
		1138, "assets/images/nopicture.gif",
		77, 52,
		"007430880 000", "EVO 2T 125CC &rsquo;09 REAR FENDER DE",
		"", "",
		"7.39", "0",
		"1", 1,
		"", "2",
		"", "pd1034676271.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1139] = new Element(
		1139, "assets/images/nopicture.gif",
		77, 52,
		"007431008 059", "RIGHT RADIATOR PANEL EVO",
		"", "",
		"26.09", "0",
		"1", 1,
		"", "2",
		"", "pd-1298471369.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1140] = new Element(
		1140, "assets/images/nopicture.gif",
		77, 52,
		"007431208 011", "COMPLETE REAR FENDER-EVO2T 200&rsquo;",
		"", "",
		"87.23", "0",
		"1", 1,
		"", "2",
		"", "pd1843717621.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1141] = new Element(
		1141, "assets/images/nopicture.gif",
		77, 52,
		"007431208 097", "COMPLETE REAR MUDGUARD 200CC RE",
		"", "",
		"100.93", "0",
		"1", 1,
		"", "2",
		"", "pd-360550101.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1142] = new Element(
		1142, "assets/images/nopicture.gif",
		77, 52,
		"007431308 011", "REAR FENDER EVO MY&rsquo;11-WHITE-+DE",
		"", "",
		"82.94", "0",
		"1", 1,
		"", "2",
		"", "pd1493665708.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1143] = new Element(
		1143, "assets/images/nopicture.gif",
		77, 52,
		"007431880 000", "EVO 2T 200CC &rsquo;09 REAR FENDER DE",
		"", "",
		"7.39", "0",
		"1", 1,
		"", "2",
		"", "pd2127497041.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1144] = new Element(
		1144, "assets/images/nopicture.gif",
		77, 52,
		"007432208 011", "COMPLETE REAR FENDER-EVO2T 250&rsquo;",
		"", "",
		"87.23", "0",
		"1", 1,
		"", "2",
		"", "pd-1663082009.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1145] = new Element(
		1145, "assets/images/nopicture.gif",
		77, 52,
		"007432208 097", "COMPLETE REAR FENDER EVO 250CC",
		"", "",
		"100.93", "0",
		"1", 1,
		"", "2",
		"", "pd135059053.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1146] = new Element(
		1146, "assets/images/nopicture.gif",
		77, 52,
		"007432458 011", "COMPLETE FRONT MASK, EVO MY&rsquo;11",
		"", "",
		"29.71", "0",
		"1", 1,
		"", "2",
		"", "pd1851319738.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1147] = new Element(
		1147, "assets/images/nopicture.gif",
		77, 52,
		"007432458 059", "COMPLETE FRONT MASK, EVO MY&rsquo;10",
		"", "",
		"30.47", "0",
		"1", 1,
		"", "2",
		"", "pd24557155.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1148] = new Element(
		1148, "assets/images/nopicture.gif",
		77, 52,
		"007432880 000", "EVO 2T 250 &rsquo;09 REAR FENDER DECA",
		"", "",
		"7.39", "0",
		"1", 1,
		"", "2",
		"", "pd31633225.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1149] = new Element(
		1149, "assets/images/nopicture.gif",
		77, 52,
		"007433208 011", "COMPLETE REAR FENDER-EVO2T 290&rsquo;",
		"", "",
		"87.23", "0",
		"1", 1,
		"", "2",
		"", "pd1544825503.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1150] = new Element(
		1150, "assets/images/nopicture.gif",
		77, 52,
		"007433208 097", "COMPLETE REAR FENDER EVO 290CC",
		"", "",
		"100.93", "0",
		"1", 1,
		"", "2",
		"", "pd-126702107.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1151] = new Element(
		1151, "assets/images/nopicture.gif",
		77, 52,
		"007433880 000", "EVO 2T 290CC &rsquo;09 REAR FENDER DE",
		"", "",
		"7.39", "0",
		"1", 1,
		"", "2",
		"", "pd647445147.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1152] = new Element(
		1152, "assets/images/nopicture.gif",
		77, 52,
		"007433910 000", "FRONT FENDER EVO &rsquo;10 DECAL",
		"", "",
		"6.16", "0",
		"1", 1,
		"", "2",
		"", "pd857255489.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1153] = new Element(
		1153, "assets/images/nopicture.gif",
		77, 52,
		"007433920 000", "EVO &rsquo;10 REAR FENDER DECAL",
		"", "",
		"21.74", "0",
		"1", 1,
		"", "2",
		"", "pd2007966295.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1154] = new Element(
		1154, "assets/images/nopicture.gif",
		77, 52,
		"007433930 000", "EVO &rsquo;10 HEADLIGHT HOLDER DECAL",
		"", "",
		"2.86", "0",
		"1", 1,
		"", "2",
		"", "pd-377074595.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1155] = new Element(
		1155, "assets/images/nopicture.gif",
		77, 52,
		"007433940 000", "EVO &rsquo;10 SWINGING ARM DECAL (COU",
		"", "",
		"7.31", "0",
		"1", 1,
		"", "2",
		"", "pd760667603.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1156] = new Element(
		1156, "assets/images/nopicture.gif",
		77, 52,
		"007433950 000", "EVO &rsquo;10 LH SIDE DECAL",
		"", "",
		"3.52", "0",
		"1", 1,
		"", "2",
		"", "pd-492903367.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1157] = new Element(
		1157, "assets/images/nopicture.gif",
		77, 52,
		"007433960 000", "EVO &rsquo;10 RH SIDE DECAL",
		"", "",
		"3.52", "0",
		"1", 1,
		"", "2",
		"", "pd-1760483057.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1158] = new Element(
		1158, "assets/images/nopicture.gif",
		77, 52,
		"007433970 000", "EVO &rsquo;10 DECAL",
		"", "",
		"2.28", "0",
		"1", 1,
		"", "2",
		"", "pd-1726770731.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1159] = new Element(
		1159, "assets/images/nopicture.gif",
		77, 52,
		"007433982 000", "EVO 2T 125CC &rsquo;10 DECAL",
		"", "",
		"6.21", "0",
		"1", 1,
		"", "2",
		"", "pd467959819.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1160] = new Element(
		1160, "assets/images/nopicture.gif",
		77, 52,
		"007433983 000", "EVO 2T 200CC &rsquo;10 DECAL",
		"", "",
		"6.21", "0",
		"1", 1,
		"", "2",
		"", "pd-1044434639.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1161] = new Element(
		1161, "assets/images/nopicture.gif",
		77, 52,
		"007433984 000", "EVO 2T 250CC &rsquo;10 DECAL",
		"", "",
		"6.21", "0",
		"1", 1,
		"", "2",
		"", "pd404168391.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1162] = new Element(
		1162, "assets/images/nopicture.gif",
		77, 52,
		"007433985 000", "EVO 2T 290CC &rsquo;10 DECAL",
		"", "",
		"6.21", "0",
		"1", 1,
		"", "2",
		"", "pd-809345459.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1163] = new Element(
		1163, "assets/images/nopicture.gif",
		77, 52,
		"007433986 000", "EVO 4T 250CC &rsquo;10 DECAL",
		"", "",
		"6.21", "0",
		"1", 1,
		"", "2",
		"", "pd-2077889928.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1164] = new Element(
		1164, "assets/images/nopicture.gif",
		77, 52,
		"007433987 000", "EVO 4T 300CC &rsquo;10 DECAL",
		"", "",
		"6.21", "0",
		"1", 1,
		"", "2",
		"", "pd1191949670.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1165] = new Element(
		1165, "assets/images/nopicture.gif",
		77, 52,
		"007434208 011", "COMPLETE REAR FENDER-EVO2T 125&rsquo;",
		"", "",
		"85.28", "0",
		"1", 1,
		"", "2",
		"", "pd-352685564.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1166] = new Element(
		1166, "assets/images/nopicture.gif",
		77, 52,
		"007434910 000", "FRONT FENDER EVO &rsquo;11 DECAL",
		"", "",
		"6.16", "0",
		"1", 1,
		"", "2",
		"", "pd-501467182.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1167] = new Element(
		1167, "assets/images/nopicture.gif",
		77, 52,
		"007434920 000", "EVO &rsquo;11 REAR FENDER DECAL",
		"", "",
		"21.74", "0",
		"1", 1,
		"", "2",
		"", "pd-1919489456.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1168] = new Element(
		1168, "assets/images/nopicture.gif",
		77, 52,
		"007434930 000", "EVO &rsquo;11 HEADLIGHT HOLDER DECAL",
		"", "",
		"2.77", "0",
		"1", 1,
		"", "2",
		"", "pd-2019485442.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1169] = new Element(
		1169, "assets/images/nopicture.gif",
		77, 52,
		"007434940 000", "EVO &rsquo;11 SWINGING ARM DECAL (COU",
		"", "",
		"7.09", "0",
		"1", 1,
		"", "2",
		"", "pd320986972.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1170] = new Element(
		1170, "assets/images/nopicture.gif",
		77, 52,
		"007434950 000", "EVO &rsquo;11 LH SIDE DECAL",
		"", "",
		"3.42", "0",
		"1", 1,
		"", "2",
		"", "pd-137116438.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1171] = new Element(
		1171, "assets/images/nopicture.gif",
		77, 52,
		"007434960 000", "EVO &rsquo;11 RH SIDE DECAL",
		"", "",
		"3.42", "0",
		"1", 1,
		"", "2",
		"", "pd1252171048.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1172] = new Element(
		1172, "assets/images/nopicture.gif",
		77, 52,
		"007434970 000", "MAPPING STICKER",
		"", "",
		"2.21", "0",
		"1", 1,
		"", "2",
		"", "pd-2000918634.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1173] = new Element(
		1173, "assets/images/nopicture.gif",
		77, 52,
		"007434982 000", "EVO 2T 125CC &rsquo;11 DECAL",
		"", "",
		"6.21", "0",
		"1", 1,
		"", "2",
		"", "pd-1332924492.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1174] = new Element(
		1174, "assets/images/nopicture.gif",
		77, 52,
		"007434983 000", "EVO 2T 200CC &rsquo;11 DECAL",
		"", "",
		"6.21", "0",
		"1", 1,
		"", "2",
		"", "pd-694293246.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1175] = new Element(
		1175, "assets/images/nopicture.gif",
		77, 52,
		"007434984 000", "EVO 2T 250CC &rsquo;11 DECAL",
		"", "",
		"6.21", "0",
		"1", 1,
		"", "2",
		"", "pd-988912896.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1176] = new Element(
		1176, "assets/images/nopicture.gif",
		77, 52,
		"007434985 000", "EVO 2T 290CC &rsquo;11 DECAL",
		"", "",
		"6.21", "0",
		"1", 1,
		"", "2",
		"", "pd-1289617106.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1177] = new Element(
		1177, "assets/images/nopicture.gif",
		77, 52,
		"007434986 000", "EVO 4T 250CC &rsquo;11 DECAL",
		"", "",
		"10.71", "0",
		"1", 1,
		"", "2",
		"", "pd-95734979.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1178] = new Element(
		1178, "assets/images/nopicture.gif",
		77, 52,
		"007434987 000", "EVO 4T 300CC &rsquo;11 DECAL",
		"", "",
		"10.71", "0",
		"1", 1,
		"", "2",
		"", "pd1187356595.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1179] = new Element(
		1179, "assets/images/nopicture.gif",
		77, 52,
		"007434998 000", "EVO &rsquo;11 FRAME STICKER",
		"", "",
		"4.31", "0",
		"1", 1,
		"", "2",
		"", "pd-1088961780.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1180] = new Element(
		1180, "assets/images/nopicture.gif",
		77, 52,
		"007435208 011", "COMPLETE REAR FENDER-EVO2T 200&rsquo;",
		"", "",
		"85.28", "0",
		"1", 1,
		"", "2",
		"", "pd-1085992934.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1181] = new Element(
		1181, "assets/images/nopicture.gif",
		77, 52,
		"007435901 000", "EVO 300 FACTORY 2T DECALS, REAR",
		"", "",
		"33.18", "0",
		"1", 1,
		"", "2",
		"", "pd-1210648295.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1182] = new Element(
		1182, "assets/images/nopicture.gif",
		77, 52,
		"007435902 000", "EVO 300 FACTORY 2T DECALS, FRON",
		"", "",
		"13.54", "0",
		"1", 1,
		"", "2",
		"", "pd1998506223.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1183] = new Element(
		1183, "assets/images/nopicture.gif",
		77, 52,
		"007435903 000", ".",
		"", "",
		"15.16", "0",
		"1", 1,
		"", "2",
		"", "pd-1413630795.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1184] = new Element(
		1184, "assets/images/nopicture.gif",
		77, 52,
		"007435904 000", ".",
		"", "",
		"16.34", "0",
		"1", 1,
		"", "2",
		"", "pd1663753707.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1185] = new Element(
		1185, "assets/images/nopicture.gif",
		77, 52,
		"007435905 000", ".",
		"", "",
		"15.32", "0",
		"1", 1,
		"", "2",
		"", "pd797458961.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1186] = new Element(
		1186, "assets/images/nopicture.gif",
		77, 52,
		"007436208 011", "COMPLETE REAR FENDER-EVO2T 250&rsquo;",
		"", "",
		"85.28", "0",
		"1", 1,
		"", "2",
		"", "pd-399795240.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1187] = new Element(
		1187, "assets/images/nopicture.gif",
		77, 52,
		"007437208 011", "COMPLETE REAR FENDER-EVO2T 290&rsquo;",
		"", "",
		"85.28", "0",
		"1", 1,
		"", "2",
		"", "pd-603830842.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1188] = new Element(
		1188, "assets/images/nopicture.gif",
		77, 52,
		"007450128 000", "CALIBER KIT",
		"", "",
		"5.18", "0",
		"1", 1,
		"", "2",
		"", "pd-290782909.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1189] = new Element(
		1189, "assets/images/nopicture.gif",
		77, 52,
		"007450208 000", "EVO 2T REAR PLIER KIT W/DISK CO",
		"", "",
		"115.73", "0",
		"1", 1,
		"", "2",
		"", "pd-765496023.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1190] = new Element(
		1190, "assets/images/nopicture.gif",
		77, 52,
		"007450218 000", "GASKET KIT EVO 2T 125CC&rsquo;09/10",
		"", "",
		"59.13", "0",
		"1", 1,
		"", "2",
		"", "pd-1394017948.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1191] = new Element(
		1191, "assets/images/nopicture.gif",
		77, 52,
		"007450228 000", "GASKET KIT EVO 2T 200CC&rsquo;09/10",
		"", "",
		"59.13", "0",
		"1", 1,
		"", "2",
		"", "pd-1819403609.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1192] = new Element(
		1192, "assets/images/nopicture.gif",
		77, 52,
		"007450238 000", "GASKET KIT EVO 2T 250CC&rsquo;09/10",
		"", "",
		"59.13", "0",
		"1", 1,
		"", "2",
		"", "pd1572834866.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1193] = new Element(
		1193, "assets/images/nopicture.gif",
		77, 52,
		"007450248 000", "GASKET KIT EVO 2T 290CC&rsquo;09/10",
		"", "",
		"45.06", "0",
		"1", 1,
		"", "2",
		"", "pd177857407.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1194] = new Element(
		1194, "assets/images/nopicture.gif",
		77, 52,
		"007450518 000", ".",
		"", "",
		"356.21", "0",
		"1", 1,
		"", "2",
		"", "pd1910848813.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1195] = new Element(
		1195, "assets/images/nopicture.gif",
		77, 52,
		"007450528 000", ".",
		"", "",
		"387.31", "0",
		"1", 1,
		"", "2",
		"", "pd159939363.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1196] = new Element(
		1196, "assets/images/nopicture.gif",
		77, 52,
		"008100110 000", "CDI UNIT, EVO 4T 250CC",
		"", "",
		"208.17", "0",
		"1", 1,
		"", "2",
		"", "pd-929656379.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1197] = new Element(
		1197, "assets/images/nopicture.gif",
		77, 52,
		"008101110 000", "CDI UNIT, EVO 4T 300CC",
		"", "",
		"202.63", "0",
		"1", 1,
		"", "2",
		"", "pd1272004987.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1198] = new Element(
		1198, "assets/images/nopicture.gif",
		77, 52,
		"008310008 004", "COMPLETE FRAME EVO 2T",
		"", "",
		"1797.44", "0",
		"1", 1,
		"", "2",
		"", "pd1182896161.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1199] = new Element(
		1199, "assets/images/nopicture.gif",
		77, 52,
		"008310008 059", "COMPLETE FRAME EVO 4T MY&rsquo;11",
		"", "",
		"1800.71", "0",
		"1", 1,
		"", "2",
		"", "pd-2105212407.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1200] = new Element(
		1200, "assets/images/nopicture.gif",
		77, 52,
		"008320038 004", "LEFT FRAME BRACKET MACHINED",
		"", "",
		"65.56", "0",
		"1", 1,
		"", "2",
		"", "pd468604727.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1201] = new Element(
		1201, "assets/images/nopicture.gif",
		77, 52,
		"008320048 004", "RIGHT FRAME BRACKET MACHINED",
		"", "",
		"71.79", "0",
		"1", 1,
		"", "2",
		"", "pd141560893.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1202] = new Element(
		1202, "assets/images/nopicture.gif",
		77, 52,
		"008320050 000", "EVO 4T LH/RH HEAD BRACKET",
		"", "",
		"10.49", "0",
		"1", 1,
		"", "2",
		"", "pd649732275.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1203] = new Element(
		1203, "assets/images/nopicture.gif",
		77, 52,
		"008320100 005", "EVO 4T REGULATOR ZINC PLATED PL",
		"", "",
		"8.47", "0",
		"1", 1,
		"", "2",
		"", "pd506575711.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1204] = new Element(
		1204, "assets/images/nopicture.gif",
		77, 52,
		"008320200 000", "EVO 4T CDI SUPPORT",
		"", "",
		"13.45", "0",
		"1", 1,
		"", "2",
		"", "pd-809278951.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1205] = new Element(
		1205, "assets/images/nopicture.gif",
		77, 52,
		"008320410 000", "ENGINE RUBBER",
		"", "",
		"43.27", "0",
		"1", 1,
		"", "2",
		"", "pd1919244783.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1206] = new Element(
		1206, "assets/images/nopicture.gif",
		77, 52,
		"008320518 000", "EVO 4T REAR BRAKE OIL TANK W/PL",
		"", "",
		"17.96", "0",
		"1", 1,
		"", "2",
		"", "pd-1279939419.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1207] = new Element(
		1207, "assets/images/nopicture.gif",
		77, 52,
		"008321408 000", "BUMPER EVO 4T",
		"", "",
		"197.44", "0",
		"1", 1,
		"", "2",
		"", "pd-1517638219.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1208] = new Element(
		1208, "assets/images/nopicture.gif",
		77, 52,
		"008330200 000", "EVO 4T SWINGING ARM PIN",
		"", "",
		"29.71", "0",
		"1", 1,
		"", "2",
		"", "pd1401192171.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1209] = new Element(
		1209, "assets/images/nopicture.gif",
		77, 52,
		"008330501 059", "EVO 4T BLACK CHAIN COVER",
		"", "",
		"6.96", "0",
		"1", 1,
		"", "2",
		"", "pd1591659281.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1210] = new Element(
		1210, "assets/images/nopicture.gif",
		77, 52,
		"008330530 000", "EVO 4T CHAIN TENSIONER",
		"", "",
		"42.39", "0",
		"1", 1,
		"", "2",
		"", "pd2026621863.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1211] = new Element(
		1211, "assets/images/nopicture.gif",
		77, 52,
		"008330600 000", "EVO 4T STAND",
		"", "",
		"40.46", "0",
		"1", 1,
		"", "2",
		"", "pd-16886227.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1212] = new Element(
		1212, "assets/images/nopicture.gif",
		77, 52,
		"008330610 000", "EVO 4T STAND SUPPORT",
		"", "",
		"37.69", "0",
		"1", 1,
		"", "2",
		"", "pd176897059.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1213] = new Element(
		1213, "assets/images/nopicture.gif",
		77, 52,
		"008330610 005", "EVO 4T STAND SUPPORT",
		"", "",
		"59.63", "0",
		"1", 1,
		"", "2",
		"", "pd777496496.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1214] = new Element(
		1214, "assets/images/nopicture.gif",
		77, 52,
		"008330618 000", "STAND SUPPORT",
		"", "",
		"51.75", "0",
		"1", 1,
		"", "2",
		"", "pd-1367763618.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1215] = new Element(
		1215, "assets/images/nopicture.gif",
		77, 52,
		"008331180 000", "CHAIN PART EVO 4T 09",
		"", "",
		"9.97", "0",
		"1", 1,
		"", "2",
		"", "pd1395239689.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1216] = new Element(
		1216, "assets/images/nopicture.gif",
		77, 52,
		"008331400 000", "EVO 4T SHOCK ABSORBER",
		"", "",
		"358.64", "0",
		"1", 1,
		"", "2",
		"", "pd-1712681889.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1217] = new Element(
		1217, "assets/images/nopicture.gif",
		77, 52,
		"008331530 000", "EVO 4T CHAIN TENSIONER",
		"", "",
		"24.54", "0",
		"1", 1,
		"", "2",
		"", "pd-537644356.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1218] = new Element(
		1218, "assets/images/nopicture.gif",
		77, 52,
		"008340008 000", "FRONT FORK, EVO 4T &rsquo;09 250/300C",
		"", "",
		"1532.97", "0",
		"1", 1,
		"", "2",
		"", "pd-1384818853.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1219] = new Element(
		1219, "assets/images/nopicture.gif",
		77, 52,
		"008340020 000", "EVO 4T FORK SPACER",
		"", "",
		"17.14", "0",
		"1", 1,
		"", "2",
		"", "pd767498497.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1220] = new Element(
		1220, "assets/images/nopicture.gif",
		77, 52,
		"008340308 000", "EVO 4T LX FORK LEG WHEEL SIDE",
		"", "",
		"573.82", "0",
		"1", 1,
		"", "2",
		"", "pd-925988073.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1221] = new Element(
		1221, "assets/images/nopicture.gif",
		77, 52,
		"008340600 000", "EVO 4T FRONT FORK LH LEG SPRING",
		"", "",
		"24.51", "0",
		"1", 1,
		"", "2",
		"", "pd-465640027.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1222] = new Element(
		1222, "assets/images/nopicture.gif",
		77, 52,
		"008350140 000", "THROTTLE CABLE",
		"", "",
		"13.04", "0",
		"1", 1,
		"", "2",
		"", "pd1541748827.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1223] = new Element(
		1223, "assets/images/nopicture.gif",
		77, 52,
		"008350260 000", "EVO 4T CLUTCH TUBE",
		"", "",
		"59.31", "0",
		"1", 1,
		"", "2",
		"", "pd437641729.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1224] = new Element(
		1224, "assets/images/nopicture.gif",
		77, 52,
		"008360708 000", "EVO REAR BRAKE CALIP",
		"", "",
		"119.33", "0",
		"1", 1,
		"", "2",
		"", "pd-335119337.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1225] = new Element(
		1225, "assets/images/nopicture.gif",
		77, 52,
		"008360730 000", "EVO 4T REAR BRAKE TUBE",
		"", "",
		"81.75", "0",
		"1", 1,
		"", "2",
		"", "pd748436509.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1226] = new Element(
		1226, "assets/images/nopicture.gif",
		77, 52,
		"008361708 000", "EVO REAR BRAKE CALIP",
		"", "",
		"167.87", "0",
		"1", 1,
		"", "2",
		"", "pd1342104349.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1227] = new Element(
		1227, "assets/images/nopicture.gif",
		77, 52,
		"008370018 000", "EVO 4T COLLECTOR",
		"", "",
		"209.58", "0",
		"1", 1,
		"", "2",
		"", "pd-1830464621.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1228] = new Element(
		1228, "assets/images/nopicture.gif",
		77, 52,
		"008370108 000", "EVO 4T COMPLETE SILENCER",
		"", "",
		"417.72", "0",
		"1", 1,
		"", "2",
		"", "pd1051807737.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1229] = new Element(
		1229, "assets/images/nopicture.gif",
		77, 52,
		"008370500 000", "EVO 4T SILENCER PROTECTION",
		"", "",
		"118.4", "0",
		"1", 1,
		"", "2",
		"", "pd-866092337.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1230] = new Element(
		1230, "assets/images/nopicture.gif",
		77, 52,
		"008370510 000", "evo 4t silencer protection",
		"", "",
		"28.99", "0",
		"1", 1,
		"", "2",
		"", "pd-1094567531.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1231] = new Element(
		1231, "assets/images/nopicture.gif",
		77, 52,
		"008371018 000", "collector EVO 4t - racing",
		"", "",
		"378.8", "0",
		"1", 1,
		"", "2",
		"", "pd-1986368053.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1232] = new Element(
		1232, "assets/images/nopicture.gif",
		77, 52,
		"008371020 000", "EVO 4T EXHAUST MANIFOLD PROTECT",
		"", "",
		"61.78", "0",
		"1", 1,
		"", "2",
		"", "pd-383396623.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1233] = new Element(
		1233, "assets/images/nopicture.gif",
		77, 52,
		"008371030 000", "EVO 4T COLLECTOR PROTECTION",
		"", "",
		"10.21", "0",
		"1", 1,
		"", "2",
		"", "pd1790273671.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1234] = new Element(
		1234, "assets/images/nopicture.gif",
		77, 52,
		"008372108 000", "EVO 4T COMPLETE SILENCER",
		"", "",
		"405.55", "0",
		"1", 1,
		"", "2",
		"", "pd-894449846.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1235] = new Element(
		1235, "assets/images/nopicture.gif",
		77, 52,
		"008380008 000", "FILTER BOX, EVO 4T",
		"", "",
		"115.89", "0",
		"1", 1,
		"", "2",
		"", "pd137936397.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1236] = new Element(
		1236, "assets/images/nopicture.gif",
		77, 52,
		"008380058 000", "EVO 4 T FLAME TRAP NET- COMPLET",
		"", "",
		"14.16", "0",
		"1", 1,
		"", "2",
		"", "pd-330340605.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1237] = new Element(
		1237, "assets/images/nopicture.gif",
		77, 52,
		"008380060 000", "RUBBER SLEEVE, VTM FS",
		"", "",
		"21.1", "0",
		"1", 1,
		"", "2",
		"", "pd-835104535.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1238] = new Element(
		1238, "assets/images/nopicture.gif",
		77, 52,
		"008380070 000", "EVO 4T FILTER BOX PROTECTION",
		"", "",
		"10.64", "0",
		"1", 1,
		"", "2",
		"", "pd2122049160.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1239] = new Element(
		1239, "assets/images/nopicture.gif",
		77, 52,
		"008380141 059", "FILTER HOLDER",
		"", "",
		"5.63", "0",
		"1", 1,
		"", "2",
		"", "pd1153312063.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1240] = new Element(
		1240, "assets/images/nopicture.gif",
		77, 52,
		"008380200 000", "EVO 4T FILTER BOX BLOW-BY HOSE",
		"", "",
		"2.77", "0",
		"1", 1,
		"", "2",
		"", "pd-305900909.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1241] = new Element(
		1241, "assets/images/nopicture.gif",
		77, 52,
		"008390100 000", "THERMO SWITCH 60-70ø C",
		"", "",
		"30.59", "0",
		"1", 1,
		"", "2",
		"", "pd-454841979.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1242] = new Element(
		1242, "assets/images/nopicture.gif",
		77, 52,
		"008400010 000", "GASOLINE ELECTRIC PETCOCK",
		"", "",
		"88.39", "0",
		"1", 1,
		"", "2",
		"", "pd1829445435.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1243] = new Element(
		1243, "assets/images/nopicture.gif",
		77, 52,
		"008400100 000", "EVO 4T &rsquo;09 CENTRAL SYSTEM",
		"", "",
		"52.18", "0",
		"1", 1,
		"", "2",
		"", "pd-988786698.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1244] = new Element(
		1244, "assets/images/nopicture.gif",
		77, 52,
		"008420000 058", "REAR WHEEL, EVO 4T 250/300",
		"", "",
		"853.43", "0",
		"1", 1,
		"", "2",
		"", "pd-1899125791.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1245] = new Element(
		1245, "assets/images/nopicture.gif",
		77, 52,
		"008420008 058", "REAR WHEEL, EVO 4T 250/300",
		"", "",
		"851.56", "0",
		"1", 1,
		"", "2",
		"", "pd1002727161.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1246] = new Element(
		1246, "assets/images/nopicture.gif",
		77, 52,
		"008421000 058", "REAR WHEEL, EVO 4T 250/300 MY&rsquo;1",
		"", "",
		"903.44", "0",
		"1", 1,
		"", "2",
		"", "pd1803079444.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1247] = new Element(
		1247, "assets/images/nopicture.gif",
		77, 52,
		"008430061 059", "EVO4T RH TANK SIDE",
		"", "",
		"11.28", "0",
		"1", 1,
		"", "2",
		"", "pd-1850765065.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1248] = new Element(
		1248, "assets/images/nopicture.gif",
		77, 52,
		"008430071 059", "EVO4T LH TANK SIDE",
		"", "",
		"11.28", "0",
		"1", 1,
		"", "2",
		"", "pd-159196163.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1249] = new Element(
		1249, "assets/images/nopicture.gif",
		77, 52,
		"008430208 011", "COMPLETE REAR FENDER 250CC EVO4",
		"", "",
		"87.23", "0",
		"1", 1,
		"", "2",
		"", "pd-418351501.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1250] = new Element(
		1250, "assets/images/nopicture.gif",
		77, 52,
		"008430208 097", "COMPLETE REAR FENDER 250CC 4T R",
		"", "",
		"100.93", "0",
		"1", 1,
		"", "2",
		"", "pd-2023707175.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1251] = new Element(
		1251, "assets/images/nopicture.gif",
		77, 52,
		"008430308 097", "EVO 4T COMPLETE REAR FENDER RED",
		"", "",
		"94", "0",
		"1", 1,
		"", "2",
		"", "pd-1648718929.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1252] = new Element(
		1252, "assets/images/nopicture.gif",
		77, 52,
		"008430810 000", "EVO 4T &rsquo;09 FRONT FENDER DECAL",
		"", "",
		"1.89", "0",
		"1", 1,
		"", "2",
		"", "pd1815229813.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1253] = new Element(
		1253, "assets/images/nopicture.gif",
		77, 52,
		"008430820 000", "EVO 4T &rsquo;09 REAR FENDER DECAL-FR",
		"", "",
		"15.17", "0",
		"1", 1,
		"", "2",
		"", "pd1918782635.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1254] = new Element(
		1254, "assets/images/nopicture.gif",
		77, 52,
		"008430840 000", "EVO 4T &rsquo;09 SWINGING ARM DECAL",
		"", "",
		"1.51", "0",
		"1", 1,
		"", "2",
		"", "pd260853457.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1255] = new Element(
		1255, "assets/images/nopicture.gif",
		77, 52,
		"008430870 000", "EVO 4T &rsquo;09 DECAL",
		"", "",
		"0.76", "0",
		"1", 1,
		"", "2",
		"", "pd361493863.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1256] = new Element(
		1256, "assets/images/nopicture.gif",
		77, 52,
		"008430880 000", "EVO 4T &rsquo;09 REAR FENDER DECAL",
		"", "",
		"7.17", "0",
		"1", 1,
		"", "2",
		"", "pd971609581.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1257] = new Element(
		1257, "assets/images/nopicture.gif",
		77, 52,
		"008431208 011", "COMPLETE REAR FENDER 300CC EVO4",
		"", "",
		"87.23", "0",
		"1", 1,
		"", "2",
		"", "pd1731166691.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1258] = new Element(
		1258, "assets/images/nopicture.gif",
		77, 52,
		"008431208 097", "COMPLETE REAR FENDER 300CC 4T R",
		"", "",
		"100.93", "0",
		"1", 1,
		"", "2",
		"", "pd696673993.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1259] = new Element(
		1259, "assets/images/nopicture.gif",
		77, 52,
		"008431880 000", "EVO 4T 300CC &rsquo;09 REAR FENDER DE",
		"", "",
		"7.39", "0",
		"1", 1,
		"", "2",
		"", "pd1103932959.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1260] = new Element(
		1260, "assets/images/nopicture.gif",
		77, 52,
		"008450118 000", ".",
		"", "",
		"170.68", "0",
		"1", 1,
		"", "2",
		"", "pd2082826703.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1261] = new Element(
		1261, "assets/images/nopicture.gif",
		77, 52,
		"011040000 000", "PINION Z15 -R150",
		"", "",
		"26.76", "0",
		"1", 1,
		"", "2",
		"", "pd1021582178.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1262] = new Element(
		1262, "assets/images/nopicture.gif",
		77, 52,
		"011120010 000", "R150 CARBURETOR",
		"", "",
		"181.7", "0",
		"1", 1,
		"", "2",
		"", "pd965589088.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1263] = new Element(
		1263, "assets/images/nopicture.gif",
		77, 52,
		"011310008 000", "FRAME R10 BLACK",
		"", "",
		"340.15", "0",
		"1", 1,
		"", "2",
		"", "pd1933235598.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1264] = new Element(
		1264, "assets/images/nopicture.gif",
		77, 52,
		"011310018 000", "FRAME R12 BLACK",
		"", "",
		"398.39", "0",
		"1", 1,
		"", "2",
		"", "pd-176017812.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1265] = new Element(
		1265, "assets/images/nopicture.gif",
		77, 52,
		"011310028 000", "FRAME R150 BLACK",
		"", "",
		"437.18", "0",
		"1", 1,
		"", "2",
		"", "pd1792469626.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1266] = new Element(
		1266, "assets/images/nopicture.gif",
		77, 52,
		"011310030 000", "R150 REAR MUDGUARD SUBFRAME",
		"", "",
		"147.5", "0",
		"1", 1,
		"", "2",
		"", "pd2014215480.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1267] = new Element(
		1267, "assets/images/nopicture.gif",
		77, 52,
		"011320010 000", "R150 BLACK BRACKER SUPPORT",
		"", "",
		"117.88", "0",
		"1", 1,
		"", "2",
		"", "pd1054443046.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1268] = new Element(
		1268, "assets/images/nopicture.gif",
		77, 52,
		"011320020 000", "FOOTREST KIT R150",
		"", "",
		"33.47", "0",
		"1", 1,
		"", "2",
		"", "pd-865619772.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1269] = new Element(
		1269, "assets/images/nopicture.gif",
		77, 52,
		"011320040 000", "STAND SMALL TRIANGLE R10",
		"", "",
		"53.03", "0",
		"1", 1,
		"", "2",
		"", "pd-1674668910.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1270] = new Element(
		1270, "assets/images/nopicture.gif",
		77, 52,
		"011330008 000", "SCHOCK ABSORBER R10",
		"", "",
		"102.16", "0",
		"1", 1,
		"", "2",
		"", "pd2005636368.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1271] = new Element(
		1271, "assets/images/nopicture.gif",
		77, 52,
		"011330018 000", "SCHOCK ABSORBER R150 INT.315",
		"", "",
		"230.17", "0",
		"1", 1,
		"", "2",
		"", "pd163103166.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1272] = new Element(
		1272, "assets/images/nopicture.gif",
		77, 52,
		"011330020 000", "SWING ARM R10",
		"", "",
		"145.15", "0",
		"1", 1,
		"", "2",
		"", "pd743224860.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1273] = new Element(
		1273, "assets/images/nopicture.gif",
		77, 52,
		"011330030 000", "SWING ARM R12",
		"", "",
		"174.79", "0",
		"1", 1,
		"", "2",
		"", "pd1799190954.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1274] = new Element(
		1274, "assets/images/nopicture.gif",
		77, 52,
		"011330040 000", "SWING ARM R150",
		"", "",
		"201.8", "0",
		"1", 1,
		"", "2",
		"", "pd941514728.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1275] = new Element(
		1275, "assets/images/nopicture.gif",
		77, 52,
		"011340008 000", "R10 FORK WITH D.12 HOLE",
		"", "",
		"3.73", "0",
		"1", 1,
		"", "2",
		"", "pd-351213482.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1276] = new Element(
		1276, "assets/images/nopicture.gif",
		77, 52,
		"011340010 000", "FRONT FORK BASE CONE R10-R12",
		"", "",
		"3.71", "0",
		"1", 1,
		"", "2",
		"", "pd-1264542092.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1277] = new Element(
		1277, "assets/images/nopicture.gif",
		77, 52,
		"011340020 000", "R10-R12 STEERING BALLS KIT",
		"", "",
		"3.06", "0",
		"1", 1,
		"", "2",
		"", "pd914487746.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1278] = new Element(
		1278, "assets/images/nopicture.gif",
		77, 52,
		"011340030 000", "R10-R12 STEERING NUT",
		"", "",
		"4.36", "0",
		"1", 1,
		"", "2",
		"", "pd1240219072.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1279] = new Element(
		1279, "assets/images/nopicture.gif",
		77, 52,
		"011340040 000", "R10-R12 STEERING DUST",
		"", "",
		"0.4", "0",
		"1", 1,
		"", "2",
		"", "pd-1190766098.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1280] = new Element(
		1280, "assets/images/nopicture.gif",
		77, 52,
		"011340050 000", "R10-R12 STEERING UPPER CONE",
		"", "",
		"2.96", "0",
		"1", 1,
		"", "2",
		"", "pd228510156.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1281] = new Element(
		1281, "assets/images/nopicture.gif",
		77, 52,
		"011340060 000", "R10-R12 STEERING COVERS",
		"", "",
		"5.28", "0",
		"1", 1,
		"", "2",
		"", "pd1109816538.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1282] = new Element(
		1282, "assets/images/nopicture.gif",
		77, 52,
		"011340070 000", "FRONT FORK NUT R10 - R12",
		"", "",
		"2.25", "0",
		"1", 1,
		"", "2",
		"", "pd-895054184.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1283] = new Element(
		1283, "assets/images/nopicture.gif",
		77, 52,
		"011340080 000", "R10-R12 HANDLEBAR FASTENING",
		"", "",
		"12.33", "0",
		"1", 1,
		"", "2",
		"", "pd1110013574.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1284] = new Element(
		1284, "assets/images/nopicture.gif",
		77, 52,
		"011340090 000", "LOWER YOKE R12",
		"", "",
		"158.93", "0",
		"1", 1,
		"", "2",
		"", "pd-1110534108.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1285] = new Element(
		1285, "assets/images/nopicture.gif",
		77, 52,
		"011340100 000", "R12 FORK RIGHT LEG + ROD",
		"", "",
		"210.7", "0",
		"1", 1,
		"", "2",
		"", "pd-1988015374.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1286] = new Element(
		1286, "assets/images/nopicture.gif",
		77, 52,
		"011340110 000", "R12 FORK LEFT LEG + ROD",
		"", "",
		"288.23", "0",
		"1", 1,
		"", "2",
		"", "pd-1828015504.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1287] = new Element(
		1287, "assets/images/nopicture.gif",
		77, 52,
		"011340120 000", "LOWER YOKE R10",
		"", "",
		"89.24", "0",
		"1", 1,
		"", "2",
		"", "pd922131998.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1288] = new Element(
		1288, "assets/images/nopicture.gif",
		77, 52,
		"011340130 000", "R10 FORK RIGHT LEG + ROD",
		"", "",
		"176.8", "0",
		"1", 1,
		"", "2",
		"", "pd797141372.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1289] = new Element(
		1289, "assets/images/nopicture.gif",
		77, 52,
		"011340140 000", "R10 FORK LEFT LEG + ROD",
		"", "",
		"174.74", "0",
		"1", 1,
		"", "2",
		"", "pd1083497482.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1290] = new Element(
		1290, "assets/images/nopicture.gif",
		77, 52,
		"011340160 000", ".",
		"", "",
		"409.86", "0",
		"1", 1,
		"", "2",
		"", "pd-1527988075.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1291] = new Element(
		1291, "assets/images/nopicture.gif",
		77, 52,
		"011340170 000", ".",
		"", "",
		"101.95", "0",
		"1", 1,
		"", "2",
		"", "pd-402371381.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1292] = new Element(
		1292, "assets/images/nopicture.gif",
		77, 52,
		"011350008 000", "R10-R12 THROTTLE HANDLE ASSY",
		"", "",
		"33.9", "0",
		"1", 1,
		"", "2",
		"", "pd-1805514424.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1293] = new Element(
		1293, "assets/images/nopicture.gif",
		77, 52,
		"011350018 000", "R150 HANDLES WITH BUMPER PROTEC",
		"", "",
		"80.14", "0",
		"1", 1,
		"", "2",
		"", "pd-1017761610.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1294] = new Element(
		1294, "assets/images/nopicture.gif",
		77, 52,
		"011350028 000", "R150 CLUTCH LECER WITH COLLAR",
		"", "",
		"24.4", "0",
		"1", 1,
		"", "2",
		"", "pd-430137900.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1295] = new Element(
		1295, "assets/images/nopicture.gif",
		77, 52,
		"011350030 000", "R150 FAST THROTTHE LINKAGE",
		"", "",
		"19.8", "0",
		"1", 1,
		"", "2",
		"", "pd93292578.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1296] = new Element(
		1296, "assets/images/nopicture.gif",
		77, 52,
		"011350040 000", "TROTTLE CABLE R150",
		"", "",
		"7.73", "0",
		"1", 1,
		"", "2",
		"", "pd1711403808.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1297] = new Element(
		1297, "assets/images/nopicture.gif",
		77, 52,
		"011350050 000", "R150 HANDLES",
		"", "",
		"13.8", "0",
		"1", 1,
		"", "2",
		"", "pd-669217202.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1298] = new Element(
		1298, "assets/images/nopicture.gif",
		77, 52,
		"011350060 000", "CLUTCH HOSE R150",
		"", "",
		"6.56", "0",
		"1", 1,
		"", "2",
		"", "pd-456813268.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1299] = new Element(
		1299, "assets/images/nopicture.gif",
		77, 52,
		"011350070 000", "COMPLETE TROTTLE CABLE R150",
		"", "",
		"4.95", "0",
		"1", 1,
		"", "2",
		"", "pd-1035227334.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1300] = new Element(
		1300, "assets/images/nopicture.gif",
		77, 52,
		"011350100 000", "HANDLEBAR PROTECTION",
		"", "",
		"26.21", "0",
		"1", 1,
		"", "2",
		"", "pd-1002517519.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1301] = new Element(
		1301, "assets/images/nopicture.gif",
		77, 52,
		"011360000 000", "FRONT BRAKE HOSE R10",
		"", "",
		"8.32", "0",
		"1", 1,
		"", "2",
		"", "pd46911480.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1302] = new Element(
		1302, "assets/images/nopicture.gif",
		77, 52,
		"011360018 000", "R10-R12 FRONT BRAKE CALIPER",
		"", "",
		"103.08", "0",
		"1", 1,
		"", "2",
		"", "pd613029606.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1303] = new Element(
		1303, "assets/images/nopicture.gif",
		77, 52,
		"011360020 000", "FRONT BRAKE HOSE R12",
		"", "",
		"9.6", "0",
		"1", 1,
		"", "2",
		"", "pd1098231684.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1304] = new Element(
		1304, "assets/images/nopicture.gif",
		77, 52,
		"011360030 000", "REAR BRAKE HOSE R10",
		"", "",
		"29.41", "0",
		"1", 1,
		"", "2",
		"", "pd1037021522.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1305] = new Element(
		1305, "assets/images/nopicture.gif",
		77, 52,
		"011360040 000", "REAR BRAKE HOSE R12",
		"", "",
		"25.21", "0",
		"1", 1,
		"", "2",
		"", "pd-1230176304.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1306] = new Element(
		1306, "assets/images/nopicture.gif",
		77, 52,
		"011360058 000", "R10-R12 REAR BRAKE CALIPER ASSY",
		"", "",
		"103.08", "0",
		"1", 1,
		"", "2",
		"", "pd-1077204354.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1307] = new Element(
		1307, "assets/images/nopicture.gif",
		77, 52,
		"011360060 000", "FRONT BRAKE DISK D.180 R10-R12",
		"", "",
		"66.67", "0",
		"1", 1,
		"", "2",
		"", "pd-319796004.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1308] = new Element(
		1308, "assets/images/nopicture.gif",
		77, 52,
		"011360078 000", "R150 FRONT BRAKE ASSY",
		"", "",
		"156.72", "0",
		"1", 1,
		"", "2",
		"", "pd1573777002.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1309] = new Element(
		1309, "assets/images/nopicture.gif",
		77, 52,
		"011360090 000", "FRONT BRAKE DISK 210MM R150",
		"", "",
		"32.78", "0",
		"1", 1,
		"", "2",
		"", "pd1008657064.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1310] = new Element(
		1310, "assets/images/nopicture.gif",
		77, 52,
		"011360100 000", "REAR DISCK BRAKE 200MM R150",
		"", "",
		"30.36", "0",
		"1", 1,
		"", "2",
		"", "pd-2106054378.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1311] = new Element(
		1311, "assets/images/nopicture.gif",
		77, 52,
		"011360120 000", "R150 REAR BRAKE PEDAL",
		"", "",
		"57.73", "0",
		"1", 1,
		"", "2",
		"", "pd-1492857548.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1312] = new Element(
		1312, "assets/images/nopicture.gif",
		77, 52,
		"011360130 000", "REAR BRAKE REGISTER R150",
		"", "",
		"1.13", "0",
		"1", 1,
		"", "2",
		"", "pd405063298.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1313] = new Element(
		1313, "assets/images/nopicture.gif",
		77, 52,
		"011360150 000", "FRONT BRAKE PADS PAIR R-150",
		"", "",
		"22.91", "0",
		"1", 1,
		"", "2",
		"", "pd-478988409.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1314] = new Element(
		1314, "assets/images/nopicture.gif",
		77, 52,
		"011360160 000", "REAR BRAKE PADS PAIR R-150",
		"", "",
		"22.91", "0",
		"1", 1,
		"", "2",
		"", "pd126297357.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1315] = new Element(
		1315, "assets/images/nopicture.gif",
		77, 52,
		"011370000 000", "EXHAUST PIPE SPRING R10-R12-R15",
		"", "",
		"2.01", "0",
		"1", 1,
		"", "2",
		"", "pd161929344.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1316] = new Element(
		1316, "assets/images/nopicture.gif",
		77, 52,
		"011370010 000", "EXHAUST PIPE R150",
		"", "",
		"20.49", "0",
		"1", 1,
		"", "2",
		"", "pd269841070.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1317] = new Element(
		1317, "assets/images/nopicture.gif",
		77, 52,
		"011370020 000", "SILENCER R150",
		"", "",
		"124.21", "0",
		"1", 1,
		"", "2",
		"", "pd609128588.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1318] = new Element(
		1318, "assets/images/nopicture.gif",
		77, 52,
		"011370030 000", "CHROMATE MUFFLER R10",
		"", "",
		"129.01", "0",
		"1", 1,
		"", "2",
		"", "pd341744026.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1319] = new Element(
		1319, "assets/images/nopicture.gif",
		77, 52,
		"011370040 000", "CHROMATE MUFFLER R12",
		"", "",
		"206.13", "0",
		"1", 1,
		"", "2",
		"", "pd-816430760.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1320] = new Element(
		1320, "assets/images/nopicture.gif",
		77, 52,
		"011370050 000", "SILENCER FIX CLAMP R150",
		"", "",
		"13.97", "0",
		"1", 1,
		"", "2",
		"", "pd-1869387962.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1321] = new Element(
		1321, "assets/images/nopicture.gif",
		77, 52,
		"011380000 000", "R150 AIR FILTER",
		"", "",
		"20.09", "0",
		"1", 1,
		"", "2",
		"", "pd1672804068.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1322] = new Element(
		1322, "assets/images/nopicture.gif",
		77, 52,
		"011380010 000", "FILTER BOX RUBBER PLUG R10",
		"", "",
		"1.81", "0",
		"1", 1,
		"", "2",
		"", "pd-47069262.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1323] = new Element(
		1323, "assets/images/nopicture.gif",
		77, 52,
		"011390008 000", "R150 RADIATOR WITH HOSE",
		"", "",
		"136.69", "0",
		"1", 1,
		"", "2",
		"", "pd608861488.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1324] = new Element(
		1324, "assets/images/nopicture.gif",
		77, 52,
		"011400020 000", "CDI R150",
		"", "",
		"12.06", "0",
		"1", 1,
		"", "2",
		"", "pd2080384515.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1325] = new Element(
		1325, "assets/images/nopicture.gif",
		77, 52,
		"011400050 000", ".",
		"", "",
		"33.14", "0",
		"1", 1,
		"", "2",
		"", "pd-613144599.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1326] = new Element(
		1326, "assets/images/nopicture.gif",
		77, 52,
		"011410000 000", "FRONT COVER R150 60/10X14ø",
		"", "",
		"74.35", "0",
		"1", 1,
		"", "2",
		"", "pd432957150.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1327] = new Element(
		1327, "assets/images/nopicture.gif",
		77, 52,
		"011410010 000", "FRONT WHEEL PIN R10-R12",
		"", "",
		"6.96", "0",
		"1", 1,
		"", "2",
		"", "pd871063612.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1328] = new Element(
		1328, "assets/images/nopicture.gif",
		77, 52,
		"011410020 000", "FRONT WHEEL 12ø R10 WITHOUT COV",
		"", "",
		"191.09", "0",
		"1", 1,
		"", "2",
		"", "pd-2113883958.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1329] = new Element(
		1329, "assets/images/nopicture.gif",
		77, 52,
		"011410030 000", "FRONT WHEEL 14ø R12 WITHOUT COV",
		"", "",
		"185.47", "0",
		"1", 1,
		"", "2",
		"", "pd1680665608.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1330] = new Element(
		1330, "assets/images/nopicture.gif",
		77, 52,
		"011410040 000", "COMPLETE FRONT WHEEL PIN R150",
		"", "",
		"15.61", "0",
		"1", 1,
		"", "2",
		"", "pd-921775754.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1331] = new Element(
		1331, "assets/images/nopicture.gif",
		77, 52,
		"011420000 000", "CHAIN R10",
		"", "",
		"10.73", "0",
		"1", 1,
		"", "2",
		"", "pd-386847596.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1332] = new Element(
		1332, "assets/images/nopicture.gif",
		77, 52,
		"011420010 000", "CHAIN R12 415X114",
		"", "",
		"34.68", "0",
		"1", 1,
		"", "2",
		"", "pd140096738.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1333] = new Element(
		1333, "assets/images/nopicture.gif",
		77, 52,
		"011420020 000", "CHAIN TENTION R150",
		"", "",
		"5.56", "0",
		"1", 1,
		"", "2",
		"", "pd-1129124384.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1334] = new Element(
		1334, "assets/images/nopicture.gif",
		77, 52,
		"011420030 000", "CHAIN GUIDE R150",
		"", "",
		"22.94", "0",
		"1", 1,
		"", "2",
		"", "pd-1937176818.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1335] = new Element(
		1335, "assets/images/nopicture.gif",
		77, 52,
		"011420040 000", "REAR COVER R150 80/100 12ø",
		"", "",
		"114.23", "0",
		"1", 1,
		"", "2",
		"", "pd1100069868.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1336] = new Element(
		1336, "assets/images/nopicture.gif",
		77, 52,
		"011420050 000", "CHAIN 420 R150",
		"", "",
		"21.11", "0",
		"1", 1,
		"", "2",
		"", "pd225915898.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1337] = new Element(
		1337, "assets/images/nopicture.gif",
		77, 52,
		"011420060 000", "CHAIN GUIDE R10-R12",
		"", "",
		"47.21", "0",
		"1", 1,
		"", "2",
		"", "pd1797120696.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1338] = new Element(
		1338, "assets/images/nopicture.gif",
		77, 52,
		"011420070 000", "REAR WHEEL PIN 12X192 R10",
		"", "",
		"12.51", "0",
		"1", 1,
		"", "2",
		"", "pd-1663211610.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1339] = new Element(
		1339, "assets/images/nopicture.gif",
		77, 52,
		"011420080 000", "R10 REAR COVER 10ø WITHOUT COVE",
		"", "",
		"188.57", "0",
		"1", 1,
		"", "2",
		"", "pd2095345220.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1340] = new Element(
		1340, "assets/images/nopicture.gif",
		77, 52,
		"011420090 000", "REAR WHEEL PIN 12X215 R12",
		"", "",
		"12.79", "0",
		"1", 1,
		"", "2",
		"", "pd935300626.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1341] = new Element(
		1341, "assets/images/nopicture.gif",
		77, 52,
		"011420100 000", "R12 REAR WHEEL 12ø WITHOUT COVE",
		"", "",
		"195.98", "0",
		"1", 1,
		"", "2",
		"", "pd700131984.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1342] = new Element(
		1342, "assets/images/nopicture.gif",
		77, 52,
		"011420110 000", "REAR WHEEL PIN D15 COMPL. R150",
		"", "",
		"8.48", "0",
		"1", 1,
		"", "2",
		"", "pd-1499966658.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1343] = new Element(
		1343, "assets/images/nopicture.gif",
		77, 52,
		"011420130 000", "CROWN 420 Z.41  R150",
		"", "",
		"12.59", "0",
		"1", 1,
		"", "2",
		"", "pd-1613978724.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1344] = new Element(
		1344, "assets/images/nopicture.gif",
		77, 52,
		"011420140 000", "CROWN Z.42 - R10",
		"", "",
		"25.06", "0",
		"1", 1,
		"", "2",
		"", "pd407184170.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1345] = new Element(
		1345, "assets/images/nopicture.gif",
		77, 52,
		"011420150 000", "CROWN Z.53 - R12",
		"", "",
		"45.64", "0",
		"1", 1,
		"", "2",
		"", "pd-849074840.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1346] = new Element(
		1346, "assets/images/nopicture.gif",
		77, 52,
		"011430000 000", "PLASTIC GASOLINE COCK R150",
		"", "",
		"22.35", "0",
		"1", 1,
		"", "2",
		"", "pd-1548604970.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1347] = new Element(
		1347, "assets/images/nopicture.gif",
		77, 52,
		"011430018 051", "STICKERS SET BETA R10 MY&rsquo;10",
		"", "",
		"53.09", "0",
		"1", 1,
		"", "2",
		"", "pd-361120780.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1348] = new Element(
		1348, "assets/images/nopicture.gif",
		77, 52,
		"011430028 051", "STICKERS SET BETA R12 MY&rsquo;10",
		"", "",
		"55.74", "0",
		"1", 1,
		"", "2",
		"", "pd-1673112766.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1349] = new Element(
		1349, "assets/images/nopicture.gif",
		77, 52,
		"011430038 051", "STICKERS SET BETA R150 MY&rsquo;10",
		"", "",
		"64.87", "0",
		"1", 1,
		"", "2",
		"", "pd318649152.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1350] = new Element(
		1350, "assets/images/nopicture.gif",
		77, 52,
		"011430040 000", "BLACK-RED LOW SEAT R10",
		"", "",
		"72.6", "0",
		"1", 1,
		"", "2",
		"", "pd1695501166.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1351] = new Element(
		1351, "assets/images/nopicture.gif",
		77, 52,
		"011430050 000", "BLACK-RED LOW SEAT R12",
		"", "",
		"89.38", "0",
		"1", 1,
		"", "2",
		"", "pd2112296780.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1352] = new Element(
		1352, "assets/images/nopicture.gif",
		77, 52,
		"011430060 000", "BLACK-RED HIGH SEAT R150",
		"", "",
		"84.89", "0",
		"1", 1,
		"", "2",
		"", "pd783122010.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1353] = new Element(
		1353, "assets/images/nopicture.gif",
		77, 52,
		"011430070 000", "GASOLINE PIPE 5X9 MM",
		"", "",
		"15.93", "0",
		"1", 1,
		"", "2",
		"", "pd-1661291496.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1354] = new Element(
		1354, "assets/images/nopicture.gif",
		77, 52,
		"011430080 000", "BERATHER PIPE - BLACK PLS 5X8",
		"", "",
		"3.12", "0",
		"1", 1,
		"", "2",
		"", "pd-872409082.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1355] = new Element(
		1355, "assets/images/nopicture.gif",
		77, 52,
		"013350100 000", "SPEED DRIVE",
		"", "",
		"24.4", "0",
		"1", 1,
		"", "2",
		"", "pd-1073947291.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1356] = new Element(
		1356, "assets/images/nopicture.gif",
		77, 52,
		"013350200 000", "SPEEDOMETER CABLE",
		"", "",
		"11.31", "0",
		"1", 1,
		"", "2",
		"", "pd1367012891.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1357] = new Element(
		1357, "assets/images/nopicture.gif",
		77, 52,
		"014120100 000", "TRANSMISSION STARTER, RR50 MY20",
		"", "",
		"5.77", "0",
		"1", 1,
		"", "2",
		"", "pd828118436.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1358] = new Element(
		1358, "assets/images/nopicture.gif",
		77, 52,
		"014310308 026", "FRONT FRAME MOTARD 50CC",
		"", "",
		"449.02", "0",
		"1", 1,
		"", "2",
		"", "pd-1583295039.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1359] = new Element(
		1359, "assets/images/nopicture.gif",
		77, 52,
		"014310458 026", "RR50 STD FRONT FRAME",
		"", "",
		"452.14", "0",
		"1", 1,
		"", "2",
		"", "pd849450455.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1360] = new Element(
		1360, "assets/images/nopicture.gif",
		77, 52,
		"014310600 026", "REAR FRAME RR/MOTARD 50CC",
		"", "",
		"157.76", "0",
		"1", 1,
		"", "2",
		"", "pd-493098019.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1361] = new Element(
		1361, "assets/images/nopicture.gif",
		77, 52,
		"014311308 026", "MY&rsquo;10 MOTARD FRONT FRAME",
		"", "",
		"462", "0",
		"1", 1,
		"", "2",
		"", "pd-1986984846.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1362] = new Element(
		1362, "assets/images/nopicture.gif",
		77, 52,
		"014311358 026", "RACING MY&rsquo;10 RR50CC FRONT FRAME",
		"", "",
		"474.51", "0",
		"1", 1,
		"", "2",
		"", "pd550963184.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1363] = new Element(
		1363, "assets/images/nopicture.gif",
		77, 52,
		"014311458 026", "STD MY&rsquo;10 RR50 FRONT FRAME",
		"", "",
		"478.19", "0",
		"1", 1,
		"", "2",
		"", "pd-403647425.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1364] = new Element(
		1364, "assets/images/nopicture.gif",
		77, 52,
		"014314008 026", "MY&rsquo;10 RR50 FRONT FRAME",
		"", "",
		"436.68", "0",
		"1", 1,
		"", "2",
		"", "pd-1279201378.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1365] = new Element(
		1365, "assets/images/nopicture.gif",
		77, 52,
		"014330010 000", "SHOCK ABSORBER, RR STD / MOTARD",
		"", "",
		"256.14", "0",
		"1", 1,
		"", "2",
		"", "pd-730625709.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1366] = new Element(
		1366, "assets/images/nopicture.gif",
		77, 52,
		"014330010 053", "SHOCK ABSORBER, MOTARD TRACK &rsquo;0",
		"", "",
		"212.05", "0",
		"1", 1,
		"", "2",
		"", "pd-1422790523.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1367] = new Element(
		1367, "assets/images/nopicture.gif",
		77, 52,
		"014330200 057", "SWINGINGARM RR 50CC STD",
		"", "",
		"256.8", "0",
		"1", 1,
		"", "2",
		"", "pd-1647739975.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1368] = new Element(
		1368, "assets/images/nopicture.gif",
		77, 52,
		"014330200 059", "SWINGINGARM MOTARD 50CC",
		"", "",
		"256.8", "0",
		"1", 1,
		"", "2",
		"", "pd-617902961.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1369] = new Element(
		1369, "assets/images/nopicture.gif",
		77, 52,
		"014330300 000", "SWINGING ARM ASSY, RR MY&rsquo;10",
		"", "",
		"510.71", "0",
		"1", 1,
		"", "2",
		"", "pd2134818363.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1370] = new Element(
		1370, "assets/images/nopicture.gif",
		77, 52,
		"014331100 057", "SWINGINGARM RR 50CC STD MY&rsquo;10 -",
		"", "",
		"245.93", "0",
		"1", 1,
		"", "2",
		"", "pd-1746135300.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1371] = new Element(
		1371, "assets/images/nopicture.gif",
		77, 52,
		"014331100 059", "SWINGINGARM MOTARD 50CC MY&rsquo;10 -",
		"", "",
		"247.07", "0",
		"1", 1,
		"", "2",
		"", "pd934495626.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1372] = new Element(
		1372, "assets/images/nopicture.gif",
		77, 52,
		"014340050 000", "RR/MOTARD D.37 &rsquo;09 FORK",
		"", "",
		"583.97", "0",
		"1", 1,
		"", "2",
		"", "pd-1856855723.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1373] = new Element(
		1373, "assets/images/nopicture.gif",
		77, 52,
		"014350010 000", "RR 50 RACING HANDLEBAR RUBBER",
		"", "",
		"19.09", "0",
		"1", 1,
		"", "2",
		"", "pd2114460555.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1374] = new Element(
		1374, "assets/images/nopicture.gif",
		77, 52,
		"014350110 005", "RR/MOT 50CC STD.SPEEDOM. PLATE",
		"", "",
		"9.72", "0",
		"1", 1,
		"", "2",
		"", "pd-996372792.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1375] = new Element(
		1375, "assets/images/nopicture.gif",
		77, 52,
		"014350200 059", "HANDLEBAR",
		"", "",
		"30.05", "0",
		"1", 1,
		"", "2",
		"", "pd-1660274511.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1376] = new Element(
		1376, "assets/images/nopicture.gif",
		77, 52,
		"014350500 059", "HANDLEBAR",
		"", "",
		"29.86", "0",
		"1", 1,
		"", "2",
		"", "pd-1963314634.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1377] = new Element(
		1377, "assets/images/nopicture.gif",
		77, 52,
		"014360120 000", "FRONT BRAKE TUBE RR/MOT STD &rsquo;09",
		"", "",
		"56.85", "0",
		"1", 1,
		"", "2",
		"", "pd905345876.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1378] = new Element(
		1378, "assets/images/nopicture.gif",
		77, 52,
		"014360200 009", "FRONT BRAKE PLIERS, MOTARD 50CC",
		"", "",
		"108.39", "0",
		"1", 1,
		"", "2",
		"", "pd-238658847.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1379] = new Element(
		1379, "assets/images/nopicture.gif",
		77, 52,
		"014360220 005", "REED SENSOR BRAKET SINGLE PISTO",
		"", "",
		"4.7", "0",
		"1", 1,
		"", "2",
		"", "pd475209719.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1380] = new Element(
		1380, "assets/images/nopicture.gif",
		77, 52,
		"014360240 000", "ANTI NOISE BRAKE PAD SHIM",
		"", "",
		"2.51", "0",
		"1", 1,
		"", "2",
		"", "pd-114490627.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1381] = new Element(
		1381, "assets/images/nopicture.gif",
		77, 52,
		"014360258 000", "BRAKE PAD FOR CALIPER 014360200",
		"", "",
		"32.91", "0",
		"1", 1,
		"", "2",
		"", "pd487027271.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1382] = new Element(
		1382, "assets/images/nopicture.gif",
		77, 52,
		"014360300 009", "FRONT BRAKE PLIERS",
		"", "",
		"115.85", "0",
		"1", 1,
		"", "2",
		"", "pd-972906078.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1383] = new Element(
		1383, "assets/images/nopicture.gif",
		77, 52,
		"014360400 009", "FRONT BRAKE PLIERS,RR 50CC STD/",
		"", "",
		"100.95", "0",
		"1", 1,
		"", "2",
		"", "pd-1402951520.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1384] = new Element(
		1384, "assets/images/nopicture.gif",
		77, 52,
		"014370400 000", "MUFFLER, MOTARD 50CC MY&rsquo;10",
		"", "",
		"211.82", "0",
		"1", 1,
		"", "2",
		"", "pd-1656733746.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1385] = new Element(
		1385, "assets/images/nopicture.gif",
		77, 52,
		"014370410 000", "VITON MANIFOLD/SILENCER PIPE",
		"", "",
		"8.04", "0",
		"1", 1,
		"", "2",
		"", "pd-425286996.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1386] = new Element(
		1386, "assets/images/nopicture.gif",
		77, 52,
		"014370500 000", "SILENCER MOTARD 50CC MY&rsquo;10",
		"", "",
		"112.11", "0",
		"1", 1,
		"", "2",
		"", "pd-1525057350.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1387] = new Element(
		1387, "assets/images/nopicture.gif",
		77, 52,
		"014370700 000", "SILENCER MOTARD TRACK 50CC MY&rsquo;1",
		"", "",
		"112.53", "0",
		"1", 1,
		"", "2",
		"", "pd-1211845256.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1388] = new Element(
		1388, "assets/images/nopicture.gif",
		77, 52,
		"014400150 000", "ELECTRIC EQUIPMENT MOTARD STD &rsquo;",
		"", "",
		"149.74", "0",
		"1", 1,
		"", "2",
		"", "pd210991206.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1389] = new Element(
		1389, "assets/images/nopicture.gif",
		77, 52,
		"014400300 000", "REGULATOR",
		"", "",
		"63.93", "0",
		"1", 1,
		"", "2",
		"", "pd1903422724.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1390] = new Element(
		1390, "assets/images/nopicture.gif",
		77, 52,
		"014400400 000", "ELECTRIC EQUIPMENT, RR 50CC MY&rsquo;",
		"", "",
		"168.44", "0",
		"1", 1,
		"", "2",
		"", "pd-1161942318.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1391] = new Element(
		1391, "assets/images/nopicture.gif",
		77, 52,
		"014400440 000", "END.MOT.STD/RE MY&rsquo;10 SWITCH WIR",
		"", "",
		"22.54", "0",
		"1", 1,
		"", "2",
		"", "pd-528288397.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1392] = new Element(
		1392, "assets/images/nopicture.gif",
		77, 52,
		"014400500 000", "RR 50CC ENDURO SPEEDOMETER",
		"", "",
		"134.9", "0",
		"1", 1,
		"", "2",
		"", "pd1870009680.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1393] = new Element(
		1393, "assets/images/nopicture.gif",
		77, 52,
		"014400510 026", "MY&rsquo;10 41 FORK SPEEDOMETER BRACK",
		"", "",
		"4.63", "0",
		"1", 1,
		"", "2",
		"", "pd2061515774.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1394] = new Element(
		1394, "assets/images/nopicture.gif",
		77, 52,
		"014400530 000", "RR-MOTARD 50CC SPEDOMETER",
		"", "",
		"132.35", "0",
		"1", 1,
		"", "2",
		"", "pd1335999068.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1395] = new Element(
		1395, "assets/images/nopicture.gif",
		77, 52,
		"014401510 026", "MY&rsquo;10 SPEEDOMETER BRACKET",
		"", "",
		"4.94", "0",
		"1", 1,
		"", "2",
		"", "pd-1553786902.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1396] = new Element(
		1396, "assets/images/nopicture.gif",
		77, 52,
		"014402510 026", "MY&rsquo;10 FORK D.36 SPEEDOMETER BRA",
		"", "",
		"7.36", "0",
		"1", 1,
		"", "2",
		"", "pd581838888.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1397] = new Element(
		1397, "assets/images/nopicture.gif",
		77, 52,
		"014403510 026", "MY&rsquo;10 FORK D.37  SPEEDOMETER BR",
		"", "",
		"5.7", "0",
		"1", 1,
		"", "2",
		"", "pd1669261974.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1398] = new Element(
		1398, "assets/images/nopicture.gif",
		77, 52,
		"014410000 059", "FRONT WHEEL, MOTARD 50 STD &rsquo;09",
		"", "",
		"459.33", "0",
		"1", 1,
		"", "2",
		"", "pd-1581290828.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1399] = new Element(
		1399, "assets/images/nopicture.gif",
		77, 52,
		"014410010 000", "FRONT WHEEL AXLE",
		"", "",
		"17.27", "0",
		"1", 1,
		"", "2",
		"", "pd-1098326579.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1400] = new Element(
		1400, "assets/images/nopicture.gif",
		77, 52,
		"014410020 000", "FRONT HUB LH SPACER",
		"", "",
		"7.03", "0",
		"1", 1,
		"", "2",
		"", "pd-1549361150.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1401] = new Element(
		1401, "assets/images/nopicture.gif",
		77, 52,
		"014410030 000", "RH FRONT HUB SPACER",
		"", "",
		"5.63", "0",
		"1", 1,
		"", "2",
		"", "pd884100608.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1402] = new Element(
		1402, "assets/images/nopicture.gif",
		77, 52,
		"014410040 059", "FRONT HUB W/BEAR, RR 50 -BLACK-",
		"", "",
		"159.9", "0",
		"1", 1,
		"", "2",
		"", "pd-1556921127.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1403] = new Element(
		1403, "assets/images/nopicture.gif",
		77, 52,
		"014410050 000", "RH FRONT HUB SPACER RR 50CC MY&rsquo;",
		"", "",
		"6.64", "0",
		"1", 1,
		"", "2",
		"", "pd407567023.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1404] = new Element(
		1404, "assets/images/nopicture.gif",
		77, 52,
		"014410100 057", "RR STD MY&rsquo;10 50CC FRONT WHEEL",
		"", "",
		"382", "0",
		"1", 1,
		"", "2",
		"", "pd615769134.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1405] = new Element(
		1405, "assets/images/nopicture.gif",
		77, 52,
		"014410200 059", "FRONT WHEEL RR 50CC MY&rsquo;10",
		"", "",
		"469.93", "0",
		"1", 1,
		"", "2",
		"", "pd1428708876.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1406] = new Element(
		1406, "assets/images/nopicture.gif",
		77, 52,
		"014410210 000", "FRONT HUB LH SPACER RR 50 MY&rsquo;10",
		"", "",
		"4.93", "0",
		"1", 1,
		"", "2",
		"", "pd1477721205.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1407] = new Element(
		1407, "assets/images/nopicture.gif",
		77, 52,
		"014410220 000", "FRONT HUB RH SPACER RR 50 MY&rsquo;10",
		"", "",
		"4.93", "0",
		"1", 1,
		"", "2",
		"", "pd-1152668757.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1408] = new Element(
		1408, "assets/images/nopicture.gif",
		77, 52,
		"014410400 059", "FRONT WHEEL MOTARD 50/125CC MY&rsquo;",
		"", "",
		"412.85", "0",
		"1", 1,
		"", "2",
		"", "pd-153827887.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1409] = new Element(
		1409, "assets/images/nopicture.gif",
		77, 52,
		"014410500 059", "FRONT WHEEL- MOTARD 50 STD MY&rsquo;1",
		"", "",
		"451.08", "0",
		"1", 1,
		"", "2",
		"", "pd1238573850.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1410] = new Element(
		1410, "assets/images/nopicture.gif",
		77, 52,
		"014410800 059", "RE125 MY&rsquo;10 FRONT WHEEL",
		"", "",
		"424.26", "0",
		"1", 1,
		"", "2",
		"", "pd-1006287769.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1411] = new Element(
		1411, "assets/images/nopicture.gif",
		77, 52,
		"014410908 059", "MOTARD 50CC MY&rsquo;10 FRONT WHEEL W",
		"", "",
		"549.99", "0",
		"1", 1,
		"", "2",
		"", "pd1667202285.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1412] = new Element(
		1412, "assets/images/nopicture.gif",
		77, 52,
		"014411000 000", "FRONT WHEEL AXLE END.MOT. 50CC",
		"", "",
		"18", "0",
		"1", 1,
		"", "2",
		"", "pd-1705777448.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1413] = new Element(
		1413, "assets/images/nopicture.gif",
		77, 52,
		"014411040 000", "FRONT HUB W/BEAR",
		"", "",
		"107.62", "0",
		"1", 1,
		"", "2",
		"", "pd-1188067130.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1414] = new Element(
		1414, "assets/images/nopicture.gif",
		77, 52,
		"014411040 059", "FRONT HUB W/BEAR, RR 50 -BLACK-",
		"", "",
		"103.46", "0",
		"1", 1,
		"", "2",
		"", "pd1532215523.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1415] = new Element(
		1415, "assets/images/nopicture.gif",
		77, 52,
		"014420010 000", "REAR HUB RR 50",
		"", "",
		"225.18", "0",
		"1", 1,
		"", "2",
		"", "pd2038690916.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1416] = new Element(
		1416, "assets/images/nopicture.gif",
		77, 52,
		"014420020 000", "REAR SPROCKET, Z.50 1/2 1/4",
		"", "",
		"30.66", "0",
		"1", 1,
		"", "2",
		"", "pd-1973187389.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1417] = new Element(
		1417, "assets/images/nopicture.gif",
		77, 52,
		"014420200 059", "RR50CC MY&rsquo;10 REAR WHEEL",
		"", "",
		"653.05", "0",
		"1", 1,
		"", "2",
		"", "pd241221065.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1418] = new Element(
		1418, "assets/images/nopicture.gif",
		77, 52,
		"014420600 059", "RR 4T 125CC MY&rsquo;10 REAR WHEEL",
		"", "",
		"577.27", "0",
		"1", 1,
		"", "2",
		"", "pd-1817518817.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1419] = new Element(
		1419, "assets/images/nopicture.gif",
		77, 52,
		"014430018 051", "DECALS RR RACING 50CC &rsquo;09",
		"", "",
		"113.5", "0",
		"1", 1,
		"", "2",
		"", "pd-418845527.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1420] = new Element(
		1420, "assets/images/nopicture.gif",
		77, 52,
		"014430051 051", "FRONT FENDER, MOTARD STD &rsquo;09",
		"", "",
		"12.83", "0",
		"1", 1,
		"", "2",
		"", "pd-1009899777.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1421] = new Element(
		1421, "assets/images/nopicture.gif",
		77, 52,
		"014430051 059", "FRONT FENDER, MOTARD STD &rsquo;09",
		"", "",
		"12.23", "0",
		"1", 1,
		"", "2",
		"", "pd-956137147.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1422] = new Element(
		1422, "assets/images/nopicture.gif",
		77, 52,
		"014430051 097", "FRONT FENDER, MOTARD STD &rsquo;09",
		"", "",
		"12.87", "0",
		"1", 1,
		"", "2",
		"", "pd-1754481413.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1423] = new Element(
		1423, "assets/images/nopicture.gif",
		77, 52,
		"014430100 000", "50CC AM6 CRANKCASE STICKER",
		"", "",
		"2.84", "0",
		"1", 1,
		"", "2",
		"", "pd1804040097.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1424] = new Element(
		1424, "assets/images/nopicture.gif",
		77, 52,
		"014430200 000", "SADDLE, RR &rsquo;09",
		"", "",
		"127.08", "0",
		"1", 1,
		"", "2",
		"", "pd1888783031.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1425] = new Element(
		1425, "assets/images/nopicture.gif",
		77, 52,
		"014430308 051", "END/MOT &rsquo;09 DECALS SET - WHITE",
		"", "",
		"89.01", "0",
		"1", 1,
		"", "2",
		"", "pd1230990269.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1426] = new Element(
		1426, "assets/images/nopicture.gif",
		77, 52,
		"014430308 059", "END/MOT &rsquo;09 DECALS SET - BLACK",
		"", "",
		"89.01", "0",
		"1", 1,
		"", "2",
		"", "pd1212582963.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1427] = new Element(
		1427, "assets/images/nopicture.gif",
		77, 52,
		"014430308 097", "DECAL SET RED END/MOT 09",
		"", "",
		"89.01", "0",
		"1", 1,
		"", "2",
		"", "pd300136857.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1428] = new Element(
		1428, "assets/images/nopicture.gif",
		77, 52,
		"014430401 052", "FRONT FAIRING, RR/MOTARD MY&rsquo;10",
		"", "",
		"19.52", "0",
		"1", 1,
		"", "2",
		"", "pd-1084292814.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1429] = new Element(
		1429, "assets/images/nopicture.gif",
		77, 52,
		"014430410 000", "RR MY&rsquo;10 FENDER SPACER",
		"", "",
		"13.92", "0",
		"1", 1,
		"", "2",
		"", "pd-2022681936.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1430] = new Element(
		1430, "assets/images/nopicture.gif",
		77, 52,
		"014430500 000", "PETCOCK MY&rsquo;10",
		"", "",
		"18.66", "0",
		"1", 1,
		"", "2",
		"", "pd-1830640539.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1431] = new Element(
		1431, "assets/images/nopicture.gif",
		77, 52,
		"014430508 000", "PETCOCK MY&rsquo;10",
		"", "",
		"27.08", "0",
		"1", 1,
		"", "2",
		"", "pd562968670.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1432] = new Element(
		1432, "assets/images/nopicture.gif",
		77, 52,
		"014430510 000", "M10 X 1 MY&rsquo;10 FUEL COCK",
		"", "",
		"7.74", "0",
		"1", 1,
		"", "2",
		"", "pd806491419.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1433] = new Element(
		1433, "assets/images/nopicture.gif",
		77, 52,
		"014431031 051", "FRONT FENDER, MOTARD 50CC MY&rsquo;10",
		"", "",
		"12.4", "0",
		"1", 1,
		"", "2",
		"", "pd-968520260.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1434] = new Element(
		1434, "assets/images/nopicture.gif",
		77, 52,
		"014431031 059", "FRONT FENDER, MOTARD 50CC MY&rsquo;10",
		"", "",
		"12.4", "0",
		"1", 1,
		"", "2",
		"", "pd-898852278.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1435] = new Element(
		1435, "assets/images/nopicture.gif",
		77, 52,
		"014431031 097", "FRONT MUDGUARD, MOTARD 50CC MY&rsquo;",
		"", "",
		"12.4", "0",
		"1", 1,
		"", "2",
		"", "pd1282470280.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1436] = new Element(
		1436, "assets/images/nopicture.gif",
		77, 52,
		"014431041 051", "FRONT MUDGUARD RR STD 50CC MY&rsquo;1",
		"", "",
		"17.27", "0",
		"1", 1,
		"", "2",
		"", "pd2111329014.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1437] = new Element(
		1437, "assets/images/nopicture.gif",
		77, 52,
		"014431041 059", "FRONT MUDGUARD RR STD 50CC MY&rsquo;1",
		"", "",
		"17.27", "0",
		"1", 1,
		"", "2",
		"", "pd1345096212.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1438] = new Element(
		1438, "assets/images/nopicture.gif",
		77, 52,
		"014431041 097", "FRONT MUDGUARD, RR STD 50CC MY&rsquo;",
		"", "",
		"17.27", "0",
		"1", 1,
		"", "2",
		"", "pd2135576162.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1439] = new Element(
		1439, "assets/images/nopicture.gif",
		77, 52,
		"014431051 051", "FRONT FENDER, MOTARD STD MY&rsquo;10",
		"", "",
		"12.59", "0",
		"1", 1,
		"", "2",
		"", "pd1674257248.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1440] = new Element(
		1440, "assets/images/nopicture.gif",
		77, 52,
		"014431051 059", "FRONT FENDER, MOTARD STD MY&rsquo;10",
		"", "",
		"12.59", "0",
		"1", 1,
		"", "2",
		"", "pd-687720306.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1441] = new Element(
		1441, "assets/images/nopicture.gif",
		77, 52,
		"014431051 097", "FRONT FENDER, MOTARD STD MY&rsquo;10",
		"", "",
		"12.4", "0",
		"1", 1,
		"", "2",
		"", "pd1858357612.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1442] = new Element(
		1442, "assets/images/nopicture.gif",
		77, 52,
		"014431081 059", "FRONT MUDGUARD HOLDER, RR 50/12",
		"", "",
		"6.5", "0",
		"1", 1,
		"", "2",
		"", "pd-1577943686.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1443] = new Element(
		1443, "assets/images/nopicture.gif",
		77, 52,
		"014431111 059", "NUMBER PLATE, RR/MOTARD MY&rsquo;10",
		"", "",
		"26.01", "0",
		"1", 1,
		"", "2",
		"", "pd-1350547400.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1444] = new Element(
		1444, "assets/images/nopicture.gif",
		77, 52,
		"014431200 000", "SADDLE, RR RACING &rsquo;09",
		"", "",
		"134.2", "0",
		"1", 1,
		"", "2",
		"", "pd1969978735.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1445] = new Element(
		1445, "assets/images/nopicture.gif",
		77, 52,
		"014432031 051", "FRONT FENDER, MOTARD 125CC MY&rsquo;1",
		"", "",
		"12.14", "0",
		"1", 1,
		"", "2",
		"", "pd-1737733850.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1446] = new Element(
		1446, "assets/images/nopicture.gif",
		77, 52,
		"014432031 059", "FRONT FENDER, MOTARD 125CC MY&rsquo;1",
		"", "",
		"12.4", "0",
		"1", 1,
		"", "2",
		"", "pd-773575740.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1447] = new Element(
		1447, "assets/images/nopicture.gif",
		77, 52,
		"014432041 051", "FRONT MUDGUARD, RR 50CC MY&rsquo;10 -",
		"", "",
		"17.27", "0",
		"1", 1,
		"", "2",
		"", "pd-1215592558.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1448] = new Element(
		1448, "assets/images/nopicture.gif",
		77, 52,
		"014432041 059", "FRONT MUDGUARD, RR 50CC MY&rsquo;10 -",
		"", "",
		"17.27", "0",
		"1", 1,
		"", "2",
		"", "pd-425869296.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1449] = new Element(
		1449, "assets/images/nopicture.gif",
		77, 52,
		"014432041 097", "FRONT MUDGUARD, RR 50CC MY&rsquo;10 -",
		"", "",
		"17.27", "0",
		"1", 1,
		"", "2",
		"", "pd-1184701250.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1450] = new Element(
		1450, "assets/images/nopicture.gif",
		77, 52,
		"014432200 000", "SADDLE, RR 50CC MY&rsquo;10",
		"", "",
		"130.42", "0",
		"1", 1,
		"", "2",
		"", "pd-953183972.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1451] = new Element(
		1451, "assets/images/nopicture.gif",
		77, 52,
		"014433200 000", "SADDLE, RR/MOTARD 50/125CC MY&rsquo;1",
		"", "",
		"105.98", "0",
		"1", 1,
		"", "2",
		"", "pd-941110102.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1452] = new Element(
		1452, "assets/images/nopicture.gif",
		77, 52,
		"014434200 000", "SEAT MOTARD 50CC TRACK MY&rsquo;10",
		"", "",
		"125.37", "0",
		"1", 1,
		"", "2",
		"", "pd851241704.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1453] = new Element(
		1453, "assets/images/nopicture.gif",
		77, 52,
		"014435200 000", "SADDLE, RR 50CC RACING MY&rsquo;10",
		"", "",
		"130.42", "0",
		"1", 1,
		"", "2",
		"", "pd-1768002730.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1454] = new Element(
		1454, "assets/images/nopicture.gif",
		77, 52,
		"014435308 051", "DECALS RR 50CC WHITE RACING MY&rsquo;",
		"", "",
		"78.53", "0",
		"1", 1,
		"", "2",
		"", "pd-1349133964.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1455] = new Element(
		1455, "assets/images/nopicture.gif",
		77, 52,
		"014436308 051", "END/MOT MY&rsquo;10 -WHITE- DECALS SE",
		"", "",
		"77.44", "0",
		"1", 1,
		"", "2",
		"", "pd-821711678.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1456] = new Element(
		1456, "assets/images/nopicture.gif",
		77, 52,
		"014436308 059", "END/MOT MY&rsquo;10 -BLACK- DECALS SE",
		"", "",
		"77.44", "0",
		"1", 1,
		"", "2",
		"", "pd-41736000.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1457] = new Element(
		1457, "assets/images/nopicture.gif",
		77, 52,
		"014436308 097", "END/MOT MY&rsquo;10 -RED- DECALS SET",
		"", "",
		"77.44", "0",
		"1", 1,
		"", "2",
		"", "pd2076392686.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1458] = new Element(
		1458, "assets/images/nopicture.gif",
		77, 52,
		"014437308 051", "DECALS X MOTARD TRACK -WHITE- M",
		"", "",
		"77.44", "0",
		"1", 1,
		"", "2",
		"", "pd-1529715508.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1459] = new Element(
		1459, "assets/images/nopicture.gif",
		77, 52,
		"014437308 059", "DECALS X MOTARD TRACK -BLACK- M",
		"", "",
		"77.44", "0",
		"1", 1,
		"", "2",
		"", "pd-561018918.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1460] = new Element(
		1460, "assets/images/nopicture.gif",
		77, 52,
		"014438308 000", "SKULL MOTARD MY&rsquo;10 DECALS SET",
		"", "",
		"81.22", "0",
		"1", 1,
		"", "2",
		"", "pd1168706753.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1461] = new Element(
		1461, "assets/images/nopicture.gif",
		77, 52,
		"015060008 000", "KICK CRANK ASSY",
		"", "",
		"32.11", "0",
		"1", 1,
		"", "2",
		"", "pd-299771496.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1462] = new Element(
		1462, "assets/images/nopicture.gif",
		77, 52,
		"015060010 000", "NUT",
		"", "",
		"5.22", "0",
		"1", 1,
		"", "2",
		"", "pd-589186682.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1463] = new Element(
		1463, "assets/images/nopicture.gif",
		77, 52,
		"015120008 000", "CARBURATOR ASSY, PTK",
		"", "",
		"237.29", "0",
		"1", 1,
		"", "2",
		"", "pd1324127012.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1464] = new Element(
		1464, "assets/images/nopicture.gif",
		77, 52,
		"015120108 000", "INTAKE PIPE ASSY",
		"", "",
		"26.63", "0",
		"1", 1,
		"", "2",
		"", "pd-279200270.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1465] = new Element(
		1465, "assets/images/nopicture.gif",
		77, 52,
		"015120200 000", "AIS VALVE",
		"", "",
		"21.19", "0",
		"1", 1,
		"", "2",
		"", "pd-1293900585.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1466] = new Element(
		1466, "assets/images/nopicture.gif",
		77, 52,
		"015120300 000", "GASKET",
		"", "",
		"3.36", "0",
		"1", 1,
		"", "2",
		"", "pd383147376.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1467] = new Element(
		1467, "assets/images/nopicture.gif",
		77, 52,
		"015120500 000", "TRANSMISSION STARTER, RR 125 MY",
		"", "",
		"15.64", "0",
		"1", 1,
		"", "2",
		"", "pd1380815581.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1468] = new Element(
		1468, "assets/images/nopicture.gif",
		77, 52,
		"015330100 033", "SWINGING ARM ASSY, RR 4T 125CC",
		"", "",
		"287.55", "0",
		"1", 1,
		"", "2",
		"", "pd1073103134.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1469] = new Element(
		1469, "assets/images/nopicture.gif",
		77, 52,
		"015330100 059", "SWINGING ARM ASSY",
		"", "",
		"287.55", "0",
		"1", 1,
		"", "2",
		"", "pd-373832580.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1470] = new Element(
		1470, "assets/images/nopicture.gif",
		77, 52,
		"015330200 000", "SCHOCK ABSORBER RR 125CC",
		"", "",
		"234.04", "0",
		"1", 1,
		"", "2",
		"", "pd1659678474.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1471] = new Element(
		1471, "assets/images/nopicture.gif",
		77, 52,
		"015331200 000", "MOTARD 125 SHOCK ABSORBER",
		"", "",
		"251.64", "0",
		"1", 1,
		"", "2",
		"", "pd-1338406829.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1472] = new Element(
		1472, "assets/images/nopicture.gif",
		77, 52,
		"015370100 000", "MUFFLER, RR/MOTARD 125 4T ESP.2",
		"", "",
		"151.5", "0",
		"1", 1,
		"", "2",
		"", "pd1838906677.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1473] = new Element(
		1473, "assets/images/nopicture.gif",
		77, 52,
		"015370100 059", "MUFFLER, RE 125 4T ESP.2",
		"", "",
		"136.35", "0",
		"1", 1,
		"", "2",
		"", "pd-657466773.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1474] = new Element(
		1474, "assets/images/nopicture.gif",
		77, 52,
		"015400010 000", "SPEEDOMETER RR 125CC ENDURO",
		"", "",
		"134.23", "0",
		"1", 1,
		"", "2",
		"", "pd1382683720.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1475] = new Element(
		1475, "assets/images/nopicture.gif",
		77, 52,
		"015400100 000", "CDI UNIT, (VRMYBR)",
		"", "",
		"44.9", "0",
		"1", 1,
		"", "2",
		"", "pd-1038380359.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1476] = new Element(
		1476, "assets/images/nopicture.gif",
		77, 52,
		"015400300 000", "ELECTRIC EQUIPMENT, RR 125CC 4T",
		"", "",
		"224.14", "0",
		"1", 1,
		"", "2",
		"", "pd541555599.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1477] = new Element(
		1477, "assets/images/nopicture.gif",
		77, 52,
		"015400400 000", "RELAIY ASSY",
		"", "",
		"16.1", "0",
		"1", 1,
		"", "2",
		"", "pd-2001983403.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1478] = new Element(
		1478, "assets/images/nopicture.gif",
		77, 52,
		"015401300 000", "ELECTRIC EQUIPMENT, RE 125 MY&rsquo;1",
		"", "",
		"194.57", "0",
		"1", 1,
		"", "2",
		"", "pd758708875.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1479] = new Element(
		1479, "assets/images/nopicture.gif",
		77, 52,
		"015430208 037", "RR END/MOT 125CC BLUE DECAL SET",
		"", "",
		"117.15", "0",
		"1", 1,
		"", "2",
		"", "pd2023199377.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1480] = new Element(
		1480, "assets/images/nopicture.gif",
		77, 52,
		"015430208 059", "RR END/MOT 125CC BLACK DECAL SE",
		"", "",
		"111.66", "0",
		"1", 1,
		"", "2",
		"", "pd-1595941081.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1481] = new Element(
		1481, "assets/images/nopicture.gif",
		77, 52,
		"015430308 097", "RR END/MOT. 125CC RED DECAL SET",
		"", "",
		"111.66", "0",
		"1", 1,
		"", "2",
		"", "pd-1668377171.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1482] = new Element(
		1482, "assets/images/nopicture.gif",
		77, 52,
		"015431208 037", "DECALS SET RR END/MOT.125 BLUE",
		"", "",
		"104.21", "0",
		"1", 1,
		"", "2",
		"", "pd-1591507037.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1483] = new Element(
		1483, "assets/images/nopicture.gif",
		77, 52,
		"015431208 059", "DECALS SET RR END/MOT 125 BLACK",
		"", "",
		"98.47", "0",
		"1", 1,
		"", "2",
		"", "pd616096393.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1484] = new Element(
		1484, "assets/images/nopicture.gif",
		77, 52,
		"015431208 097", "DECALS SET RR END/MOT. 125 RED",
		"", "",
		"98.47", "0",
		"1", 1,
		"", "2",
		"", "pd-109408289.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1485] = new Element(
		1485, "assets/images/nopicture.gif",
		77, 52,
		"015432208 051", "DECALS SET, RR-WHITE-END/MOT. 1",
		"", "",
		"77.97", "0",
		"1", 1,
		"", "2",
		"", "pd-697748554.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1486] = new Element(
		1486, "assets/images/nopicture.gif",
		77, 52,
		"015432208 059", "DECALS SET, RR-BLACK-END/MOT. 1",
		"", "",
		"78.53", "0",
		"1", 1,
		"", "2",
		"", "pd2052282580.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1487] = new Element(
		1487, "assets/images/nopicture.gif",
		77, 52,
		"015432208 097", "DECALS SET, RR -RED- END/MOT. 1",
		"", "",
		"77.97", "0",
		"1", 1,
		"", "2",
		"", "pd1916940209.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1488] = new Element(
		1488, "assets/images/nopicture.gif",
		77, 52,
		"016310008 059", "RR4T REAR BLACK FRAME FOR HANDL",
		"", "",
		"195.06", "0",
		"1", 1,
		"", "2",
		"", "pd888191778.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1489] = new Element(
		1489, "assets/images/nopicture.gif",
		77, 52,
		"016320100 000", "BUMBER, RR4T",
		"", "",
		"119.94", "0",
		"1", 1,
		"", "2",
		"", "pd-1486056155.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1490] = new Element(
		1490, "assets/images/nopicture.gif",
		77, 52,
		"016320200 000", "FOOTREST SPRING, RR 4T",
		"", "",
		"4.29", "0",
		"1", 1,
		"", "2",
		"", "pd-1994886181.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1491] = new Element(
		1491, "assets/images/nopicture.gif",
		77, 52,
		"016320300 026", "RH FOOT BOARD REST",
		"", "",
		"31.28", "0",
		"1", 1,
		"", "2",
		"", "pd561613185.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1492] = new Element(
		1492, "assets/images/nopicture.gif",
		77, 52,
		"016320310 026", "LH FOOT BOARD REST",
		"", "",
		"34.65", "0",
		"1", 1,
		"", "2",
		"", "pd1765830551.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1493] = new Element(
		1493, "assets/images/nopicture.gif",
		77, 52,
		"016330100 000", "SHOCK ABSORBER, RR 4T 09",
		"", "",
		"674.8", "0",
		"1", 1,
		"", "2",
		"", "pd1598380957.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1494] = new Element(
		1494, "assets/images/nopicture.gif",
		77, 52,
		"016330200 003", "STAND, RR4T MOTARD",
		"", "",
		"61.3", "0",
		"1", 1,
		"", "2",
		"", "pd-776839648.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1495] = new Element(
		1495, "assets/images/nopicture.gif",
		77, 52,
		"016331100 000", "SHOCK ABSORBER, RR 4T -RACE- 09",
		"", "",
		"674.8", "0",
		"1", 1,
		"", "2",
		"", "pd1807843091.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1496] = new Element(
		1496, "assets/images/nopicture.gif",
		77, 52,
		"016340101 059", "RIGHT FORK TUBE PROTECTION, RR",
		"", "",
		"9.87", "0",
		"1", 1,
		"", "2",
		"", "pd262629241.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1497] = new Element(
		1497, "assets/images/nopicture.gif",
		77, 52,
		"016340111 059", "LEFT FORK TUBE PROTECTION, RR 4",
		"", "",
		"10.05", "0",
		"1", 1,
		"", "2",
		"", "pd1496473167.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1498] = new Element(
		1498, "assets/images/nopicture.gif",
		77, 52,
		"016350100 000", "DEVICE, RR 4T",
		"", "",
		"71.15", "0",
		"1", 1,
		"", "2",
		"", "pd-963710642.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1499] = new Element(
		1499, "assets/images/nopicture.gif",
		77, 52,
		"016370200 000", "RR4T RACE SILENCER REAR CARBON",
		"", "",
		"92.22", "0",
		"1", 1,
		"", "2",
		"", "pd-1669019371.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1500] = new Element(
		1500, "assets/images/nopicture.gif",
		77, 52,
		"016370210 000", "RR4T RACE SILENCER KIT",
		"", "",
		"16.77", "0",
		"1", 1,
		"", "2",
		"", "pd1793952075.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1501] = new Element(
		1501, "assets/images/nopicture.gif",
		77, 52,
		"016370220 000", "RR4T RACE &rsquo;09 SILENCER",
		"", "",
		"405.22", "0",
		"1", 1,
		"", "2",
		"", "pd-1523819407.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1502] = new Element(
		1502, "assets/images/nopicture.gif",
		77, 52,
		"016370230 000", "PRIMARY MANIFOLD SILENC. RR4T R",
		"", "",
		"198.42", "0",
		"1", 1,
		"", "2",
		"", "pd1020083207.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1503] = new Element(
		1503, "assets/images/nopicture.gif",
		77, 52,
		"016370240 000", "SECONDARY MUFFLER RR4T RACE",
		"", "",
		"293.43", "0",
		"1", 1,
		"", "2",
		"", "pd-1233994355.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1504] = new Element(
		1504, "assets/images/nopicture.gif",
		77, 52,
		"016370250 000", "CARBON FIBER SILENCER RAP RR4T",
		"", "",
		"50.35", "0",
		"1", 1,
		"", "2",
		"", "pd849834627.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1505] = new Element(
		1505, "assets/images/nopicture.gif",
		77, 52,
		"016380100 000", "AIR FILTER, RR/RS 4T",
		"", "",
		"20.3", "0",
		"1", 1,
		"", "2",
		"", "pd-1668396951.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1506] = new Element(
		1506, "assets/images/nopicture.gif",
		77, 52,
		"016410000 059", "FRONT WHEEL, RR 4T &rsquo;09",
		"", "",
		"560.6", "0",
		"1", 1,
		"", "2",
		"", "pd227141823.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1507] = new Element(
		1507, "assets/images/nopicture.gif",
		77, 52,
		"016410008 059", "FRONT WHEEL, RR 4T",
		"", "",
		"581.47", "0",
		"1", 1,
		"", "2",
		"", "pd1790122245.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1508] = new Element(
		1508, "assets/images/nopicture.gif",
		77, 52,
		"016410100 000", "FRONT HUB, RR 4T",
		"", "",
		"196.84", "0",
		"1", 1,
		"", "2",
		"", "pd750131899.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1509] = new Element(
		1509, "assets/images/nopicture.gif",
		77, 52,
		"016410110 000", "FRONT SPOKE",
		"", "",
		"1.45", "0",
		"1", 1,
		"", "2",
		"", "pd342821729.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1510] = new Element(
		1510, "assets/images/nopicture.gif",
		77, 52,
		"016410120 000", "FRONT SPOKE",
		"", "",
		"1.45", "0",
		"1", 1,
		"", "2",
		"", "pd-1235401609.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1511] = new Element(
		1511, "assets/images/nopicture.gif",
		77, 52,
		"016410130 000", "NIPPLES 3,5 ALUMINIUM 5MM",
		"", "",
		"1.51", "0",
		"1", 1,
		"", "2",
		"", "pd885373821.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1512] = new Element(
		1512, "assets/images/nopicture.gif",
		77, 52,
		"016410130 053", "NIPPLES",
		"", "",
		"2.02", "0",
		"1", 1,
		"", "2",
		"", "pd-1541643789.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1513] = new Element(
		1513, "assets/images/nopicture.gif",
		77, 52,
		"016411000 059", "FRONT WHEEL, RR 4T RACE",
		"", "",
		"575.79", "0",
		"1", 1,
		"", "2",
		"", "pd1594656089.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1514] = new Element(
		1514, "assets/images/nopicture.gif",
		77, 52,
		"016420100 000", "REAR HUB, RR 4T",
		"", "",
		"246.78", "0",
		"1", 1,
		"", "2",
		"", "pd1865953071.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1515] = new Element(
		1515, "assets/images/nopicture.gif",
		77, 52,
		"016420110 000", "REAR SPOKE",
		"", "",
		"1.45", "0",
		"1", 1,
		"", "2",
		"", "pd361137397.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1516] = new Element(
		1516, "assets/images/nopicture.gif",
		77, 52,
		"016420120 000", "REAR SPOKE",
		"", "",
		"1.45", "0",
		"1", 1,
		"", "2",
		"", "pd-661051349.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1517] = new Element(
		1517, "assets/images/nopicture.gif",
		77, 52,
		"016420130 000", "NIPPLES 4,00",
		"", "",
		"1.62", "0",
		"1", 1,
		"", "2",
		"", "pd1103140433.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1518] = new Element(
		1518, "assets/images/nopicture.gif",
		77, 52,
		"016420130 053", "NIPPLES",
		"", "",
		"2.17", "0",
		"1", 1,
		"", "2",
		"", "pd143100135.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1519] = new Element(
		1519, "assets/images/nopicture.gif",
		77, 52,
		"016420200 000", "REAR SPROCKET, Z.50 RR 4T (RED)",
		"", "",
		"66.85", "0",
		"1", 1,
		"", "2",
		"", "pd-894610067.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1520] = new Element(
		1520, "assets/images/nopicture.gif",
		77, 52,
		"016421200 000", "REAR SPROCKET, Z.52 RR 4T (RED)",
		"", "",
		"64.88", "0",
		"1", 1,
		"", "2",
		"", "pd36130147.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1521] = new Element(
		1521, "assets/images/nopicture.gif",
		77, 52,
		"016422200 000", "REAR SPROCKET, Z.49 RR 4T (RED)",
		"", "",
		"66.85", "0",
		"1", 1,
		"", "2",
		"", "pd-1535041975.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1522] = new Element(
		1522, "assets/images/nopicture.gif",
		77, 52,
		"016430100 000", "SADDLE, RR 4T &rsquo;09",
		"", "",
		"132.86", "0",
		"1", 1,
		"", "2",
		"", "pd649343391.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1523] = new Element(
		1523, "assets/images/nopicture.gif",
		77, 52,
		"016430108 000", "RR 4T&rsquo;09 400 DECALS KIT",
		"", "",
		"57.44", "0",
		"1", 1,
		"", "2",
		"", "pd1984826597.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1524] = new Element(
		1524, "assets/images/nopicture.gif",
		77, 52,
		"016430118 000", "RR 4T&rsquo;09 450 DECALS KIT",
		"", "",
		"57.44", "0",
		"1", 1,
		"", "2",
		"", "pd1149088155.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1525] = new Element(
		1525, "assets/images/nopicture.gif",
		77, 52,
		"016430128 000", "RR 4T&rsquo;09 525 DECALS KIT",
		"", "",
		"57.44", "0",
		"1", 1,
		"", "2",
		"", "pd-1319109311.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1526] = new Element(
		1526, "assets/images/nopicture.gif",
		77, 52,
		"016430130 000", "RR 4T&rsquo;09 400/450/525 DECALS",
		"", "",
		"95.31", "0",
		"1", 1,
		"", "2",
		"", "pd1839401303.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1527] = new Element(
		1527, "assets/images/nopicture.gif",
		77, 52,
		"016430200 000", "SPACER",
		"", "",
		"2.7", "0",
		"1", 1,
		"", "2",
		"", "pd-1836108589.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1528] = new Element(
		1528, "assets/images/nopicture.gif",
		77, 52,
		"016430260 000", "RR 4T &rsquo;09 RACE SWING ARM STICKE",
		"", "",
		"9.56", "0",
		"1", 1,
		"", "2",
		"", "pd883601452.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1529] = new Element(
		1529, "assets/images/nopicture.gif",
		77, 52,
		"016430310 000", "DECAL TANK RR 4T &rsquo;09",
		"", "",
		"4.78", "0",
		"1", 1,
		"", "2",
		"", "pd-1674252273.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1530] = new Element(
		1530, "assets/images/nopicture.gif",
		77, 52,
		"016430320 000", "FRONT PANEL DECALS RR4T &rsquo;09",
		"", "",
		"25.39", "0",
		"1", 1,
		"", "2",
		"", "pd739815637.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1531] = new Element(
		1531, "assets/images/nopicture.gif",
		77, 52,
		"016430330 000", "DECALS FILTER BOX RR 4T 400 &rsquo;09",
		"", "",
		"16.82", "0",
		"1", 1,
		"", "2",
		"", "pd-2113226997.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1532] = new Element(
		1532, "assets/images/nopicture.gif",
		77, 52,
		"016430340 000", "DECALS FILTER BOX RR 4T 450 &rsquo;09",
		"", "",
		"16.82", "0",
		"1", 1,
		"", "2",
		"", "pd-1991491535.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1533] = new Element(
		1533, "assets/images/nopicture.gif",
		77, 52,
		"016430350 000", "DECALS FILTER BOX RR4T 525 &rsquo;09",
		"", "",
		"16.82", "0",
		"1", 1,
		"", "2",
		"", "pd-1748580921.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1534] = new Element(
		1534, "assets/images/nopicture.gif",
		77, 52,
		"016430360 000", "DECALS TANK RR4T &rsquo;09",
		"", "",
		"14.05", "0",
		"1", 1,
		"", "2",
		"", "pd1941331277.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1535] = new Element(
		1535, "assets/images/nopicture.gif",
		77, 52,
		"017120108 000", "KIT, PLUNGER STARTER ASSY",
		"", "",
		"44.43", "0",
		"1", 1,
		"", "2",
		"", "pd-1191427769.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1536] = new Element(
		1536, "assets/images/nopicture.gif",
		77, 52,
		"017120110 000", "CAP PLUNGER STARTER",
		"", "",
		"27.61", "0",
		"1", 1,
		"", "2",
		"", "pd-591248838.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1537] = new Element(
		1537, "assets/images/nopicture.gif",
		77, 52,
		"017120200 000", "URBAN 200 STARTER TRANSMISSION",
		"", "",
		"15.41", "0",
		"1", 1,
		"", "2",
		"", "pd-653223176.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1538] = new Element(
		1538, "assets/images/nopicture.gif",
		77, 52,
		"017120308 000", "CARBURETTOR ASSY",
		"", "",
		"241.56", "0",
		"1", 1,
		"", "2",
		"", "pd-1880734515.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1539] = new Element(
		1539, "assets/images/nopicture.gif",
		77, 52,
		"017320100 026", "LINK, REAR",
		"", "",
		"23.35", "0",
		"1", 1,
		"", "2",
		"", "pd249239619.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1540] = new Element(
		1540, "assets/images/nopicture.gif",
		77, 52,
		"017320200 026", "LINK, REAR",
		"", "",
		"23.35", "0",
		"1", 1,
		"", "2",
		"", "pd780756009.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1541] = new Element(
		1541, "assets/images/nopicture.gif",
		77, 52,
		"017320400 026", "RH FOOT BOARD REST",
		"", "",
		"30.61", "0",
		"1", 1,
		"", "2",
		"", "pd623368678.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1542] = new Element(
		1542, "assets/images/nopicture.gif",
		77, 52,
		"017320410 026", "LH FOOT BOARD REST",
		"", "",
		"30.61", "0",
		"1", 1,
		"", "2",
		"", "pd284502660.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1543] = new Element(
		1543, "assets/images/nopicture.gif",
		77, 52,
		"017350000 000", "URBAN SPECIAL HANDLEBAR",
		"", "",
		"82.04", "0",
		"1", 1,
		"", "2",
		"", "pd1739680383.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1544] = new Element(
		1544, "assets/images/nopicture.gif",
		77, 52,
		"017350100 000", "TWIST-GRIP",
		"", "",
		"38.97", "0",
		"1", 1,
		"", "2",
		"", "pd-1951043387.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1545] = new Element(
		1545, "assets/images/nopicture.gif",
		77, 52,
		"017350110 000", "GRIPS (PAIR),",
		"", "",
		"23.93", "0",
		"1", 1,
		"", "2",
		"", "pd-1766110269.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1546] = new Element(
		1546, "assets/images/nopicture.gif",
		77, 52,
		"017350200 000", "CLUTCH CABLE",
		"", "",
		"19.27", "0",
		"1", 1,
		"", "2",
		"", "pd2101527465.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1547] = new Element(
		1547, "assets/images/nopicture.gif",
		77, 52,
		"017360100 000", "PEDAL, REAR BRAKE ALP/URBAN 4T",
		"", "",
		"61.44", "0",
		"1", 1,
		"", "2",
		"", "pd1319581819.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1548] = new Element(
		1548, "assets/images/nopicture.gif",
		77, 52,
		"017360200 000", "FRONT BRAKE LEVER",
		"", "",
		"122.03", "0",
		"1", 1,
		"", "2",
		"", "pd-2126225631.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1549] = new Element(
		1549, "assets/images/nopicture.gif",
		77, 52,
		"017370000 000", "URBAN 125/200 INOX MUFFLER",
		"", "",
		"666.47", "0",
		"1", 1,
		"", "2",
		"", "pd550092343.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1550] = new Element(
		1550, "assets/images/nopicture.gif",
		77, 52,
		"017370010 000", "PIPE COMP. EXHAUST",
		"", "",
		"169.82", "0",
		"1", 1,
		"", "2",
		"", "pd-1401566403.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1551] = new Element(
		1551, "assets/images/nopicture.gif",
		77, 52,
		"017370020 000", "MUFFLER RUBBER PLATE",
		"", "",
		"2.8", "0",
		"1", 1,
		"", "2",
		"", "pd340916147.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1552] = new Element(
		1552, "assets/images/nopicture.gif",
		77, 52,
		"017371010 000", "PIPE COMP. EXHAUST",
		"", "",
		"169.82", "0",
		"1", 1,
		"", "2",
		"", "pd513478937.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1553] = new Element(
		1553, "assets/images/nopicture.gif",
		77, 52,
		"017400500 000", "SPEEDOMETER ASSY, ALP 125/200CC",
		"", "",
		"141.78", "0",
		"1", 1,
		"", "2",
		"", "pd873977343.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1554] = new Element(
		1554, "assets/images/nopicture.gif",
		77, 52,
		"017400510 026", "SUPPORT,INSTRUMENT PANEL ALP/UR",
		"", "",
		"107.78", "0",
		"1", 1,
		"", "2",
		"", "pd-1673541563.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1555] = new Element(
		1555, "assets/images/nopicture.gif",
		77, 52,
		"017400530 000", "SPEEDOMETER ASSY, URBAN 125/200",
		"", "",
		"141.78", "0",
		"1", 1,
		"", "2",
		"", "pd774331387.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1556] = new Element(
		1556, "assets/images/nopicture.gif",
		77, 52,
		"017410100 000", "FRONT BRAKE DISK",
		"", "",
		"115.45", "0",
		"1", 1,
		"", "2",
		"", "pd-1059020561.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1557] = new Element(
		1557, "assets/images/nopicture.gif",
		77, 52,
		"017410200 000", "FRONT HUB URBAN SPECIAL",
		"", "",
		"190.85", "0",
		"1", 1,
		"", "2",
		"", "pd-1884074827.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1558] = new Element(
		1558, "assets/images/nopicture.gif",
		77, 52,
		"017420100 000", "BRAKE DISK",
		"", "",
		"135.53", "0",
		"1", 1,
		"", "2",
		"", "pd-2089142805.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1559] = new Element(
		1559, "assets/images/nopicture.gif",
		77, 52,
		"017420200 000", "URBAN SPECIAL REAR HUB",
		"", "",
		"156.96", "0",
		"1", 1,
		"", "2",
		"", "pd-758687215.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1560] = new Element(
		1560, "assets/images/nopicture.gif",
		77, 52,
		"017430100 000", "SPACER",
		"", "",
		"4.16", "0",
		"1", 1,
		"", "2",
		"", "pd-96275801.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1561] = new Element(
		1561, "assets/images/nopicture.gif",
		77, 52,
		"017430200 000", "ENGINE CARTER LH/RH DECAL",
		"", "",
		"9.14", "0",
		"1", 1,
		"", "2",
		"", "pd671470893.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1562] = new Element(
		1562, "assets/images/nopicture.gif",
		77, 52,
		"017430300 000", "FRONT FENDER DECAL",
		"", "",
		"5.38", "0",
		"1", 1,
		"", "2",
		"", "pd-1812278493.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1563] = new Element(
		1563, "assets/images/nopicture.gif",
		77, 52,
		"017430320 000", "PULL CHOKE URBAN SPECIAL STIC",
		"", "",
		"11.78", "0",
		"1", 1,
		"", "2",
		"", "pd576663201.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1564] = new Element(
		1564, "assets/images/nopicture.gif",
		77, 52,
		"017430400 000", "SEAT URBAN",
		"", "",
		"97.53", "0",
		"1", 1,
		"", "2",
		"", "pd-929097207.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1565] = new Element(
		1565, "assets/images/nopicture.gif",
		77, 52,
		"017430528 097", "DECALS SET, ALP 125/200CC MY&rsquo;10",
		"", "",
		"30.93", "0",
		"1", 1,
		"", "2",
		"", "pd-555244462.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1566] = new Element(
		1566, "assets/images/nopicture.gif",
		77, 52,
		"017430528 098", "DECALS SET, ALP 125/200CC &rsquo;10/1",
		"", "",
		"30.93", "0",
		"1", 1,
		"", "2",
		"", "pd-1376638256.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1567] = new Element(
		1567, "assets/images/nopicture.gif",
		77, 52,
		"017430600 000", "TUBE 5.5 x 10 L.285",
		"", "",
		"9.34", "0",
		"1", 1,
		"", "2",
		"", "pd-1629467266.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1568] = new Element(
		1568, "assets/images/nopicture.gif",
		77, 52,
		"017431200 000", "ENGINE CARTER RH/LH DECAL",
		"", "",
		"9.14", "0",
		"1", 1,
		"", "2",
		"", "pd-281439393.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1569] = new Element(
		1569, "assets/images/nopicture.gif",
		77, 52,
		"017450098 000", "ALP-4T FRONT LIGHT ASSY",
		"", "",
		"102.63", "0",
		"1", 1,
		"", "2",
		"", "pd-1858721828.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1570] = new Element(
		1570, "assets/images/nopicture.gif",
		77, 52,
		"018361200 000", "BRAKE DISK, M4 MY&rsquo;10",
		"", "",
		"81.94", "0",
		"1", 1,
		"", "2",
		"", "pd237967799.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1571] = new Element(
		1571, "assets/images/nopicture.gif",
		77, 52,
		"018400500 000", "SPEEDOMETER ASSY, ALP4",
		"", "",
		"141.78", "0",
		"1", 1,
		"", "2",
		"", "pd-1814523203.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1572] = new Element(
		1572, "assets/images/nopicture.gif",
		77, 52,
		"018400530 000", "SPEEDOMETER ASSY, M4",
		"", "",
		"141.78", "0",
		"1", 1,
		"", "2",
		"", "pd706743091.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1573] = new Element(
		1573, "assets/images/nopicture.gif",
		77, 52,
		"018400540 052", "SUPPORT, INSTRUMENT PANEL M4",
		"", "",
		"6.32", "0",
		"1", 1,
		"", "2",
		"", "pd141906073.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1574] = new Element(
		1574, "assets/images/nopicture.gif",
		77, 52,
		"018410010 005", "HALL SENSOR HOLDER",
		"", "",
		"3.77", "0",
		"1", 1,
		"", "2",
		"", "pd1691544687.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1575] = new Element(
		1575, "assets/images/nopicture.gif",
		77, 52,
		"018421000 059", "REAR WHEEL, M4 MY&rsquo;10",
		"", "",
		"603.47", "0",
		"1", 1,
		"", "2",
		"", "pd1445758005.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1576] = new Element(
		1576, "assets/images/nopicture.gif",
		77, 52,
		"018421100 000", "REAR SPACER",
		"", "",
		"19.28", "0",
		"1", 1,
		"", "2",
		"", "pd1241790827.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1577] = new Element(
		1577, "assets/images/nopicture.gif",
		77, 52,
		"018421200 000", "REAR SPACER",
		"", "",
		"19.28", "0",
		"1", 1,
		"", "2",
		"", "pd-42006127.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1578] = new Element(
		1578, "assets/images/nopicture.gif",
		77, 52,
		"018421300 000", "REAR SPROCKET, Z.42 5/8 X 1/4 M",
		"", "",
		"69.07", "0",
		"1", 1,
		"", "2",
		"", "pd-1039127001.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1579] = new Element(
		1579, "assets/images/nopicture.gif",
		77, 52,
		"018430008 056", "DECALS SET,ALP4  MY&rsquo;10 -X BLUE",
		"", "",
		"23.04", "0",
		"1", 1,
		"", "2",
		"", "pd244531562.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1580] = new Element(
		1580, "assets/images/nopicture.gif",
		77, 52,
		"018430008 098", "DECALS SET, ALP 4.0 MY&rsquo;10 FOR W",
		"", "",
		"22.87", "0",
		"1", 1,
		"", "2",
		"", "pd1939045549.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1581] = new Element(
		1581, "assets/images/nopicture.gif",
		77, 52,
		"018430200 059", "FRONT FAIRING, M4 MY&rsquo;11 -BLACK-",
		"", "",
		"53.38", "0",
		"1", 1,
		"", "2",
		"", "pd1500432035.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1582] = new Element(
		1582, "assets/images/nopicture.gif",
		77, 52,
		"018450058 000", "HEADLIGHT KIT, ALP/MOTARD 4.0",
		"", "",
		"105.64", "0",
		"1", 1,
		"", "2",
		"", "pd-1269797464.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1583] = new Element(
		1583, "assets/images/nopicture.gif",
		77, 52,
		"020100008 000", "CDI RR 4T MY&rsquo;10, 400CC",
		"", "",
		"197.74", "0",
		"1", 1,
		"", "2",
		"", "pd-933149531.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1584] = new Element(
		1584, "assets/images/nopicture.gif",
		77, 52,
		"020101008 000", "CDI RR 4T MY&rsquo;10, 450CC",
		"", "",
		"197.74", "0",
		"1", 1,
		"", "2",
		"", "pd-2056605861.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1585] = new Element(
		1585, "assets/images/nopicture.gif",
		77, 52,
		"020102008 000", "CDI RR 4T MY&rsquo;10, 520CC",
		"", "",
		"197.74", "0",
		"1", 1,
		"", "2",
		"", "pd689189121.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1586] = new Element(
		1586, "assets/images/nopicture.gif",
		77, 52,
		"020103008 000", "CDI RR 4T MY&rsquo;10, 350CC",
		"", "",
		"318.14", "0",
		"1", 1,
		"", "2",
		"", "pd638728585.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1587] = new Element(
		1587, "assets/images/nopicture.gif",
		77, 52,
		"020310330 000", "FUEL TANK FRONT PAD RR 4T MY&rsquo;10",
		"", "",
		"4.34", "0",
		"1", 1,
		"", "2",
		"", "pd-774853610.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1588] = new Element(
		1588, "assets/images/nopicture.gif",
		77, 52,
		"020310340 000", "TANK PAD FRONT ADHESIVE",
		"", "",
		"0.25", "0",
		"1", 1,
		"", "2",
		"", "pd-578198761.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1589] = new Element(
		1589, "assets/images/nopicture.gif",
		77, 52,
		"020310350 000", "TANK PAD REAR ADHESIVE",
		"", "",
		"2.08", "0",
		"1", 1,
		"", "2",
		"", "pd-1147831523.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1590] = new Element(
		1590, "assets/images/nopicture.gif",
		77, 52,
		"020310370 000", "FUEL TANK PAD RR 4T MY&rsquo;10",
		"", "",
		"18.24", "0",
		"1", 1,
		"", "2",
		"", "pd-1229125580.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1591] = new Element(
		1591, "assets/images/nopicture.gif",
		77, 52,
		"020310390 000", "FRONT FORK RING, RR 4T MY&rsquo;10",
		"", "",
		"7", "0",
		"1", 1,
		"", "2",
		"", "pd2133031298.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1592] = new Element(
		1592, "assets/images/nopicture.gif",
		77, 52,
		"020310440 000", "RH CYLINDER HEAD CONNECTION",
		"", "",
		"25.91", "0",
		"1", 1,
		"", "2",
		"", "pd-1137654912.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1593] = new Element(
		1593, "assets/images/nopicture.gif",
		77, 52,
		"020310450 000", "LH CYLINDER HEAD CONNECTION",
		"", "",
		"25.91", "0",
		"1", 1,
		"", "2",
		"", "pd1459443118.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1594] = new Element(
		1594, "assets/images/nopicture.gif",
		77, 52,
		"020311008 053", "RED FRAME, RR 4T MY&rsquo;11",
		"", "",
		"817.99", "0",
		"1", 1,
		"", "2",
		"", "pd665136012.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1595] = new Element(
		1595, "assets/images/nopicture.gif",
		77, 52,
		"020311440 000", "RH CYLINDER HEAD CONNECTION",
		"", "",
		"23.82", "0",
		"1", 1,
		"", "2",
		"", "pd-672153889.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1596] = new Element(
		1596, "assets/images/nopicture.gif",
		77, 52,
		"020311450 000", "LH CYLINDER HEAD CONNECTION",
		"", "",
		"23.82", "0",
		"1", 1,
		"", "2",
		"", "pd1421958181.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1597] = new Element(
		1597, "assets/images/nopicture.gif",
		77, 52,
		"020320000 059", "RH ROD MACHINED, SUBFRAME RR 4T",
		"", "",
		"77.24", "0",
		"1", 1,
		"", "2",
		"", "pd631418010.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1598] = new Element(
		1598, "assets/images/nopicture.gif",
		77, 52,
		"020320010 059", "LH ROD MACHINED, SUBFRAME RR 4T",
		"", "",
		"69.38", "0",
		"1", 1,
		"", "2",
		"", "pd2133101656.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1599] = new Element(
		1599, "assets/images/nopicture.gif",
		77, 52,
		"020320021 059", "TOP SUBFRAME RR 4T MY&rsquo;10",
		"", "",
		"51.41", "0",
		"1", 1,
		"", "2",
		"", "pd2077665862.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1600] = new Element(
		1600, "assets/images/nopicture.gif",
		77, 52,
		"020320030 000", "FRONT BUSH, SUBFRAME RR 4T MY&rsquo;1",
		"", "",
		"2.61", "0",
		"1", 1,
		"", "2",
		"", "pd-2074742300.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1601] = new Element(
		1601, "assets/images/nopicture.gif",
		77, 52,
		"020320040 000", "TOP BUSH SUBFRAME RR4T MY&rsquo;10",
		"", "",
		"2.21", "0",
		"1", 1,
		"", "2",
		"", "pd709311154.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1602] = new Element(
		1602, "assets/images/nopicture.gif",
		77, 52,
		"020320070 000", "LINK PLUG RR4T MY&rsquo;10",
		"", "",
		"0.74", "0",
		"1", 1,
		"", "2",
		"", "pd1305028656.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1603] = new Element(
		1603, "assets/images/nopicture.gif",
		77, 52,
		"020320100 005", "SEAT LOCK FIXING PLATE",
		"", "",
		"14.28", "0",
		"1", 1,
		"", "2",
		"", "pd-1413936674.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1604] = new Element(
		1604, "assets/images/nopicture.gif",
		77, 52,
		"020320110 005", "SEAT LOCK RETAINING PLATE",
		"", "",
		"3.8", "0",
		"1", 1,
		"", "2",
		"", "pd-318588100.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1605] = new Element(
		1605, "assets/images/nopicture.gif",
		77, 52,
		"020320138 000", "SEAT LOCK FIXING BUTTON CPL.",
		"", "",
		"8.27", "0",
		"1", 1,
		"", "2",
		"", "pd-369916982.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1606] = new Element(
		1606, "assets/images/nopicture.gif",
		77, 52,
		"020320160 000", "SEAT LOCK BUTTON SPRING",
		"", "",
		"0.65", "0",
		"1", 1,
		"", "2",
		"", "pd-314050808.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1607] = new Element(
		1607, "assets/images/nopicture.gif",
		77, 52,
		"020320200 000", "RR 4T MY&rsquo;10 ENGINE PLATE PROTEC",
		"", "",
		"113.53", "0",
		"1", 1,
		"", "2",
		"", "pd-1989356426.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1608] = new Element(
		1608, "assets/images/nopicture.gif",
		77, 52,
		"020320260 000", "SPRING, STAND",
		"", "",
		"1.61", "0",
		"1", 1,
		"", "2",
		"", "pd-1221924972.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1609] = new Element(
		1609, "assets/images/nopicture.gif",
		77, 52,
		"020321000 059", "RH ROD MACHINED, SUBFRAME RR 4T",
		"", "",
		"53.1", "0",
		"1", 1,
		"", "2",
		"", "pd-1548315941.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1610] = new Element(
		1610, "assets/images/nopicture.gif",
		77, 52,
		"020321010 059", "LH ROD MACHINED, SUBFRAME RR 4T",
		"", "",
		"53.1", "0",
		"1", 1,
		"", "2",
		"", "pd-1662992255.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1611] = new Element(
		1611, "assets/images/nopicture.gif",
		77, 52,
		"020321021 059", "TOP SUBFRAME RR 4T MY&rsquo;10",
		"", "",
		"51.18", "0",
		"1", 1,
		"", "2",
		"", "pd-1481250846.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1612] = new Element(
		1612, "assets/images/nopicture.gif",
		77, 52,
		"020321120 000", "SEAT LOCK SPECIAL RIVET",
		"", "",
		"1.79", "0",
		"1", 1,
		"", "2",
		"", "pd-1529456416.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1613] = new Element(
		1613, "assets/images/nopicture.gif",
		77, 52,
		"020330000 000", "RR 4T MY&rsquo;10 SWINGING ARM -MACHI",
		"", "",
		"498.54", "0",
		"1", 1,
		"", "2",
		"", "pd1117563539.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1614] = new Element(
		1614, "assets/images/nopicture.gif",
		77, 52,
		"020330010 000", "SWINGINGARM BUSH, RR 4T MY&rsquo;10",
		"", "",
		"5.32", "0",
		"1", 1,
		"", "2",
		"", "pd716472057.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1615] = new Element(
		1615, "assets/images/nopicture.gif",
		77, 52,
		"020330150 000", "CHAIN SLIDE, RR 4T MY&rsquo;10",
		"", "",
		"13.66", "0",
		"1", 1,
		"", "2",
		"", "pd-1197053426.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1616] = new Element(
		1616, "assets/images/nopicture.gif",
		77, 52,
		"020330150 059", "CHAIN PART",
		"", "",
		"13.66", "0",
		"1", 1,
		"", "2",
		"", "pd1394202348.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1617] = new Element(
		1617, "assets/images/nopicture.gif",
		77, 52,
		"020330200 000", "RELAY ARM MACHINED",
		"", "",
		"55.43", "0",
		"1", 1,
		"", "2",
		"", "pd-1175240241.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1618] = new Element(
		1618, "assets/images/nopicture.gif",
		77, 52,
		"020330208 000", "RELAY ARM ASSY",
		"", "",
		"172.25", "0",
		"1", 1,
		"", "2",
		"", "pd-297220358.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1619] = new Element(
		1619, "assets/images/nopicture.gif",
		77, 52,
		"020330300 000", "CONNECTING ROD",
		"", "",
		"45.25", "0",
		"1", 1,
		"", "2",
		"", "pd1271814293.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1620] = new Element(
		1620, "assets/images/nopicture.gif",
		77, 52,
		"020330308 000", "CONNECTING ROD ASSY",
		"", "",
		"73.02", "0",
		"1", 1,
		"", "2",
		"", "pd-1256217397.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1621] = new Element(
		1621, "assets/images/nopicture.gif",
		77, 52,
		"020330310 000", "SPACER, CONNECTING ROD",
		"", "",
		"16.35", "0",
		"1", 1,
		"", "2",
		"", "pd-1859525647.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1622] = new Element(
		1622, "assets/images/nopicture.gif",
		77, 52,
		"020330320 000", "SPECIAL SCREW M12 X 1.25 X 124",
		"", "",
		"10.26", "0",
		"1", 1,
		"", "2",
		"", "pd2067115448.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1623] = new Element(
		1623, "assets/images/nopicture.gif",
		77, 52,
		"020330400 000", "SHOCK ABSORBER, RR 4T MY&rsquo;10",
		"", "",
		"678.58", "0",
		"1", 1,
		"", "2",
		"", "pd737574551.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1624] = new Element(
		1624, "assets/images/nopicture.gif",
		77, 52,
		"020331400 000", "SHOCK ABSORBER, RR 4T MY&rsquo;10",
		"", "",
		"678.58", "0",
		"1", 1,
		"", "2",
		"", "pd-1145827449.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1625] = new Element(
		1625, "assets/images/nopicture.gif",
		77, 52,
		"020331410 000", "RR 4T MY&rsquo;10 SHOCK ABSORBER PAD",
		"", "",
		"24.49", "0",
		"1", 1,
		"", "2",
		"", "pd-767163747.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1626] = new Element(
		1626, "assets/images/nopicture.gif",
		77, 52,
		"020331420 000", "RR 4T MY&rsquo;10 SHOCK ABS LOWER CON",
		"", "",
		"100.12", "0",
		"1", 1,
		"", "2",
		"", "pd1466859027.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1627] = new Element(
		1627, "assets/images/nopicture.gif",
		77, 52,
		"020340008 000", "FRONT FORK, D.45 RR4T MY&rsquo;10 COM",
		"", "",
		"1669.56", "0",
		"1", 1,
		"", "2",
		"", "pd974372109.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1628] = new Element(
		1628, "assets/images/nopicture.gif",
		77, 52,
		"020340018 053", "LOWER YOKE, RR 4T MY&rsquo;10",
		"", "",
		"291.91", "0",
		"1", 1,
		"", "2",
		"", "pd1468410534.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1629] = new Element(
		1629, "assets/images/nopicture.gif",
		77, 52,
		"020340020 053", "UPPER YOKE, RR 4T MY&rsquo;10",
		"", "",
		"267.75", "0",
		"1", 1,
		"", "2",
		"", "pd1634134340.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1630] = new Element(
		1630, "assets/images/nopicture.gif",
		77, 52,
		"020340040 000", "FRONT FORK 20X1,5 NUT RR 4T MY&rsquo;",
		"", "",
		"18.74", "0",
		"1", 1,
		"", "2",
		"", "pd-2110226823.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1631] = new Element(
		1631, "assets/images/nopicture.gif",
		77, 52,
		"020340058 000", "SCREW M4X6 + OR 2015",
		"", "",
		"0.49", "0",
		"1", 1,
		"", "2",
		"", "pd-1584234222.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1632] = new Element(
		1632, "assets/images/nopicture.gif",
		77, 52,
		"020340060 000", "OR 2015 (D3.69 S1.78)",
		"", "",
		"0.18", "0",
		"1", 1,
		"", "2",
		"", "pd-1540139632.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1633] = new Element(
		1633, "assets/images/nopicture.gif",
		77, 52,
		"020340078 000", "FORK PLUG ASSY, FORK D.45 RR 4T",
		"", "",
		"64.03", "0",
		"1", 1,
		"", "2",
		"", "pd146701827.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1634] = new Element(
		1634, "assets/images/nopicture.gif",
		77, 52,
		"020340080 000", "OR 146 (D41.28 S3.53)",
		"", "",
		"0.13", "0",
		"1", 1,
		"", "2",
		"", "pd-1297789617.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1635] = new Element(
		1635, "assets/images/nopicture.gif",
		77, 52,
		"020340108 059", "COMPLETE LEFT FORK LEG, RR 4T M",
		"", "",
		"720.4", "0",
		"1", 1,
		"", "2",
		"", "pd1007505429.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1636] = new Element(
		1636, "assets/images/nopicture.gif",
		77, 52,
		"020340120 000", "UPPER BUSH, FORK RR 4T MY&rsquo;10",
		"", "",
		"5", "0",
		"1", 1,
		"", "2",
		"", "pd672691774.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1637] = new Element(
		1637, "assets/images/nopicture.gif",
		77, 52,
		"020340130 000", "RETAINING CUP FORK D.45 RR 4T M",
		"", "",
		"9", "0",
		"1", 1,
		"", "2",
		"", "pd-639276981.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1638] = new Element(
		1638, "assets/images/nopicture.gif",
		77, 52,
		"020340140 000", "STOP RING, FORK RR 4T MY&rsquo;10",
		"", "",
		"2.14", "0",
		"1", 1,
		"", "2",
		"", "pd2072204145.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1639] = new Element(
		1639, "assets/images/nopicture.gif",
		77, 52,
		"020340150 000", "SLIDING RING, FORK RR 4T MY&rsquo;10",
		"", "",
		"3.43", "0",
		"1", 1,
		"", "2",
		"", "pd1526270727.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1640] = new Element(
		1640, "assets/images/nopicture.gif",
		77, 52,
		"020340160 000", "K 0,45 SPRING, FORK RR 4T MY&rsquo;10",
		"", "",
		"40.4", "0",
		"1", 1,
		"", "2",
		"", "pd-126517604.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1641] = new Element(
		1641, "assets/images/nopicture.gif",
		77, 52,
		"020340178 000", "FORK LEG COMPLETE VALVE RR 4T M",
		"", "",
		"68.14", "0",
		"1", 1,
		"", "2",
		"", "pd-790682483.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1642] = new Element(
		1642, "assets/images/nopicture.gif",
		77, 52,
		"020340180 000", "OR 6-298 (23,5X1,0) NBR",
		"", "",
		"2.81", "0",
		"1", 1,
		"", "2",
		"", "pd-1071286742.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1643] = new Element(
		1643, "assets/images/nopicture.gif",
		77, 52,
		"020340190 000", "OR 2100 (D25.1 S1.78)",
		"", "",
		"0.54", "0",
		"1", 1,
		"", "2",
		"", "pd505983080.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1644] = new Element(
		1644, "assets/images/nopicture.gif",
		77, 52,
		"020340208 000", "RR 4T MY&rsquo;10 ROD ASSY D.45",
		"", "",
		"398.13", "0",
		"1", 1,
		"", "2",
		"", "pd1775611094.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1645] = new Element(
		1645, "assets/images/nopicture.gif",
		77, 52,
		"020340210 000", "RR 4T MY&rsquo;10 ROD ASSU + STUD BOL",
		"", "",
		"55.55", "0",
		"1", 1,
		"", "2",
		"", "pd435484404.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1646] = new Element(
		1646, "assets/images/nopicture.gif",
		77, 52,
		"020340220 000", "RR 4T MY&rsquo;10 FORK PISTON RING",
		"", "",
		"10.71", "0",
		"1", 1,
		"", "2",
		"", "pd178663811.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1647] = new Element(
		1647, "assets/images/nopicture.gif",
		77, 52,
		"020340230 000", "RR 4T MY &rsquo;10 ROD ASSY D5",
		"", "",
		"35.7", "0",
		"1", 1,
		"", "2",
		"", "pd-1564008599.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1648] = new Element(
		1648, "assets/images/nopicture.gif",
		77, 52,
		"020340240 000", "FORK SPRING TUBE 40X3X33 FORK R",
		"", "",
		"6.43", "0",
		"1", 1,
		"", "2",
		"", "pd-1981114433.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1649] = new Element(
		1649, "assets/images/nopicture.gif",
		77, 52,
		"020340250 000", "SCREW TEF M8X30 SPECIAL",
		"", "",
		"2.68", "0",
		"1", 1,
		"", "2",
		"", "pd-1512087547.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1650] = new Element(
		1650, "assets/images/nopicture.gif",
		77, 52,
		"020340268 000", "SEAL KIT, FORK RR 4T MY&rsquo;10",
		"", "",
		"57.26", "0",
		"1", 1,
		"", "2",
		"", "pd1995946427.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1651] = new Element(
		1651, "assets/images/nopicture.gif",
		77, 52,
		"020340278 000", "BUSHINGS KIT, FORK RR 4T MY&rsquo;10",
		"", "",
		"57.26", "0",
		"1", 1,
		"", "2",
		"", "pd-433733023.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1652] = new Element(
		1652, "assets/images/nopicture.gif",
		77, 52,
		"020340290 000", "SCREW TEF M8X35 SPECIAL",
		"", "",
		"0.93", "0",
		"1", 1,
		"", "2",
		"", "pd-725612990.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1653] = new Element(
		1653, "assets/images/nopicture.gif",
		77, 52,
		"020340308 059", "COMPLETE RIGHT FORK LEG RR 4T M",
		"", "",
		"720.4", "0",
		"1", 1,
		"", "2",
		"", "pd-2047945865.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1654] = new Element(
		1654, "assets/images/nopicture.gif",
		77, 52,
		"020340508 000", "KIT LAM.S.0,1 FORK D.45 RR 4T M",
		"", "",
		"188.86", "0",
		"1", 1,
		"", "2",
		"", "pd-32644483.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1655] = new Element(
		1655, "assets/images/nopicture.gif",
		77, 52,
		"020340518 000", "KIT LAM.S.0,15 FORK D.45 RR 4T",
		"", "",
		"188.86", "0",
		"1", 1,
		"", "2",
		"", "pd2103238899.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1656] = new Element(
		1656, "assets/images/nopicture.gif",
		77, 52,
		"020340528 000", "KIT LAM.S.0,2 FORK D.45 RR 4T M",
		"", "",
		"188.86", "0",
		"1", 1,
		"", "2",
		"", "pd-681763751.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1657] = new Element(
		1657, "assets/images/nopicture.gif",
		77, 52,
		"020340538 000", "KIT LAM.S.0,3 FORK D.45 RR 4T M",
		"", "",
		"144.74", "0",
		"1", 1,
		"", "2",
		"", "pd-763978193.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1658] = new Element(
		1658, "assets/images/nopicture.gif",
		77, 52,
		"020341008 000", "FRONT FORK, D.50 RR4T MY&rsquo;11 COM",
		"", "",
		"1713.73", "0",
		"1", 1,
		"", "2",
		"", "pd2138775104.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1659] = new Element(
		1659, "assets/images/nopicture.gif",
		77, 52,
		"020341018 004", "LOWER YOKE, RR 4T D.50 MY&rsquo;11",
		"", "",
		"178.93", "0",
		"1", 1,
		"", "2",
		"", "pd1663184494.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1660] = new Element(
		1660, "assets/images/nopicture.gif",
		77, 52,
		"020341020 004", "UPPER YOKE, D.50 RR 4T MY&rsquo;11",
		"", "",
		"143.66", "0",
		"1", 1,
		"", "2",
		"", "pd1482732108.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1661] = new Element(
		1661, "assets/images/nopicture.gif",
		77, 52,
		"020341078 000", "FORK PLUG ASSY, FORK D.50 RR 4T",
		"", "",
		"79.48", "0",
		"1", 1,
		"", "2",
		"", "pd399282522.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1662] = new Element(
		1662, "assets/images/nopicture.gif",
		77, 52,
		"020341080 000", "O-RING",
		"", "",
		"0.9", "0",
		"1", 1,
		"", "2",
		"", "pd-199491816.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1663] = new Element(
		1663, "assets/images/nopicture.gif",
		77, 52,
		"020341090 000", "DUST SEAL WITH INSERT., FORK RR",
		"", "",
		"37.5", "0",
		"1", 1,
		"", "2",
		"", "pd-1697752314.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1664] = new Element(
		1664, "assets/images/nopicture.gif",
		77, 52,
		"020341108 000", "LH COMPL. FORK TUBE RR 4T MY&rsquo;11",
		"", "",
		"308.65", "0",
		"1", 1,
		"", "2",
		"", "pd-1400893276.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1665] = new Element(
		1665, "assets/images/nopicture.gif",
		77, 52,
		"020341108 059", "COMPLETE LEFT FORK LEG, RR 4T D",
		"", "",
		"720.35", "0",
		"1", 1,
		"", "2",
		"", "pd1088518002.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1666] = new Element(
		1666, "assets/images/nopicture.gif",
		77, 52,
		"020341150 000", "SLIDING RING, FORK RR 4T MY&rsquo;11",
		"", "",
		"5.71", "0",
		"1", 1,
		"", "2",
		"", "pd1795732208.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1667] = new Element(
		1667, "assets/images/nopicture.gif",
		77, 52,
		"020341160 000", "K 0,45 SPRING, FORK RR 4T MY&rsquo;11",
		"", "",
		"38.64", "0",
		"1", 1,
		"", "2",
		"", "pd-1047096674.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1668] = new Element(
		1668, "assets/images/nopicture.gif",
		77, 52,
		"020341178 000", "FORK LEG COMPLETE VALVE RR 4T M",
		"", "",
		"68.23", "0",
		"1", 1,
		"", "2",
		"", "pd2061922812.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1669] = new Element(
		1669, "assets/images/nopicture.gif",
		77, 52,
		"020341208 000", "RR 4T MY&rsquo;11 ROD ASSY D.50",
		"", "",
		"323.68", "0",
		"1", 1,
		"", "2",
		"", "pd138483850.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1670] = new Element(
		1670, "assets/images/nopicture.gif",
		77, 52,
		"020341220 000", "RR 4T MY&rsquo;11 FORK PISTON RING",
		"", "",
		"2.73", "0",
		"1", 1,
		"", "2",
		"", "pd-204826168.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1671] = new Element(
		1671, "assets/images/nopicture.gif",
		77, 52,
		"020341230 000", "RR 4T MY&rsquo;10 ROD ASSY",
		"", "",
		"35.7", "0",
		"1", 1,
		"", "2",
		"", "pd1268987190.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1672] = new Element(
		1672, "assets/images/nopicture.gif",
		77, 52,
		"020341240 000", "FORK SPRING TUBE 46X3,5X43 FORK",
		"", "",
		"6.58", "0",
		"1", 1,
		"", "2",
		"", "pd-915196332.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1673] = new Element(
		1673, "assets/images/nopicture.gif",
		77, 52,
		"020341268 000", "SEAL KIT, FORK D.50 RR 4T MY&rsquo;11",
		"", "",
		"57.26", "0",
		"1", 1,
		"", "2",
		"", "pd298224629.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1674] = new Element(
		1674, "assets/images/nopicture.gif",
		77, 52,
		"020341278 000", "BUSHINGS KIT, FORK RR 4T MY&rsquo;11",
		"", "",
		"143.13", "0",
		"1", 1,
		"", "2",
		"", "pd1628735275.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1675] = new Element(
		1675, "assets/images/nopicture.gif",
		77, 52,
		"020341308 000", "RH COMPL. FORK TUBE RR 4T MY&rsquo;11",
		"", "",
		"289.36", "0",
		"1", 1,
		"", "2",
		"", "pd1482282146.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1676] = new Element(
		1676, "assets/images/nopicture.gif",
		77, 52,
		"020341308 059", "COMPLETE RIGHT FORK LEG D.50 RR",
		"", "",
		"720.35", "0",
		"1", 1,
		"", "2",
		"", "pd1274483616.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1677] = new Element(
		1677, "assets/images/nopicture.gif",
		77, 52,
		"020350010 000", "RR4T &rsquo;10 CLUTCH TUBE",
		"", "",
		"38.44", "0",
		"1", 1,
		"", "2",
		"", "pd-1665515543.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1678] = new Element(
		1678, "assets/images/nopicture.gif",
		77, 52,
		"020350100 000", "TRASMISSION, GAS (ASSY) RR 4T M",
		"", "",
		"33.4", "0",
		"1", 1,
		"", "2",
		"", "pd-1173839154.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1679] = new Element(
		1679, "assets/images/nopicture.gif",
		77, 52,
		"020360018 000", "BRAKE LEVER ASSY RR 4T MY&rsquo;10",
		"", "",
		"45.5", "0",
		"1", 1,
		"", "2",
		"", "pd-670782401.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1680] = new Element(
		1680, "assets/images/nopicture.gif",
		77, 52,
		"020360110 000", "REAR BRAKE CALIPER BRACKET ASSY",
		"", "",
		"26.22", "0",
		"1", 1,
		"", "2",
		"", "pd-1529758292.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1681] = new Element(
		1681, "assets/images/nopicture.gif",
		77, 52,
		"020360120 000", "FRONT BRAKE CALIPER BRACKET ASS",
		"", "",
		"22.21", "0",
		"1", 1,
		"", "2",
		"", "pd793119674.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1682] = new Element(
		1682, "assets/images/nopicture.gif",
		77, 52,
		"020370010 000", "EXHAUST PIPE RR 4T MY&rsquo;10",
		"", "",
		"116.2", "0",
		"1", 1,
		"", "2",
		"", "pd-1666219912.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1683] = new Element(
		1683, "assets/images/nopicture.gif",
		77, 52,
		"020370018 000", "EXHAUST TUBE RR 4T MY&rsquo;10 -CPL.-",
		"", "",
		"126.38", "0",
		"1", 1,
		"", "2",
		"", "pd-1513518971.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1684] = new Element(
		1684, "assets/images/nopicture.gif",
		77, 52,
		"020370030 000", "BRACKET EXHAUST FLANGE VEM",
		"", "",
		"17.66", "0",
		"1", 1,
		"", "2",
		"", "pd-1807271066.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1685] = new Element(
		1685, "assets/images/nopicture.gif",
		77, 52,
		"020370040 000", "SEALING EXHAUST FLANGE",
		"", "",
		"1.5", "0",
		"1", 1,
		"", "2",
		"", "pd-1241946108.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1686] = new Element(
		1686, "assets/images/nopicture.gif",
		77, 52,
		"020370080 000", "CATHALYST, RR 4T MY&rsquo;10",
		"", "",
		"125.51", "0",
		"1", 1,
		"", "2",
		"", "pd810294738.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1687] = new Element(
		1687, "assets/images/nopicture.gif",
		77, 52,
		"020370208 000", "MUFFLER ASSY RR4T MY&rsquo;10 -CPL.-",
		"", "",
		"509.43", "0",
		"1", 1,
		"", "2",
		"", "pd1747009616.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1688] = new Element(
		1688, "assets/images/nopicture.gif",
		77, 52,
		"020370210 000", "INNER COMPONENT, SILENCER RR 4T",
		"", "",
		"39.52", "0",
		"1", 1,
		"", "2",
		"", "pd-553642437.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1689] = new Element(
		1689, "assets/images/nopicture.gif",
		77, 52,
		"020370220 000", "SOUNDPROOFING FELT FOR MUFFLER",
		"", "",
		"9.49", "0",
		"1", 1,
		"", "2",
		"", "pd298540798.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1690] = new Element(
		1690, "assets/images/nopicture.gif",
		77, 52,
		"020370238 000", "CLAMP WHIT RIVET SILENCER RR 4T",
		"", "",
		"13.95", "0",
		"1", 1,
		"", "2",
		"", "pd128816476.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1691] = new Element(
		1691, "assets/images/nopicture.gif",
		77, 52,
		"020371010 000", "EXHAUST PIPE RR 4T 350CC",
		"", "",
		"107.96", "0",
		"1", 1,
		"", "2",
		"", "pd-347665071.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1692] = new Element(
		1692, "assets/images/nopicture.gif",
		77, 52,
		"020371018 000", "EXHAUST TUBE RR 4T 350CC -CPL.-",
		"", "",
		"107.96", "0",
		"1", 1,
		"", "2",
		"", "pd2070861799.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1693] = new Element(
		1693, "assets/images/nopicture.gif",
		77, 52,
		"020372208 000", "MUFFLER ASSY RR4T FACTORY MY&rsquo;11",
		"", "",
		"511.7", "0",
		"1", 1,
		"", "2",
		"", "pd1178680429.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1694] = new Element(
		1694, "assets/images/nopicture.gif",
		77, 52,
		"020380008 059", "FILTER BOX CLOSING WALL ASSY",
		"", "",
		"22.85", "0",
		"1", 1,
		"", "2",
		"", "pd-446797078.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1695] = new Element(
		1695, "assets/images/nopicture.gif",
		77, 52,
		"020380010 000", "CLIP, FOR PRESSURE PLUG",
		"", "",
		"0.37", "0",
		"1", 1,
		"", "2",
		"", "pd-1492798680.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1696] = new Element(
		1696, "assets/images/nopicture.gif",
		77, 52,
		"020380020 000", "RR 4T MY&rsquo;10 FILTERBOX SPRING BR",
		"", "",
		"3.92", "0",
		"1", 1,
		"", "2",
		"", "pd1774678753.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1697] = new Element(
		1697, "assets/images/nopicture.gif",
		77, 52,
		"020380200 000", "FILTER BOX MANIFOLD RR 4T MY&rsquo;10",
		"", "",
		"18.47", "0",
		"1", 1,
		"", "2",
		"", "pd765065207.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1698] = new Element(
		1698, "assets/images/nopicture.gif",
		77, 52,
		"020380210 000", "FILTER SPRING RR4T MY&rsquo;10",
		"", "",
		"6.72", "0",
		"1", 1,
		"", "2",
		"", "pd1680841469.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1699] = new Element(
		1699, "assets/images/nopicture.gif",
		77, 52,
		"020380300 000", "INTAKE MAINFOLD RR4T MY&rsquo;10",
		"", "",
		"12.66", "0",
		"1", 1,
		"", "2",
		"", "pd1936551318.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1700] = new Element(
		1700, "assets/images/nopicture.gif",
		77, 52,
		"020390000 000", "RIGHT RADIATOR, RR 4T MY&rsquo;10",
		"", "",
		"164.2", "0",
		"1", 1,
		"", "2",
		"", "pd1923566963.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1701] = new Element(
		1701, "assets/images/nopicture.gif",
		77, 52,
		"020390010 000", "ENGINE-THERMOSTAT HOSE",
		"", "",
		"4.31", "0",
		"1", 1,
		"", "2",
		"", "pd-1068540711.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1702] = new Element(
		1702, "assets/images/nopicture.gif",
		77, 52,
		"020390020 000", "LOWER THERMOSTAT HOSE",
		"", "",
		"5.79", "0",
		"1", 1,
		"", "2",
		"", "pd1613025967.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1703] = new Element(
		1703, "assets/images/nopicture.gif",
		77, 52,
		"020390030 000", "LH RADIATOR-THERMOSTAT HOSE",
		"", "",
		"6.97", "0",
		"1", 1,
		"", "2",
		"", "pd-941501323.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1704] = new Element(
		1704, "assets/images/nopicture.gif",
		77, 52,
		"020390040 000", "RH RADIATOR-THERMOSTAT HOSE",
		"", "",
		"9", "0",
		"1", 1,
		"", "2",
		"", "pd-1422720085.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1705] = new Element(
		1705, "assets/images/nopicture.gif",
		77, 52,
		"020390050 000", "LH LOWER RADIATOR HOSE",
		"", "",
		"8.24", "0",
		"1", 1,
		"", "2",
		"", "pd1399578065.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1706] = new Element(
		1706, "assets/images/nopicture.gif",
		77, 52,
		"020390060 000", "RH LOWER RADIATOR HOSE",
		"", "",
		"6.83", "0",
		"1", 1,
		"", "2",
		"", "pd-472769433.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1707] = new Element(
		1707, "assets/images/nopicture.gif",
		77, 52,
		"020390070 000", "WATER PUMP HOSE",
		"", "",
		"7.44", "0",
		"1", 1,
		"", "2",
		"", "pd-665316115.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1708] = new Element(
		1708, "assets/images/nopicture.gif",
		77, 52,
		"020390080 000", "SELF LOCKING CLAMP, 24",
		"", "",
		"3.98", "0",
		"1", 1,
		"", "2",
		"", "pd543037667.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1709] = new Element(
		1709, "assets/images/nopicture.gif",
		77, 52,
		"020390090 000", "SELF LOCKING CLAMP, 17",
		"", "",
		"3.67", "0",
		"1", 1,
		"", "2",
		"", "pd1892865481.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1710] = new Element(
		1710, "assets/images/nopicture.gif",
		77, 52,
		"020390100 000", "LEFT RADIATOR, RR 4T MY&rsquo;10",
		"", "",
		"182.64", "0",
		"1", 1,
		"", "2",
		"", "pd952808735.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1711] = new Element(
		1711, "assets/images/nopicture.gif",
		77, 52,
		"020390110 000", "THERMOSTAT CASE, RR 4T MY&rsquo;10",
		"", "",
		"4.02", "0",
		"1", 1,
		"", "2",
		"", "pd-67263052.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1712] = new Element(
		1712, "assets/images/nopicture.gif",
		77, 52,
		"020390120 000", "THERMOSTAT COVER, RR 4T MY&rsquo;10",
		"", "",
		"4.02", "0",
		"1", 1,
		"", "2",
		"", "pd-1331997950.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1713] = new Element(
		1713, "assets/images/nopicture.gif",
		77, 52,
		"020390130 000", "TERMOSTAT RR 4T MY&rsquo;10",
		"", "",
		"19.96", "0",
		"1", 1,
		"", "2",
		"", "pd-110740379.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1714] = new Element(
		1714, "assets/images/nopicture.gif",
		77, 52,
		"020390138 000", "THERMOSTAT VEM -CPL.-",
		"", "",
		"32.28", "0",
		"1", 1,
		"", "2",
		"", "pd371341568.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1715] = new Element(
		1715, "assets/images/nopicture.gif",
		77, 52,
		"020390140 000", "PLASTIC SCREW M4X16",
		"", "",
		"0.08", "0",
		"1", 1,
		"", "2",
		"", "pd217171758.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1716] = new Element(
		1716, "assets/images/nopicture.gif",
		77, 52,
		"020390150 000", "RR 4T MY&rsquo;10 RADIATOR OVERPRESSU",
		"", "",
		"5.58", "0",
		"1", 1,
		"", "2",
		"", "pd228551963.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1717] = new Element(
		1717, "assets/images/nopicture.gif",
		77, 52,
		"020390160 000", "RADIATOR HOSE",
		"", "",
		"10.17", "0",
		"1", 1,
		"", "2",
		"", "pd542516417.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1718] = new Element(
		1718, "assets/images/nopicture.gif",
		77, 52,
		"020390200 000", "RADIATOR HOSE",
		"", "",
		"5.31", "0",
		"1", 1,
		"", "2",
		"", "pd1908734220.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1719] = new Element(
		1719, "assets/images/nopicture.gif",
		77, 52,
		"020391100 000", "LEFT RADIATOR, RR 4T MY&rsquo;11",
		"", "",
		"177.32", "0",
		"1", 1,
		"", "2",
		"", "pd1842165274.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1720] = new Element(
		1720, "assets/images/nopicture.gif",
		77, 52,
		"020391110 000", "WATER TANK COVER",
		"", "",
		"11.94", "0",
		"1", 1,
		"", "2",
		"", "pd-1278725672.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1721] = new Element(
		1721, "assets/images/nopicture.gif",
		77, 52,
		"020400000 000", "RR4T MY&rsquo;10 CENTRAL WIRING SYSTE",
		"", "",
		"86.84", "0",
		"1", 1,
		"", "2",
		"", "pd-24589370.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1722] = new Element(
		1722, "assets/images/nopicture.gif",
		77, 52,
		"020400010 000", "RR4T MY&rsquo;10 REAR WIRING SYSTEM",
		"", "",
		"21.76", "0",
		"1", 1,
		"", "2",
		"", "pd380861655.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1723] = new Element(
		1723, "assets/images/nopicture.gif",
		77, 52,
		"020400020 000", "RR4T MY&rsquo;10 GROUND WIRING SYSTEM",
		"", "",
		"6.06", "0",
		"1", 1,
		"", "2",
		"", "pd45886173.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1724] = new Element(
		1724, "assets/images/nopicture.gif",
		77, 52,
		"020400030 000", "BATTERY ELECTRIC SYSTEM RR4T MY",
		"", "",
		"8.33", "0",
		"1", 1,
		"", "2",
		"", "pd900325459.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1725] = new Element(
		1725, "assets/images/nopicture.gif",
		77, 52,
		"020400040 000", "STARTER SYSTEM RR4T MY&rsquo;10",
		"", "",
		"8.65", "0",
		"1", 1,
		"", "2",
		"", "pd-1285313863.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1726] = new Element(
		1726, "assets/images/nopicture.gif",
		77, 52,
		"020400050 000", "CDI ELECTRIC SYSTEM RR4T MY&rsquo;10",
		"", "",
		"52.79", "0",
		"1", 1,
		"", "2",
		"", "pd-2010295409.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1727] = new Element(
		1727, "assets/images/nopicture.gif",
		77, 52,
		"020400070 000", "THERMOSTAT",
		"", "",
		"12.5", "0",
		"1", 1,
		"", "2",
		"", "pd439021412.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1728] = new Element(
		1728, "assets/images/nopicture.gif",
		77, 52,
		"020400200 000", "NUMBER PLATE LIGHT MY&rsquo;10",
		"", "",
		"9.42", "0",
		"1", 1,
		"", "2",
		"", "pd1301908579.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1729] = new Element(
		1729, "assets/images/nopicture.gif",
		77, 52,
		"020400308 000", "REAR LIGHT",
		"", "",
		"21.84", "0",
		"1", 1,
		"", "2",
		"", "pd-1008045006.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1730] = new Element(
		1730, "assets/images/nopicture.gif",
		77, 52,
		"020400400 000", "HORN RR4T MY&rsquo;10",
		"", "",
		"11.28", "0",
		"1", 1,
		"", "2",
		"", "pd-949632939.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1731] = new Element(
		1731, "assets/images/nopicture.gif",
		77, 52,
		"020401000 000", ".",
		"", "",
		"86.84", "0",
		"1", 1,
		"", "2",
		"", "pd1834286512.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1732] = new Element(
		1732, "assets/images/nopicture.gif",
		77, 52,
		"020401010 000", "ELECTRIC EQUIPMENT",
		"", "",
		"26.05", "0",
		"1", 1,
		"", "2",
		"", "pd693728585.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1733] = new Element(
		1733, "assets/images/nopicture.gif",
		77, 52,
		"020404000 000", "RR4T MY&rsquo;11 CENTRAL WIRING SYSTE",
		"", "",
		"87.83", "0",
		"1", 1,
		"", "2",
		"", "pd-1638999202.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1734] = new Element(
		1734, "assets/images/nopicture.gif",
		77, 52,
		"020404100 000", "SPEEDOMETER, RR 4T MY&rsquo;11",
		"", "",
		"147.17", "0",
		"1", 1,
		"", "2",
		"", "pd-31266628.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1735] = new Element(
		1735, "assets/images/nopicture.gif",
		77, 52,
		"020404110 000", "SPEEDOMETER BRACKET RR4T MY&rsquo;11",
		"", "",
		"5.44", "0",
		"1", 1,
		"", "2",
		"", "pd647327050.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1736] = new Element(
		1736, "assets/images/nopicture.gif",
		77, 52,
		"020410000 059", "FRONT WHEEL, RR 4T MY&rsquo;10",
		"", "",
		"545.22", "0",
		"1", 1,
		"", "2",
		"", "pd-55444344.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1737] = new Element(
		1737, "assets/images/nopicture.gif",
		77, 52,
		"020410030 000", "SEAL 30.47.9",
		"", "",
		"12.18", "0",
		"1", 1,
		"", "2",
		"", "pd-1242803573.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1738] = new Element(
		1738, "assets/images/nopicture.gif",
		77, 52,
		"020410040 000", "HUB SPACER, RR 4T MY&rsquo;10",
		"", "",
		"3.96", "0",
		"1", 1,
		"", "2",
		"", "pd-997898319.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1739] = new Element(
		1739, "assets/images/nopicture.gif",
		77, 52,
		"020410050 000", "FRONT WHEEL SPINDLE, RR 4T MY&rsquo;1",
		"", "",
		"37", "0",
		"1", 1,
		"", "2",
		"", "pd-1848879626.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1740] = new Element(
		1740, "assets/images/nopicture.gif",
		77, 52,
		"020410060 000", "PLUG, FRONT WHEEL SPINDLE RR 4T",
		"", "",
		"7.32", "0",
		"1", 1,
		"", "2",
		"", "pd871122196.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1741] = new Element(
		1741, "assets/images/nopicture.gif",
		77, 52,
		"020410070 000", "PLUG, FRONT WHEEL SPINDLE RR 4T",
		"", "",
		"6.07", "0",
		"1", 1,
		"", "2",
		"", "pd-2019786398.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1742] = new Element(
		1742, "assets/images/nopicture.gif",
		77, 52,
		"020410100 000", "PLUG, FRONT WHEEL SPINDLE RR 4T",
		"", "",
		"2.73", "0",
		"1", 1,
		"", "2",
		"", "pd-162195129.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1743] = new Element(
		1743, "assets/images/nopicture.gif",
		77, 52,
		"020410110 000", "FRONT SPOKE",
		"", "",
		"1.44", "0",
		"1", 1,
		"", "2",
		"", "pd-170619296.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1744] = new Element(
		1744, "assets/images/nopicture.gif",
		77, 52,
		"020410120 000", "&quot;FRONT SPOKE 240 &quot;&quot;ALPINA&quot;&quot;&quot;",
		"", "",
		"1.45", "0",
		"1", 1,
		"", "2",
		"", "pd-1753900146.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1745] = new Element(
		1745, "assets/images/nopicture.gif",
		77, 52,
		"020410130 000", "&quot;FRONT NIPPLES &quot;&quot;ALPINA&quot;&quot;&quot;",
		"", "",
		"1.58", "0",
		"1", 1,
		"", "2",
		"", "pd-997038996.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1746] = new Element(
		1746, "assets/images/nopicture.gif",
		77, 52,
		"020411040 000", "HUB SPACER, RR 4T MY&rsquo;11",
		"", "",
		"4.81", "0",
		"1", 1,
		"", "2",
		"", "pd-1199959942.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1747] = new Element(
		1747, "assets/images/nopicture.gif",
		77, 52,
		"020411100 000", "PLUG",
		"", "",
		"3.43", "0",
		"1", 1,
		"", "2",
		"", "pd71177016.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1748] = new Element(
		1748, "assets/images/nopicture.gif",
		77, 52,
		"020420018 000", "REAR HUB, RR4T MY&rsquo;11",
		"", "",
		"239.59", "0",
		"1", 1,
		"", "2",
		"", "pd2821158.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1749] = new Element(
		1749, "assets/images/nopicture.gif",
		77, 52,
		"020420020 000", "LH HUB SPACER, RR 4T MY&rsquo;10",
		"", "",
		"8.77", "0",
		"1", 1,
		"", "2",
		"", "pd-1049844028.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1750] = new Element(
		1750, "assets/images/nopicture.gif",
		77, 52,
		"020420030 000", "RH HUB SPACER, RR 4T MY&rsquo;10",
		"", "",
		"7.27", "0",
		"1", 1,
		"", "2",
		"", "pd223009997.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1751] = new Element(
		1751, "assets/images/nopicture.gif",
		77, 52,
		"020420040 000", "SEAL 25.47.12",
		"", "",
		"9.66", "0",
		"1", 1,
		"", "2",
		"", "pd-904813629.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1752] = new Element(
		1752, "assets/images/nopicture.gif",
		77, 52,
		"020420050 000", "INNER SPACER",
		"", "",
		"10.44", "0",
		"1", 1,
		"", "2",
		"", "pd1354784927.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1753] = new Element(
		1753, "assets/images/nopicture.gif",
		77, 52,
		"020420110 000", "REAR SPOKE",
		"", "",
		"1.45", "0",
		"1", 1,
		"", "2",
		"", "pd2077522578.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1754] = new Element(
		1754, "assets/images/nopicture.gif",
		77, 52,
		"020420120 000", "REAR SPOKE",
		"", "",
		"1.45", "0",
		"1", 1,
		"", "2",
		"", "pd1484516112.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1755] = new Element(
		1755, "assets/images/nopicture.gif",
		77, 52,
		"020420130 000", "NIPPLES",
		"", "",
		"1.58", "0",
		"1", 1,
		"", "2",
		"", "pd-658962498.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1756] = new Element(
		1756, "assets/images/nopicture.gif",
		77, 52,
		"020422000 059", "REAR WHEEL, RR4T 350/400CC MY&rsquo;1",
		"", "",
		"673.22", "0",
		"1", 1,
		"", "2",
		"", "pd-720251931.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1757] = new Element(
		1757, "assets/images/nopicture.gif",
		77, 52,
		"020422100 059", "REAR WHEEL, RR4T 450/520CC MY&rsquo;1",
		"", "",
		"913.38", "0",
		"1", 1,
		"", "2",
		"", "pd1243795611.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1758] = new Element(
		1758, "assets/images/nopicture.gif",
		77, 52,
		"020430001 059", "FUEL TANK, RR4T MY&rsquo;10 *BLACK*",
		"", "",
		"155.21", "0",
		"1", 1,
		"", "2",
		"", "pd-1495213143.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1759] = new Element(
		1759, "assets/images/nopicture.gif",
		77, 52,
		"020430011 059", "FUEL TANK BRACKET, RR4T MY&rsquo;10 *",
		"", "",
		"2.42", "0",
		"1", 1,
		"", "2",
		"", "pd-1986106340.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1760] = new Element(
		1760, "assets/images/nopicture.gif",
		77, 52,
		"020430020 000", "SPACER, FUEL TANK RR 4T MY&rsquo;10",
		"", "",
		"3.79", "0",
		"1", 1,
		"", "2",
		"", "pd608415231.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1761] = new Element(
		1761, "assets/images/nopicture.gif",
		77, 52,
		"020430030 000", "EXHAUST TUBE PLUG/VALVE RR 4T M",
		"", "",
		"0.93", "0",
		"1", 1,
		"", "2",
		"", "pd1191059370.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1762] = new Element(
		1762, "assets/images/nopicture.gif",
		77, 52,
		"020430040 000", "EXHAUST TUBE VALVE/MANIFOLD RR4",
		"", "",
		"0.56", "0",
		"1", 1,
		"", "2",
		"", "pd1168602600.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1763] = new Element(
		1763, "assets/images/nopicture.gif",
		77, 52,
		"020430050 000", "GASOLINE TUBE TANK/CARBUR. RR4T",
		"", "",
		"1.61", "0",
		"1", 1,
		"", "2",
		"", "pd-1017647530.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1764] = new Element(
		1764, "assets/images/nopicture.gif",
		77, 52,
		"020430070 000", "PETCOCK, RR 4T MY&rsquo;10",
		"", "",
		"27.45", "0",
		"1", 1,
		"", "2",
		"", "pd1066865780.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1765] = new Element(
		1765, "assets/images/nopicture.gif",
		77, 52,
		"020430080 000", "COVER SEAT, RR 4T MY&rsquo;10",
		"", "",
		"33.32", "0",
		"1", 1,
		"", "2",
		"", "pd-1284153406.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1766] = new Element(
		1766, "assets/images/nopicture.gif",
		77, 52,
		"020430101 051", "TANK PANEL, RH RR4T MY&rsquo;10 *WHIT",
		"", "",
		"16.42", "0",
		"1", 1,
		"", "2",
		"", "pd-189833147.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1767] = new Element(
		1767, "assets/images/nopicture.gif",
		77, 52,
		"020430111 051", "TANK PANEL, LH RR4T MY&rsquo;10 *WHIT",
		"", "",
		"16.42", "0",
		"1", 1,
		"", "2",
		"", "pd2139141115.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1768] = new Element(
		1768, "assets/images/nopicture.gif",
		77, 52,
		"020430120 000", "SPACER",
		"", "",
		"2.71", "0",
		"1", 1,
		"", "2",
		"", "pd1169704609.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1769] = new Element(
		1769, "assets/images/nopicture.gif",
		77, 52,
		"020430200 097", "SADDLE, RR4T MY&rsquo;10 *RED*",
		"", "",
		"131.34", "0",
		"1", 1,
		"", "2",
		"", "pd445510071.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1770] = new Element(
		1770, "assets/images/nopicture.gif",
		77, 52,
		"020430301 051", "REAR FENDER, RR4T MY&rsquo;10 *WHITE*",
		"", "",
		"29.99", "0",
		"1", 1,
		"", "2",
		"", "pd249959360.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1771] = new Element(
		1771, "assets/images/nopicture.gif",
		77, 52,
		"020430311 059", "PLATE SUPPORT RRT4 MY&rsquo;10 *BLACK",
		"", "",
		"22.66", "0",
		"1", 1,
		"", "2",
		"", "pd-810341699.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1772] = new Element(
		1772, "assets/images/nopicture.gif",
		77, 52,
		"020430321 059", "FILTERBOX LH SIDE PANEL,RR4T MY",
		"", "",
		"21.42", "0",
		"1", 1,
		"", "2",
		"", "pd1490838323.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1773] = new Element(
		1773, "assets/images/nopicture.gif",
		77, 52,
		"020430331 059", "FILTERBOX RH SIDE PANEL,RR4T MY",
		"", "",
		"16.7", "0",
		"1", 1,
		"", "2",
		"", "pd1944676505.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1774] = new Element(
		1774, "assets/images/nopicture.gif",
		77, 52,
		"020430341 059", "BLACK PLATE SUPPORT RR4T MY&rsquo;10",
		"", "",
		"22.09", "0",
		"1", 1,
		"", "2",
		"", "pd46449775.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1775] = new Element(
		1775, "assets/images/nopicture.gif",
		77, 52,
		"020430350 000", "RR4T MY&rsquo;10 RH SIDE HEAT PROTECT",
		"", "",
		"2.76", "0",
		"1", 1,
		"", "2",
		"", "pd1775377461.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1776] = new Element(
		1776, "assets/images/nopicture.gif",
		77, 52,
		"020430401 051", "FRONT MUDGUARD, RR4T MY&rsquo;10 *WHI",
		"", "",
		"21.75", "0",
		"1", 1,
		"", "2",
		"", "pd-511471253.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1777] = new Element(
		1777, "assets/images/nopicture.gif",
		77, 52,
		"020430411 059", "FRONT MUDGUARD BRACKET RR4T MY&rsquo;",
		"", "",
		"8.66", "0",
		"1", 1,
		"", "2",
		"", "pd-1418845807.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1778] = new Element(
		1778, "assets/images/nopicture.gif",
		77, 52,
		"020430501 052", "HEADLIGHT MASK, RR4T MY&rsquo;10 *BLA",
		"", "",
		"13.61", "0",
		"1", 1,
		"", "2",
		"", "pd-218823129.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1779] = new Element(
		1779, "assets/images/nopicture.gif",
		77, 52,
		"020430601 059", "LH FRAME PROTECTION, RR MY&rsquo;10",
		"", "",
		"8.43", "0",
		"1", 1,
		"", "2",
		"", "pd-2127814674.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1780] = new Element(
		1780, "assets/images/nopicture.gif",
		77, 52,
		"020430611 059", "RH FRAME PROTECTION, RR 4T MY&rsquo;1",
		"", "",
		"8.43", "0",
		"1", 1,
		"", "2",
		"", "pd1855061964.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1781] = new Element(
		1781, "assets/images/nopicture.gif",
		77, 52,
		"020430621 059", "SPROCKET COVER, RR4T MY&rsquo;10 *BLA",
		"", "",
		"13.01", "0",
		"1", 1,
		"", "2",
		"", "pd-1083960147.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1782] = new Element(
		1782, "assets/images/nopicture.gif",
		77, 52,
		"020430630 000", "RR4T MY&rsquo;10/11 RH CARBON FRAME P",
		"", "",
		"80.33", "0",
		"1", 1,
		"", "2",
		"", "pd1260794945.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1783] = new Element(
		1783, "assets/images/nopicture.gif",
		77, 52,
		"020430640 000", "RR4T MY&rsquo;10/11 LH CARBON FRAME P",
		"", "",
		"48.59", "0",
		"1", 1,
		"", "2",
		"", "pd298850391.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1784] = new Element(
		1784, "assets/images/nopicture.gif",
		77, 52,
		"020430708 000", "RR 4T MY&rsquo;10 DECALS KIT",
		"", "",
		"61.59", "0",
		"1", 1,
		"", "2",
		"", "pd823205539.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1785] = new Element(
		1785, "assets/images/nopicture.gif",
		77, 52,
		"020430718 000", "DECALS KIT REAR FENDER RR4T MY&rsquo;",
		"", "",
		"19.99", "0",
		"1", 1,
		"", "2",
		"", "pd-1604019494.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1786] = new Element(
		1786, "assets/images/nopicture.gif",
		77, 52,
		"020430728 000", "DECALS KIT RH FILTER BOX SIDE R",
		"", "",
		"5", "0",
		"1", 1,
		"", "2",
		"", "pd-454482792.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1787] = new Element(
		1787, "assets/images/nopicture.gif",
		77, 52,
		"020430730 000", "DECAL RH CONVEYOR RR4T MY&rsquo;10",
		"", "",
		"10", "0",
		"1", 1,
		"", "2",
		"", "pd734395526.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1788] = new Element(
		1788, "assets/images/nopicture.gif",
		77, 52,
		"020430748 000", "DECAL KIT FORK PROTECTION MY&rsquo;10",
		"", "",
		"4.17", "0",
		"1", 1,
		"", "2",
		"", "pd-535392732.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1789] = new Element(
		1789, "assets/images/nopicture.gif",
		77, 52,
		"020430758 000", "DECAL KIT FRONT FENDER RR4T MY&rsquo;",
		"", "",
		"3.33", "0",
		"1", 1,
		"", "2",
		"", "pd69349618.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1790] = new Element(
		1790, "assets/images/nopicture.gif",
		77, 52,
		"020430760 000", "LH CONVEYOR DECAL RR4T MY&rsquo;10",
		"", "",
		"10", "0",
		"1", 1,
		"", "2",
		"", "pd325978224.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1791] = new Element(
		1791, "assets/images/nopicture.gif",
		77, 52,
		"020430778 000", "DECAL KIT LH FILTER BOX SIDE RR",
		"", "",
		"5", "0",
		"1", 1,
		"", "2",
		"", "pd513926174.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1792] = new Element(
		1792, "assets/images/nopicture.gif",
		77, 52,
		"020430790 000", "HEADLIGHT HOLDER DECAL RR4T MY&rsquo;",
		"", "",
		"5", "0",
		"1", 1,
		"", "2",
		"", "pd-1585963140.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1793] = new Element(
		1793, "assets/images/nopicture.gif",
		77, 52,
		"020431200 097", "SADDLE, RR4T MY&rsquo;11",
		"", "",
		"132.09", "0",
		"1", 1,
		"", "2",
		"", "pd1840284170.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1794] = new Element(
		1794, "assets/images/nopicture.gif",
		77, 52,
		"020431708 000", "RR 4T MY&rsquo;11 DECALS KIT",
		"", "",
		"92.47", "0",
		"1", 1,
		"", "2",
		"", "pd1589518152.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1795] = new Element(
		1795, "assets/images/nopicture.gif",
		77, 52,
		"020431718 000", "DECALS KIT REAR FENDER RR4T MY&rsquo;",
		"", "",
		"21.42", "0",
		"1", 1,
		"", "2",
		"", "pd-475516323.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1796] = new Element(
		1796, "assets/images/nopicture.gif",
		77, 52,
		"020431728 000", "DECALS KIT RH FILTER BOX SIDE R",
		"", "",
		"9.52", "0",
		"1", 1,
		"", "2",
		"", "pd488846291.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1797] = new Element(
		1797, "assets/images/nopicture.gif",
		77, 52,
		"020431730 000", "DECAL RH CONVEYOR RR4T MY&rsquo;11",
		"", "",
		"8.33", "0",
		"1", 1,
		"", "2",
		"", "pd1272654393.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1798] = new Element(
		1798, "assets/images/nopicture.gif",
		77, 52,
		"020431748 000", "DECAL KIT FORK PROTECTION MY&rsquo;11",
		"", "",
		"17.85", "0",
		"1", 1,
		"", "2",
		"", "pd-1996562673.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1799] = new Element(
		1799, "assets/images/nopicture.gif",
		77, 52,
		"020431758 000", "DECAL KIT FRONT FENDER RR4T MY&rsquo;",
		"", "",
		"21.42", "0",
		"1", 1,
		"", "2",
		"", "pd181417941.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1800] = new Element(
		1800, "assets/images/nopicture.gif",
		77, 52,
		"020431760 000", "LH CONVEYOR DECAL RR4T MY&rsquo;11",
		"", "",
		"8.33", "0",
		"1", 1,
		"", "2",
		"", "pd533304843.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1801] = new Element(
		1801, "assets/images/nopicture.gif",
		77, 52,
		"020431778 000", "DECAL KIT LH FILTER BOX SIDE RR",
		"", "",
		"9.52", "0",
		"1", 1,
		"", "2",
		"", "pd1740781361.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1802] = new Element(
		1802, "assets/images/nopicture.gif",
		77, 52,
		"020440028 000", "TOOLS BAG, RR 4T MY&rsquo;10",
		"", "",
		"42.83", "0",
		"1", 1,
		"", "2",
		"", "pd1021071753.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1803] = new Element(
		1803, "assets/images/nopicture.gif",
		77, 52,
		"020440030 000", "ALLEN KEY 6 MM",
		"", "",
		"0.82", "0",
		"1", 1,
		"", "2",
		"", "pd-1457023265.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1804] = new Element(
		1804, "assets/images/nopicture.gif",
		77, 52,
		"020440040 000", "BUSH 8MM",
		"", "",
		"2.11", "0",
		"1", 1,
		"", "2",
		"", "pd-1868024138.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1805] = new Element(
		1805, "assets/images/nopicture.gif",
		77, 52,
		"020440070 000", "RR 4T MY&rsquo;11 INSTRUCTION MANUAL",
		"", "",
		"3.99", "0",
		"1", 1,
		"", "2",
		"", "pd961942484.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1806] = new Element(
		1806, "assets/images/nopicture.gif",
		77, 52,
		"020440100 000", "RR 4T MY&rsquo;10 SPARKPLUG KEY",
		"", "",
		"7.2", "0",
		"1", 1,
		"", "2",
		"", "pd622654501.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1807] = new Element(
		1807, "assets/images/nopicture.gif",
		77, 52,
		"020441028 000", "TOOLS BAG, RR 4T MY&rsquo;11",
		"", "",
		"39.98", "0",
		"1", 1,
		"", "2",
		"", "pd910028322.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1808] = new Element(
		1808, "assets/images/nopicture.gif",
		77, 52,
		"021010008 000", "CRANKCASE ASSY 125CC LC",
		"", "",
		"624.63", "0",
		"1", 1,
		"", "2",
		"", "pd-1859204832.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1809] = new Element(
		1809, "assets/images/nopicture.gif",
		77, 52,
		"021010010 000", "125CC LC PIN DOWEL D.10X14",
		"", "",
		"0.99", "0",
		"1", 1,
		"", "2",
		"", "pd-575843250.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1810] = new Element(
		1810, "assets/images/nopicture.gif",
		77, 52,
		"021010020 000", "BOLT FLG M6X55 125CC LC",
		"", "",
		"1.7", "0",
		"1", 1,
		"", "2",
		"", "pd219925292.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1811] = new Element(
		1811, "assets/images/nopicture.gif",
		77, 52,
		"021010030 000", "BOLT FLG M6X40 125CC LC",
		"", "",
		"1.32", "0",
		"1", 1,
		"", "2",
		"", "pd1654969658.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1812] = new Element(
		1812, "assets/images/nopicture.gif",
		77, 52,
		"021010040 000", "BOLT FLG M6X70 125CC LC",
		"", "",
		"2.17", "0",
		"1", 1,
		"", "2",
		"", "pd950101496.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1813] = new Element(
		1813, "assets/images/nopicture.gif",
		77, 52,
		"021010050 000", "BOLT FLG M6X45 125CC LC",
		"", "",
		"1.46", "0",
		"1", 1,
		"", "2",
		"", "pd2146540774.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1814] = new Element(
		1814, "assets/images/nopicture.gif",
		77, 52,
		"021010060 000", "CLUTCH COVER 125CC LC",
		"", "",
		"127.57", "0",
		"1", 1,
		"", "2",
		"", "pd-159341180.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1815] = new Element(
		1815, "assets/images/nopicture.gif",
		77, 52,
		"021010070 000", "CLUTCH COVER GASKET 125CC LC",
		"", "",
		"10.84", "0",
		"1", 1,
		"", "2",
		"", "pd887854930.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1816] = new Element(
		1816, "assets/images/nopicture.gif",
		77, 52,
		"021010080 000", "SEAL OIL, 18X10X6 125CC LC",
		"", "",
		"11.54", "0",
		"1", 1,
		"", "2",
		"", "pd-1811720752.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1817] = new Element(
		1817, "assets/images/nopicture.gif",
		77, 52,
		"021010090 000", "PLUG, OIL LEVEL 125CC LC",
		"", "",
		"1.7", "0",
		"1", 1,
		"", "2",
		"", "pd-1180602242.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1818] = new Element(
		1818, "assets/images/nopicture.gif",
		77, 52,
		"021010100 000", "BOLT FLG M6X50",
		"", "",
		"1.46", "0",
		"1", 1,
		"", "2",
		"", "pd151519964.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1819] = new Element(
		1819, "assets/images/nopicture.gif",
		77, 52,
		"021010110 000", "BOLT FLG M6X90 125CC LC",
		"", "",
		"2.4", "0",
		"1", 1,
		"", "2",
		"", "pd1841599594.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1820] = new Element(
		1820, "assets/images/nopicture.gif",
		77, 52,
		"021010120 000", "FLYWHEEL COVER GASKET 125CC LC",
		"", "",
		"4.71", "0",
		"1", 1,
		"", "2",
		"", "pd-1328678744.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1821] = new Element(
		1821, "assets/images/nopicture.gif",
		77, 52,
		"021010130 000", "FLYWHEEL COVER 125CC LC",
		"", "",
		"107.68", "0",
		"1", 1,
		"", "2",
		"", "pd-296407274.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1822] = new Element(
		1822, "assets/images/nopicture.gif",
		77, 52,
		"021010140 000", "O-RING D.13,5X2,2 125CC LC",
		"", "",
		"0.61", "0",
		"1", 1,
		"", "2",
		"", "pd-2021571788.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1823] = new Element(
		1823, "assets/images/nopicture.gif",
		77, 52,
		"021010150 000", "GREY PLUG1 FLYWHEEL COVER 125CC",
		"", "",
		"3.63", "0",
		"1", 1,
		"", "2",
		"", "pd1041116290.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1824] = new Element(
		1824, "assets/images/nopicture.gif",
		77, 52,
		"021010160 000", "O-RING D.31,5X2,4 125 LC",
		"", "",
		"0.43", "0",
		"1", 1,
		"", "2",
		"", "pd-1199133056.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1825] = new Element(
		1825, "assets/images/nopicture.gif",
		77, 52,
		"021010170 000", "GREY PLUG2 FLYWHEEL COVER 125CC",
		"", "",
		"4.57", "0",
		"1", 1,
		"", "2",
		"", "pd-1399768914.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1826] = new Element(
		1826, "assets/images/nopicture.gif",
		77, 52,
		"021020000 000", "PISTON RING SET D.52 125CC LC",
		"", "",
		"97.08", "0",
		"1", 1,
		"", "2",
		"", "pd159893132.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1827] = new Element(
		1827, "assets/images/nopicture.gif",
		77, 52,
		"021020010 000", "PISTON, D.52 125 LC",
		"", "",
		"82.37", "0",
		"1", 1,
		"", "2",
		"", "pd-397230182.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1828] = new Element(
		1828, "assets/images/nopicture.gif",
		77, 52,
		"021020020 000", "PISTON PIN D.14X37 125 LC",
		"", "",
		"3.63", "0",
		"1", 1,
		"", "2",
		"", "pd1849612120.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1829] = new Element(
		1829, "assets/images/nopicture.gif",
		77, 52,
		"021020030 000", "CIRCLIP, D.14 125 LC",
		"", "",
		"0.89", "0",
		"1", 1,
		"", "2",
		"", "pd1732635974.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1830] = new Element(
		1830, "assets/images/nopicture.gif",
		77, 52,
		"021020040 000", "CRANK ASSY, 125 LC",
		"", "",
		"327.13", "0",
		"1", 1,
		"", "2",
		"", "pd-788337436.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1831] = new Element(
		1831, "assets/images/nopicture.gif",
		77, 52,
		"021020050 000", "KEY WOODRUFF D13X3X5 125 LC",
		"", "",
		"4.86", "0",
		"1", 1,
		"", "2",
		"", "pd306752946.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1832] = new Element(
		1832, "assets/images/nopicture.gif",
		77, 52,
		"021020060 000", "BEARING D.25X62X17 125 LC",
		"", "",
		"15.74", "0",
		"1", 1,
		"", "2",
		"", "pd-602680528.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1833] = new Element(
		1833, "assets/images/nopicture.gif",
		77, 52,
		"021020070 000", "GEAR DRIVE 125 LC",
		"", "",
		"60.65", "0",
		"1", 1,
		"", "2",
		"", "pd-548426530.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1834] = new Element(
		1834, "assets/images/nopicture.gif",
		77, 52,
		"021020080 000", "NUT HEX 125 LC",
		"", "",
		"3.01", "0",
		"1", 1,
		"", "2",
		"", "pd1336284732.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1835] = new Element(
		1835, "assets/images/nopicture.gif",
		77, 52,
		"021020090 000", "TONGUED WASHER 10,2X28X0,8 125",
		"", "",
		"1.23", "0",
		"1", 1,
		"", "2",
		"", "pd-967682358.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1836] = new Element(
		1836, "assets/images/nopicture.gif",
		77, 52,
		"021020100 000", "COUNTERSHAFT GEAR 125 LC",
		"", "",
		"60.74", "0",
		"1", 1,
		"", "2",
		"", "pd816775688.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1837] = new Element(
		1837, "assets/images/nopicture.gif",
		77, 52,
		"021020110 000", "SPACER FOR COUNTERSHAFT GEAR 12",
		"", "",
		"1.88", "0",
		"1", 1,
		"", "2",
		"", "pd1022809974.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1838] = new Element(
		1838, "assets/images/nopicture.gif",
		77, 52,
		"021020120 000", "BEARING D.35X15X11 125 LC",
		"", "",
		"36.71", "0",
		"1", 1,
		"", "2",
		"", "pd-596598124.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1839] = new Element(
		1839, "assets/images/nopicture.gif",
		77, 52,
		"021020130 000", "O-RING D.12,6X2,5 125 LC",
		"", "",
		"0.57", "0",
		"1", 1,
		"", "2",
		"", "pd620632802.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1840] = new Element(
		1840, "assets/images/nopicture.gif",
		77, 52,
		"021020140 000", "COUNTESHAFT GEAR KEY 5X5X6 125",
		"", "",
		"1.46", "0",
		"1", 1,
		"", "2",
		"", "pd-859454496.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1841] = new Element(
		1841, "assets/images/nopicture.gif",
		77, 52,
		"021020150 000", "COUNTESHAFT 125 LC",
		"", "",
		"50.05", "0",
		"1", 1,
		"", "2",
		"", "pd-646984434.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1842] = new Element(
		1842, "assets/images/nopicture.gif",
		77, 52,
		"021020160 000", "O-RING D.10,8X2,4",
		"", "",
		"0.38", "0",
		"1", 1,
		"", "2",
		"", "pd-1725042196.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1843] = new Element(
		1843, "assets/images/nopicture.gif",
		77, 52,
		"021020170 000", "BEARING D.40X17X12 125 LC",
		"", "",
		"33.32", "0",
		"1", 1,
		"", "2",
		"", "pd-964273670.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1844] = new Element(
		1844, "assets/images/nopicture.gif",
		77, 52,
		"021030000 000", "CLUTCH PLATE PRESSURE 125 LC",
		"", "",
		"13.01", "0",
		"1", 1,
		"", "2",
		"", "pd-2137425736.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1845] = new Element(
		1845, "assets/images/nopicture.gif",
		77, 52,
		"021030010 000", "CLUTCH PLATE 125 LC",
		"", "",
		"2.02", "0",
		"1", 1,
		"", "2",
		"", "pd-1202000474.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1846] = new Element(
		1846, "assets/images/nopicture.gif",
		77, 52,
		"021030020 000", "CLUTCH PULL ROD 125 LC",
		"", "",
		"5.8", "0",
		"1", 1,
		"", "2",
		"", "pd-2013961148.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1847] = new Element(
		1847, "assets/images/nopicture.gif",
		77, 52,
		"021030030 000", "CLUTCH SPRING 125 LC",
		"", "",
		"1.7", "0",
		"1", 1,
		"", "2",
		"", "pd-867077102.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1848] = new Element(
		1848, "assets/images/nopicture.gif",
		77, 52,
		"021030040 000", "SPRING CLUTCH SCREW 125 LC",
		"", "",
		"0.38", "0",
		"1", 1,
		"", "2",
		"", "pd-109608816.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1849] = new Element(
		1849, "assets/images/nopicture.gif",
		77, 52,
		"021030050 000", "CLTCH NUT 125 LC",
		"", "",
		"0.24", "0",
		"1", 1,
		"", "2",
		"", "pd-1320904386.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1850] = new Element(
		1850, "assets/images/nopicture.gif",
		77, 52,
		"021030060 000", "CLUTCH WASHER 125 LC",
		"", "",
		"0.43", "0",
		"1", 1,
		"", "2",
		"", "pd-794142308.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1851] = new Element(
		1851, "assets/images/nopicture.gif",
		77, 52,
		"021030070 000", "CLUTCH PLATE 125 LC",
		"", "",
		"6.64", "0",
		"1", 1,
		"", "2",
		"", "pd-1569601238.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1852] = new Element(
		1852, "assets/images/nopicture.gif",
		77, 52,
		"021030080 000", "CLUTCH PLATE 125 LC",
		"", "",
		"2.96", "0",
		"1", 1,
		"", "2",
		"", "pd1597586280.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1853] = new Element(
		1853, "assets/images/nopicture.gif",
		77, 52,
		"021030090 000", "CLUTCH PLATE 3 125 LC",
		"", "",
		"14.98", "0",
		"1", 1,
		"", "2",
		"", "pd1227173846.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1854] = new Element(
		1854, "assets/images/nopicture.gif",
		77, 52,
		"021030100 000", "CLUTCH PLATE 2 125 LC",
		"", "",
		"8.63", "0",
		"1", 1,
		"", "2",
		"", "pd914108916.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1855] = new Element(
		1855, "assets/images/nopicture.gif",
		77, 52,
		"021030110 000", "CLUTCH BELL DISK SPRING 125 LC",
		"", "",
		"5.09", "0",
		"1", 1,
		"", "2",
		"", "pd1898297666.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1856] = new Element(
		1856, "assets/images/nopicture.gif",
		77, 52,
		"021030120 000", "CLUTCH BELL WASHER 125 LC",
		"", "",
		"3.06", "0",
		"1", 1,
		"", "2",
		"", "pd566495552.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1857] = new Element(
		1857, "assets/images/nopicture.gif",
		77, 52,
		"021030130 000", "NUT, M14X1 H=8 125 LC",
		"", "",
		"10.13", "0",
		"1", 1,
		"", "2",
		"", "pd1004605806.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1858] = new Element(
		1858, "assets/images/nopicture.gif",
		77, 52,
		"021030140 000", "WASHER LOCK 125 LC",
		"", "",
		"0.89", "0",
		"1", 1,
		"", "2",
		"", "pd-1117369012.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1859] = new Element(
		1859, "assets/images/nopicture.gif",
		77, 52,
		"021030150 000", "BOSS CLUTCH 125 LC",
		"", "",
		"17.77", "0",
		"1", 1,
		"", "2",
		"", "pd1045931098.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1860] = new Element(
		1860, "assets/images/nopicture.gif",
		77, 52,
		"021030160 000", "BOSS CLUTCH LOWER WASHER 125 LC",
		"", "",
		"4.57", "0",
		"1", 1,
		"", "2",
		"", "pd-158774760.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1861] = new Element(
		1861, "assets/images/nopicture.gif",
		77, 52,
		"021030170 000", "CLUTCH BELL ASSY 125 LC",
		"", "",
		"181", "0",
		"1", 1,
		"", "2",
		"", "pd-1245143546.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1862] = new Element(
		1862, "assets/images/nopicture.gif",
		77, 52,
		"021030180 000", "CONICAL SPRING WASHER 125 LC",
		"", "",
		"5.65", "0",
		"1", 1,
		"", "2",
		"", "pd2142243748.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1863] = new Element(
		1863, "assets/images/nopicture.gif",
		77, 52,
		"021030190 000", "BALL, D.4,76 125 LC",
		"", "",
		"17.67", "0",
		"1", 1,
		"", "2",
		"", "pd-1088558478.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1864] = new Element(
		1864, "assets/images/nopicture.gif",
		77, 52,
		"021030200 000", "CLUTCH PUSH ROD WITH HEAD 125 L",
		"", "",
		"59.89", "0",
		"1", 1,
		"", "2",
		"", "pd101080560.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1865] = new Element(
		1865, "assets/images/nopicture.gif",
		77, 52,
		"021030210 000", "PUSH LEVER ASSY 125 LC",
		"", "",
		"174.83", "0",
		"1", 1,
		"", "2",
		"", "pd1024996766.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1866] = new Element(
		1866, "assets/images/nopicture.gif",
		77, 52,
		"021030220 000", "CLUTCH ROD RETURN SPRING 125 LC",
		"", "",
		"0.99", "0",
		"1", 1,
		"", "2",
		"", "pd-1284715268.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1867] = new Element(
		1867, "assets/images/nopicture.gif",
		77, 52,
		"021030230 000", "CIRCLIP D.20 125 LC",
		"", "",
		"0.14", "0",
		"1", 1,
		"", "2",
		"", "pd-650450038.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1868] = new Element(
		1868, "assets/images/nopicture.gif",
		77, 52,
		"021030240 000", "OIL SEAL D.18X12X5 125 LC",
		"", "",
		"9.42", "0",
		"1", 1,
		"", "2",
		"", "pd1229235400.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1869] = new Element(
		1869, "assets/images/nopicture.gif",
		77, 52,
		"021030250 000", "BEARING D.12X16X10 125 LC",
		"", "",
		"32.7", "0",
		"1", 1,
		"", "2",
		"", "pd1266169910.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1870] = new Element(
		1870, "assets/images/nopicture.gif",
		77, 52,
		"021030260 000", "KEY, FEATHER 5X5X33 125 LC",
		"", "",
		"8.44", "0",
		"1", 1,
		"", "2",
		"", "pd-537136812.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1871] = new Element(
		1871, "assets/images/nopicture.gif",
		77, 52,
		"021030270 000", "SPROCKET Z=24 125 LC",
		"", "",
		"55.94", "0",
		"1", 1,
		"", "2",
		"", "pd-727906398.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1872] = new Element(
		1872, "assets/images/nopicture.gif",
		77, 52,
		"021030280 000", "WASHER PLAIN 125 LC",
		"", "",
		"1.93", "0",
		"1", 1,
		"", "2",
		"", "pd391741088.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1873] = new Element(
		1873, "assets/images/nopicture.gif",
		77, 52,
		"021030290 000", "NUT M12X1 H=8 125 LC",
		"", "",
		"7.72", "0",
		"1", 1,
		"", "2",
		"", "pd-1753414194.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1874] = new Element(
		1874, "assets/images/nopicture.gif",
		77, 52,
		"021040000 000", "SEEGER RING FOR D.17 SHAFT 125",
		"", "",
		"0.14", "0",
		"1", 1,
		"", "2",
		"", "pd1133041836.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1875] = new Element(
		1875, "assets/images/nopicture.gif",
		77, 52,
		"021040010 000", "DRIVEN AXLE SPACER 125 LC",
		"", "",
		"2.64", "0",
		"1", 1,
		"", "2",
		"", "pd1021222586.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1876] = new Element(
		1876, "assets/images/nopicture.gif",
		77, 52,
		"021040020 000", "BEARING D.35X17X10 125 LC",
		"", "",
		"59.8", "0",
		"1", 1,
		"", "2",
		"", "pd-488223880.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1877] = new Element(
		1877, "assets/images/nopicture.gif",
		77, 52,
		"021040030 000", "DRIVEN AXLE WASHER PLAIN 125 LC",
		"", "",
		"0.61", "0",
		"1", 1,
		"", "2",
		"", "pd237436518.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1878] = new Element(
		1878, "assets/images/nopicture.gif",
		77, 52,
		"021040040 000", "1ST GEAR WHEEL 125 LC",
		"", "",
		"29.55", "0",
		"1", 1,
		"", "2",
		"", "pd1753932548.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1879] = new Element(
		1879, "assets/images/nopicture.gif",
		77, 52,
		"021040050 000", "COLLAR 125 LC",
		"", "",
		"9.04", "0",
		"1", 1,
		"", "2",
		"", "pd1925583058.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1880] = new Element(
		1880, "assets/images/nopicture.gif",
		77, 52,
		"021040060 000", "5TH GEAR WHEEL 125 LC",
		"", "",
		"16.78", "0",
		"1", 1,
		"", "2",
		"", "pd664300368.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1881] = new Element(
		1881, "assets/images/nopicture.gif",
		77, 52,
		"021040070 000", "SHAFT SEEGER RING 125 LC",
		"", "",
		"0.52", "0",
		"1", 1,
		"", "2",
		"", "pd2086830590.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1882] = new Element(
		1882, "assets/images/nopicture.gif",
		77, 52,
		"021040080 000", "DRIVEN AXLE WASHER 125 LC",
		"", "",
		"0.8", "0",
		"1", 1,
		"", "2",
		"", "pd-347770788.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1883] = new Element(
		1883, "assets/images/nopicture.gif",
		77, 52,
		"021040090 000", "4TH GEAR WHEEL 125 LC",
		"", "",
		"23.18", "0",
		"1", 1,
		"", "2",
		"", "pd-305807894.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1884] = new Element(
		1884, "assets/images/nopicture.gif",
		77, 52,
		"021040100 000", "3RD GEAR WHEEL 125 LC",
		"", "",
		"25.54", "0",
		"1", 1,
		"", "2",
		"", "pd-2018951640.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1885] = new Element(
		1885, "assets/images/nopicture.gif",
		77, 52,
		"021040110 000", "DRIVEN AXLE ASSY 125 LC",
		"", "",
		"36.62", "0",
		"1", 1,
		"", "2",
		"", "pd-393744234.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1886] = new Element(
		1886, "assets/images/nopicture.gif",
		77, 52,
		"021040120 000", "6TH GEAR WHEEL 125 LC",
		"", "",
		"20.31", "0",
		"1", 1,
		"", "2",
		"", "pd1866981556.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1887] = new Element(
		1887, "assets/images/nopicture.gif",
		77, 52,
		"021040130 000", "2ND GEAR WHEEL 125 LC",
		"", "",
		"28.08", "0",
		"1", 1,
		"", "2",
		"", "pd763102722.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1888] = new Element(
		1888, "assets/images/nopicture.gif",
		77, 52,
		"021040140 000", "DRIVEN AXLE WASHER 125 LC",
		"", "",
		"2.4", "0",
		"1", 1,
		"", "2",
		"", "pd425600000.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1889] = new Element(
		1889, "assets/images/nopicture.gif",
		77, 52,
		"021040150 000", "BEARING D.47X20X14 125 LC",
		"", "",
		"9.52", "0",
		"1", 1,
		"", "2",
		"", "pd-1680102866.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1890] = new Element(
		1890, "assets/images/nopicture.gif",
		77, 52,
		"021040160 000", "OIL SEAL D.20X35X5 125 LC",
		"", "",
		"13.05", "0",
		"1", 1,
		"", "2",
		"", "pd-991063028.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1891] = new Element(
		1891, "assets/images/nopicture.gif",
		77, 52,
		"021040170 000", "SPROCKET DRIVE Z=14 125 LC",
		"", "",
		"59.56", "0",
		"1", 1,
		"", "2",
		"", "pd1530087706.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1892] = new Element(
		1892, "assets/images/nopicture.gif",
		77, 52,
		"021040180 000", "SPROCKET HOLDER PLATE 125 LC",
		"", "",
		"1.37", "0",
		"1", 1,
		"", "2",
		"", "pd-460817192.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1893] = new Element(
		1893, "assets/images/nopicture.gif",
		77, 52,
		"021040190 000", "BOLT FLG M6X10 125 LC",
		"", "",
		"0.48", "0",
		"1", 1,
		"", "2",
		"", "pd-603058490.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1894] = new Element(
		1894, "assets/images/nopicture.gif",
		77, 52,
		"021040200 000", "BEARING D.35X15X11 125 LC",
		"", "",
		"48.21", "0",
		"1", 1,
		"", "2",
		"", "pd1054730852.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1895] = new Element(
		1895, "assets/images/nopicture.gif",
		77, 52,
		"021040210 000", "2ND GEAR PINION 125 LC",
		"", "",
		"15.22", "0",
		"1", 1,
		"", "2",
		"", "pd-1688082638.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1896] = new Element(
		1896, "assets/images/nopicture.gif",
		77, 52,
		"021040220 000", "6TH GEAR PINION 125 LC",
		"", "",
		"24.26", "0",
		"1", 1,
		"", "2",
		"", "pd-1878677328.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1897] = new Element(
		1897, "assets/images/nopicture.gif",
		77, 52,
		"021040230 000", "3RD GEAR PINION 125 LC",
		"", "",
		"30.73", "0",
		"1", 1,
		"", "2",
		"", "pd1421573726.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1898] = new Element(
		1898, "assets/images/nopicture.gif",
		77, 52,
		"021040240 000", "AXLE SEEGER X 20 125 LC",
		"", "",
		"0.52", "0",
		"1", 1,
		"", "2",
		"", "pd931939260.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1899] = new Element(
		1899, "assets/images/nopicture.gif",
		77, 52,
		"021040250 000", "PRIMARY AXLE WASHER 125 LC",
		"", "",
		"0.65", "0",
		"1", 1,
		"", "2",
		"", "pd254427210.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1900] = new Element(
		1900, "assets/images/nopicture.gif",
		77, 52,
		"021040260 000", "5TH GEAR PINION 125 LC",
		"", "",
		"23.99", "0",
		"1", 1,
		"", "2",
		"", "pd1061095304.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1901] = new Element(
		1901, "assets/images/nopicture.gif",
		77, 52,
		"021040270 000", "MAIN AXLE 125 LC",
		"", "",
		"36.85", "0",
		"1", 1,
		"", "2",
		"", "pd820795638.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1902] = new Element(
		1902, "assets/images/nopicture.gif",
		77, 52,
		"021040280 000", "BOLT HEX. SOCKET M6X12 125 LC",
		"", "",
		"3.87", "0",
		"1", 1,
		"", "2",
		"", "pd-961019884.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1903] = new Element(
		1903, "assets/images/nopicture.gif",
		77, 52,
		"021040290 000", "BEARING FIXATION PLATE 125 LC",
		"", "",
		"1.08", "0",
		"1", 1,
		"", "2",
		"", "pd-2049264542.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1904] = new Element(
		1904, "assets/images/nopicture.gif",
		77, 52,
		"021040300 000", "BEARING D.42X20X12 125 LC",
		"", "",
		"42.36", "0",
		"1", 1,
		"", "2",
		"", "pd-1616250528.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1905] = new Element(
		1905, "assets/images/nopicture.gif",
		77, 52,
		"021050008 000", "GEAR CHANGE LEVER CPL",
		"", "",
		"28.2", "0",
		"1", 1,
		"", "2",
		"", "pd-459997554.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1906] = new Element(
		1906, "assets/images/nopicture.gif",
		77, 52,
		"021050010 000", "FORK DRIVE PIN SPRING 125 LC",
		"", "",
		"0.24", "0",
		"1", 1,
		"", "2",
		"", "pd-1494450324.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1907] = new Element(
		1907, "assets/images/nopicture.gif",
		77, 52,
		"021050020 000", "FORK DRIVE PIN 125 LC",
		"", "",
		"5.56", "0",
		"1", 1,
		"", "2",
		"", "pd-563240070.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1908] = new Element(
		1908, "assets/images/nopicture.gif",
		77, 52,
		"021050030 000", "FORK, SHIFT 3 125 LC",
		"", "",
		"19.5", "0",
		"1", 1,
		"", "2",
		"", "pd642244152.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1909] = new Element(
		1909, "assets/images/nopicture.gif",
		77, 52,
		"021050040 000", "FORK, SHIFT 2 125 LC",
		"", "",
		"19.33", "0",
		"1", 1,
		"", "2",
		"", "pd-1508520154.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1910] = new Element(
		1910, "assets/images/nopicture.gif",
		77, 52,
		"021050050 000", "FORK, SHIFT 1 125 LC",
		"", "",
		"19.33", "0",
		"1", 1,
		"", "2",
		"", "pd1258365380.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1911] = new Element(
		1911, "assets/images/nopicture.gif",
		77, 52,
		"021050060 000", "SHIFT CAM ASSY, 125 LC",
		"", "",
		"79.59", "0",
		"1", 1,
		"", "2",
		"", "pd420048274.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1912] = new Element(
		1912, "assets/images/nopicture.gif",
		77, 52,
		"021050070 000", "SHIFT SHAFT ASSY 125 LC",
		"", "",
		"34.59", "0",
		"1", 1,
		"", "2",
		"", "pd2099648016.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1913] = new Element(
		1913, "assets/images/nopicture.gif",
		77, 52,
		"021050080 000", "OIL SEAL D.12X22X5 125 LC",
		"", "",
		"14.23", "0",
		"1", 1,
		"", "2",
		"", "pd-1749341506.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1914] = new Element(
		1914, "assets/images/nopicture.gif",
		77, 52,
		"021050090 000", "BOLT SHIFT M6X1 125 LC",
		"", "",
		"1.27", "0",
		"1", 1,
		"", "2",
		"", "pd597247772.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1915] = new Element(
		1915, "assets/images/nopicture.gif",
		77, 52,
		"021050100 000", "STOPPER LEVER ASSY 125 LC",
		"", "",
		"9.95", "0",
		"1", 1,
		"", "2",
		"", "pd411071146.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1916] = new Element(
		1916, "assets/images/nopicture.gif",
		77, 52,
		"021050110 000", "SECTOR GEAR SPRING 125 LC",
		"", "",
		"0.8", "0",
		"1", 1,
		"", "2",
		"", "pd551420136.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1917] = new Element(
		1917, "assets/images/nopicture.gif",
		77, 52,
		"021050120 000", "PIN, DOWEL 125 LC",
		"", "",
		"5.56", "0",
		"1", 1,
		"", "2",
		"", "pd-1589808810.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1918] = new Element(
		1918, "assets/images/nopicture.gif",
		77, 52,
		"021050130 000", "SELECTOR AXLE SPRING 125 LC",
		"", "",
		"1.32", "0",
		"1", 1,
		"", "2",
		"", "pd346312564.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1919] = new Element(
		1919, "assets/images/nopicture.gif",
		77, 52,
		"021050140 000", "SEEGER D.10 125 LC",
		"", "",
		"2.02", "0",
		"1", 1,
		"", "2",
		"", "pd332468930.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1920] = new Element(
		1920, "assets/images/nopicture.gif",
		77, 52,
		"021070000 000", "START MOTOR W/O CABLES 125 LC",
		"", "",
		"78.66", "0",
		"1", 1,
		"", "2",
		"", "pd-1758882617.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1921] = new Element(
		1921, "assets/images/nopicture.gif",
		77, 52,
		"021070010 000", "START MOTOR BOLT 125 LC",
		"", "",
		"1.83", "0",
		"1", 1,
		"", "2",
		"", "pd773127872.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1922] = new Element(
		1922, "assets/images/nopicture.gif",
		77, 52,
		"021070020 000", "O-RING, START MOTOR 125 LC",
		"", "",
		"0.52", "0",
		"1", 1,
		"", "2",
		"", "pd-113179922.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1923] = new Element(
		1923, "assets/images/nopicture.gif",
		77, 52,
		"021070030 000", "BRUSH SET, START MOTOR 125 LC",
		"", "",
		"11.13", "0",
		"1", 1,
		"", "2",
		"", "pd450730700.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1924] = new Element(
		1924, "assets/images/nopicture.gif",
		77, 52,
		"021070040 000", "OR D.25,5X2,4, START MOTOR 125",
		"", "",
		"0.99", "0",
		"1", 1,
		"", "2",
		"", "pd-1213878822.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1925] = new Element(
		1925, "assets/images/nopicture.gif",
		77, 52,
		"021070050 000", "START MOTOR WIRING 125 LC",
		"", "",
		"15.7", "0",
		"1", 1,
		"", "2",
		"", "pd1593601944.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1926] = new Element(
		1926, "assets/images/nopicture.gif",
		77, 52,
		"021070060 000", "STARTING MOTOR ASSY 125 LC",
		"", "",
		"173.93", "0",
		"1", 1,
		"", "2",
		"", "pd1591099270.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1927] = new Element(
		1927, "assets/images/nopicture.gif",
		77, 52,
		"021070070 000", "INTERMEDIATE PIN SHAFT 125 LC",
		"", "",
		"6.5", "0",
		"1", 1,
		"", "2",
		"", "pd558663972.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1928] = new Element(
		1928, "assets/images/nopicture.gif",
		77, 52,
		"021070080 000", "INTERMEDIATE DOUBLE GEAR 125 LC",
		"", "",
		"42.55", "0",
		"1", 1,
		"", "2",
		"", "pd-137059342.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1929] = new Element(
		1929, "assets/images/nopicture.gif",
		77, 52,
		"021070090 000", "WASHER PLAIN D.10,2X18X1 125 LC",
		"", "",
		"0.7", "0",
		"1", 1,
		"", "2",
		"", "pd953267056.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1930] = new Element(
		1930, "assets/images/nopicture.gif",
		77, 52,
		"021070100 000", "AXLE SEEGER D.10 125 LC",
		"", "",
		"0.14", "0",
		"1", 1,
		"", "2",
		"", "pd49907486.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1931] = new Element(
		1931, "assets/images/nopicture.gif",
		77, 52,
		"021070110 000", "STARTER ONE-WAY ASSY 125 LC",
		"", "",
		"63.57", "0",
		"1", 1,
		"", "2",
		"", "pd113539708.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1932] = new Element(
		1932, "assets/images/nopicture.gif",
		77, 52,
		"021070120 000", "PIN DOWEL 125 LC",
		"", "",
		"1.83", "0",
		"1", 1,
		"", "2",
		"", "pd-1864346358.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1933] = new Element(
		1933, "assets/images/nopicture.gif",
		77, 52,
		"021070130 000", "CAP, STARTER CLUTCH SPRING 125",
		"", "",
		"1.61", "0",
		"1", 1,
		"", "2",
		"", "pd1767778888.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1934] = new Element(
		1934, "assets/images/nopicture.gif",
		77, 52,
		"021070140 000", "COMPRESSION SPRING 125 LC",
		"", "",
		"0.24", "0",
		"1", 1,
		"", "2",
		"", "pd571685302.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1935] = new Element(
		1935, "assets/images/nopicture.gif",
		77, 52,
		"021070150 000", "BOLT HEX. SOCKET HEAD M6X16 125",
		"", "",
		"1.7", "0",
		"1", 1,
		"", "2",
		"", "pd-748368172.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1936] = new Element(
		1936, "assets/images/nopicture.gif",
		77, 52,
		"021070160 000", "WHEEL STARTER 125 LC",
		"", "",
		"58.52", "0",
		"1", 1,
		"", "2",
		"", "pd964108578.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1937] = new Element(
		1937, "assets/images/nopicture.gif",
		77, 52,
		"021070170 000", "BEARING D.25X30X19,8",
		"", "",
		"7.5", "0",
		"1", 1,
		"", "2",
		"", "pd1417098272.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1938] = new Element(
		1938, "assets/images/nopicture.gif",
		77, 52,
		"021070180 000", "WASHER PLAIN D.25,2X36X1 125 LC",
		"", "",
		"0.99", "0",
		"1", 1,
		"", "2",
		"", "pd1299691342.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1939] = new Element(
		1939, "assets/images/nopicture.gif",
		77, 52,
		"021080000 000", "BOLT FLG 125 LC",
		"", "",
		"8.35", "0",
		"1", 1,
		"", "2",
		"", "pd1311884365.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1940] = new Element(
		1940, "assets/images/nopicture.gif",
		77, 52,
		"021080010 000", "BOLT FLG M6X80 125 LC",
		"", "",
		"2.26", "0",
		"1", 1,
		"", "2",
		"", "pd504948268.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1941] = new Element(
		1941, "assets/images/nopicture.gif",
		77, 52,
		"021080020 000", "OIL FILTER COVER 125 LC",
		"", "",
		"28.85", "0",
		"1", 1,
		"", "2",
		"", "pd-2081200070.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1942] = new Element(
		1942, "assets/images/nopicture.gif",
		77, 52,
		"021080030 000", "O-RING D.53,6X2,4 125 LC",
		"", "",
		"0.7", "0",
		"1", 1,
		"", "2",
		"", "pd-780259080.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1943] = new Element(
		1943, "assets/images/nopicture.gif",
		77, 52,
		"021080040 000", "OIL FILTER ASSY 125 LC",
		"", "",
		"9.81", "0",
		"1", 1,
		"", "2",
		"", "pd1692884966.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1944] = new Element(
		1944, "assets/images/nopicture.gif",
		77, 52,
		"021080050 000", "OIL PUMP GEAR DRIVE 125 LC",
		"", "",
		"11.03", "0",
		"1", 1,
		"", "2",
		"", "pd-1575477116.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1945] = new Element(
		1945, "assets/images/nopicture.gif",
		77, 52,
		"021080060 000", "BOLT FLG M6X12 125 LC",
		"", "",
		"1.18", "0",
		"1", 1,
		"", "2",
		"", "pd1876658770.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1946] = new Element(
		1946, "assets/images/nopicture.gif",
		77, 52,
		"021080070 000", "SCREW PAN HEAD M5X25 125 LC",
		"", "",
		"0.89", "0",
		"1", 1,
		"", "2",
		"", "pd417366224.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1947] = new Element(
		1947, "assets/images/nopicture.gif",
		77, 52,
		"021080080 000", "OIL PUMP GEAR COVER 125 LC",
		"", "",
		"1.65", "0",
		"1", 1,
		"", "2",
		"", "pd1074697086.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1948] = new Element(
		1948, "assets/images/nopicture.gif",
		77, 52,
		"021080090 000", "OIL PUMP ASSY 125 LC",
		"", "",
		"17.2", "0",
		"1", 1,
		"", "2",
		"", "pd73784796.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1949] = new Element(
		1949, "assets/images/nopicture.gif",
		77, 52,
		"021080100 000", "OIL FILTER 125 LC",
		"", "",
		"15.74", "0",
		"1", 1,
		"", "2",
		"", "pd-1419647126.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1950] = new Element(
		1950, "assets/images/nopicture.gif",
		77, 52,
		"021080110 000", "FILTER SPRING 125 LC",
		"", "",
		"4.57", "0",
		"1", 1,
		"", "2",
		"", "pd-510164056.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1951] = new Element(
		1951, "assets/images/nopicture.gif",
		77, 52,
		"021080120 000", "O-RING 125 LC",
		"", "",
		"1.32", "0",
		"1", 1,
		"", "2",
		"", "pd134590998.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1952] = new Element(
		1952, "assets/images/nopicture.gif",
		77, 52,
		"021080130 000", "PLUG DRAIN FILTER 125 LC",
		"", "",
		"8.29", "0",
		"1", 1,
		"", "2",
		"", "pd-917406156.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1953] = new Element(
		1953, "assets/images/nopicture.gif",
		77, 52,
		"021090000 000", "WATER PUMP ASSY 125 LC",
		"", "",
		"116.16", "0",
		"1", 1,
		"", "2",
		"", "pd-2065375358.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1954] = new Element(
		1954, "assets/images/nopicture.gif",
		77, 52,
		"021090010 000", "BOLT FLG M6X12 125 LC",
		"", "",
		"0.7", "0",
		"1", 1,
		"", "2",
		"", "pd-1364682368.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1955] = new Element(
		1955, "assets/images/nopicture.gif",
		77, 52,
		"021090020 000", "IMPELLER STOP PLATE 125 LC",
		"", "",
		"7.96", "0",
		"1", 1,
		"", "2",
		"", "pd1087445934.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1956] = new Element(
		1956, "assets/images/nopicture.gif",
		77, 52,
		"021090030 000", "WATER PUMP COVER PLATE 125 LC",
		"", "",
		"3.2", "0",
		"1", 1,
		"", "2",
		"", "pd2046189964.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1957] = new Element(
		1957, "assets/images/nopicture.gif",
		77, 52,
		"021090040 000", "WATER PUMP PLATE GASKET 125 LC",
		"", "",
		"6.27", "0",
		"1", 1,
		"", "2",
		"", "pd-1938894182.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1958] = new Element(
		1958, "assets/images/nopicture.gif",
		77, 52,
		"021090050 000", "O-RING 125 LC",
		"", "",
		"3.77", "0",
		"1", 1,
		"", "2",
		"", "pd1285890648.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1959] = new Element(
		1959, "assets/images/nopicture.gif",
		77, 52,
		"021090060 000", "BEARING D.10X26X8 125 LC",
		"", "",
		"11.21", "0",
		"1", 1,
		"", "2",
		"", "pd-2099171258.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1960] = new Element(
		1960, "assets/images/nopicture.gif",
		77, 52,
		"021090070 000", "WATER PUMP BODY 125 LC",
		"", "",
		"92.97", "0",
		"1", 1,
		"", "2",
		"", "pd-105125916.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1961] = new Element(
		1961, "assets/images/nopicture.gif",
		77, 52,
		"021090080 000", "SEAL OIL 125 LC",
		"", "",
		"2.55", "0",
		"1", 1,
		"", "2",
		"", "pd25220931.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1962] = new Element(
		1962, "assets/images/nopicture.gif",
		77, 52,
		"021090090 000", "WATER PUMP SHAFT WITH IMPELLER",
		"", "",
		"28.51", "0",
		"1", 1,
		"", "2",
		"", "pd-449437518.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1963] = new Element(
		1963, "assets/images/nopicture.gif",
		77, 52,
		"021090100 000", "WATER PUMP COVER GASKET 125 LC",
		"", "",
		"7.4", "0",
		"1", 1,
		"", "2",
		"", "pd2133491248.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1964] = new Element(
		1964, "assets/images/nopicture.gif",
		77, 52,
		"021090110 000", "BOLT FLG M6X25 125 LC",
		"", "",
		"2.02", "0",
		"1", 1,
		"", "2",
		"", "pd-460173346.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1965] = new Element(
		1965, "assets/images/nopicture.gif",
		77, 52,
		"021090120 000", "WATER PUMO COVER 125 LC",
		"", "",
		"55.89", "0",
		"1", 1,
		"", "2",
		"", "pd198537532.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1966] = new Element(
		1966, "assets/images/nopicture.gif",
		77, 52,
		"021090130 000", "BOLT FLG M6X25 125 LC",
		"", "",
		"1.23", "0",
		"1", 1,
		"", "2",
		"", "pd1193093578.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1967] = new Element(
		1967, "assets/images/nopicture.gif",
		77, 52,
		"021090140 000", "O-RING, 125CC LC",
		"", "",
		"0.24", "0",
		"1", 1,
		"", "2",
		"", "pd-563999480.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1968] = new Element(
		1968, "assets/images/nopicture.gif",
		77, 52,
		"021090150 000", "CLAMP, 125CC LC",
		"", "",
		"8.51", "0",
		"1", 1,
		"", "2",
		"", "pd-1950270679.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1969] = new Element(
		1969, "assets/images/nopicture.gif",
		77, 52,
		"021090160 000", "RUBBER HOSE, 125CC LC",
		"", "",
		"7.74", "0",
		"1", 1,
		"", "2",
		"", "pd791222655.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1970] = new Element(
		1970, "assets/images/nopicture.gif",
		77, 52,
		"021090170 000", "THERMOSTAT, 125CC LC",
		"", "",
		"56.88", "0",
		"1", 1,
		"", "2",
		"", "pd330095222.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1971] = new Element(
		1971, "assets/images/nopicture.gif",
		77, 52,
		"021090180 000", "THERMOSTAT COVER, 125CC LC",
		"", "",
		"18.61", "0",
		"1", 1,
		"", "2",
		"", "pd146955668.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1972] = new Element(
		1972, "assets/images/nopicture.gif",
		77, 52,
		"021090190 000", "BOLT M6X20 FLG SMALL, 125CC LC",
		"", "",
		"1.23", "0",
		"1", 1,
		"", "2",
		"", "pd-1338880542.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1973] = new Element(
		1973, "assets/images/nopicture.gif",
		77, 52,
		"021100000 000", "ROTOR ASSY (39S), 125CC LC",
		"", "",
		"192.27", "0",
		"1", 1,
		"", "2",
		"", "pd-461295904.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1974] = new Element(
		1974, "assets/images/nopicture.gif",
		77, 52,
		"021100010 000", "NUT FLG, M12X1,25X11 125 LC",
		"", "",
		"6.59", "0",
		"1", 1,
		"", "2",
		"", "pd518336526.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1975] = new Element(
		1975, "assets/images/nopicture.gif",
		77, 52,
		"021100020 000", "BOLT HEX. SOCKET HEAD M6X25 125",
		"", "",
		"1.7", "0",
		"1", 1,
		"", "2",
		"", "pd-1009906452.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1976] = new Element(
		1976, "assets/images/nopicture.gif",
		77, 52,
		"021100030 000", "STATOR ASSY (39S) 125 LC",
		"", "",
		"159.89", "0",
		"1", 1,
		"", "2",
		"", "pd-969937670.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1977] = new Element(
		1977, "assets/images/nopicture.gif",
		77, 52,
		"021100040 000", "BOLT HEX. SOCKET HEAD M6X16 125",
		"", "",
		"1.7", "0",
		"1", 1,
		"", "2",
		"", "pd726221752.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1978] = new Element(
		1978, "assets/images/nopicture.gif",
		77, 52,
		"021110000 000", "CYLIND. HEAD WITH VALVES SEAT A",
		"", "",
		"189.63", "0",
		"1", 1,
		"", "2",
		"", "pd-279203674.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1979] = new Element(
		1979, "assets/images/nopicture.gif",
		77, 52,
		"021110010 000", "CYLINDER HEAD COVER 125 LC",
		"", "",
		"18.8", "0",
		"1", 1,
		"", "2",
		"", "pd-1601183932.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1980] = new Element(
		1980, "assets/images/nopicture.gif",
		77, 52,
		"021110020 000", "HEAD COVER OR 125 LC",
		"", "",
		"5.56", "0",
		"1", 1,
		"", "2",
		"", "pd-402888942.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1981] = new Element(
		1981, "assets/images/nopicture.gif",
		77, 52,
		"021110030 000", "OVER SIZE VALVE GUIDE 125 LC",
		"", "",
		"21.54", "0",
		"1", 1,
		"", "2",
		"", "pd-645420144.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1982] = new Element(
		1982, "assets/images/nopicture.gif",
		77, 52,
		"021110040 000", "BOLT STUD M8X36 125 LC",
		"", "",
		"0.8", "0",
		"1", 1,
		"", "2",
		"", "pd1914485822.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1983] = new Element(
		1983, "assets/images/nopicture.gif",
		77, 52,
		"021110050 000", "CYLINDER HEAD GASKET 125 LC",
		"", "",
		"11.92", "0",
		"1", 1,
		"", "2",
		"", "pd-664062820.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1984] = new Element(
		1984, "assets/images/nopicture.gif",
		77, 52,
		"021110060 000", "CYLINDER BASE GASKET 125 LC",
		"", "",
		"13.29", "0",
		"1", 1,
		"", "2",
		"", "pd-282452950.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1985] = new Element(
		1985, "assets/images/nopicture.gif",
		77, 52,
		"021110070 000", "CYLINDER D.52 125 LC",
		"", "",
		"158.06", "0",
		"1", 1,
		"", "2",
		"", "pd1083557480.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1986] = new Element(
		1986, "assets/images/nopicture.gif",
		77, 52,
		"021110080 000", "PLUG SPARK, NGK CR8E GAP.0,8 12",
		"", "",
		"8.44", "0",
		"1", 1,
		"", "2",
		"", "pd1906356950.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1987] = new Element(
		1987, "assets/images/nopicture.gif",
		77, 52,
		"021110090 000", "BOLT FLG. M8X1,25 L=175 125 LC",
		"", "",
		"4.57", "0",
		"1", 1,
		"", "2",
		"", "pd-267424524.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1988] = new Element(
		1988, "assets/images/nopicture.gif",
		77, 52,
		"021110100 000", "COPPER WASHER D.8,5X18X2 125 LC",
		"", "",
		"0.8", "0",
		"1", 1,
		"", "2",
		"", "pd-1586009022.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1989] = new Element(
		1989, "assets/images/nopicture.gif",
		77, 52,
		"021110110 000", "COPPER WASHER D.6,3X13X1,2 125",
		"", "",
		"0.65", "0",
		"1", 1,
		"", "2",
		"", "pd-1445399488.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1990] = new Element(
		1990, "assets/images/nopicture.gif",
		77, 52,
		"021110120 000", "BOLT FLG M6X10 125 LC",
		"", "",
		"0.24", "0",
		"1", 1,
		"", "2",
		"", "pd525071470.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1991] = new Element(
		1991, "assets/images/nopicture.gif",
		77, 52,
		"021110130 000", "BOLT HEX. SOCKET HEAD M6X100 12",
		"", "",
		"6.97", "0",
		"1", 1,
		"", "2",
		"", "pd1559750732.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1992] = new Element(
		1992, "assets/images/nopicture.gif",
		77, 52,
		"021110140 000", "NUT HEX. M5X0,5 CH=8 125 LC",
		"", "",
		"0.99", "0",
		"1", 1,
		"", "2",
		"", "pd-766593190.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1993] = new Element(
		1993, "assets/images/nopicture.gif",
		77, 52,
		"021110150 000", "VALVE ADJUSTING SCREW 125 LC",
		"", "",
		"1.56", "0",
		"1", 1,
		"", "2",
		"", "pd1413649688.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1994] = new Element(
		1994, "assets/images/nopicture.gif",
		77, 52,
		"021110160 000", "ROCKER SHAFT D.10X66 125 LC",
		"", "",
		"4.57", "0",
		"1", 1,
		"", "2",
		"", "pd1290723590.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1995] = new Element(
		1995, "assets/images/nopicture.gif",
		77, 52,
		"021110170 000", "ROCKER VALVE 125LC",
		"", "",
		"28.04", "0",
		"1", 1,
		"", "2",
		"", "pd1525417636.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1996] = new Element(
		1996, "assets/images/nopicture.gif",
		77, 52,
		"021110180 000", "VALVE LOCK SPRING 125 LC",
		"", "",
		"1.65", "0",
		"1", 1,
		"", "2",
		"", "pd877026674.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1997] = new Element(
		1997, "assets/images/nopicture.gif",
		77, 52,
		"021110190 000", "UPPER VALVE RETAINER 125 LC",
		"", "",
		"3.63", "0",
		"1", 1,
		"", "2",
		"", "pd-1580201744.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1998] = new Element(
		1998, "assets/images/nopicture.gif",
		77, 52,
		"021110200 000", "VALVE SPRING 125 LC",
		"", "",
		"5.41", "0",
		"1", 1,
		"", "2",
		"", "pd1447418014.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[1999] = new Element(
		1999, "assets/images/nopicture.gif",
		77, 52,
		"021110210 000", "ARM, VALVE ROCKER 125 LC",
		"", "",
		"28.04", "0",
		"1", 1,
		"", "2",
		"", "pd-243324932.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2000] = new Element(
		2000, "assets/images/nopicture.gif",
		77, 52,
		"021110220 000", "SEAL VALVE STEM OIL D.4,5X9,5X8",
		"", "",
		"1.7", "0",
		"1", 1,
		"", "2",
		"", "pd-626999670.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2001] = new Element(
		2001, "assets/images/nopicture.gif",
		77, 52,
		"021110230 000", "LOWER VALVE RETAINER 125 LC",
		"", "",
		"1.65", "0",
		"1", 1,
		"", "2",
		"", "pd1963634632.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2002] = new Element(
		2002, "assets/images/nopicture.gif",
		77, 52,
		"021110240 000", "INTAKE VALVE D.19,5 125 LC",
		"", "",
		"11.83", "0",
		"1", 1,
		"", "2",
		"", "pd-1166460106.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2003] = new Element(
		2003, "assets/images/nopicture.gif",
		77, 52,
		"021110250 000", "EXHAUST VALVE D.17 125 LC",
		"", "",
		"27.75", "0",
		"1", 1,
		"", "2",
		"", "pd697347156.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2004] = new Element(
		2004, "assets/images/nopicture.gif",
		77, 52,
		"021110260 000", "BEARING D.12X28X8 (6001Z) 125 L",
		"", "",
		"6.5", "0",
		"1", 1,
		"", "2",
		"", "pd1791769250.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2005] = new Element(
		2005, "assets/images/nopicture.gif",
		77, 52,
		"021110270 000", "CAM SHAFT ASSY 125 LC",
		"", "",
		"100.33", "0",
		"1", 1,
		"", "2",
		"", "pd-1098389088.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2006] = new Element(
		2006, "assets/images/nopicture.gif",
		77, 52,
		"021110280 000", "BEARING D.30X47X9 125 LC",
		"", "",
		"11.35", "0",
		"1", 1,
		"", "2",
		"", "pd1704814798.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2007] = new Element(
		2007, "assets/images/nopicture.gif",
		77, 52,
		"021110290 000", "DECOMPRESSURE SHAFT 125 LC",
		"", "",
		"7.02", "0",
		"1", 1,
		"", "2",
		"", "pd1925968812.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2008] = new Element(
		2008, "assets/images/nopicture.gif",
		77, 52,
		"021110300 000", "LOCKING PLATE 1,2 125 LC",
		"", "",
		"4.11", "0",
		"1", 1,
		"", "2",
		"", "pd-35442246.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2009] = new Element(
		2009, "assets/images/nopicture.gif",
		77, 52,
		"021110310 000", "DECOMPR. ASSY 125 LC",
		"", "",
		"55.89", "0",
		"1", 1,
		"", "2",
		"", "pd979965560.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2010] = new Element(
		2010, "assets/images/nopicture.gif",
		77, 52,
		"021110320 000", "BOLT HEX. SOCKET M6X20 125 LC",
		"", "",
		"1.93", "0",
		"1", 1,
		"", "2",
		"", "pd-1439514266.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2011] = new Element(
		2011, "assets/images/nopicture.gif",
		77, 52,
		"021110330 000", "HOLDER, CLUTCH WIRE 125 LC",
		"", "",
		"3.39", "0",
		"1", 1,
		"", "2",
		"", "pd958946820.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2012] = new Element(
		2012, "assets/images/nopicture.gif",
		77, 52,
		"021110340 000", "CHAIN TENSIONER  125 LC",
		"", "",
		"31.2", "0",
		"1", 1,
		"", "2",
		"", "pd-1305738286.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2013] = new Element(
		2013, "assets/images/nopicture.gif",
		77, 52,
		"021110350 000", "TENSIONER GASKET 125 LC",
		"", "",
		"1.46", "0",
		"1", 1,
		"", "2",
		"", "pd1574671952.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2014] = new Element(
		2014, "assets/images/nopicture.gif",
		77, 52,
		"021110360 000", "CHAIN COVER 125 LC",
		"", "",
		"0.8", "0",
		"1", 1,
		"", "2",
		"", "pd-358243074.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2015] = new Element(
		2015, "assets/images/nopicture.gif",
		77, 52,
		"021110370 000", "CHAIN GUIDE SPACER 125 LC",
		"", "",
		"3.34", "0",
		"1", 1,
		"", "2",
		"", "pd-1435940004.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2016] = new Element(
		2016, "assets/images/nopicture.gif",
		77, 52,
		"021110380 000", "BLACK CHAIN GUIDE  125 LC",
		"", "",
		"138.27", "0",
		"1", 1,
		"", "2",
		"", "pd-325512982.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2017] = new Element(
		2017, "assets/images/nopicture.gif",
		77, 52,
		"021110390 000", "SCREW M6X1X20 125 LC",
		"", "",
		"0.61", "0",
		"1", 1,
		"", "2",
		"", "pd1956170024.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2018] = new Element(
		2018, "assets/images/nopicture.gif",
		77, 52,
		"021110400 000", "BOLT M8X1,25 CH=12 125 LC",
		"", "",
		"3.01", "0",
		"1", 1,
		"", "2",
		"", "pd-221351018.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2019] = new Element(
		2019, "assets/images/nopicture.gif",
		77, 52,
		"021110410 000", "VALVE TRAIN CHAIN 125 LC",
		"", "",
		"26.39", "0",
		"1", 1,
		"", "2",
		"", "pd-1415701580.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2020] = new Element(
		2020, "assets/images/nopicture.gif",
		77, 52,
		"021110420 000", "CHAIN GUIDE 125 LC",
		"", "",
		"3.62", "0",
		"1", 1,
		"", "2",
		"", "pd-2083473467.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2021] = new Element(
		2021, "assets/images/nopicture.gif",
		77, 52,
		"021120010 005", "CARBURETTOR FIXING BRACKET  125",
		"", "",
		"8.41", "0",
		"1", 1,
		"", "2",
		"", "pd2070927227.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2022] = new Element(
		2022, "assets/images/nopicture.gif",
		77, 52,
		"021120020 005", "CARBURETTOR COVER 125 LC",
		"", "",
		"4.46", "0",
		"1", 1,
		"", "2",
		"", "pd886707745.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2023] = new Element(
		2023, "assets/images/nopicture.gif",
		77, 52,
		"021120030 000", "HOSE CLAMP D.52 125 LC",
		"", "",
		"10.98", "0",
		"1", 1,
		"", "2",
		"", "pd1246279938.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2024] = new Element(
		2024, "assets/images/nopicture.gif",
		77, 52,
		"021120040 000", "BOLT HEX. SOCKET M6X25 125 LC",
		"", "",
		"1.7", "0",
		"1", 1,
		"", "2",
		"", "pd-295301376.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2025] = new Element(
		2025, "assets/images/nopicture.gif",
		77, 52,
		"021120050 000", "MANIFOLD 125 LC",
		"", "",
		"30.96", "0",
		"1", 1,
		"", "2",
		"", "pd24218926.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2026] = new Element(
		2026, "assets/images/nopicture.gif",
		77, 52,
		"021120060 000", "CLIP FOR RUBBER PLUG 125 LC",
		"", "",
		"3.77", "0",
		"1", 1,
		"", "2",
		"", "pd-22925556.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2027] = new Element(
		2027, "assets/images/nopicture.gif",
		77, 52,
		"021120070 000", "RUBBER PLUG 125 LC",
		"", "",
		"3.53", "0",
		"1", 1,
		"", "2",
		"", "pd1107647514.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2028] = new Element(
		2028, "assets/images/nopicture.gif",
		77, 52,
		"021120080 000", "O-RING 125 LC",
		"", "",
		"0.99", "0",
		"1", 1,
		"", "2",
		"", "pd-594229288.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2029] = new Element(
		2029, "assets/images/nopicture.gif",
		77, 52,
		"021120090 000", "INSULATOR MUFFLER SPACER 125 LC",
		"", "",
		"6.5", "0",
		"1", 1,
		"", "2",
		"", "pd-2118168122.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2030] = new Element(
		2030, "assets/images/nopicture.gif",
		77, 52,
		"021120100 000", "VACUUM PISTON COMP., CARBUR. 12",
		"", "",
		"99.53", "0",
		"1", 1,
		"", "2",
		"", "pd-1751325340.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2031] = new Element(
		2031, "assets/images/nopicture.gif",
		77, 52,
		"021120110 000", "JET NEEDLE COMP., CARBUR. 125 L",
		"", "",
		"9.14", "0",
		"1", 1,
		"", "2",
		"", "pd1975867954.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2032] = new Element(
		2032, "assets/images/nopicture.gif",
		77, 52,
		"021120120 000", "SPRING SHEET, CARBUR. 125 LC",
		"", "",
		"1.93", "0",
		"1", 1,
		"", "2",
		"", "pd-1618848848.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2033] = new Element(
		2033, "assets/images/nopicture.gif",
		77, 52,
		"021120130 000", "SPRING , CARBUR. 125 LC",
		"", "",
		"7.07", "0",
		"1", 1,
		"", "2",
		"", "pd1960059230.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2034] = new Element(
		2034, "assets/images/nopicture.gif",
		77, 52,
		"021120140 000", "TOP , CARBUR. 125 LC",
		"", "",
		"21.16", "0",
		"1", 1,
		"", "2",
		"", "pd578920124.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2035] = new Element(
		2035, "assets/images/nopicture.gif",
		77, 52,
		"021120150 000", "SCREW, CARBUR. 125 LC",
		"", "",
		"1.32", "0",
		"1", 1,
		"", "2",
		"", "pd-1272245430.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2036] = new Element(
		2036, "assets/images/nopicture.gif",
		77, 52,
		"021120160 000", "NEEDLE JET , CARBUR. 125 LC",
		"", "",
		"9.23", "0",
		"1", 1,
		"", "2",
		"", "pd-1005055352.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2037] = new Element(
		2037, "assets/images/nopicture.gif",
		77, 52,
		"021120170 000", "NEEDLE JET HOLDER, CARBUR. 125",
		"", "",
		"9.95", "0",
		"1", 1,
		"", "2",
		"", "pd-1959240714.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2038] = new Element(
		2038, "assets/images/nopicture.gif",
		77, 52,
		"021120180 000", "MAIN JET, CARBUR. 125 LC",
		"", "",
		"9", "0",
		"1", 1,
		"", "2",
		"", "pd-1198540012.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2039] = new Element(
		2039, "assets/images/nopicture.gif",
		77, 52,
		"021120190 000", "SLOW JET, CARBUR. 125 LC",
		"", "",
		"9.33", "0",
		"1", 1,
		"", "2",
		"", "pd-1442519198.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2040] = new Element(
		2040, "assets/images/nopicture.gif",
		77, 52,
		"021120200 000", "ADJUST SCREW, CARBUR. 125 LC",
		"", "",
		"4.81", "0",
		"1", 1,
		"", "2",
		"", "pd290153568.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2041] = new Element(
		2041, "assets/images/nopicture.gif",
		77, 52,
		"021120210 000", "SPRING , CARBUR. 125 LC",
		"", "",
		"0.38", "0",
		"1", 1,
		"", "2",
		"", "pd-295673458.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2042] = new Element(
		2042, "assets/images/nopicture.gif",
		77, 52,
		"021120220 000", "WASHER , CARBUR. 125 LC",
		"", "",
		"0.38", "0",
		"1", 1,
		"", "2",
		"", "pd-976053652.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2043] = new Element(
		2043, "assets/images/nopicture.gif",
		77, 52,
		"021120230 000", "O-RING , CARBUR. 125 LC",
		"", "",
		"1.08", "0",
		"1", 1,
		"", "2",
		"", "pd1137522298.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2044] = new Element(
		2044, "assets/images/nopicture.gif",
		77, 52,
		"021120240 000", "FLOAT VALVE COMP. , CARBUR. 125",
		"", "",
		"11.31", "0",
		"1", 1,
		"", "2",
		"", "pd-979523272.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2045] = new Element(
		2045, "assets/images/nopicture.gif",
		77, 52,
		"021120250 000", "CLIP , CARBUR. 125 LC",
		"", "",
		"1.93", "0",
		"1", 1,
		"", "2",
		"", "pd-1171484122.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2046] = new Element(
		2046, "assets/images/nopicture.gif",
		77, 52,
		"021120260 000", "FLOAT COMP. , CARBUR. 125 LC",
		"", "",
		"28.37", "0",
		"1", 1,
		"", "2",
		"", "pd513907908.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2047] = new Element(
		2047, "assets/images/nopicture.gif",
		77, 52,
		"021120270 000", "ARM PIN , CARBUR. 125 LC",
		"", "",
		"1.08", "0",
		"1", 1,
		"", "2",
		"", "pd-1087741806.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2048] = new Element(
		2048, "assets/images/nopicture.gif",
		77, 52,
		"021120280 000", "FLOAT CHAMBER BODY COMP., CARBU",
		"", "",
		"46.14", "0",
		"1", 1,
		"", "2",
		"", "pd77349136.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2049] = new Element(
		2049, "assets/images/nopicture.gif",
		77, 52,
		"021120290 000", "PLUNGER, CARBUR. 125 LC",
		"", "",
		"9.33", "0",
		"1", 1,
		"", "2",
		"", "pd644435390.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2050] = new Element(
		2050, "assets/images/nopicture.gif",
		77, 52,
		"021120300 000", "COLLAR, CARBUR. 125 LC",
		"", "",
		"1.93", "0",
		"1", 1,
		"", "2",
		"", "pd1159733788.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2051] = new Element(
		2051, "assets/images/nopicture.gif",
		77, 52,
		"021120310 000", "PLASTIC CAP, CARBUR. 125 LC",
		"", "",
		"5.8", "0",
		"1", 1,
		"", "2",
		"", "pd1819198890.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2052] = new Element(
		2052, "assets/images/nopicture.gif",
		77, 52,
		"021120320 000", "COLLAR, CARBUR. 125 LC",
		"", "",
		"5.32", "0",
		"1", 1,
		"", "2",
		"", "pd1952484328.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2053] = new Element(
		2053, "assets/images/nopicture.gif",
		77, 52,
		"021120330 000", "O-RING , CARBUR. 125 LC",
		"", "",
		"0.75", "0",
		"1", 1,
		"", "2",
		"", "pd1615787094.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2054] = new Element(
		2054, "assets/images/nopicture.gif",
		77, 52,
		"021120340 000", "SPRING , CARBUR. 125 LC",
		"", "",
		"1.08", "0",
		"1", 1,
		"", "2",
		"", "pd-558003596.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2055] = new Element(
		2055, "assets/images/nopicture.gif",
		77, 52,
		"021120350 000", "O-RING , CARBUR. 125 LC",
		"", "",
		"1.08", "0",
		"1", 1,
		"", "2",
		"", "pd538494402.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2056] = new Element(
		2056, "assets/images/nopicture.gif",
		77, 52,
		"021120360 000", "DRAIN SCREW , CARBUR. 125 LC",
		"", "",
		"4.81", "0",
		"1", 1,
		"", "2",
		"", "pd185592256.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2057] = new Element(
		2057, "assets/images/nopicture.gif",
		77, 52,
		"021120370 000", "FLOAT CHAMBER GASKET , CARBUR.",
		"", "",
		"5.8", "0",
		"1", 1,
		"", "2",
		"", "pd335668718.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2058] = new Element(
		2058, "assets/images/nopicture.gif",
		77, 52,
		"021120380 000", "SCREW , CARBUR. 125 LC",
		"", "",
		"2.26", "0",
		"1", 1,
		"", "2",
		"", "pd1505048012.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2059] = new Element(
		2059, "assets/images/nopicture.gif",
		77, 52,
		"021120390 000", "DIAPHRAGM COMP. , CARBUR. 125 L",
		"", "",
		"15.32", "0",
		"1", 1,
		"", "2",
		"", "pd1414709466.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2060] = new Element(
		2060, "assets/images/nopicture.gif",
		77, 52,
		"021120400 000", "SPRING , CARBUR. 125 LC",
		"", "",
		"4.47", "0",
		"1", 1,
		"", "2",
		"", "pd207338136.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2061] = new Element(
		2061, "assets/images/nopicture.gif",
		77, 52,
		"021120410 000", "SPRING , CARBUR. 125 LC",
		"", "",
		"5.6", "0",
		"1", 1,
		"", "2",
		"", "pd-1508736378.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2062] = new Element(
		2062, "assets/images/nopicture.gif",
		77, 52,
		"021120420 000", "WASHER , CARBUR. 125 LC",
		"", "",
		"0.38", "0",
		"1", 1,
		"", "2",
		"", "pd-1030847452.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2063] = new Element(
		2063, "assets/images/nopicture.gif",
		77, 52,
		"021120430 000", "SPRING , CARBUR. 125 LC",
		"", "",
		"2.4", "0",
		"1", 1,
		"", "2",
		"", "pd-93120782.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2064] = new Element(
		2064, "assets/images/nopicture.gif",
		77, 52,
		"021120440 000", "STAY PLATE , CARBUR. 125 LC",
		"", "",
		"13.99", "0",
		"1", 1,
		"", "2",
		"", "pd922836592.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2065] = new Element(
		2065, "assets/images/nopicture.gif",
		77, 52,
		"021120450 000", "WASHER AND BOLT , CARBUR. 125 L",
		"", "",
		"2.26", "0",
		"1", 1,
		"", "2",
		"", "pd486353438.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2066] = new Element(
		2066, "assets/images/nopicture.gif",
		77, 52,
		"021120460 000", "BY STARTER COMP. , CARBUR. 125",
		"", "",
		"20.36", "0",
		"1", 1,
		"", "2",
		"", "pd-912468612.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2067] = new Element(
		2067, "assets/images/nopicture.gif",
		77, 52,
		"021120470 000", "O-RING , CARBUR. 125 LC",
		"", "",
		"2.69", "0",
		"1", 1,
		"", "2",
		"", "pd-58972150.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2068] = new Element(
		2068, "assets/images/nopicture.gif",
		77, 52,
		"021120480 000", "WASHER AND SCREW , CARBUR. 125",
		"", "",
		"0.75", "0",
		"1", 1,
		"", "2",
		"", "pd575288648.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2069] = new Element(
		2069, "assets/images/nopicture.gif",
		77, 52,
		"021120490 000", "PLASTIC PIPE , CARBUR. 125 LC",
		"", "",
		"3.25", "0",
		"1", 1,
		"", "2",
		"", "pd-1163248458.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2070] = new Element(
		2070, "assets/images/nopicture.gif",
		77, 52,
		"021120500 000", "PLASTIC PIPE , CARBUR. 125 LC",
		"", "",
		"3.25", "0",
		"1", 1,
		"", "2",
		"", "pd-125859372.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2071] = new Element(
		2071, "assets/images/nopicture.gif",
		77, 52,
		"021120510 000", "TUBE CLIP , CARBUR. 125 LC",
		"", "",
		"0.75", "0",
		"1", 1,
		"", "2",
		"", "pd1855738914.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2072] = new Element(
		2072, "assets/images/nopicture.gif",
		77, 52,
		"021120520 000", "COVER , CARBUR. 125 LC",
		"", "",
		"8.68", "0",
		"1", 1,
		"", "2",
		"", "pd-880042208.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2073] = new Element(
		2073, "assets/images/nopicture.gif",
		77, 52,
		"021120530 000", "WASHER AND SCREW , CARBUR. 125",
		"", "",
		"0.38", "0",
		"1", 1,
		"", "2",
		"", "pd1173232206.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2074] = new Element(
		2074, "assets/images/nopicture.gif",
		77, 52,
		"021120540 000", "O-RING , CARBUR. 125 LC",
		"", "",
		"1.08", "0",
		"1", 1,
		"", "2",
		"", "pd396493100.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2075] = new Element(
		2075, "assets/images/nopicture.gif",
		77, 52,
		"021120550 000", "TUBE CLIP , CARBUR. 125 LC",
		"", "",
		"2.69", "0",
		"1", 1,
		"", "2",
		"", "pd1890450234.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2076] = new Element(
		2076, "assets/images/nopicture.gif",
		77, 52,
		"021120560 000", "STARTER VALVE COMP. , CARBUR. 1",
		"", "",
		"9.33", "0",
		"1", 1,
		"", "2",
		"", "pd1403452408.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2077] = new Element(
		2077, "assets/images/nopicture.gif",
		77, 52,
		"021120570 000", "O-RING , CARBUR. 125 LC",
		"", "",
		"1.46", "0",
		"1", 1,
		"", "2",
		"", "pd67707622.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2078] = new Element(
		2078, "assets/images/nopicture.gif",
		77, 52,
		"021120580 000", "SPRING , CARBUR. 125 LC",
		"", "",
		"2.55", "0",
		"1", 1,
		"", "2",
		"", "pd-1011115132.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2079] = new Element(
		2079, "assets/images/nopicture.gif",
		77, 52,
		"021120590 000", "HOLDER CABLE , CARBUR. 125 LC",
		"", "",
		"5.05", "0",
		"1", 1,
		"", "2",
		"", "pd-1078493870.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2080] = new Element(
		2080, "assets/images/nopicture.gif",
		77, 52,
		"021120600 000", "CAP CABLE SEALING , CARBUR. 125",
		"", "",
		"5.05", "0",
		"1", 1,
		"", "2",
		"", "pd-326521904.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2081] = new Element(
		2081, "assets/images/nopicture.gif",
		77, 52,
		"021120610 000", "CABLE GUIDE , CARBUR. 125 LC",
		"", "",
		"9.95", "0",
		"1", 1,
		"", "2",
		"", "pd1646769790.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2082] = new Element(
		2082, "assets/images/nopicture.gif",
		77, 52,
		"021120620 000", "HEATER , CARBUR. 125 LC",
		"", "",
		"43.02", "0",
		"1", 1,
		"", "2",
		"", "pd860862684.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2083] = new Element(
		2083, "assets/images/nopicture.gif",
		77, 52,
		"021120630 000", "TERMINAL HEATER , CARBUR. 125 L",
		"", "",
		"5.05", "0",
		"1", 1,
		"", "2",
		"", "pd-143967638.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2084] = new Element(
		2084, "assets/images/nopicture.gif",
		77, 52,
		"021120640 000", "ADJUST HOLDER , CARBUR. 125 LC",
		"", "",
		"1.27", "0",
		"1", 1,
		"", "2",
		"", "pd-156430680.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2085] = new Element(
		2085, "assets/images/nopicture.gif",
		77, 52,
		"021310008 026", "RR/MOT 4T 125 FRONT BLECK FRAME",
		"", "",
		"788.17", "0",
		"1", 1,
		"", "2",
		"", "pd1323447574.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2086] = new Element(
		2086, "assets/images/nopicture.gif",
		77, 52,
		"021320000 026", "RX BLACK SUBFRAME",
		"", "",
		"47.66", "0",
		"1", 1,
		"", "2",
		"", "pd741194036.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2087] = new Element(
		2087, "assets/images/nopicture.gif",
		77, 52,
		"021320010 026", "LX BLACK SUBFRAME",
		"", "",
		"41.71", "0",
		"1", 1,
		"", "2",
		"", "pd-2086169982.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2088] = new Element(
		2088, "assets/images/nopicture.gif",
		77, 52,
		"021320028 059", "RR/MOT 4T 125 UPPER FRAME ASSY",
		"", "",
		"100.17", "0",
		"1", 1,
		"", "2",
		"", "pd1318487168.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2089] = new Element(
		2089, "assets/images/nopicture.gif",
		77, 52,
		"021320100 005", "SEAT LOCK FIXING PLATE",
		"", "",
		"6.81", "0",
		"1", 1,
		"", "2",
		"", "pd1136459438.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2090] = new Element(
		2090, "assets/images/nopicture.gif",
		77, 52,
		"021320400 005", "RX CYLINDER HEAD BRACKET",
		"", "",
		"7.28", "0",
		"1", 1,
		"", "2",
		"", "pd686881932.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2091] = new Element(
		2091, "assets/images/nopicture.gif",
		77, 52,
		"021320410 005", "SX CYLINDER HEAD BRACKET",
		"", "",
		"9.71", "0",
		"1", 1,
		"", "2",
		"", "pd1106699674.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2092] = new Element(
		2092, "assets/images/nopicture.gif",
		77, 52,
		"021320420 005", "FRONT RX ENGINE SUPPORT",
		"", "",
		"4.24", "0",
		"1", 1,
		"", "2",
		"", "pd-900240040.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2093] = new Element(
		2093, "assets/images/nopicture.gif",
		77, 52,
		"021320510 026", "LH FOOT BOARD REST",
		"", "",
		"29.85", "0",
		"1", 1,
		"", "2",
		"", "pd-22514874.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2094] = new Element(
		2094, "assets/images/nopicture.gif",
		77, 52,
		"021320550 059", "STAND, VEM125 ENDURO",
		"", "",
		"45.17", "0",
		"1", 1,
		"", "2",
		"", "pd-1367285020.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2095] = new Element(
		2095, "assets/images/nopicture.gif",
		77, 52,
		"021320560 059", "STAND, VEM125 MOTARD",
		"", "",
		"45.17", "0",
		"1", 1,
		"", "2",
		"", "pd-753953870.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2096] = new Element(
		2096, "assets/images/nopicture.gif",
		77, 52,
		"021320570 005", "PLATE, STAND SPRING",
		"", "",
		"2.86", "0",
		"1", 1,
		"", "2",
		"", "pd-418567888.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2097] = new Element(
		2097, "assets/images/nopicture.gif",
		77, 52,
		"021330010 000", "SHOCK ABSORBER, VEM125",
		"", "",
		"308.72", "0",
		"1", 1,
		"", "2",
		"", "pd-343870754.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2098] = new Element(
		2098, "assets/images/nopicture.gif",
		77, 52,
		"021330100 000", "SWINGING ARM -MACHINED-",
		"", "",
		"570.64", "0",
		"1", 1,
		"", "2",
		"", "pd-779039684.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2099] = new Element(
		2099, "assets/images/nopicture.gif",
		77, 52,
		"021330160 000", "SWING ARM SPACER VEM 125",
		"", "",
		"24.37", "0",
		"1", 1,
		"", "2",
		"", "pd1095912759.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2100] = new Element(
		2100, "assets/images/nopicture.gif",
		77, 52,
		"021330201 052", "SLIDING BLOCK VEM125",
		"", "",
		"32.05", "0",
		"1", 1,
		"", "2",
		"", "pd-1672217398.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2101] = new Element(
		2101, "assets/images/nopicture.gif",
		77, 52,
		"021340058 000", "FRONT FORK, D.41 RR/MOTARD 125",
		"", "",
		"1188.88", "0",
		"1", 1,
		"", "2",
		"", "pd-1503586296.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2102] = new Element(
		2102, "assets/images/nopicture.gif",
		77, 52,
		"021340068 000", "RR/MOT 4T 125 LC LOWER CROWN W/",
		"", "",
		"267.75", "0",
		"1", 1,
		"", "2",
		"", "pd730657341.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2103] = new Element(
		2103, "assets/images/nopicture.gif",
		77, 52,
		"021340070 000", "RR/MOT 4T 125 LC UPER CROWN",
		"", "",
		"186.26", "0",
		"1", 1,
		"", "2",
		"", "pd-201754957.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2104] = new Element(
		2104, "assets/images/nopicture.gif",
		77, 52,
		"021340080 000", "RR/MOT 4T 125 LC HANDLEBAR FAST",
		"", "",
		"12.81", "0",
		"1", 1,
		"", "2",
		"", "pd-1079334887.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2105] = new Element(
		2105, "assets/images/nopicture.gif",
		77, 52,
		"021340090 000", "SCREW M8X40",
		"", "",
		"6.43", "0",
		"1", 1,
		"", "2",
		"", "pd-1762258961.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2106] = new Element(
		2106, "assets/images/nopicture.gif",
		77, 52,
		"021340108 000", "RR/MOT 4T 125 LC LX LEG ASSY",
		"", "",
		"737.04", "0",
		"1", 1,
		"", "2",
		"", "pd-1230875723.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2107] = new Element(
		2107, "assets/images/nopicture.gif",
		77, 52,
		"021340118 000", "RR/MOT 4T 125 LC CARTRIDGE ASSY",
		"", "",
		"50.37", "0",
		"1", 1,
		"", "2",
		"", "pd305960171.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2108] = new Element(
		2108, "assets/images/nopicture.gif",
		77, 52,
		"021340128 000", "RR/MOT 4T 125 LC RX HOSE ASSY",
		"", "",
		"193.53", "0",
		"1", 1,
		"", "2",
		"", "pd669831441.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2109] = new Element(
		2109, "assets/images/nopicture.gif",
		77, 52,
		"021340130 000", "SCREW M6",
		"", "",
		"1.07", "0",
		"1", 1,
		"", "2",
		"", "pd-1646181977.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2110] = new Element(
		2110, "assets/images/nopicture.gif",
		77, 52,
		"021340140 000", "FORK ADJUSTING NUT",
		"", "",
		"6.43", "0",
		"1", 1,
		"", "2",
		"", "pd1059634221.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2111] = new Element(
		2111, "assets/images/nopicture.gif",
		77, 52,
		"021340150 000", "NUT",
		"", "",
		"8.57", "0",
		"1", 1,
		"", "2",
		"", "pd1100223011.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2112] = new Element(
		2112, "assets/images/nopicture.gif",
		77, 52,
		"021340160 000", "PLUG",
		"", "",
		"9.64", "0",
		"1", 1,
		"", "2",
		"", "pd938897673.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2113] = new Element(
		2113, "assets/images/nopicture.gif",
		77, 52,
		"021340170 000", "SCREW M6",
		"", "",
		"1.07", "0",
		"1", 1,
		"", "2",
		"", "pd601670239.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2114] = new Element(
		2114, "assets/images/nopicture.gif",
		77, 52,
		"021340200 000", "RR/MOT 4T 125 LC D.41 HOSE ASSY",
		"", "",
		"193.53", "0",
		"1", 1,
		"", "2",
		"", "pd-1349252187.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2115] = new Element(
		2115, "assets/images/nopicture.gif",
		77, 52,
		"021340308 000", "VEM 125 RX LEG ASSY",
		"", "",
		"737.04", "0",
		"1", 1,
		"", "2",
		"", "pd622251611.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2116] = new Element(
		2116, "assets/images/nopicture.gif",
		77, 52,
		"021340318 000", "RR/MOT 4T 125 LC LEG PLUG ASSY",
		"", "",
		"8.93", "0",
		"1", 1,
		"", "2",
		"", "pd674850817.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2117] = new Element(
		2117, "assets/images/nopicture.gif",
		77, 52,
		"021340320 000", "RR/MOT 4T 125 LC LEG",
		"", "",
		"410.69", "0",
		"1", 1,
		"", "2",
		"", "pd36532759.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2118] = new Element(
		2118, "assets/images/nopicture.gif",
		77, 52,
		"021340350 000", "SCREW M10X40",
		"", "",
		"8.93", "0",
		"1", 1,
		"", "2",
		"", "pd1513366045.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2119] = new Element(
		2119, "assets/images/nopicture.gif",
		77, 52,
		"021340360 000", "RR/MOTARD 4T 125 LC FORK WASHER",
		"", "",
		"4.28", "0",
		"1", 1,
		"", "2",
		"", "pd-82335341.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2120] = new Element(
		2120, "assets/images/nopicture.gif",
		77, 52,
		"021340390 000", "RR/MOTARD 4T 125 LC DUST RING",
		"", "",
		"13.39", "0",
		"1", 1,
		"", "2",
		"", "pd-1362913799.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2121] = new Element(
		2121, "assets/images/nopicture.gif",
		77, 52,
		"021340400 000", "RR/MOTARD 4T 125 LC PROTECTION",
		"", "",
		"11.6", "0",
		"1", 1,
		"", "2",
		"", "pd-1189859121.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2122] = new Element(
		2122, "assets/images/nopicture.gif",
		77, 52,
		"021340410 000", "FORK STICKER",
		"", "",
		"5.36", "0",
		"1", 1,
		"", "2",
		"", "pd11853717.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2123] = new Element(
		2123, "assets/images/nopicture.gif",
		77, 52,
		"021350010 000", "TRASMISSION, GAS (ASSY) VEM125",
		"", "",
		"37.4", "0",
		"1", 1,
		"", "2",
		"", "pd1032772982.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2124] = new Element(
		2124, "assets/images/nopicture.gif",
		77, 52,
		"021350040 000", "VEM 125 STARTER TRASMISSION",
		"", "",
		"11.26", "0",
		"1", 1,
		"", "2",
		"", "pd-333440876.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2125] = new Element(
		2125, "assets/images/nopicture.gif",
		77, 52,
		"021350050 000", "VEM 125 CLUTCH TRASMISSION",
		"", "",
		"17.17", "0",
		"1", 1,
		"", "2",
		"", "pd2035450082.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2126] = new Element(
		2126, "assets/images/nopicture.gif",
		77, 52,
		"021360020 000", "FRONT BRAKE HOSE",
		"", "",
		"68.81", "0",
		"1", 1,
		"", "2",
		"", "pd-1677157920.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2127] = new Element(
		2127, "assets/images/nopicture.gif",
		77, 52,
		"021360100 009", "WR125 MOTARD FRONT BRAKE CALIPE",
		"", "",
		"124.06", "0",
		"1", 1,
		"", "2",
		"", "pd-1190751474.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2128] = new Element(
		2128, "assets/images/nopicture.gif",
		77, 52,
		"021360300 000", "REAR BRAKE HOSE",
		"", "",
		"49.18", "0",
		"1", 1,
		"", "2",
		"", "pd-2097534996.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2129] = new Element(
		2129, "assets/images/nopicture.gif",
		77, 52,
		"021360310 000", "SPRING",
		"", "",
		"2.11", "0",
		"1", 1,
		"", "2",
		"", "pd491094010.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2130] = new Element(
		2130, "assets/images/nopicture.gif",
		77, 52,
		"021360320 000", "VEM 125 BRAKE PUMP ROD",
		"", "",
		"5.36", "0",
		"1", 1,
		"", "2",
		"", "pd725946040.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2131] = new Element(
		2131, "assets/images/nopicture.gif",
		77, 52,
		"021360330 000", "VEM 125 BRAKE PUM FORK",
		"", "",
		"3.9", "0",
		"1", 1,
		"", "2",
		"", "pd747140006.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2132] = new Element(
		2132, "assets/images/nopicture.gif",
		77, 52,
		"021360340 000", "VEM125 BRAKE PUMP ROD FORK FIXA",
		"", "",
		"1.94", "0",
		"1", 1,
		"", "2",
		"", "pd1530288708.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2133] = new Element(
		2133, "assets/images/nopicture.gif",
		77, 52,
		"021360350 000", "RR4T 125 LC TANK-REAR BRAKE HOS",
		"", "",
		"7.98", "0",
		"1", 1,
		"", "2",
		"", "pd613636626.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2134] = new Element(
		2134, "assets/images/nopicture.gif",
		77, 52,
		"021360360 000", "MOTARD 4T 125 LC FR. BRAKE CALI",
		"", "",
		"10.06", "0",
		"1", 1,
		"", "2",
		"", "pd-257588277.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2135] = new Element(
		2135, "assets/images/nopicture.gif",
		77, 52,
		"021370018 000", "EXHAUST TUBE VEM125 -CPL.-",
		"", "",
		"117.41", "0",
		"1", 1,
		"", "2",
		"", "pd-194783600.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2136] = new Element(
		2136, "assets/images/nopicture.gif",
		77, 52,
		"021370030 000", "EXHAUST MANIFOLD GASKET",
		"", "",
		"5.3", "0",
		"1", 1,
		"", "2",
		"", "pd-1700733122.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2137] = new Element(
		2137, "assets/images/nopicture.gif",
		77, 52,
		"021370040 000", "RR 4T 125LC AIS VALVE-CARB.MANI",
		"", "",
		"5.85", "0",
		"1", 1,
		"", "2",
		"", "pd-1078456420.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2138] = new Element(
		2138, "assets/images/nopicture.gif",
		77, 52,
		"021370060 000", "AIS VALVE-SILENCER HOSE",
		"", "",
		"13.74", "0",
		"1", 1,
		"", "2",
		"", "pd-699502806.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2139] = new Element(
		2139, "assets/images/nopicture.gif",
		77, 52,
		"021370070 000", "AIS VALVE-AIR FILTER BOX MANIFO",
		"", "",
		"6.64", "0",
		"1", 1,
		"", "2",
		"", "pd1916686696.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2140] = new Element(
		2140, "assets/images/nopicture.gif",
		77, 52,
		"021370090 000", "VEM 125 AIS VALVE",
		"", "",
		"47.65", "0",
		"1", 1,
		"", "2",
		"", "pd2126437105.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2141] = new Element(
		2141, "assets/images/nopicture.gif",
		77, 52,
		"021370100 000", "VEM 125 EXHAUST MANIFOLD PROTEC",
		"", "",
		"49.6", "0",
		"1", 1,
		"", "2",
		"", "pd323499478.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2142] = new Element(
		2142, "assets/images/nopicture.gif",
		77, 52,
		"021370208 000", "MUFFLER ASSY VEM125 -CPL.-",
		"", "",
		"254.66", "0",
		"1", 1,
		"", "2",
		"", "pd-156325900.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2143] = new Element(
		2143, "assets/images/nopicture.gif",
		77, 52,
		"021370210 000", "DB KILLER",
		"", "",
		"27.85", "0",
		"1", 1,
		"", "2",
		"", "pd-78782841.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2144] = new Element(
		2144, "assets/images/nopicture.gif",
		77, 52,
		"021380008 059", "FILTER BOX CLOSING WALL -CPL.-",
		"", "",
		"43.16", "0",
		"1", 1,
		"", "2",
		"", "pd-1783292094.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2145] = new Element(
		2145, "assets/images/nopicture.gif",
		77, 52,
		"021380020 000", "VEM 125 AIR FILTER",
		"", "",
		"42.27", "0",
		"1", 1,
		"", "2",
		"", "pd-944120000.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2146] = new Element(
		2146, "assets/images/nopicture.gif",
		77, 52,
		"021380040 000", "ENGINE OIL BREATH HOSE",
		"", "",
		"16.66", "0",
		"1", 1,
		"", "2",
		"", "pd1029887854.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2147] = new Element(
		2147, "assets/images/nopicture.gif",
		77, 52,
		"021380050 000", "LH NOISE REDUCTION SPONGE",
		"", "",
		"4.22", "0",
		"1", 1,
		"", "2",
		"", "pd-418020532.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2148] = new Element(
		2148, "assets/images/nopicture.gif",
		77, 52,
		"021380060 000", "VEM 125 FILTER BOX HEAT PROTECT",
		"", "",
		"4.59", "0",
		"1", 1,
		"", "2",
		"", "pd61983322.htm",
		"", 1,
		"3.1", "0",
		 0)
	
		Entry[2149] = new Element(
		2149, "assets/images/nopicture.gif",
		77, 52,
		"021380070 000", "RH NOISE REDUCTION SPONGE",
		"", "",
		"6.21", "0",
		"1", 1,
		"", "2",
		"", "pd-1119363048.htm",
		""
