	// 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="72" height="20" alt="Note item" 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>Before:&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>Now only:&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 += "Price on demand";
			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/EFE20432thumb.jpg",
		137, 94,
		"20432", "Bristol VRIII  Cat. No. 20432",
		"Devon General", "EFE",
		"17", "0",
		"1", 1,
		"", "18",
		"", "pd977365206.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/EFE29604.jpg",
		137, 69,
		"29604", "Leyland Olympian Type B  Cat. No. 29604",
		"Preston Bus", "EFE",
		"17", "0",
		"1", 1,
		"model", "18",
		"", "pd-1676141924.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/CC13401.jpg",
		130, 82,
		"CC13401", "MAN TGA XXL Curtainside  Cat. No. CC13401",
		"Eddie Stobart Ltd", "Corgi",
		"58", "0",
		"1", 1,
		"", "10",
		"", "pd223769722.htm",
		"", 1,
		"HR", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/EFE24903thumb.jpg",
		137, 79,
		"24903", "Mercedes Beaver  Cat. No. 24903",
		"Metrobus (Minimetro)", "EFE",
		"16", "0",
		"1", 1,
		"", "18",
		"", "pd1314985202.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/EFE29301.jpg",
		137, 64,
		"29301", "Leyland Olympian Type A  Cat. No. 29301",
		"Wilts &amp; Dorset", "EFE",
		"17", "0",
		"1", 1,
		"item", "18",
		"", "pd-58703642.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/EFE29501.jpg",
		137, 44,
		"29501", "Plaxton Panorama Type B  Cat. No. 29501",
		"Bristol Greyhound", "EFE",
		"16", "0",
		"1", 1,
		"item", "18",
		"", "pd-846683083.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/ooc41909.JPG",
		137, 86,
		"41909", "Leyland PD3 Queen Mary  Cat. No.41909",
		"Southdown", "Corgi",
		"20", "0",
		"1", 1,
		"item", "11",
		"", "pd-467972569.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/EFE26314thumb.jpg",
		137, 78,
		"26314", "Guy Arab II Utility  Cat. No. 26314",
		"Stockport", "EFE",
		"16.5", "0",
		"1", 1,
		"model", "18",
		"", "pd-1168731834.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/CC12218.jpg",
		130, 69,
		"CC12218", "Scania Dropside Crane Trailer  Cat. No. CC12218",
		"Ian Craig (Haulage) Ltd", "Corgi",
		"62", "0",
		"1", 1,
		"", "10",
		"", "pd1684326425.htm",
		"", 1,
		"HR", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/c628thumb.jpg",
		137, 89,
		"C628", "Stewart C628/630 wiring harness for T series decoders",
		"C628/C630 harness for Stewart C28/630 High Top for T series decoders with 9-pin decoder socket to 8 pin NMRA plug  1 ¾&quot; between connectors", "TCS",
		"4", "0",
		"1", 1,
		"item", "117",
		"", "pd1961784529.htm",
		"", 1,
		"TCS Harn", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/cbthumb.jpg",
		137, 93,
		"CB", "8-pin NMRA plug circuit board",
		"NEM 652 board", "TCS",
		"1.25", "0",
		"1", 1,
		"item", "117",
		"", "pd-1684894873.htm",
		"", 1,
		"TCS Harn", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/EFE29101thumb.jpg",
		137, 74,
		"29101", "Daimler DMS 2 Door  Cat. No. 29101",
		"Metrobus", "EFE",
		"17.5", "0",
		"1", 1,
		"item", "18",
		"", "pd1277659039.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/EFE27614thumb.jpg",
		137, 46,
		"27614", "Wright Volvo Endurance  Cat. No. 27614",
		"The Delaine", "EFE",
		"16", "0",
		"1", 1,
		"", "18",
		"", "pd-1156638128.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/EFE28809thumb.jpg",
		137, 69,
		"28809", "Leyland Titan 2 Door  Cat. No. 28809",
		"Blackburn Transport", "EFE",
		"17", "0",
		"1", 1,
		"", "18",
		"", "pd-1711468708.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/EFE29504thumb.jpg",
		137, 46,
		"29504", "Plaxton Panorama Type B  Cat. No. 29504",
		"Royal Blue", "EFE",
		"16", "0",
		"1", 1,
		"", "18",
		"", "pd-786728681.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/DG187002.jpg",
		118, 80,
		"DG187002", "Guy Big J Tipper &amp; Gravel Load   Cat. No. DG187002",
		"Wimpey   MSRP £11.99", "Corgi",
		"9.75", "0",
		"1", 1,
		"", "13",
		"", "pd2003334644.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/DG176008_Leyland Platform.jpg",
		137, 54,
		"DG176008", "Leyland 8 Wheel Platform Lorry &amp; Steel Load  Cat. No. DG176008",
		"Steel Co of Wales", "Corgi",
		"8", "0",
		"1", 1,
		"", "13",
		"", "pd1987131009.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/DG176000.jpg",
		112, 62,
		"DG176000", "Leyland 8 Wheel Dropside Lorry  Cat. No. DG176000",
		"BRS", "Corgi",
		"8", "0",
		"1", 1,
		"", "13",
		"", "pd1027895845.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/DG175007.jpg",
		137, 50,
		"DG175007", "Scammell Handyman Flatbed Trailer &amp; Steel Load  Cat. No. DG175007",
		"BRS", "Corgi",
		"11", "0",
		"1", 1,
		"", "13",
		"", "pd-2001138525.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/DG175006_Scammell Handyman.jpg",
		137, 54,
		"DG175006", "Scammell Handyman Tanker  Cat. No. DG175006",
		"BP", "Corgi",
		"11", "0",
		"1", 1,
		"", "13",
		"", "pd910021293.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/DG175004_Scammell Handyman.jpg",
		137, 55,
		"DG175004", "Scammell Handyman Flatbed Trailer &amp; Brick Load  Cat. No. DG175004",
		"Redland", "Corgi",
		"11", "0",
		"1", 1,
		"", "13",
		"", "pd245235601.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/DG174004.jpg",
		137, 91,
		"DG174004", "Noddy Van  Cat. No. DG174004",
		"Wilkinsons", "Corgi",
		"4", "0",
		"1", 1,
		"", "13",
		"", "pd-1235253607.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/OM43604.jpg",
		130, 82,
		"OM43604", "Plaxton Palatine II   Cat. No. OM43604",
		"Kentish Bus", "Corgi",
		"17.25", "0",
		"1", 1,
		"", "11",
		"", "pd-281426897.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/EFE16525.jpg",
		137, 71,
		"16525", "MCW Leyland Atlantean  Cat. No. 16525",
		"Great Yarmouth Corporation", "EFE",
		"17.5", "0",
		"1", 1,
		"", "18",
		"", "pd1856161977.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/dT-1_pkg_reduced.jpg",
		137, 224,
		"DT-1", "Infra-red detector/timer",
		"", "ITTC",
		"14", "0",
		"1", 1,
		"item", "62",
		"", "pd930791347.htm",
		"", 1,
		"Detectors", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/e6thumb.jpg",
		137, 35,
		"E6", "Proto 2000 E6 harness for T series decoders",
		"Life Like Proto 2000 E6 wiring harness for T series decoders with NMRA plug  3 9/16&quot; between connectors", "TCS",
		"4", "0",
		"1", 1,
		"item", "117",
		"", "pd82451437.htm",
		"", 1,
		"TCS Harn", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/epthumb.jpg",
		98, 90,
		"EP", "Extension plug for DPX decoder",
		"NEM 652 8-pin interface that can be used as NMRA socket on circuit boards", "TCS",
		"1.35", "0",
		"1", 1,
		"item", "117",
		"", "pd490954501.htm",
		"", 1,
		"TCS Harn", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ100", "US Steam Whistle",
		"", "ITTC",
		"18", "0",
		"1", 1,
		"item", "63",
		"", "pd-1374350954.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ105", "Track Sounds",
		"", "ITTC",
		"23", "0",
		"1", 1,
		"item", "63",
		"", "pd-107361115.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ110", "US Steam Loco Bell",
		"", "ITTC",
		"23", "0",
		"1", 1,
		"item", "63",
		"", "pd2075217184.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ115", "US Standing Loco",
		"", "ITTC",
		"16", "0",
		"1", 1,
		"item", "63",
		"", "pd-645695410.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ120", "US Water Fill Loco",
		"", "ITTC",
		"16", "0",
		"1", 1,
		"item", "63",
		"", "pd1961791276.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ125", "Steam Donkey (with whistle)",
		"", "ITTC",
		"16", "0",
		"1", 1,
		"item", "63",
		"", "pd1317614671.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ126", "Steam Donkey (without whistle)",
		"", "ITTC",
		"16", "0",
		"1", 1,
		"item", "63",
		"", "pd-531656939.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ130", "Steam Winch",
		"", "ITTC",
		"16", "0",
		"1", 1,
		"item", "63",
		"", "pd-1542602933.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ210", "US Diesel Bell",
		"", "ITTC",
		"16", "0",
		"1", 1,
		"item", "63",
		"", "pd1946997255.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ215", "Diesel Engine",
		"", "ITTC",
		"24", "0",
		"1", 1,
		"item", "63",
		"", "pd1498694541.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ280", "Trolley Bell (2 dings)",
		"", "ITTC",
		"24", "0",
		"1", 1,
		"item", "63",
		"", "pd599550083.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ300", "US Level Crossing Bell",
		"", "ITTC",
		"24", "0",
		"1", 1,
		"item", "63",
		"", "pd381955689.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ320-1", "Turntable 1",
		"", "ITTC",
		"18", "0",
		"1", 1,
		"item", "63",
		"", "pd1267351231.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ400", "Cow",
		"", "ITTC",
		"16", "0",
		"1", 1,
		"item", "63",
		"", "pd-1849578537.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ405", "Sheep",
		"", "ITTC",
		"16", "0",
		"1", 1,
		"item", "63",
		"", "pd-497946147.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ410", "Chickens/Cockerel",
		"", "ITTC",
		"16", "0",
		"1", 1,
		"item", "63",
		"", "pd-1334771885.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ415", "Pigs",
		"", "ITTC",
		"16", "0",
		"1", 1,
		"item", "63",
		"", "pd253485497.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ420", "Farmyard",
		"", "ITTC",
		"24", "0",
		"1", 1,
		"item", "63",
		"", "pd1201431183.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ425", "Puppies",
		"", "ITTC",
		"16", "0",
		"1", 1,
		"item", "63",
		"", "pd1237804885.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ430", "Horse trotting",
		"", "ITTC",
		"16", "0",
		"1", 1,
		"item", "63",
		"", "pd-1545449077.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ500", "Thunder",
		"", "ITTC",
		"18", "0",
		"1", 1,
		"item", "63",
		"", "pd109534897.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ505", "Brook/birds",
		"", "ITTC",
		"24", "0",
		"1", 1,
		"item", "63",
		"", "pd1352730695.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ506", "Brook only",
		"", "ITTC",
		"24", "0",
		"1", 1,
		"item", "63",
		"", "pd-581671987.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ510", "Night sounds",
		"", "ITTC",
		"16", "0",
		"1", 1,
		"item", "63",
		"", "pd-1049460029.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ515", "Waterfall",
		"", "ITTC",
		"16", "0",
		"1", 1,
		"item", "63",
		"", "pd-1077357911.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ520", "Ocean Seagulls/Foghorn",
		"", "ITTC",
		"20", "0",
		"1", 1,
		"item", "63",
		"", "pd1802009855.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ600", "Machine shop",
		"", "ITTC",
		"16", "0",
		"1", 1,
		"item", "63",
		"", "pd616351557.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ601", "Conveyor",
		"", "ITTC",
		"16", "0",
		"1", 1,
		"item", "63",
		"", "pd-905415941.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ610", "Saw mill",
		"", "ITTC",
		"16", "0",
		"1", 1,
		"item", "63",
		"", "pd94510497.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ615", "City Traffic",
		"", "ITTC",
		"16", "0",
		"1", 1,
		"item", "63",
		"", "pd-676349807.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ642", "Calliope",
		"", "ITTC",
		"16", "0",
		"1", 1,
		"item", "63",
		"", "pd-812878553.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ644", "Amusement Park",
		"", "ITTC",
		"24", "0",
		"1", 1,
		"item", "63",
		"", "pd413473709.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ660", "Children playing",
		"", "ITTC",
		"16", "0",
		"1", 1,
		"item", "63",
		"", "pd1114996131.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ700", "Track Crew  (Arc welder, Jack Hammer, Sledge Hammer) - Played individually",
		"", "ITTC",
		"16", "0",
		"1", 1,
		"item", "63",
		"", "pd494127241.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ701", "Track Crew  (Arc welder, Jack Hammer, Sledge Hammer) Mixed together",
		"", "ITTC",
		"16", "0",
		"1", 1,
		"item", "63",
		"", "pd1300751839.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ702", "Track Crew  (Gas welder, Jack Hammer, Sledge Hammer) Played individually",
		"", "ITTC",
		"16", "0",
		"1", 1,
		"item", "63",
		"", "pd-221127899.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ703", "Track Crew  (Gas welder, Jack Hammer, Sledge Hammer) Mixed together",
		"", "ITTC",
		"16", "0",
		"1", 1,
		"item", "63",
		"", "pd-1386796581.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ900", "US Station steam sounds",
		"", "ITTC",
		"23", "0",
		"1", 1,
		"item", "63",
		"", "pd-403461093.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ910", "US Station/Diesel passing",
		"", "ITTC",
		"23", "0",
		"1", 1,
		"item", "63",
		"", "pd383810497.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/images/nopicturegreen.jpg",
		133, 46,
		"K-1", "Harness kit",
		"Kit contains 1 x 8-pin standard NEM652 circuit board, 8 pins, 1 x  WH harness", "TCS",
		"2.75", "0",
		"1", 1,
		"item", "117",
		"", "pd1477955771.htm",
		"", 1,
		"TCS Harn", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/lhthumb.jpg",
		137, 104,
		"LH", "Long harness for T series decoders",
		"Long wiring harness for T series decoders with NMRA plug  7&quot; between connectors", "TCS",
		"3.5", "0",
		"1", 1,
		"item", "117",
		"", "pd-1396723359.htm",
		"", 1,
		"TCS Harn", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/mhthumb.jpg",
		137, 72,
		"MH", "Medium harness for T series decoders",
		"Medium wiring harness for T series decoders with NMRA plug  3 5/8 &quot; between connectors", "TCS",
		"4", "0",
		"1", 1,
		"item", "117",
		"", "pd-124593664.htm",
		"", 1,
		"TCS Harn", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/p2kthumb.jpg",
		137, 74,
		"P2K", "P2K Harness for T series decoders",
		"P2K harness for T series decoders and NMRA 8-pin board, 3/8&quot; between connectors", "TCS",
		"3.5", "0",
		"1", 1,
		"", "117",
		"", "pd1351199244.htm",
		"", 1,
		"TCS Harn", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/paharnessthumb.jpg",
		137, 77,
		"PA", "Proto PA wiring harness ",
		"Life Like Proto PA wiring harness with NMRA plug  2 7/8&quot; between connectors", "TCS",
		"3.5", "0",
		"1", 1,
		"", "117",
		"", "pd-130592722.htm",
		"", 1,
		"TCS Harn", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/shthumb.jpg",
		137, 59,
		"SH", "Short harness for T series decoders",
		"Short wiring harness for T series decoders with NMRA plug  1 ¼&quot; between connectors", "TCS",
		"4.5", "0",
		"1", 1,
		"item", "117",
		"", "pd-616545389.htm",
		"", 1,
		"TCS Harn", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/stfharnessthumb.jpg",
		137, 42,
		"STF", "Stewart F7/FT harness for T series decoders",
		"Stewart F7 and FT wiring harness for T series decoders with NMRA plug  3/8&quot; between connectors", "TCS",
		"3.5", "0",
		"1", 1,
		"item", "117",
		"", "pd2084945913.htm",
		"", 1,
		"TCS Harn", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/voharnessthumb.jpg",
		128, 100,
		"VO", "Stewart VO-100 harness for T series decoders",
		"Stewart VO-100 harness for T series decoders with NMRA plug  ¼&quot; between connectors", "TCS",
		"3.5", "0",
		"1", 1,
		"", "117",
		"", "pd936012495.htm",
		"", 1,
		"TCS Harn", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/whthumb.jpg",
		137, 110,
		"WH", "Standard harness for T series decoders",
		"7 1/2&quot; Standard wiring harness for T series decoders without NMRA plug", "TCS",
		"1.5", "0",
		"1", 1,
		"", "117",
		"", "pd838707605.htm",
		"", 1,
		"TCS Harn", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/sw4.jpg",
		51, 120,
		"SW4", "DPDT Toggle Switch",
		"", "ITTC",
		"0.7", "0",
		"1", 1,
		"item", "30",
		"", "pd1095500616.htm",
		"", 1,
		"Switches", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/sw1.jpg",
		50, 112,
		"SW1-B", "Push switch - black button",
		"", "ITTC",
		"0.35", "0",
		"1", 1,
		"item", "30",
		"Colours available;Black@", "pd-453461322.htm",
		"", 1,
		"Switches", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/sw2.jpg",
		51, 120,
		"SW2", "SPDT Toggle Switch",
		"", "ITTC",
		"0.5", "0",
		"1", 1,
		"item", "30",
		"", "pd732575700.htm",
		"", 1,
		"Switches", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/sd101.jpg",
		137, 72,
		"SD101", "6 piece metric screwdriver set",
		"", "ITTC",
		"1", "0",
		"1", 1,
		"item", "31",
		"", "pd-2082318258.htm",
		"", 1,
		"Tools", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/hled5packthumb.jpg",
		137, 108,
		"HLED-PW5", "5mm Protowhite (Golden White) LED",
		"Pack of 4 x 5mm Protowhite (Golden White) LEDs and 4 x 1K ohm resistors", "DCC Concepts",
		"4.95", "0",
		"1", 1,
		"pack", "29",
		"", "pd1217100496.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/hled5thumb.jpg",
		137, 176,
		"HLED-5MM", "5mm Protowhite (Golden White) LED",
		"Single 5mm Protowhite (Golden White) LED - min order quantity = 2", "DCC Concepts",
		"0.8", "0",
		"1", 1,
		"item", "29",
		"", "pd-2040914562.htm",
		"", 2,
		"LED", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/hled3thumb.jpg",
		137, 146,
		"HLED-3MM", "3mm Protowhite (Golden White) LED",
		"Single 3mm Protowhite (Golden White) LED - min order quantity = 2", "DCC Concepts",
		"0.8", "0",
		"1", 1,
		"item", "29",
		"", "pd-2105247780.htm",
		"", 2,
		"LED", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/r2391.jpg",
		137, 32,
		"R2391", "GWR County Class  &quot;County of Caernarvon&quot;",
		"R2391 GWR 4-6-0 County Class 1010 &quot;County of Caernarvon&quot;  RRP £85.00", "Hornby",
		"69.5", "0",
		"1", 1,
		"loco", "150",
		"", "pd-1551292067.htm",
		"", 1,
		"HornbyStea", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/1mmleds.jpg",
		137, 146,
		"HLED-PW1-W", "1mm Micro LED 10 pack - select MORE for colour choice",
		"Pack of 10 x 1mm  LEDs and 10 x 1K ohm resistors - 5 colours available - click on dropdown to select colour", "DCC Concepts",
		"8", "0",
		"1", 1,
		"pack", "29",
		"Colours available;Golden white@", "pd1100952140.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/15mmheatshrinkthumb.jpg",
		137, 137,
		"TW15-BK", "1.5mm heat shrink sleeving - 1 metre length - various colours",
		"1.5mm heat shrink sleeving - black", "Printasleeve",
		"1", "0",
		"1", 1,
		"metre", "28",
		"Color;Black@", "pd1119252074.htm",
		"", 1,
		"Shrink", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/images/nopicturegreen.jpg",
		133, 46,
		"TW25-BK", "2.5mm heat shrink sleeving - 1 metre length ",
		"2.5mm heat shrink sleeving  - BLACK", "Printasleeve",
		"1.4", "0",
		"1", 1,
		"metre", "28",
		"Colours available;Black@", "pd1534996699.htm",
		"", 1,
		"Shrink", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/EFE20435thumb.jpg",
		137, 72,
		"20435", "Bristol VRIII  Cat. No. 20435",
		"First Eastern National", "EFE",
		"17", "0",
		"1", 1,
		"model", "18",
		"", "pd1964349492.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/EFE16606.jpg",
		137, 58,
		"16606", "Leyland National Mk1 Short 2 Door  Cat. No. 16606",
		"London Transport", "EFE",
		"15.5", "0",
		"1", 1,
		"item", "18",
		"", "pd-1626288856.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/EFE27613.jpg",
		137, 51,
		"27613", "Wright Volvo Renown  Cat. No. 27613",
		"Brighton &amp; Hove", "EFE",
		"16", "0",
		"1", 1,
		"", "18",
		"", "pd-448822718.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/EFE29006thumb.jpg",
		137, 69,
		"29006", "GM Standard Fleetline  Cat. No. 29006",
		"Yorkshire Rider Halifax", "EFE",
		"17", "0",
		"1", 1,
		"model", "18",
		"", "pd1792188550.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/EFE29402.jpg",
		137, 46,
		"29402", "Bristol RELH Coach  Cat. No. 29402",
		"United", "EFE",
		"17", "0",
		"1", 1,
		"", "18",
		"", "pd876994254.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/EFE29801.jpg",
		137, 52,
		"29801", "Wright Dennis Lance  Cat. No. 29801",
		"London Country", "EFE",
		"17", "0",
		"1", 1,
		"item", "18",
		"", "pd-1551634277.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/DG175009.jpg",
		137, 55,
		"DG175009", "Scammell Handyman Tanker  Cat. No. DG175009",
		"Esso", "Corgi",
		"10.75", "0",
		"1", 1,
		"model", "13",
		"", "pd-56990497.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/DG176015thumb.jpg",
		130, 82,
		"DG176015", "Leyland 8 Wheel Dropside Lorry   Cat. No. DG176015",
		"Glasso Paints", "Corgi",
		"8", "0",
		"1", 1,
		"model", "13",
		"", "pd-462226274.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/DG187004.jpg",
		137, 59,
		"DG187004", "Guy Big J Tipper   Cat. No. DG187004 ",
		"Pointer   MSRP £11.99", "Corgi",
		"9.75", "0",
		"1", 1,
		"model", "13",
		"", "pd1805409835.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/OM44703_Dennis Dart SLF.jpg",
		137, 55,
		"OM44703", "Dennis Dart SLF/Plaxton   Cat. No. OM44703",
		"Thamesdown", "Corgi",
		"16", "0",
		"1", 1,
		"", "11",
		"", "pd118560606.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/hledt1bthumb.jpg",
		137, 150,
		"HLED-T1 BL3", "3mm LED Blue",
		"Single 3mm Blue (Clear) LED - min order quantity 2", "DCC Concepts",
		"0.9", "0",
		"1", 1,
		"item", "29",
		"", "pd1104415850.htm",
		"", 2,
		"LED", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/hledrd3thumb.jpg",
		137, 111,
		"HLED-T1 RD3", "3mm LED Red",
		"Single 3mm red diffused LED - min order quantity 2", "DCC Concepts",
		"0.2", "0",
		"1", 1,
		"item", "29",
		"", "pd-901107544.htm",
		"", 2,
		"LED", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/thumb/hledt1gthumb.jpg",
		137, 148,
		"HLED-T1 GR3", "3mm LED Green",
		"Single 3mm green diffused LED - min order quantity 2", "DCC Concepts",
		"0.2", "0",
		"1", 1,
		"item", "29",
		"", "pd-1509153002.htm",
		"", 2,
		"LED", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/hledt1ythumb.jpg",
		137, 119,
		"HLED-T1 YL3", "3mm LED Yellow",
		"Single 3mm yellow diffused LED - min order quantity 2", "DCC Concepts",
		"0.2", "0",
		"1", 1,
		"item", "29",
		"", "pd1525742388.htm",
		"", 2,
		"LED", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/thumb/efe26315thumb.jpg",
		137, 84,
		"26315", "Guy Arab II Utility  Cat. No. 26315",
		"Southdown", "EFE",
		"16.5", "0",
		"1", 1,
		"model", "18",
		"", "pd-51496247.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/efe27901thumb.jpg",
		137, 69,
		"27901", "Daimler DMS Open Top  Cat. No. 27901",
		"Big Bus Company", "EFE",
		"17", "0",
		"1", 1,
		"model", "18",
		"", "pd1143599461.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[102] = new Element(
		102, "assets/thumb/efe29404thumb.jpg",
		137, 49,
		"29404", "Bristol RELH D/P Coach  Cat. No. 29404",
		"East Midland", "EFE",
		"17", "0",
		"1", 1,
		"model", "18",
		"", "pd-867655137.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[103] = new Element(
		103, "assets/thumb/efe29803thumb.jpg",
		137, 39,
		"29803", "Wright Dennis Lance  Cat. No. 29803",
		"Badgerline", "EFE",
		"17", "0",
		"1", 1,
		"model", "18",
		"", "pd1105552574.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/EFE17216thumb.jpg",
		137, 81,
		"17216", "Leyland National Mk1 Long  Cat. No. 17216",
		"Stagecoach", "EFE",
		"15.5", "0",
		"1", 1,
		"item", "18",
		"", "pd-2140697254.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/EFE24322.jpg",
		137, 75,
		"24322", "BET Leyland Tiger Club  Cat. No. 24322",
		"Stratford Blue", "EFE",
		"16", "0",
		"1", 1,
		"", "18",
		"", "pd-962634984.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/thumb/EFE24813.jpg",
		137, 67,
		"24813", "Mercedes Minibus  Cat. No. 24813",
		"Northumbria", "EFE",
		"16", "0",
		"1", 1,
		"model", "18",
		"", "pd-1450134978.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/EFE25403thumb.jpg",
		121, 118,
		"25403", "MCW Daimler Fleetline  Cat. No. 25403",
		"City of Cardiff", "EFE",
		"16", "0",
		"1", 1,
		"model", "18",
		"", "pd-2085154060.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/efe24814thumb.jpg",
		137, 64,
		"24814", "Mercedes Minibus  Cat. No. 24814",
		"First Eastern Counties", "EFE",
		"16", "0",
		"1", 1,
		"item", "18",
		"", "pd-882338959.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/EFE13915thumb.jpg",
		137, 77,
		"13915", "Bristol Lodekka FLF  Cat. No. 13915",
		"Western SMT", "EFE",
		"17", "0",
		"1", 1,
		"item", "18",
		"", "pd1586539596.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/thumb/OM41109thumb.jpg",
		137, 87,
		"OM41109", "Daimler CVG6/East Lancs  Cat. No. OM41109",
		"Bradford City Transport", "Corgi",
		"17.25", "0",
		"1", 1,
		"model", "11",
		"", "pd-974228901.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[111] = new Element(
		111, "assets/thumb/OM41208thumb.jpg",
		137, 81,
		"OM41208", "Wright Eclipse Gemini   Cat. No. OM41208",
		"London United", "Corgi",
		"18.5", "0",
		"1", 1,
		"model", "11",
		"", "pd733910223.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/OM42410thumb.jpg",
		137, 56,
		"OM42410", "Bedford Val/Panorama 1   Cat. No. OM42410",
		"Yelloway Motor Services", "Corgi",
		"16.5", "0",
		"1", 1,
		"model", "11",
		"", "pd-1192798697.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/thumb/OM43312thumb.jpg",
		137, 65,
		"OM43312", "Plaxton Premiere   Cat. No. OM43312",
		"Wilts &amp; Dorset Bus Co.", "Corgi",
		"18.5", "0",
		"1", 1,
		"model", "11",
		"", "pd-1039115783.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/thumb/OM44704thumb.jpg",
		137, 62,
		"OM44704", "Dennis Dart SLF/Plaxton   Cat. No. OM44704",
		"Arriva Kent &amp; Sussex (Transweald)", "Corgi",
		"16", "0",
		"1", 1,
		"model", "11",
		"", "pd-998906987.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/thumb/DG176017thumb.jpg",
		137, 57,
		"DG176017", "Leyland 8 wheel Dropside Lorry   Cat. No. DG176017",
		"Entress Transport Ltd", "Corgi",
		"8", "0",
		"1", 1,
		"model", "13",
		"", "pd1592415709.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/thumb/DG186006thumb.jpg",
		137, 64,
		"DG186006", "ERF LV Low Loader &amp; Boat   Cat. No. DG186006",
		"Robert Walker Ltd   MSRP £14.99", "Corgi",
		"11", "0",
		"1", 1,
		"model", "13",
		"", "pd-2016410797.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[117] = new Element(
		117, "assets/thumb/DG186007thumb.jpg",
		137, 69,
		"DG186007", "ERF LV Tanker   Cat. No. DG186007",
		"NAFTA   MSRP £12.99", "Corgi",
		"10", "0",
		"1", 1,
		"model", "13",
		"", "pd-1175928577.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[118] = new Element(
		118, "assets/thumb/DG187006thumb.jpg",
		137, 75,
		"DG187006", "Guy Big J Tipper &amp; Load   Cat. No. DG187006",
		"BRS   MSRP £12.99", "Corgi",
		"10", "0",
		"1", 1,
		"model", "13",
		"", "pd-1186329918.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[119] = new Element(
		119, "assets/thumb/DG198001thumb.jpg",
		137, 72,
		"DG198001", "Scammell Contractor x 2 Trailer &amp; Transformer Load    Cat. No. DG198001",
		"Siddle Cook   MSRP £19.99", "Corgi",
		"16", "0",
		"1", 1,
		"model", "13",
		"", "pd-1633662123.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[120] = new Element(
		120, "assets/thumb/DG198002thumb.jpg",
		137, 95,
		"DG198002", "Scammell Contractor Wrecker   Cat. No. DG198002",
		"BRS", "Corgi",
		"10", "0",
		"1", 1,
		"model", "13",
		"", "pd-13306117.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[121] = new Element(
		121, "assets/thumb/efe29302thumb.jpg",
		137, 64,
		"29302", "Leyland Olympian  Cat. No. 29302",
		"Wilts &amp; Dorset", "EFE",
		"17", "0",
		"1", 1,
		"model", "18",
		"", "pd1314324144.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[122] = new Element(
		122, "assets/thumb/EFE16124thumb.jpg",
		137, 72,
		"16124", "Leyland PD2 Highbridge  Cat. No. 16124",
		"Bradford City Transport", "EFE",
		"15.5", "0",
		"1", 1,
		"item", "18",
		"", "pd1692298675.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[123] = new Element(
		123, "assets/thumb/EFE28808.jpg",
		137, 88,
		"28808", "Leyland Titan 2 Door  Cat. No. 28808",
		"Metroline", "EFE",
		"17", "0",
		"1", 1,
		"model", "18",
		"", "pd554837764.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[124] = new Element(
		124, "assets/thumb/EFE29005.jpg",
		137, 67,
		"29005", "GM Standard Fleetline  Cat. No. 29005",
		"Swindon Thamesdown", "EFE",
		"17", "0",
		"1", 1,
		"", "18",
		"", "pd1656838572.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[125] = new Element(
		125, "assets/thumb/DG148009.jpg",
		137, 93,
		"DG148009", "Scammell Scarab Van Trailer  Cat. No. DG148009",
		"Railfrieght", "Corgi",
		"8", "0",
		"1", 1,
		"", "13",
		"", "pd1953277089.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[126] = new Element(
		126, "assets/thumb/OM41909.jpg",
		130, 82,
		"OM41909", "Leyland PD3/Queen Mary   Cat. No. OM41909",
		"Southdown", "Corgi",
		"17.25", "0",
		"1", 1,
		"model", "11",
		"", "pd-82455191.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[127] = new Element(
		127, "assets/thumb/DG148011.jpg",
		137, 61,
		"DG148011", "Scammell Scarab Flatbed Trailer &amp; Parcel Load  Cat. No. DG148011",
		"United Glass", "Corgi",
		"8", "0",
		"1", 1,
		"", "13",
		"", "pd-556961044.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[128] = new Element(
		128, "assets/thumb/DG174006.jpg",
		137, 93,
		"DG174006", "Noddy Van  Cat. No. DG174006",
		"Anderton &amp; Rowland", "Corgi",
		"5", "0",
		"1", 1,
		"", "13",
		"", "pd852892213.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[129] = new Element(
		129, "assets/thumb/DG176011.jpg",
		137, 93,
		"DG176011", "Leyland 8 Wheel Dropside Lorry  Cat. No. DG176011",
		"Jack Richards", "Corgi",
		"8", "0",
		"1", 1,
		"", "13",
		"", "pd1583236115.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[130] = new Element(
		130, "assets/thumb/DG186003.jpg",
		137, 69,
		"DG186003", "ERF LV Sheeted Flatbed Trailer   Cat. No. DG186003",
		"Pollock   MSRP £12.99", "Corgi",
		"10.5", "0",
		"1", 1,
		"model", "13",
		"", "pd-1750800430.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[131] = new Element(
		131, "assets/thumb/OM43402_Plaxton Beaver.jpg",
		137, 70,
		"OM43402", "Plaxton Beaver Cat. No. OM43402  - reduced price - damaged case",
		"East Yorkshire Motor Services", "Corgi",
		"14", "0",
		"1", 1,
		"model", "11",
		"", "pd-166505900.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[132] = new Element(
		132, "assets/thumb/OM44702.jpg",
		130, 82,
		"OM44702", "Dennis Dart   Cat. No. OM44702",
		"Metroline", "Corgi",
		"16", "0",
		"1", 1,
		"", "11",
		"", "pd-1372275225.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[133] = new Element(
		133, "assets/thumb/uk1018thumb.jpg",
		137, 79,
		"UK1018", "Dennis Trident Alexander ALX400  Cat. No. UKBUS1018 ",
		"First London", "Creative Master Northcord Ltd",
		"22.5", "0",
		"1", 1,
		"", "15",
		"", "pd1106572143.htm",
		"", 1,
		"CMNL", "0",
		 0)
	
		Entry[134] = new Element(
		134, "assets/thumb/ukbus2012thumb.jpg",
		137, 89,
		"UK2012", "Dennis Trident Plaxton President  Cat. No. UKBUS2012 ",
		"Stagecoach Oxford Brookes Bus", "Creative Master Northcord Ltd",
		"22.5", "0",
		"1", 1,
		"model", "15",
		"", "pd800708478.htm",
		"", 1,
		"CMNL", "0",
		 0)
	
		Entry[135] = new Element(
		135, "assets/thumb/uk3009thumb.jpg",
		137, 62,
		"UK3009", "Dennis Dart MPD/Plaxton  Cat. No. UKBUS3009",
		"Southern Vectis", "Creative Master Northcord Ltd",
		"17.5", "0",
		"1", 1,
		"model", "15",
		"", "pd1114205034.htm",
		"", 1,
		"CMNL", "0",
		 0)
	
		Entry[136] = new Element(
		136, "assets/thumb/m1p-15.jpg",
		137, 133,
		"M1P-15", "M1-P15 2 function decoder for Atlas MP15 loco",
		"M1-P15 2 function decoder for Atlas MP15 loco with 8-pin NMRA plug fitted", "TCS",
		"26.5", "0",
		"1", 1,
		"decoder", "116",
		"", "pd-1470295885.htm",
		"1::10::2.5;", 1,
		"TCSDCC", "0",
		 0)
	
		Entry[137] = new Element(
		137, "assets/thumb/M3.jpg",
		137, 76,
		"M3", "M3 series 3 function decoders",
		"Micro decoder (N Scale) 3 x 100mA functions with full lighting effects", "TCS",
		"25", "0",
		"1", 1,
		"decoder", "116",
		"Harness;Wires only@", "pd-1228621564.htm",
		"1::5::1.5;", 1,
		"TCSDCC", "0",
		 0)
	
		Entry[138] = new Element(
		138, "assets/thumb/MC2.jpg",
		137, 88,
		"MC2", "MC2 range of mini 2 function decoders",
		"Mini decoder (N Scale), 2 x 100mA function outputs, with 7-pin micro connector", "TCS",
		"19.75", "0",
		"1", 1,
		"decoder", "116",
		"Harness;Wires only@", "pd-1310896009.htm",
		"", 1,
		"TCSDCC", "0",
		 0)
	
		Entry[139] = new Element(
		139, "assets/thumb/MC4.jpg",
		137, 90,
		"MC4", "MC4 range of micro 4 function decoders",
		"MC4 mini 4 function decoder with 7 pin mini connector and 4 x 100mA function outputs", "TCS",
		"21.5", "0",
		"1", 1,
		"decoder", "116",
		"Harness;Wires only@", "pd-1930456539.htm",
		"", 1,
		"TCSDCC", "0",
		 0)
	
		Entry[140] = new Element(
		140, "assets/thumb/MC6.jpg",
		137, 88,
		"MC6", "MC6 range of 6 function decoders",
		"MC6 Six Function Micro Decoder with  X series features", "TCS",
		"24", "0",
		"1", 1,
		"decoder", "116",
		"Harness;Wires only@", "pd-2090536275.htm",
		"", 1,
		"TCSDCC", "0",
		 0)
	
		Entry[141] = new Element(
		141, "assets/thumb/t1b.jpg",
		137, 134,
		"T1", "T1 2 function decoder with back EMF",
		"HO/OO Scale decoder with  2 x 100mA functions with some lighting", "TCS",
		"16.5", "0",
		"1", 1,
		"decoder", "116",
		"Harness;Wires only@", "pd-154663332.htm",
		"", 1,
		"TCSDCC", "0",
		 0)
	
		Entry[142] = new Element(
		142, "assets/thumb/tcs-t4xthumb.jpg",
		137, 301,
		"T4X", "T4X - X series 4 function decoder with back EMF",
		"T4X HO/OO 1.3 amp 4 function decoder with back EMF, 4 x 100mA function outputs, harness &amp; 8 pin NMRA plug - click on down arrow for harness options", "TCS",
		"19.5", "0",
		"1", 1,
		"decoder", "116",
		"Harness;Wires only@", "pd1103758117.htm",
		"", 1,
		"TCSDCC", "0",
		 0)
	
		Entry[143] = new Element(
		143, "assets/thumb/tcs-t6xthumb.jpg",
		137, 312,
		"T6X", "T6X 6 function decoder with BEMF",
		"A powerful decoder for OO/HO scale with 9-pin connector and 6 x 100mA outputs", "TCS",
		"20", "0",
		"1", 1,
		"decoder", "116",
		"", "pd1097496954.htm",
		"", 1,
		"TCSDCC", "0",
		 0)
	
		Entry[144] = new Element(
		144, "assets/thumb/with_x6.jpg",
		137, 112,
		"M4", "M4 Four function, 1-amp N or HO small hard-wired X series micro decoder",
		"Four function, 1-amp N or HO small hard-wired X series micro decoder with 4 x 100mA outputs", "TCS",
		"25.5", "0",
		"1", 1,
		"decoder", "116",
		"Harness;Wires only@", "pd749876340.htm",
		"", 1,
		"TCSDCC", "0",
		 0)
	
		Entry[145] = new Element(
		145, "assets/thumb/efe12307thumb.jpg",
		137, 59,
		"12307", "Harrington Grenadier  Cat. No. 12307",
		"North Western", "EFE",
		"16", "0",
		"1", 1,
		"model", "18",
		"", "pd383310456.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[146] = new Element(
		146, "assets/thumb/efe13916thumb.jpg",
		137, 74,
		"13916", "Bristol Lodekka FLF  Cat. No. 13916",
		"Stagecoach", "EFE",
		"17", "0",
		"1", 1,
		"model", "18",
		"", "pd918037862.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[147] = new Element(
		147, "assets/thumb/efe18007thumb.jpg",
		137, 74,
		"18007", "MCW Daimler Fleetline  Cat. No. 18007",
		"Belfast Corporation", "EFE",
		"16", "0",
		"1", 1,
		"model", "18",
		"", "pd-271430450.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[148] = new Element(
		148, "assets/thumb/efe20633thumb.jpg",
		137, 46,
		"20633", "Plaxton Pointer Dart  Cat. No. 20633",
		"Western National", "EFE",
		"15", "0",
		"1", 1,
		"model", "18",
		"", "pd-1739696710.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[149] = new Element(
		149, "assets/thumb/MC2.jpg",
		137, 88,
		"MC2-5", "MC2 mini 2 function decoder 5 pack",
		"Mini decoder (N Scale), 2 x 100mA function outputs, with back EMF and 7-pin micro connector, two types available -  pack of 5", "TCS",
		"84", "0",
		"1", 1,
		"pack", "116",
		"Harness;Wires only@", "pd1107853332.htm",
		"", 1,
		"TCSDCC", "0",
		 0)
	
		Entry[150] = new Element(
		150, "assets/thumb/EFE17701.jpg",
		137, 43,
		"17701", "Leyland National MkII Long  Cat. No. 17701",
		"Colchester Transport", "EFE",
		"15.5", "0",
		"1", 1,
		"item", "18",
		"", "pd-2113001896.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[151] = new Element(
		151, "assets/thumb/efe17702thumb.jpg",
		137, 53,
		"17702", "Leyland National MkII Long  Cat. No. 17702",
		"Go Northern", "EFE",
		"15.5", "0",
		"1", 1,
		"model", "18",
		"", "pd-1543191458.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[152] = new Element(
		152, "assets/thumb/EFE18609.jpg",
		137, 84,
		"18609", "Bristol VRIII Open Top  Cat. No. 18609",
		"Village Bus Co.", "EFE",
		"16", "0",
		"1", 1,
		"item", "18",
		"", "pd-813877906.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[153] = new Element(
		153, "assets/thumb/EFE20431.jpg",
		137, 76,
		"20431", "Bristol VRIII  Cat. No. 20431",
		"Brighton &amp; Hove", "EFE",
		"17", "0",
		"1", 1,
		"item", "18",
		"", "pd-239999667.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[154] = new Element(
		154, "assets/thumb/EFE25806DLthumb.jpg",
		137, 75,
		"25806DL", "Daimler DMS 1 Door  Cat. No. 25806DL",
		"Midland Fox De-Luxe", "EFE",
		"17", "0",
		"1", 1,
		"", "18",
		"", "pd-657747534.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[155] = new Element(
		155, "assets/thumb/EFE26804.jpg",
		137, 87,
		"26804", "Leyland Duple  Cat. No. 26804",
		"Wallace Arnold", "EFE",
		"17", "0",
		"1", 1,
		"item", "18",
		"", "pd1619967057.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[156] = new Element(
		156, "assets/thumb/EFE29603thumb.jpg",
		137, 130,
		"29603", "Leyland Olympian Type B  Cat. No. 29603",
		"Solent Blueline", "EFE",
		"17", "0",
		"1", 1,
		"", "18",
		"", "pd-1099498944.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[157] = new Element(
		157, "assets/thumb/CC82225.jpg",
		137, 85,
		"CC82225", "Austin Cooper Mini - Club Special 2003  Cat. No. CC82225",
		"Austin Cooper Mini-Acropolis Rally 2003, Car  No. 22 Robert Stacey &amp; Nicky West", "Corgi",
		"7", "0",
		"1", 1,
		"item", "9",
		"", "pd827507660.htm",
		"", 1,
		"Collectors", "0",
		 0)
	
		Entry[158] = new Element(
		158, "assets/thumb/CC12222.jpg",
		130, 82,
		"CC12222", "Scania 4 Series Livestock Transporter  Cat. No. CC12222",
		"Olivers Transport Ltd", "Corgi",
		"71", "0",
		"1", 1,
		"", "10",
		"", "pd-2140152251.htm",
		"", 1,
		"HR", "0",
		 0)
	
		Entry[159] = new Element(
		159, "assets/thumb/CC12913.jpg",
		130, 82,
		"CC12913", "Scania Topline Curtainside  Cat. No. CC12913",
		"T Alun Jones Ltd", "Corgi",
		"79", "0",
		"1", 1,
		"item", "10",
		"", "pd-564283608.htm",
		"", 1,
		"HR", "0",
		 0)
	
		Entry[160] = new Element(
		160, "assets/thumb/DG186004thumb.jpg",
		130, 82,
		"DG186004", "ERF LV Platform Trailer &amp; Sack Load   Cat. No. DG186004",
		"Ken Thomas Ltd   MSRP £12.99", "Corgi",
		"10.5", "0",
		"1", 1,
		"", "13",
		"", "pd-686461641.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[161] = new Element(
		161, "assets/thumb/r2413thumb.jpg",
		137, 40,
		"R2413", "Class 31 BR Blue No.31270",
		"R2413 BR Class 31 Blue No.31270  Weathered MSRP £89.99", "Hornby",
		"71.5", "0",
		"1", 1,
		"loco", "151",
		"", "pd1931217456.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[162] = new Element(
		162, "assets/thumb/r2472athumb.jpg",
		137, 34,
		"R2472A", "Class 37 BR Blue (W) No.37260 ",
		"R2472A BR Class 37 Blue (W) No. 37260 &quot;Radio Highland&quot;   MSRP £58.99", "Hornby",
		"49", "0",
		"1", 1,
		"loco", "151",
		"", "pd-1616867416.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[163] = new Element(
		163, "assets/thumb/r2472athumb.jpg",
		137, 34,
		"R2472B", "Class 37 BR Blue (W) No.37261",
		"R2472B BR Class 37 Blue (W) No.37261 &quot;Caithness&quot;  MSRP £58.99", "Hornby",
		"49", "0",
		"1", 1,
		"loco", "151",
		"", "pd1944428054.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[164] = new Element(
		164, "assets/thumb/r2477a.jpg",
		137, 29,
		"R2477A", "Class 56 Transrail No.56113",
		"R2477A Transrail Class 56 No.56113   MSRP £55.99", "Hornby",
		"49", "0",
		"1", 1,
		"loco", "151",
		"", "pd1986218548.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[165] = new Element(
		165, "assets/thumb/r2479athumb.jpg",
		137, 33,
		"R2479A", "Class 47 Diesel loco in Cotswold Rail livery",
		"R2479A Class 47 Cotswold Rail No. 47 200 The Fosse Way  MSRP £55.99", "Hornby",
		"45", "0",
		"1", 1,
		"loco", "151",
		"", "pd1107004290.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[166] = new Element(
		166, "assets/thumb/r2479bthumb.jpg",
		137, 28,
		"R2479B", "Class 47 loco in Cotswold Rail livery",
		"R2479B Class 47 Cotswold Rail No. 47 316 Carn Peak   MSRP £55.99", "Hornby",
		"45", "0",
		"1", 1,
		"loco", "151",
		"", "pd-758176384.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[167] = new Element(
		167, "assets/thumb/r2455thumb.jpg",
		137, 28,
		"R2455", "BR Castle - Pendennis Castle ",
		"R2455 BR Castle Class 4-6-0 loco in BR green - 4079 &quot;Pendennis Castle&quot;  DCC Ready  MSRP £88.99", "Hornby",
		"71.5", "0",
		"1", 1,
		"loco", "150",
		"", "pd1577849618.htm",
		"", 1,
		"HornbyStea", "0",
		 0)
	
		Entry[168] = new Element(
		168, "assets/images/nopicturegreen.jpg",
		133, 46,
		"41902", "Leyland PD3 Queen Mary  Cat. No. 41902",
		"Southdown", "Corgi",
		"20", "0",
		"1", 1,
		"item", "11",
		"", "pd1482810445.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[169] = new Element(
		169, "assets/thumb/efe16318.jpg",
		137, 61,
		"16318DL", "Bristol LS  Cat. No. 16318DL",
		"Midland General", "EFE",
		"12.5", "0",
		"1", 1,
		"model", "18",
		"", "pd-314605326.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[170] = new Element(
		170, "assets/thumb/efe24811.jpg",
		137, 65,
		"24811", "Mercedes Minibus  Cat. No. 24811",
		"London &amp; Country", "EFE",
		"16", "0",
		"1", 1,
		"model", "18",
		"", "pd-901886842.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[171] = new Element(
		171, "assets/thumb/efe25604.jpg",
		137, 81,
		"25604", "RCL RM Original  Cat. No. 25604",
		"London Sightseeing", "EFE",
		"16", "0",
		"1", 1,
		"model", "18",
		"", "pd176643620.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[172] = new Element(
		172, "assets/thumb/efe28902.jpg",
		137, 67,
		"28902", "GM Standard Atlantean  Cat. No. 28902",
		"East Kent", "EFE",
		"16", "0",
		"1", 1,
		"model", "18",
		"", "pd-769265848.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[173] = new Element(
		173, "assets/thumb/ph10-thumb.jpg",
		137, 71,
		"N-PH-10", "PowerPro - 10 Amp system w/D408SR decoder",
		"PowerPro Starter Set - consists of: Command station, PB110 power station, ProCab,  manual, cab wire", "NCE",
		"450", "0",
		"1", 1,
		"set", "98",
		"", "pd1613030287.htm",
		"", 1,
		"Starter", "0",
		 0)
	
		Entry[174] = new Element(
		174, "assets/thumb/phprofamily.jpg",
		137, 103,
		"N-PH-PRO", "PowerPro System",
		"PowerPro 5 Amp System - consists of: Command station, 5A booster, ProCab, UTP unit, manual, cab wire", "NCE",
		"379", "0",
		"1", 1,
		"set", "98",
		"", "pd1109976794.htm",
		"", 1,
		"Starter", "0",
		 0)
	
		Entry[175] = new Element(
		175, "assets/thumb/pb105-thumb.jpg",
		137, 51,
		"N-PB105", "PB105 Power Booster",
		"5 Amp Power Booster (requires separate 5 Amp transformer)", "NCE",
		"105", "0",
		"1", 1,
		"item", "99",
		"", "pd-1732218850.htm",
		"", 1,
		"Comps", "0",
		 0)
	
		Entry[176] = new Element(
		176, "assets/thumb/phboxthumb.jpg",
		137, 95,
		"N-PH-Box", "PowerPro System box for 5 amp system",
		"PowerPro System Box with booster and cables", "NCE",
		"245", "0",
		"1", 1,
		"item", "99",
		"", "pd687661707.htm",
		"", 1,
		"Comps", "0",
		 0)
	
		Entry[177] = new Element(
		177, "assets/thumb/procabthumb.jpg",
		113, 246,
		"N-ProCab", "Deluxe Cab",
		"Deluxe Cab, Backlit LCD with digital encoder, extra features", "NCE",
		"112", "0",
		"1", 1,
		"item", "100",
		"", "pd1644117503.htm",
		"", 1,
		"Throttles", "0",
		 0)
	
		Entry[178] = new Element(
		178, "assets/thumb/cab4e.jpg",
		95, 169,
		"N-CAB04e", "Intermediate Cab 04e",
		"Intermediate Cab, with digital encoder speed knob and switch to simultaneously control 2 locos", "NCE",
		"83", "0",
		"1", 1,
		"item", "100",
		"", "pd-2086760060.htm",
		"", 1,
		"Throttles", "0",
		 0)
	
		Entry[179] = new Element(
		179, "assets/thumb/d13sr-thumb.jpg",
		137, 51,
		"N-D13SR", "D13SR OO/HO 4 function wires only decoder",
		"D13SR OO/HO decoder, 4 function outputs generic decoder", "NCE",
		"14", "0",
		"1", 1,
		"decoder", "101",
		"Multi-pack;Single item@", "pd-692837208.htm",
		"", 1,
		"HODec", "0",
		 0)
	
		Entry[180] = new Element(
		180, "assets/thumb/d13sr-thumb.jpg",
		137, 51,
		"N-D13SRP", "D13SRP OO/HO decoder with 4in (100mm) wires terminated with 8 pin NMRA plug",
		"D13SR OO/HO 4 function silent running decoder with 4in (100mm) wires terminated with 8 pin NMRA plug", "NCE",
		"18.5", "0",
		"1", 1,
		"decoder", "101",
		"", "pd-1735071615.htm",
		"", 1,
		"HODec", "0",
		 0)
	
		Entry[181] = new Element(
		181, "assets/thumb/d15sr-thumb.jpg",
		136, 70,
		"N-D15SR", "D15SR OO/HO 6 function decoder",
		"D15SR OO/HO decoder, 6 function with 9 pin plug and 9&quot; (225m) harness", "NCE",
		"21", "0",
		"1", 1,
		"decoder", "101",
		"Harness;Wires only@", "pd-355685731.htm",
		"", 1,
		"HODec", "0",
		 0)
	
		Entry[182] = new Element(
		182, "assets/thumb/decocdertester.jpg",
		137, 86,
		"N-DTK", "DTK Decoder Tester",
		"Decoder tester kit, 8 and 9 pin plugs, output for motor connection, 4 functions", "NCE",
		"20", "0",
		"1", 1,
		"item", "107",
		"", "pd1122956855.htm",
		"", 1,
		"Access", "0",
		 0)
	
		Entry[183] = new Element(
		183, "assets/thumb/dasr-thumb.jpg",
		137, 39,
		"N-DASR", "DASR Replacement 5 function decoder",
		"DASR 5 function Silent Running decoder, replaces circuit board in locos with Kato drive mechanisms", "NCE",
		"18", "0",
		"1", 1,
		"decoder", "101",
		"", "pd1110102622.htm",
		"", 1,
		"HODec", "0",
		 0)
	
		Entry[184] = new Element(
		184, "assets/thumb/p2k-srthumb.jpg",
		137, 103,
		"N-P2K-SR", "P2KSR 5 function plug-in decoder",
		"P2KSR 5 function plugin decoder for Lifelike Proto 2000 GP7/9/30/38 and SD60 locos", "NCE",
		"20.5", "0",
		"1", 1,
		"decoder", "101",
		"", "pd1110321635.htm",
		"", 1,
		"HODec", "0",
		 0)
	
		Entry[185] = new Element(
		185, "assets/thumb/efe20436thumb.jpg",
		137, 69,
		"20436", "Bristol VRIII  Cat. No. 20436",
		"Yorkshire Rider Bradford", "EFE",
		"17", "0",
		"1", 1,
		"item", "18",
		"", "pd1931179948.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[186] = new Element(
		186, "assets/thumb/EFE22513thumb.jpg",
		137, 46,
		"22513", "Alexander Y Type  Cat. No. 22513",
		"SELNEC Cheshire", "EFE",
		"16", "0",
		"1", 1,
		"item", "18",
		"", "pd-666558827.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[187] = new Element(
		187, "assets/thumb/efe28901.jpg",
		137, 73,
		"28901", "GM Atlantean  Cat. No. 28901",
		"Maidstone &amp; District", "EFE",
		"16", "0",
		"1", 1,
		"model", "18",
		"", "pd638046730.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[188] = new Element(
		188, "assets/thumb/efe29605thumb.jpg",
		137, 68,
		"29605", "Leyland Olympian  Cat. No. 29605",
		"Go North East", "EFE",
		"17", "0",
		"1", 1,
		"model", "18",
		"", "pd-1168207851.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[189] = new Element(
		189, "assets/thumb/efe29606thumb.jpg",
		137, 64,
		"29606", "Leyland Olympian  Cat. No. 29606",
		"Maidstone &amp; District", "EFE",
		"17", "0",
		"1", 1,
		"model", "18",
		"", "pd307165628.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[190] = new Element(
		190, "assets/thumb/CC12919thumb.jpg",
		137, 51,
		"CC12919", "Scania Topline Houghton Parkhouse Livestock Transporter  Cat. No. CC12919",
		"MacTaggart Bros &amp; Co", "Corgi",
		"79", "0",
		"1", 1,
		"model", "10",
		"", "pd-1495312429.htm",
		"", 1,
		"HR", "0",
		 0)
	
		Entry[191] = new Element(
		191, "assets/thumb/DG146012thumb.jpg",
		137, 87,
		"DG146012", "Guy Pantechnicon  Cat. No. DG146012",
		"Griff Fender", "Corgi",
		"5", "0",
		"1", 1,
		"model", "13",
		"", "pd623019449.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[192] = new Element(
		192, "assets/thumb/DG176006.jpg",
		137, 67,
		"DG176006", "Leyland 8 Wheel Dropside Lorry  Cat. No. DG176006",
		"Eddie Stobart Ltd", "Corgi",
		"6.25", "0",
		"1", 1,
		"", "13",
		"", "pd2005375195.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[193] = new Element(
		193, "assets/thumb/DG186001.jpg",
		118, 80,
		"DG186001", "ERF LV Flatbed Trailer   Cat. No. DG186001",
		"Eddie Stobart Ltd   MSRP £12.99", "Corgi",
		"10.5", "0",
		"1", 1,
		"", "13",
		"", "pd1939470311.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[194] = new Element(
		194, "assets/thumb/DG186002.jpg",
		137, 50,
		"DG186002", "ERF LV Flatbed Trailer and Wood Load   Cat. No. DG186002",
		"Brian Harris Transport   MSRP £12.99", "Corgi",
		"10.5", "0",
		"1", 1,
		"item", "13",
		"", "pd1132807518.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[195] = new Element(
		195, "assets/thumb/DG187005thumb.jpg",
		130, 82,
		"DG187005", "Guy Big J Tipper &amp; Brick Load   Cat. No. DG187005",
		"London Brick Company   MSRP £11.99", "Corgi",
		"9.75", "0",
		"1", 1,
		"", "13",
		"", "pd-364301220.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[196] = new Element(
		196, "assets/thumb/OM41301_Wright Solar Fusion.jpg",
		137, 48,
		"OM41301", "Wright Solar Fusion   Cat. No. OM41301",
		"Go Ahead North East", "Corgi",
		"24.5", "0",
		"1", 1,
		"", "11",
		"", "pd-1081897232.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[197] = new Element(
		197, "assets/thumb/EFE30303SBthumb.jpg",
		137, 80,
		"30303SB", "AEC Routemaster Prototype RM2  Cat. No. 30303SB",
		"London Transport - EFE Showbus Model 2004", "EFE",
		"22", "0",
		"1", 1,
		"", "18",
		"", "pd837758849.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[198] = new Element(
		198, "assets/thumb/r2252b.jpg",
		137, 31,
		"R2252B", "Class 58 BR Diesel Loco Weathered",
		"R2252B BR Class 58 Diesel Loco Weathered Markham Colliery  RRP £54.00", "Hornby",
		"43", "0",
		"1", 1,
		"loco", "151",
		"", "pd1282511161.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[199] = new Element(
		199, "assets/thumb/cl60161thumb.jpg",
		137, 171,
		"60161", "OO/HO scale Brass Roller",
		"Spare brass roller for OO/HO cleaner types D30-D39", "Centerline",
		"8.5", "0",
		"1", 1,
		"item", "42",
		"", "pd46124083.htm",
		"", 1,
		"Centerline", "0",
		 0)
	
		Entry[200] = new Element(
		200, "assets/thumb/r2413thumb.jpg",
		137, 40,
		"R2413A", "Class 31 BR Blue No.31174",
		"R2413A BR Class 31 Blue No.31174  Weathered MSRP £89.99", "Hornby",
		"71.5", "0",
		"1", 1,
		"loco", "151",
		"", "pd1113231394.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[201] = new Element(
		201, "assets/thumb/efe29607thumb.jpg",
		137, 95,
		"29607", "Leyland Olympian  Cat. No. 29607",
		"London United", "EFE",
		"18", "0",
		"1", 1,
		"model", "18",
		"", "pd1113494968.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[202] = new Element(
		202, "assets/thumb/efe24904.jpg",
		137, 61,
		"24904", "Mercedes Minibus  Cat. No. 24904",
		"South Wales Transport", "EFE",
		"16", "0",
		"1", 1,
		"model", "18",
		"", "pd1113830837.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[203] = new Element(
		203, "assets/thumb/efe15002thumb.jpg",
		137, 52,
		"15002", "Leyland National MkI Long  Cat. No. 15002",
		"Brighton &amp; Hove", "EFE",
		"17", "0",
		"1", 1,
		"model", "18",
		"", "pd1341004112.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[204] = new Element(
		204, "assets/thumb/EFE15634thumb.jpg",
		137, 72,
		"15634", "RM Routemaster  Cat. No. 15634",
		"Stagecoach Magicbus", "EFE",
		"17", "0",
		"1", 1,
		"item", "18",
		"", "pd-975250992.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[205] = new Element(
		205, "assets/thumb/efe15636thumb.jpg",
		137, 80,
		"15636", "RM Routemaster  Cat. No. 15636",
		"Stagecoach", "EFE",
		"17", "0",
		"1", 1,
		"model", "18",
		"", "pd189341064.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[206] = new Element(
		206, "assets/thumb/efe15712.jpg",
		137, 47,
		"15712", "Plaxton Panorama Elite III  Cat. No. 15712",
		"South Wales", "EFE",
		"17.5", "0",
		"1", 1,
		"model", "18",
		"", "pd-418431454.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[207] = new Element(
		207, "assets/thumb/EFE20433.jpg",
		137, 74,
		"20433", "Bristol VRIII  Cat. No. 20433",
		"Alder Valley", "EFE",
		"17", "0",
		"1", 1,
		"", "18",
		"", "pd665907104.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[208] = new Element(
		208, "assets/thumb/efe20631thumb.jpg",
		137, 79,
		"20631", "Plaxton Pointer Dart  Cat. No. 20631",
		"Brighton &amp; Hove", "EFE",
		"15", "0",
		"1", 1,
		"item", "18",
		"", "pd-600974282.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[209] = new Element(
		209, "assets/thumb/efe29403thumb.jpg",
		137, 51,
		"29403", "Bristol RELH Coach  Cat. No. 29403",
		"Badgerline", "EFE",
		"17", "0",
		"1", 1,
		"model", "18",
		"", "pd-577198005.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[210] = new Element(
		210, "assets/thumb/EFE30201thumb.jpg",
		137, 151,
		"30201", "AEC Routemaster Prototype RM1  Cat. No. 30201",
		"London Transport", "EFE",
		"20", "0",
		"1", 1,
		"item", "18",
		"", "pd-934011230.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[211] = new Element(
		211, "assets/thumb/CC07713.jpg",
		137, 69,
		"CC07713", "Land Rover Defender - Collectors Club Model 2004  Cat. No. CC07713",
		"Yorkshire Rider", "Corgi",
		"10", "0",
		"1", 1,
		"item", "9",
		"", "pd1501263843.htm",
		"", 1,
		"Collectors", "0",
		 0)
	
		Entry[212] = new Element(
		212, "assets/thumb/CC60304.jpg",
		137, 86,
		"CC60304", "Bedford QLD",
		"Army Fire Service", "Corgi",
		"16", "0",
		"1", 1,
		"item", "8",
		"", "pd1591050923.htm",
		"", 1,
		"999", "0",
		 0)
	
		Entry[213] = new Element(
		213, "assets/thumb/CC11910_ERF EC Series.jpg",
		137, 68,
		"CC11910", "ERF EC Flat Crane Trailer &amp; Car Load  Cat. No. CC11910",
		"Brian Harris", "Corgi",
		"89", "0",
		"1", 1,
		"model", "10",
		"", "pd2120980619.htm",
		"", 1,
		"HR", "0",
		 0)
	
		Entry[214] = new Element(
		214, "assets/thumb/DG149004.jpg",
		118, 80,
		"DG149004", "AEC Flatbed Trailer &amp; Sack Load  Cat. No. DG149004",
		"Pickfords", "Corgi",
		"10.5", "0",
		"1", 1,
		"model", "13",
		"", "pd2002348221.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[215] = new Element(
		215, "assets/thumb/DG150009.jpg",
		137, 55,
		"DG150009", "Foden S21 Tanker  Cat. No. DG150009",
		"Albion Sugar Co", "Corgi",
		"10.5", "0",
		"1", 1,
		"", "13",
		"", "pd1275569678.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[216] = new Element(
		216, "assets/thumb/DG150010thumb.jpg",
		130, 82,
		"DG150010", "Foden S21 Tanker  Cat. No. DG150010",
		"Tunnel Glucose Refineries", "Corgi",
		"10.5", "0",
		"1", 1,
		"model", "13",
		"", "pd-1869942511.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[217] = new Element(
		217, "assets/thumb/DG174007.jpg",
		137, 73,
		"DG174007", "Noddy Van  Cat. No. DG174007",
		"Pickfords", "Corgi",
		"5", "0",
		"1", 1,
		"model", "13",
		"", "pd2019540843.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[218] = new Element(
		218, "assets/thumb/DG176009_Leyland Dropside.jpg",
		137, 52,
		"DG176009", "Leyland 8 Wheel Dropside Lorry  Cat. No. DG176009",
		"Hoveringham Gravels", "Corgi",
		"8", "0",
		"1", 1,
		"", "13",
		"", "pd-1055660905.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[219] = new Element(
		219, "assets/thumb/DG186000.jpg",
		118, 80,
		"DG186000", "ERF LV Sheeted Flatbed Trailer   Cat. No. DG186000",
		"Smith of Maddiston   MSRP £12.99", "Corgi",
		"10.5", "0",
		"1", 1,
		"", "13",
		"", "pd-1288239984.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[220] = new Element(
		220, "assets/thumb/DG187007thumb.jpg",
		137, 69,
		"DG187007", "Guy Big J Tipper &amp; Load   Cat. No. DG187007 ",
		"Blue Circle Cement   MSRP £12.99", "Corgi",
		"10", "0",
		"1", 1,
		"model", "13",
		"", "pd373982915.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[221] = new Element(
		221, "assets/thumb/OM41202.jpg",
		130, 82,
		"OM41202", "Wright Eclipse Gemini   Cat. No. OM41202",
		"Arriva London", "Corgi",
		"18.5", "0",
		"1", 1,
		"", "11",
		"", "pd-2013496691.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[222] = new Element(
		222, "assets/thumb/OM42510_East Lancs Vyking.jpg",
		137, 75,
		"OM42510", "East Lancs Vyking   Cat. No. OM42510",
		"Delaine Buses", "Corgi",
		"17.25", "0",
		"1", 1,
		"", "11",
		"", "pd-1230178872.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[223] = new Element(
		223, "assets/thumb/bd20-thumb.jpg",
		134, 81,
		"N-BD20", "Block detector",
		"Block detector for DCC, .01 to 20 Amps, recently enhanced", "NCE",
		"10", "0",
		"1", 1,
		"item", "105",
		"", "pd1115048950.htm",
		"", 1,
		"SigDec", "0",
		 0)
	
		Entry[224] = new Element(
		224, "assets/thumb/n14srthumb.jpg",
		137, 41,
		"N-N14SR", "N scale 4 function decoder",
		"Narrow, thin, generic N-Sized decoder, 1 Amp. 4 function, 1.15 x .40 x .10&quot;, 4 inch wire harness", "NCE",
		"17.5", "0",
		"1", 1,
		"decoder", "102",
		"Harness;Wires only@", "pd1350686562.htm",
		"", 1,
		"NDec", "0",
		 0)
	
		Entry[225] = new Element(
		225, "assets/thumb/ncez14sr.jpg",
		137, 127,
		"N-Z14SR", "4 function Z/N scale decoder",
		"Generic 4 function, 1 Amp, .34x.56x.12&quot;", "NCE",
		"24.5", "0",
		"1", 1,
		"decoder", "102",
		"Harness;Wires only@", "pd285138173.htm",
		"", 1,
		"NDec", "0",
		 0)
	
		Entry[226] = new Element(
		226, "assets/thumb/utp-thumb.jpg",
		134, 100,
		"N-UTP", "Cab Bus UTP fascia panel",
		"Cab Bus UTP fascia panel with RJ12 connectors", "NCE",
		"14", "0",
		"1", 1,
		"item", "106",
		"", "pd1115237108.htm",
		"", 1,
		"CabsW", "0",
		 0)
	
		Entry[227] = new Element(
		227, "assets/thumb/rj12thumb.jpg",
		137, 80,
		"N-RJ12", "RJ cable ",
		"RJ cable 12ft in length to connect UTP,UTP-DIN or cab to PH-box etc", "NCE",
		"6", "0",
		"1", 1,
		"item", "106",
		"", "pd2133809730.htm",
		"", 1,
		"CabsW", "0",
		 0)
	
		Entry[228] = new Element(
		228, "assets/thumb/dinpanel.jpg",
		137, 103,
		"N-UTP-DIN", "Cab Bus DIN fascia panel",
		"Cab Bus fascia panel with 2 x DIN sockets", "NCE",
		"13.5", "0",
		"1", 1,
		"item", "106",
		"", "pd1716163136.htm",
		"", 1,
		"CabsW", "0",
		 0)
	
		Entry[229] = new Element(
		229, "assets/thumb/spkr2r.jpg",
		90, 89,
		"SPKR2", "2.5&quot; 8 ohm speaker",
		"", "ITTC",
		"4", "0",
		"1", 1,
		"item", "63",
		"", "pd-1257509576.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[230] = new Element(
		230, "assets/thumb/snapit-c.jpg",
		117, 123,
		"N-Snap-It", "Snap-It Accessory Decoder",
		"For use with a single Atlas style twin coil switch", "NCE",
		"13.5", "0",
		"1", 1,
		"decoder", "104",
		"", "pd1119032279.htm",
		"", 1,
		"TurDec", "0",
		 0)
	
		Entry[231] = new Element(
		231, "assets/thumb/efe16126thumb.jpg",
		137, 92,
		"16126", "Leyland PD2 Highbridge  Cat. No. 16126",
		"CIE Dublin", "EFE",
		"15.5", "0",
		"1", 1,
		"model", "18",
		"", "pd-1161172853.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[232] = new Element(
		232, "assets/thumb/efe20433dlthumb.jpg",
		137, 69,
		"20433DL", "Bristol VRIII  Cat. No. 20433DL",
		"Alder Valley", "EFE",
		"17.5", "0",
		"1", 1,
		"model", "18",
		"", "pd-1506488911.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[233] = new Element(
		233, "assets/thumb/efe29608thumb.jpg",
		137, 69,
		"29608", "Leyland Olympian  Cat. No. 29608",
		"Riverside", "EFE",
		"18", "0",
		"1", 1,
		"model", "18",
		"", "pd-955545201.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[234] = new Element(
		234, "assets/thumb/EFE12117thumb.jpg",
		137, 54,
		"12117", "Harrington Cavalier  Cat. No. 12117",
		"Thomas Brothers", "EFE",
		"16", "0",
		"1", 1,
		"item", "18",
		"", "pd-2132281914.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[235] = new Element(
		235, "assets/thumb/9923set.jpg",
		137, 72,
		"99923", "Maidstone &amp; District Gift Set  Cat. No. 99923",
		"Maidstone &amp; District", "EFE",
		"42", "0",
		"1", 1,
		"model", "18",
		"", "pd559604692.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[236] = new Element(
		236, "assets/thumb/d408sr-thumb.jpg",
		135, 60,
		"N-D408SR", "O/G scale sized 4 Amp Silent RunningTM decoder ",
		"O/G scale sized 4 Amp Silent RunningTM decoder ", "NCE",
		"63", "0",
		"1", 1,
		"decoder", "103",
		"", "pd1119869661.htm",
		"", 1,
		"ODec", "0",
		 0)
	
		Entry[237] = new Element(
		237, "assets/thumb/d808.jpg",
		137, 84,
		"N-D808", "Large scale decoder, 8 Amp (30 amp stall current)",
		"Large G scale decoder, 8 Amp (30 amp stall current)", "NCE",
		"101", "0",
		"1", 1,
		"decoder", "103",
		"", "pd2115309651.htm",
		"", 1,
		"ODec", "0",
		 0)
	
		Entry[238] = new Element(
		238, "assets/thumb/CC12429_Cooper Buckley Ltd.jpg",
		137, 70,
		"CC12429", "Volvo FH Tipper  Cat. No. CC12429",
		"Cooper Buckley", "Corgi",
		"69", "0",
		"1", 1,
		"item", "10",
		"", "pd1554973776.htm",
		"", 1,
		"HR", "0",
		 0)
	
		Entry[239] = new Element(
		239, "assets/thumb/lhgn10thumb.jpg",
		137, 113,
		"HLED-LHS GR10", "2mm Lighthouse LED 10 pack - 3 colours available",
		"Pack of 10 x 2mm Green Lighthouse LED with 10 x 500 ohm resistors", "DCC Concepts",
		"2.5", "0",
		"1", 1,
		"pack", "29",
		"Colours available;Green@", "pd-842373603.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[240] = new Element(
		240, "assets/thumb/lhsyl10thumb.jpg",
		137, 111,
		"HLED-LP GR10", "1.8mm  LED 10 pack",
		"Pack of 10 x1.8mm Green LEDs with 10 x 500 ohm resistors", "DCC Concepts",
		"2.25", "0",
		"1", 1,
		"pack", "29",
		"Colours available;Green@", "pd1026002323.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[241] = new Element(
		241, "assets/thumb/twpwthumb.jpg",
		137, 128,
		"HLED-TWPGW", "2mm TW Protowhite (Golden White) LED - loose",
		"2mm Protowhite (Golden White) LED loose - minimum order quantity 2", "DCC Concepts",
		"0.8", "0",
		"1", 1,
		"item", "29",
		"", "pd-1429771263.htm",
		"", 2,
		"LED", "0",
		 0)
	
		Entry[242] = new Element(
		242, "assets/thumb/twpw4thumb.jpg",
		137, 119,
		"HLED-TWPGW6", "2mm Protowhite (Golden White) Tower LED - 6 pack",
		"Pack of 6 x 2mm Protowhite (Golden White) Tower LEDs with 6 x 1K ohm resistors", "DCC Concepts",
		"5.5", "0",
		"1", 1,
		"pack", "29",
		"", "pd1120648706.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[243] = new Element(
		243, "assets/thumb/mp184thumb.jpg",
		137, 142,
		"HP-MP184", "Precision Wire Cutter/Stripper",
		"High quality precision wire cutter/stripper", "DCC Concepts",
		"12.5", "0",
		"1", 1,
		"item", "31",
		"", "pd-1107524985.htm",
		"", 1,
		"Tools", "0",
		 0)
	
		Entry[244] = new Element(
		244, "assets/thumb/mp185thumb.jpg",
		137, 128,
		"HP-MP185", "Track Cutter",
		"High quality precision track cutter", "DCC Concepts",
		"13", "0",
		"1", 1,
		"item", "31",
		"", "pd-58335503.htm",
		"", 1,
		"Tools", "0",
		 0)
	
		Entry[245] = new Element(
		245, "assets/thumb/mp250thumb.jpg",
		137, 151,
		"HP-MP250", "Flush Cutter",
		"Flush Cutter, small, orange RV", "DCC Concepts",
		"10", "0",
		"1", 1,
		"item", "31",
		"", "pd-1476564979.htm",
		"", 1,
		"Tools", "0",
		 0)
	
		Entry[246] = new Element(
		246, "assets/thumb/bdthumb.jpg",
		137, 159,
		"HP-BD", "Baseboard Dowel Kit",
		"Kit consists of 2 pairs of baseboard alignment dowels,1 x 3mm bit, 1 x 13mm spade it, 1 x 19mm spade bit and instructions", "DCC Concepts",
		"9.5", "0",
		"1", 1,
		"item", "31",
		"", "pd-2119196878.htm",
		"", 1,
		"Tools", "0",
		 0)
	
		Entry[247] = new Element(
		247, "assets/thumb/OM44108_Optare Solo.jpg",
		137, 85,
		"OM44108", "Optare Solo   Cat. No. OM44108",
		"Burton&rsquo;s", "Corgi",
		"16", "0",
		"1", 1,
		"model", "11",
		"", "pd-38032519.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[248] = new Element(
		248, "assets/thumb/OM45310_Bova Futura.jpg",
		137, 85,
		"OM45310", "Bova Futura   Cat. No. OM45310",
		"Kings Coaches, Colchester", "Corgi",
		"17.25", "0",
		"1", 1,
		"model", "11",
		"", "pd1247617811.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[249] = new Element(
		249, "assets/thumb/bipolarthumb.jpg",
		137, 130,
		"HLED-BP RG", "3mm Bi-Polar 3 lead LED - available in Red/Green or Red/Yellow",
		"3mm Bi-Polar 3 lead LED Pack of 4 Red/GreenLEDs and 8 x 470 ohm resistors", "DCC Concepts",
		"1.95", "0",
		"1", 1,
		"pack", "29",
		"Colour combination;Red-Green@", "pd-1151197173.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[250] = new Element(
		250, "assets/thumb/dowels.jpg",
		137, 77,
		"HP-BDD2", "Baseboard Dowels",
		"2 pairs of baseboard alignment dowels", "DCC Concepts",
		"6", "0",
		"1", 1,
		"pack", "31",
		"", "pd1125512368.htm",
		"", 1,
		"Tools", "0",
		 0)
	
		Entry[251] = new Element(
		251, "assets/thumb/efe25808thumb.jpg",
		137, 73,
		"25808", "Daimler DMS  Cat. No. 25808",
		"OK Motor Services", "EFE",
		"17", "0",
		"1", 1,
		"model", "18",
		"", "pd476220436.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[252] = new Element(
		252, "assets/thumb/efe28810.jpg",
		137, 74,
		"28810", "Leyland Titan 2 Door  Cat. No. 28810",
		"Go Whippet", "EFE",
		"17", "0",
		"1", 1,
		"model", "18",
		"", "pd-1884410806.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[253] = new Element(
		253, "assets/thumb/efe29804.jpg",
		137, 45,
		"29804", "Wright Dennis Lance  Cat. No. 29804",
		"Tyne &amp; Wear Coastline", "EFE",
		"17", "0",
		"1", 1,
		"model", "18",
		"", "pd563401608.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[254] = new Element(
		254, "assets/thumb/efe30003thumb.jpg",
		137, 64,
		"30003", "AEC Regal 10T10  Cat. No. 30003",
		"Neath &amp; Cardiff", "EFE",
		"17", "0",
		"1", 1,
		"model", "18",
		"", "pd-1259928330.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[255] = new Element(
		255, "assets/thumb/OM40812_Bristol Lodekka FS.jpg",
		137, 89,
		"OM40812", "Bristol Lodekka FS  Cat. No. OM40812",
		"Bristol Omnibus Co Ltd", "Corgi",
		"19.5", "0",
		"1", 1,
		"model", "11",
		"", "pd-1629007710.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[256] = new Element(
		256, "assets/thumb/DG148015.jpg",
		137, 78,
		"DG148015", "Scammell Scarab Tank Trailer  Cat. No. DG148015",
		"RAF  MSRP £9.99", "Corgi",
		"8", "0",
		"1", 1,
		"model", "13",
		"", "pd-571041473.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[257] = new Element(
		257, "assets/thumb/aiu-thumb.jpg",
		121, 127,
		"N-AIU01", "Auxiliary Input Unit",
		"Auxiliary Input Unit", "NCE",
		"35", "0",
		"1", 1,
		"item", "105",
		"", "pd1127317089.htm",
		"", 1,
		"SigDec", "0",
		 0)
	
		Entry[258] = new Element(
		258, "assets/thumb/DG198004_Scammell Contract.jpg",
		137, 84,
		"DG198004", "Scammell Contractor   Cat. No. DG198004",
		"Pointer", "Corgi",
		"10", "0",
		"1", 1,
		"model", "13",
		"", "pd-993769689.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[259] = new Element(
		259, "assets/thumb/efe16322thumb.jpg",
		137, 58,
		"16322", "Bristol LS  Cat. No. 16322",
		"Bath Services", "EFE",
		"15.5", "0",
		"1", 1,
		"model", "18",
		"", "pd1128376019.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[260] = new Element(
		260, "assets/thumb/efe29702thumb.jpg",
		137, 64,
		"29702", "Leyland Olympian  Cat. No. 29702",
		"London &amp; Country", "EFE",
		"17", "0",
		"1", 1,
		"model", "18",
		"", "pd428528953.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[261] = new Element(
		261, "assets/thumb/efe29702sbthumb.jpg",
		137, 69,
		"29702SB", "Leyland Olympian  Cat. No. 29702SB",
		"London &amp; Country - EFE Show Bus 2005", "EFE",
		"19", "0",
		"1", 1,
		"model", "18",
		"", "pd-25001457.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[262] = new Element(
		262, "assets/thumb/efe30702thumb.jpg",
		137, 73,
		"30702", "AEC Renown  Cat. No. 30702",
		"North Western", "EFE",
		"17.5", "0",
		"1", 1,
		"model", "18",
		"", "pd-1792503083.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[263] = new Element(
		263, "assets/thumb/efe26616thumb.jpg",
		137, 46,
		"26616", "Plaxton Paramount 3500  Cat. No. 26616",
		"Green Line (Southend)", "EFE",
		"16.5", "0",
		"1", 1,
		"model", "18",
		"", "pd705431712.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[264] = new Element(
		264, "assets/thumb/efe27310thumb.jpg",
		137, 80,
		"27310", "Leyland TD1 Closed Rear  Cat. No. 27310",
		"Hants &amp; Dorset", "EFE",
		"16", "0",
		"1", 1,
		"model", "18",
		"", "pd-1234540560.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[265] = new Element(
		265, "assets/thumb/efe27616thumb.jpg",
		137, 45,
		"27616", "Wright Volvo Renown  Cat. No. 27616",
		"Strathtay", "EFE",
		"16", "0",
		"1", 1,
		"model", "18",
		"", "pd1129145458.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[266] = new Element(
		266, "assets/thumb/efe28811thumb.jpg",
		137, 70,
		"28811", "Leyland Titan  Cat. No. 28811",
		"Reading Buses", "EFE",
		"17", "0",
		"1", 1,
		"model", "18",
		"", "pd461106888.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[267] = new Element(
		267, "assets/thumb/efe30601thumb.jpg",
		137, 70,
		"30601", "AEC Renown  Cat. No. 30601",
		"King Alfred", "EFE",
		"17.5", "0",
		"1", 1,
		"model", "18",
		"", "pd-394955012.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[268] = new Element(
		268, "assets/thumb/efe30602thumb.jpg",
		137, 71,
		"30602", "AEC Renown  Cat. No. 30602",
		"King Alfred", "EFE",
		"17.5", "0",
		"1", 1,
		"model", "18",
		"", "pd-723802742.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[269] = new Element(
		269, "assets/thumb/efe30701thumb.jpg",
		137, 74,
		"30701", "AEC Renown  Cat. No. 30701",
		"Burwell &amp; District", "EFE",
		"17.5", "0",
		"1", 1,
		"model", "18",
		"", "pd778605110.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[270] = new Element(
		270, "assets/images/nopicturegreen.jpg",
		133, 46,
		"MC-WH6", "6-pin Micro Harness",
		"6-pin Micro Harness for use with the FL decoder", "TCS",
		"1.5", "0",
		"1", 1,
		"item", "117",
		"", "pd-1801368316.htm",
		"", 1,
		"TCS Harn", "0",
		 0)
	
		Entry[271] = new Element(
		271, "assets/thumb/OM42512_Volvo B7TL - Cork.jpg",
		137, 83,
		"OM42512", "East Lancs Vyking   Cat. No. OM42512",
		"Bus Eireann - Cork Park &amp; Ride", "Corgi",
		"17.25", "0",
		"1", 1,
		"item", "11",
		"", "pd-1726222273.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[272] = new Element(
		272, "assets/thumb/DG150011_Foden S21 LLoader.jpg",
		137, 87,
		"DG150011", "Foden S21 Low Loader  Cat. No. DG150011",
		"Muntons", "Corgi",
		"12", "0",
		"1", 1,
		"model", "13",
		"", "pd-717067131.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[273] = new Element(
		273, "assets/thumb/DG186010_ERF LV Sheeted.jpg",
		137, 92,
		"DG186010", "ERF LV Sheeted   Cat. No .DG186010",
		"Craigs of Denny   MSRP £12.99", "Corgi",
		"10.5", "0",
		"1", 1,
		"model", "13",
		"", "pd-1775003077.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[274] = new Element(
		274, "assets/thumb/rj12thumb.jpg",
		137, 80,
		"N-RJ7", "RJ cable ",
		"RJ cable 7ft in length to connect UTP,UTP-DIN or cab to PH-box etc", "NCE",
		"3.5", "0",
		"1", 1,
		"item", "106",
		"", "pd-1055371657.htm",
		"", 1,
		"CabsW", "0",
		 0)
	
		Entry[275] = new Element(
		275, "assets/thumb/VA07102_Morris Minor 1000.jpg",
		137, 91,
		"VA07102", "Morris Minor 1000 Convertible",
		"Grey", "Corgi",
		"10", "0",
		"1", 1,
		"model", "14",
		"", "pd414615416.htm",
		"", 1,
		"VANG", "0",
		 0)
	
		Entry[276] = new Element(
		276, "assets/thumb/VA07103_Morris Minor Conv.jpg",
		137, 80,
		"VA07103", "Morris Minor Convertible",
		"Blue", "Corgi",
		"10", "0",
		"1", 1,
		"model", "14",
		"", "pd-572417434.htm",
		"", 1,
		"VANG", "0",
		 0)
	
		Entry[277] = new Element(
		277, "assets/thumb/efe25106thumb.jpg",
		137, 47,
		"25106", "Bristol RELL  Cat. No. 25106",
		"West Yorkshire", "EFE",
		"16", "0",
		"1", 1,
		"model", "18",
		"", "pd-799310277.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[278] = new Element(
		278, "assets/thumb/efe30004thumb.jpg",
		137, 59,
		"30004", "AEC Regal 10T10  Cat. No. 30004",
		"London Transport", "EFE",
		"17.5", "0",
		"1", 1,
		"model", "18",
		"", "pd-382685051.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[279] = new Element(
		279, "assets/thumb/efe31301thumb.jpg",
		137, 72,
		"31301", "B20 DM Fleetline  Cat. No. 31301",
		"Shillibeer Omnibus", "EFE",
		"16.5", "0",
		"1", 1,
		"model", "18",
		"", "pd-558112777.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[280] = new Element(
		280, "assets/thumb/uk3017thumb.jpg",
		137, 65,
		"UK3017", "Dennis Dart  Cat. No. UKBUS3017",
		"Brighton &amp; Hove", "Creative Master Northcord Ltd",
		"17.5", "0",
		"1", 1,
		"model", "15",
		"", "pd68207448.htm",
		"", 1,
		"CMNL", "0",
		 0)
	
		Entry[281] = new Element(
		281, "assets/thumb/OM41211.jpg",
		137, 84,
		"OM41211", "Wright Eclipse Gemini   Cat. No. OM41211",
		"First London", "Corgi",
		"18.5", "0",
		"1", 1,
		"model", "11",
		"", "pd-677791418.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[282] = new Element(
		282, "assets/thumb/DG199004_Scammell MechHorse.jpg",
		137, 80,
		"DG199004", "Scammell Mechanical Horse &amp; Dropside Trailer   Cat. No. DG199004",
		"LNER", "Corgi",
		"9", "0",
		"1", 1,
		"model", "13",
		"", "pd-886335260.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[283] = new Element(
		283, "assets/thumb/DG187008_Guy Big J Tipper.jpg",
		137, 85,
		"DG187008", "Guy Big J Tipper &amp; Load   Cat. No. DG187008",
		"Michael Fowler   MSRP £12.99", "Corgi",
		"10", "0",
		"1", 1,
		"model", "13",
		"", "pd1132762584.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[284] = new Element(
		284, "assets/thumb/OM40813_United Welsh.jpg",
		137, 91,
		"OM40813", "Bristol Lodekka FS  Cat. No. OM40813",
		"United Welsh", "Corgi",
		"22.5", "0",
		"1", 1,
		"model", "11",
		"", "pd-584944736.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[285] = new Element(
		285, "assets/thumb/OM41306_Wright Eclipse.jpg",
		137, 54,
		"OM41306A", "Wright Solar Fusion   Cat. No. OM41306",
		"First York - Route 3 to Askham Bar", "Corgi",
		"24.5", "0",
		"1", 1,
		"model", "11",
		"", "pd346474500.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[286] = new Element(
		286, "assets/thumb/OM41401_Roe Trolley Bus.jpg",
		137, 107,
		"OM41401A", "Roe Trolleybus   Cat. No. OM41401",
		"Tees-side Railess Traction Board - Destination South Bank", "Corgi",
		"22", "0",
		"1", 1,
		"model", "11",
		"", "pd-1703731796.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[287] = new Element(
		287, "assets/thumb/OM41403_Lincoln Corporation.jpg",
		137, 101,
		"OM41403", "Leyland PD2/Roe   Cat. No. OM41403",
		"Lincoln Corporation", "Corgi",
		"22", "0",
		"1", 1,
		"model", "11",
		"", "pd-634986376.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[288] = new Element(
		288, "assets/thumb/OM42412_Kenzies Coaches Ltd.jpg",
		137, 59,
		"OM42412", "Bedford Val   Cat. No. OM42412",
		"Kenzies Coaches Ltd", "Corgi",
		"17.25", "0",
		"1", 1,
		"model", "11",
		"", "pd-370264926.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[289] = new Element(
		289, "assets/thumb/OM42514_Blackpool Transport.jpg",
		137, 74,
		"OM42514A", "Dennis Trident/East Lancs Myllenium   Cat. No. OM42514",
		"Blackpool Transport - Route 14 to Blackpool", "Corgi",
		"22.5", "0",
		"1", 1,
		"model", "11",
		"", "pd-424228118.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[290] = new Element(
		290, "assets/thumb/OM43313_McKindless Express.jpg",
		137, 64,
		"OM43313", "Plaxton Premiere   Cat. No. OM43313",
		"McKindless Bus Group", "Corgi",
		"18.5", "0",
		"1", 1,
		"model", "11",
		"", "pd-1741128238.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[291] = new Element(
		291, "assets/thumb/OM44111_Trent Barton Solo.jpg",
		137, 75,
		"OM44111A", "Optare Solo   Cat. No. OM44111A",
		"Trent Barton - Route 1A to Ripley", "Corgi",
		"16.5", "0",
		"1", 1,
		"model", "11",
		"", "pd-320408228.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[292] = new Element(
		292, "assets/thumb/om44706athumb.jpg",
		137, 61,
		"OM44706A", "Dennis Dart SLF/Pointer 1   Cat. No. OM44706A",
		"Brighton &amp; Hove Buses - Route 46 to Southwick Square", "Corgi",
		"17.25", "0",
		"1", 1,
		"model", "11",
		"", "pd-734150914.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[293] = new Element(
		293, "assets/thumb/OM45903_Fraser Eagle.jpg",
		137, 59,
		"OM45903", "Van Hool T9   Cat. No. OM45903",
		"Fraser Eagle", "Corgi",
		"20", "0",
		"1", 1,
		"model", "11",
		"", "pd-535979162.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[294] = new Element(
		294, "assets/thumb/DG146014_Guy Pantechnicon.jpg",
		137, 91,
		"DG146014", "Guy Pantechnicon  Cat. No. DG146014",
		"Luckings", "Corgi",
		"6.25", "0",
		"1", 1,
		"model", "13",
		"", "pd2050018295.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[295] = new Element(
		295, "assets/thumb/DG148016_Scammell Scarab.jpg",
		137, 72,
		"DG148016", "Scammell Scarab Dropside/ Sheeted Load  Cat. No. DG148016",
		"Firth Brown  MSRP £9.99", "Corgi",
		"8.5", "0",
		"1", 1,
		"model", "13",
		"", "pd-1576045591.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[296] = new Element(
		296, "assets/thumb/DG148017_Scammell Scarab.jpg",
		137, 89,
		"DG148017", "Scammell Scarab Van Trailer  Cat. No. DG148017",
		"Eskimo Foods  MSRP £9.99", "Corgi",
		"8.5", "0",
		"1", 1,
		"model", "13",
		"", "pd-411922691.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[297] = new Element(
		297, "assets/thumb/DG174010_Noddy Van.jpg",
		137, 89,
		"DG174010", "Noddy Van  Cat. No. DG174010",
		"London Brick Stores", "Corgi",
		"5.25", "0",
		"1", 1,
		"model", "13",
		"", "pd1341793967.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[298] = new Element(
		298, "assets/thumb/DG175014_Scammell Handyman.jpg",
		137, 70,
		"DG175014", "Scammell Handyman Flatbed  Cat. No. DG175014",
		"Whitbread", "Corgi",
		"10.5", "0",
		"1", 1,
		"model", "13",
		"", "pd-2147014943.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[299] = new Element(
		299, "assets/thumb/DG176021_Leyland Octopus.jpg",
		137, 72,
		"DG176021", "Leyland Octopus Tanker   Cat. No. DG176021",
		"Tunnel Cement   MSRP £11.99", "Corgi",
		"10.5", "0",
		"1", 1,
		"model", "13",
		"", "pd-655138445.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[300] = new Element(
		300, "assets/thumb/DG186011_ERF LV Sheetfed.jpg",
		137, 79,
		"DG186011", "ERF LV Sheeted Platform Trailer   Cat. No. DG186011",
		"BRS Western   MSRP £12.99", "Corgi",
		"11", "0",
		"1", 1,
		"model", "13",
		"", "pd1618607237.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[301] = new Element(
		301, "assets/thumb/DG186012_ERF LV Platform.jpg",
		137, 83,
		"DG186012", "ERF LV Platform/Sack Load   Cat. No. DG186012",
		"W H Malcolm   MSRP £12.99", "Corgi",
		"11", "0",
		"1", 1,
		"model", "13",
		"", "pd1632211161.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[302] = new Element(
		302, "assets/thumb/CC13227_L.jpg",
		137, 67,
		"CC13227", "DAF XFCurtainside  Cat. No. CC13227",
		"LV Transport (30th Anniversary) ", "Corgi",
		"62", "0",
		"1", 1,
		"model", "10",
		"", "pd-614880767.htm",
		"", 1,
		"HR", "0",
		 0)
	
		Entry[303] = new Element(
		303, "assets/thumb/CC13804_Howe & Sons Ltd.jpg",
		137, 65,
		"CC13804", "Mercedes Actros Crane Trailer/Brick Load  Cat. No. CC13804",
		"A Howe &amp; Sons Ltd", "Corgi",
		"69", "0",
		"1", 1,
		"model", "10",
		"", "pd746592489.htm",
		"", 1,
		"HR", "0",
		 0)
	
		Entry[304] = new Element(
		304, "assets/thumb/DG198005_Scammell Contract.jpg",
		137, 101,
		"DG198005", "Scammell Contractor   Cat. No. DG198005",
		"Austen Brothers", "Corgi",
		"10", "0",
		"1", 1,
		"model", "13",
		"", "pd1750917444.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[305] = new Element(
		305, "assets/thumb/ukbus4004.jpg",
		137, 84,
		"UK4004", "Alexander Royale  Cat. No. UKBUS4004",
		"Travel West Midlands", "Creative Master Northcord Ltd",
		"22.5", "0",
		"1", 1,
		"model", "15",
		"", "pd1133782456.htm",
		"", 1,
		"CMNL", "0",
		 0)
	
		Entry[306] = new Element(
		306, "assets/thumb/atls4.jpg",
		137, 36,
		"N-ATLS4", "ATLS4 Drop in for Atlas S1/S2/S3/S4 HO locomotive",
		"Drop in decoder for Atlas S1/S2/S3/S4 HO locomotives (soldering required)", "NCE",
		"21.5", "0",
		"1", 1,
		"decoder", "101",
		"", "pd27964751.htm",
		"", 1,
		"HODec", "0",
		 0)
	
		Entry[307] = new Element(
		307, "assets/thumb/efe20905thumb.jpg",
		137, 57,
		"20905", "Leyland PS2 Windover  Cat. No. 20905",
		"North Western", "EFE",
		"15.5", "0",
		"1", 1,
		"item", "18",
		"", "pd1322261575.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[308] = new Element(
		308, "assets/thumb/efe28503thumb.jpg",
		137, 80,
		"28503", "Leyland TD1 Closed Rear  Cat. No. 28503",
		"Western", "EFE",
		"17", "0",
		"1", 1,
		"item", "18",
		"", "pd-1520773437.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[309] = new Element(
		309, "assets/thumb/r2456thumb.jpg",
		137, 29,
		"R2456-1", "BR Patriot (Weathered) &quot;Home Guard&quot; with TCS M1-P decoder fitted (without BEMF)",
		"R2456 BR 4-6-0 Patriot 5XP Loco (Weathered) 45543 &quot;Home Guard&quot;  BR Green DCC Ready MSRP £88.99", "Hornby",
		"82", "0",
		"1", 1,
		"model", "150",
		"", "pd1136150301.htm",
		"", 1,
		"HornbyStea", "0",
		 0)
	
		Entry[310] = new Element(
		310, "assets/images/nopicturegreen.jpg",
		133, 46,
		"Voucher5", "£5 Gift Voucher",
		"", "",
		"5", "0",
		"1", 1,
		"Gift Voucher", "160",
		"", "pd503094400.htm",
		"", 1,
		"VOUCHER", "0",
		 0)
	
		Entry[311] = new Element(
		311, "assets/images/nopicturegreen.jpg",
		133, 46,
		"Voucher10", "£10 Gift Voucher",
		"", "",
		"10", "0",
		"1", 1,
		"Gift Voucher", "160",
		"", "pd-1498017641.htm",
		"", 1,
		"VOUCHER", "0",
		 0)
	
		Entry[312] = new Element(
		312, "assets/images/nopicturegreen.jpg",
		133, 46,
		"Voucher20", "£20 Gift Voucher",
		"", "",
		"20", "0",
		"1", 1,
		"Gift Voucher", "160",
		"", "pd-1860705123.htm",
		"", 1,
		"VOUCHER", "0",
		 0)
	
		Entry[313] = new Element(
		313, "assets/thumb/efe14603thumb.jpg",
		137, 51,
		"14603", "Leyland National MkI  Cat.No. 14603",
		"Pennine", "EFE",
		"16", "0",
		"1", 1,
		"model", "18",
		"", "pd1137530008.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[314] = new Element(
		314, "assets/thumb/efe29007thumb.jpg",
		137, 75,
		"29007", "GM Fleetline  Cat.No. 29007",
		"Northumbria", "EFE",
		"17", "0",
		"1", 1,
		"model", "18",
		"", "pd1346868254.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[315] = new Element(
		315, "assets/thumb/efe30703thumb.jpg",
		137, 73,
		"30703", "AEC Renown  Cat.No. 30703",
		"South Wales", "EFE",
		"17.5", "0",
		"1", 1,
		"model", "18",
		"", "pd-1563936656.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[316] = new Element(
		316, "assets/thumb/2910thumb.jpg",
		137, 146,
		"2910", "RM 94 Open-top Routemaster  Cat. No. 2910",
		"RM 94 Open-top Routemaster - The Original London Transport Sightseeing Tour", "Sunstar",
		"90", "0",
		"1", 1,
		"model", "25",
		"", "pd1269452145.htm",
		"", 1,
		"SunRoute", "0",
		 0)
	
		Entry[317] = new Element(
		317, "assets/thumb/ukbus4006.jpg",
		137, 83,
		"UK4006", "Alexander Royale  Cat. No. UKBUS4006",
		"London United Airbus  Heathrow - Central London", "Creative Master Northcord Ltd",
		"22.5", "0",
		"1", 1,
		"model", "15",
		"", "pd324883189.htm",
		"", 1,
		"CMNL", "0",
		 0)
	
		Entry[318] = new Element(
		318, "assets/thumb/smd82thumb.jpg",
		137, 91,
		"TD-SMD82", "Switch Machine Driver",
		"SMD82 - Switch Machine Driver controls up to 8 solenoid and/or stall type motors", "Team Digital",
		"61", "0",
		"1", 1,
		"item", "115",
		"", "pd-1545735162.htm",
		"", 1,
		"TD", "0",
		 0)
	
		Entry[319] = new Element(
		319, "assets/thumb/sic24adTHUMB.jpg",
		137, 85,
		"TD-SIC24AD", "Signal and Indicator Controller",
		"SIC24AD", "Team Digital",
		"37.5", "0",
		"1", 1,
		"item", "115",
		"", "pd467050507.htm",
		"", 1,
		"TD", "0",
		 0)
	
		Entry[320] = new Element(
		320, "assets/thumb/dbd22thumb.jpg",
		137, 119,
		"TD-DBD22", "DCC Block Detector",
		"DBD22 - Two block detectors with LEDs on one board", "Team Digital",
		"16.5", "0",
		"1", 1,
		"item", "115",
		"", "pd-411152079.htm",
		"", 1,
		"TD", "0",
		 0)
	
		Entry[321] = new Element(
		321, "assets/thumb/tsathumb.jpg",
		137, 71,
		"TD-TSA", "Terminal Strip Adapter",
		"TSA - Pack of 2 x Terminal Strip Adapters", "Team Digital",
		"12", "0",
		"1", 1,
		"item", "115",
		"", "pd1818967751.htm",
		"", 1,
		"TD", "0",
		 0)
	
		Entry[322] = new Element(
		322, "assets/images/nopicturegreen.jpg",
		133, 46,
		"N-CRD-RJ", "Coil cord with RJ connectors",
		"7 ft Cab coil cord with RJ-12 connectors", "NCE",
		"7.5", "0",
		"1", 1,
		"item", "106",
		"", "pd1139421037.htm",
		"", 1,
		"CabsW", "0",
		 0)
	
		Entry[323] = new Element(
		323, "assets/thumb/rjdinthumb.jpg",
		137, 75,
		"N-CRD-DIN", "Coil cord with DIN connector",
		"7 ft Cab coil cord with RJ-12 connector on one end and right angle DIN on the other end", "NCE",
		"7", "0",
		"1", 1,
		"item", "106",
		"", "pd400013155.htm",
		"", 1,
		"CabsW", "0",
		 0)
	
		Entry[324] = new Element(
		324, "assets/thumb/powercabthumb.jpg",
		137, 138,
		"N-PWRCAB", "NCE PowerCab",
		"2 amp DCC starter set with cab, connectors and manual", "NCE",
		"129", "0",
		"1", 1,
		"set", "98",
		"", "pd-670066615.htm",
		"", 1,
		"Starter", "0",
		 0)
	
		Entry[325] = new Element(
		325, "assets/thumb/vr15h.jpg",
		137, 90,
		"VR15H", "VR1.5-H decoder",
		"VR1.5-H 12v to 1.5v converter decoder for use with T series decoders - removes the need for resistors when using 1.5v light bulbs", "TCS",
		"7", "0",
		"1", 1,
		"item", "116",
		"", "pd1139516205.htm",
		"", 1,
		"TCSDCC", "0",
		 0)
	
		Entry[326] = new Element(
		326, "assets/thumb/om44706bthumb.jpg",
		137, 70,
		"OM44706B", "Dennis Dart SLF/Pointer 1   Cat. No. OM44706B",
		"Brighton &amp; Hove Buses - Route 50 to Hollingdean", "Corgi",
		"17.25", "0",
		"1", 1,
		"model", "11",
		"", "pd1139577718.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[327] = new Element(
		327, "assets/thumb/uk5104thumb.jpg",
		137, 54,
		"UK5104", "Mercedes Citaro  Cat. No. UKBUS5104",
		"Stagecoach London in University of East London livery", "Creative Master Northcord Ltd",
		"26", "0",
		"1", 1,
		"model", "15",
		"", "pd1204600468.htm",
		"", 1,
		"CMNL", "0",
		 0)
	
		Entry[328] = new Element(
		328, "assets/thumb/mchthumb.jpg",
		137, 81,
		"MCH", "MC Harness available with/without plug",
		"MC Harness wires only", "TCS",
		"1.75", "0",
		"1", 1,
		"item", "117",
		"Harness;Wires only@", "pd1139997979.htm",
		"", 1,
		"TCS Harn", "0",
		 0)
	
		Entry[329] = new Element(
		329, "assets/thumb/r8214thumb.jpg",
		137, 91,
		"R8214", "DCC Elite Unit",
		"R8214 DCC Elite Unit - Advanced DCC Controller  MSRP £179", "Hornby",
		"140", "0",
		"1", 1,
		"item", "147",
		"", "pd-744878280.htm",
		"", 1,
		"DCC", "0",
		 0)
	
		Entry[330] = new Element(
		330, "assets/thumb/r2521thumb.jpg",
		137, 55,
		"R2521", "Class 59 ARC Co-Co Diesel Electric  &rsquo;Village of Chantry&rsquo;",
		"R2521 Class 59 ARC Co-Co Diesel Electric 59102 &rsquo;Village of Chantry&rsquo;  DCC Ready MSRP £59.99", "Hornby",
		"49", "0",
		"1", 1,
		"loco", "151",
		"", "pd2014968038.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[331] = new Element(
		331, "assets/thumb/r2520thumb.jpg",
		137, 51,
		"R2520", "Class 59 EWS  &rsquo;Vale of York&rsquo;",
		"R2520 Class 59 EWS Co-Co Diesel Electric 59201 &rsquo;Vale of York&rsquo; MSRP  DCC Ready £59.99", "Hornby",
		"49", "0",
		"1", 1,
		"loco", "151",
		"", "pd-342269448.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[332] = new Element(
		332, "assets/thumb/r2519thumb.jpg",
		137, 27,
		"R2519", "Class 59 Diesel Foster Yeoman",
		"R2519 Class 59 Foster Yeoman Co-Co Diesel Electric 59004  &rsquo;Kenneth J Painter&rsquo;   DCC Ready MSRP £59.99", "Hornby",
		"49", "0",
		"1", 1,
		"loco", "151",
		"", "pd978022714.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[333] = new Element(
		333, "assets/thumb/r2518thumb.jpg",
		137, 32,
		"R2518", "Class 73 GB Railfreight  73209",
		"R2518  Fragonset Railways Bo-Bo Diesel Electric Class 73 No. 7373209 &rsquo;Spitfire&rsquo;   DCC Ready MSRP £59.99", "Hornby",
		"49", "0",
		"1", 1,
		"loco", "151",
		"", "pd871892780.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[334] = new Element(
		334, "assets/thumb/r2579thumb.jpg",
		137, 89,
		"R2579", "Class 101 BR Blue",
		"R2579 BR Class 101 Diesel Multiple Unit in BR Blue (three car set)   DCC Ready MSRP £78.30", "Hornby",
		"67.5", "0",
		"1", 1,
		"pack", "151",
		"", "pd-1508078826.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[335] = new Element(
		335, "assets/thumb/r2571thumb.jpg",
		137, 33,
		"R2571", "Class 31 BR Blue",
		"R2571 BR Weathered AIA-AIA Diesel Electric Class 31  31111   DCC Ready MSRP £95.00", "Hornby",
		"71.5", "0",
		"1", 1,
		"loco", "151",
		"", "pd-1319023490.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[336] = new Element(
		336, "assets/thumb/r8087.jpg",
		137, 156,
		"R8087", "Track Rubber",
		"R8087 Track Rubber  MSRP £1.99", "Hornby",
		"1.8", "0",
		"1", 1,
		"item", "152",
		"", "pd-26487233.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[337] = new Element(
		337, "assets/thumb/r8096.jpg",
		137, 131,
		"R8096", "Disc Wheels/axles 10 Sets",
		"R8096 Disc Wheels/axles Pack of ten assembled disc wheel sets.   MSRP £4.75", "Hornby",
		"4.25", "0",
		"1", 1,
		"pack", "152",
		"", "pd468501125.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[338] = new Element(
		338, "assets/thumb/r8097.jpg",
		137, 131,
		"R8097", "Disc Wheels(3 Hole)/axles 10 Sets",
		"R8097 Disc Wheels(3 Hole)/axles 10 Sets  MSRP £4.75", "Hornby",
		"4.25", "0",
		"1", 1,
		"pack", "152",
		"", "pd-377626565.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[339] = new Element(
		339, "assets/thumb/r8098.jpg",
		137, 131,
		"R8098", "Spoked Wheels/axles 10 Sets",
		"R8098 Spoked Wheels/axles 10 Sets  MSRP £4.75", "Hornby",
		"4.25", "0",
		"1", 1,
		"pack", "152",
		"", "pd140659937.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[340] = new Element(
		340, "assets/thumb/r8099.jpg",
		137, 67,
		"R8099", "Coupling Assemblies Pk10",
		"R8099 Coupling Assemblies Pk10   MSRP £4.30", "Hornby",
		"4", "0",
		"1", 1,
		"pack", "152",
		"", "pd-1613209097.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[341] = new Element(
		341, "assets/images/nopicturegreen.jpg",
		133, 46,
		"R8218", "14.1mm Coach Wheels",
		"R8218 14.1mm Coach Wheels  MSRP £4.75", "Hornby",
		"4.2", "0",
		"1", 1,
		"pack", "152",
		"", "pd-1090775811.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[342] = new Element(
		342, "assets/thumb/r8219.jpg",
		137, 69,
		"R8219", "Nem Coupling",
		"R8219 Nem Coupling Pack 10 MSRP £4.30", "Hornby",
		"4", "0",
		"1", 1,
		"pack", "152",
		"", "pd-1359980685.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[343] = new Element(
		343, "assets/thumb/r8220.jpg",
		137, 67,
		"R8220", "Pocket Coupling",
		"R8220 Pack of 10 Pocket Coupling  MSRP £4.05", "Hornby",
		"3.75", "0",
		"1", 1,
		"pack", "152",
		"", "pd-358123815.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[344] = new Element(
		344, "assets/thumb/efe29407thumb.jpg",
		137, 52,
		"29407", "Bristol RELH D/P Coach  Cat. No. 29407",
		"Oxford South Midland NBC", "EFE",
		"17", "0",
		"1", 1,
		"model", "18",
		"", "pd1800337168.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[345] = new Element(
		345, "assets/thumb/efe24323thumb.jpg",
		137, 58,
		"24323", "Willowbrook BET Cat. No. 24323",
		"South Wales NBC", "EFE",
		"16", "0",
		"1", 1,
		"model", "18",
		"", "pd971174596.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[346] = new Element(
		346, "assets/thumb/efe18610thumb.jpg",
		137, 66,
		"18610", "Bristol VRIII Open Top  Cat. No.18610",
		"Solent Blue Line New Forest Tour", "EFE",
		"16", "0",
		"1", 1,
		"model", "18",
		"", "pd-1905069122.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[347] = new Element(
		347, "assets/thumb/efe18204thumb.jpg",
		137, 72,
		"18204", "Fleetline Park Royal  Cat. No. 18204",
		"London Transport", "EFE",
		"16", "0",
		"1", 1,
		"model", "18",
		"", "pd1140553766.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[348] = new Element(
		348, "assets/thumb/efe18008thumb.jpg",
		137, 79,
		"18008", "Daimler Fleetline  Cat.No. 18008",
		"West Yorkshire Metrobus", "EFE",
		"16", "0",
		"1", 1,
		"model", "18",
		"", "pd-1139132388.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[349] = new Element(
		349, "assets/thumb/60156thumb.jpg",
		137, 180,
		"60156", "N scale Brass Roller",
		"Spare brass roller for N scale cleaner types D10-D12", "Centerline",
		"6", "0",
		"1", 1,
		"item", "42",
		"", "pd-818650180.htm",
		"", 1,
		"Centerline", "0",
		 0)
	
		Entry[350] = new Element(
		350, "assets/thumb/OM44111_Trent Barton Solo.jpg",
		137, 75,
		"OM44111B", "Optare Solo   Cat. No. OM44111B",
		"Trent Barton - Route 92 to Derby", "Corgi",
		"16.5", "0",
		"1", 1,
		"model", "11",
		"", "pd1142261999.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[351] = new Element(
		351, "assets/thumb/efe16127thumb.jpg",
		137, 90,
		"16127", "Leyland PD2 Highbridge  Cat. No. 16127",
		"Hants &amp; Dorset", "EFE",
		"15.5", "0",
		"1", 1,
		"model", "18",
		"", "pd985844121.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[352] = new Element(
		352, "assets/thumb/efe20439thumb.jpg",
		137, 74,
		"20439", "Bristol VRIII  Cat.No. 20439",
		"Yorkshire Rider Leeds", "EFE",
		"17", "0",
		"1", 1,
		"model", "18",
		"", "pd-602727373.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[353] = new Element(
		353, "assets/thumb/efe26318thumb.jpg",
		137, 90,
		"26318", "Guy Arab II Utility  Cat. No. 26318",
		"Bamber Bridge Motor Services", "EFE",
		"16.5", "0",
		"1", 1,
		"model", "18",
		"", "pd276072353.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[354] = new Element(
		354, "assets/thumb/efe26617thumb.jpg",
		137, 54,
		"26617", "Plaxton Paramount 3500  Cat. No. 26617",
		"Strathtay", "EFE",
		"16.5", "0",
		"1", 1,
		"model", "18",
		"", "pd1142377723.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[355] = new Element(
		355, "assets/thumb/efe29610thumb.jpg",
		137, 73,
		"29610", "Leyland Olympian  Cat. No. 29610",
		"Metrobus", "EFE",
		"17", "0",
		"1", 1,
		"model", "18",
		"", "pd1874688957.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[356] = new Element(
		356, "assets/images/nopicturegreen.jpg",
		133, 46,
		"T-RES1K", "Resistors - 5% tolerance - ¼ watt - axial lead Available 470 - 1K ohms",
		"1000 ohms", "TCS",
		"0.03", "0",
		"1", 1,
		"", "29",
		"Resistor value;1000 ohms@", "pd-419467489.htm",
		"", 5,
		"LED", "0",
		 0)
	
		Entry[357] = new Element(
		357, "assets/thumb/OM40701_ENSIGN Bus.jpg",
		137, 85,
		"OM40701", "Bristol K/ECW  Cat. No. OM40701",
		"Ensign Bus", "Corgi",
		"18", "0",
		"1", 1,
		"model", "11",
		"", "pd-563123728.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[358] = new Element(
		358, "assets/thumb/OM40816_WILTS & DORSET Bus.jpg",
		137, 85,
		"OM40816", "Bristol Lodekka  Cat. No. OM40816",
		"Wilts &amp; Dorset", "Corgi",
		"22", "0",
		"1", 1,
		"model", "11",
		"", "pd-900193890.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[359] = new Element(
		359, "assets/thumb/OM43314_Red & White Coaches.jpg",
		137, 63,
		"OM43314", "Plaxton Premiere  Cat. No. OM43314",
		"Red &amp; White", "Corgi",
		"18", "0",
		"1", 1,
		"model", "11",
		"", "pd-756528454.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[360] = new Element(
		360, "assets/thumb/OM43913_RIBBLE Guy Arab.jpg",
		137, 97,
		"OM43913A", "Guy Arab  Cat. No. OM43913",
		"Ribble - route 628 Carlisle ", "Corgi",
		"22", "0",
		"1", 1,
		"model", "11",
		"", "pd-180889736.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[361] = new Element(
		361, "assets/thumb/OM44112_GOWER Explorer.jpg",
		137, 77,
		"OM44112A", "Optare Solo  Cat. No. OM44112",
		"Gower Explorer - route 115 Llangenith", "Corgi",
		"18", "0",
		"1", 1,
		"model", "11",
		"", "pd2038655590.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[362] = new Element(
		362, "assets/thumb/OM44708_UNO Dennis Dart.jpg",
		137, 63,
		"OM44708", "Dart SLF  Cat. No. OM44708",
		"Uno", "Corgi",
		"16", "0",
		"1", 1,
		"model", "11",
		"", "pd57487108.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[363] = new Element(
		363, "assets/thumb/OM45117_LONDON EXPRESS Bus.jpg",
		137, 80,
		"OM45117A", "Metrobus  Cat. No. OM45117",
		"Reading Buses - destination Reading", "Corgi",
		"22", "0",
		"1", 1,
		"model", "11",
		"", "pd-2078196526.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[364] = new Element(
		364, "assets/thumb/OM45906_GO GOODWINS.jpg",
		137, 64,
		"OM45906", "Van Hool T9  Cat. No. OM45906",
		"Goodwins (England Cricket)", "Corgi",
		"21.5", "0",
		"1", 1,
		"model", "11",
		"", "pd-1147701424.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[365] = new Element(
		365, "assets/thumb/OM46002_WHITELAWS Coaches.jpg",
		137, 64,
		"OM46002A", "Wright single deck  Cat. No. OM46002",
		"Whitelaws - route 254 Stonehouse", "Corgi",
		"21.5", "0",
		"1", 1,
		"model", "11",
		"", "pd1948412394.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[366] = new Element(
		366, "assets/thumb/DG148018_Calico Printers.jpg",
		137, 94,
		"DG148018", "Scammell Scarab Flatbed with Load  Cat. No. DG148018",
		"Calico  MSRP £11.99", "Corgi",
		"10", "0",
		"1", 1,
		"model", "13",
		"", "pd358952116.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[367] = new Element(
		367, "assets/thumb/DG148019_CIE Scammell.jpg",
		137, 75,
		"DG148019", "Scammell Scarab Step Frame  Cat. No. DG148019",
		"CIE  MSRP £11.99", "Corgi",
		"10", "0",
		"1", 1,
		"model", "13",
		"", "pd-930467326.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[368] = new Element(
		368, "assets/thumb/DG150012_BASSETTS Foden.jpg",
		137, 79,
		"DG150012", "Foden Sheeted Trailer  Cat. No. DG150012",
		"Bassetts", "Corgi",
		"11.25", "0",
		"1", 1,
		"model", "13",
		"", "pd-1169674240.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[369] = new Element(
		369, "assets/thumb/DG175015_REIDS Transport.jpg",
		137, 80,
		"DG175015", "Scammell Handyman Flatbed with Load  Cat. No. DG175015",
		"Reid&rsquo;s", "Corgi",
		"11.25", "0",
		"1", 1,
		"model", "13",
		"", "pd159684142.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[370] = new Element(
		370, "assets/thumb/DG186013_RUGBY CEMENT ERF.jpg",
		137, 79,
		"DG186013", "ERF LV Flatbed Trailer with Cement Bag Load  Cat. No. DG186013",
		"Rugby Cement   MSRP £12.99", "Corgi",
		"11", "0",
		"1", 1,
		"model", "13",
		"", "pd279115034.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[371] = new Element(
		371, "assets/thumb/DG187009_R E MASON Tipper.jpg",
		137, 77,
		"DG187009", "Guy Tipper  Cat. No. DG187009",
		"R E Mason   MSRP £12.99", "Corgi",
		"11", "0",
		"1", 1,
		"model", "13",
		"", "pd1496349382.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[372] = new Element(
		372, "assets/thumb/DG199008_ROYAL MAIL.jpg",
		137, 79,
		"DG199008", "Scammell Mechanical Horse Step Frame  Cat. No. DG199008",
		"Royal Mail   MSRP £11.99", "Corgi",
		"10", "0",
		"1", 1,
		"model", "13",
		"", "pd-224742224.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[373] = new Element(
		373, "assets/thumb/DG199009_Post Office Phones.jpg",
		137, 75,
		"DG199009", "Scammell Mechanical Horse Step Frame  Cat. No. DG199009",
		"P O Telephones   MSRP £11.99", "Corgi",
		"10", "0",
		"1", 1,
		"model", "13",
		"", "pd-1475909026.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[374] = new Element(
		374, "assets/thumb/DG200002_BRS Transit Van.jpg",
		137, 81,
		"DG200002", "Ford Transit Van  Cat. No. DG200002",
		"BRS Truck Rental", "Corgi",
		"3.8", "0",
		"1", 1,
		"model", "13",
		"", "pd1240076220.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[375] = new Element(
		375, "assets/thumb/DG206000_RAIL FREIGHT.jpg",
		137, 88,
		"DG206000", "Scammell Townsman Box Trailer  Cat. No. DG206000",
		"Railfreight", "Corgi",
		"10", "0",
		"1", 1,
		"model", "13",
		"", "pd-951095868.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[376] = new Element(
		376, "assets/thumb/DG206001_BRS Scammell.jpg",
		137, 77,
		"DG206001", "Scammell Townsman Dropside Trailer with Load  Cat. No. DG206001",
		"BRS", "Corgi",
		"10", "0",
		"1", 1,
		"model", "13",
		"", "pd431004050.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[377] = new Element(
		377, "assets/thumb/ukbus1014.jpg",
		137, 78,
		"UK1014", "Dennis Trident Alexander ALX400 Cat. No. UKBUS1014",
		"Oxford Park &amp; Ride", "Creative Master Northcord Ltd",
		"24", "0",
		"1", 1,
		"model", "15",
		"", "pd14919451.htm",
		"", 1,
		"CMNL", "0",
		 0)
	
		Entry[378] = new Element(
		378, "assets/thumb/ukbus5003.jpg",
		137, 59,
		"UK5003", "Mercedes Citaro Rigid Cat. No. UKBUS5003",
		"First BAA Heathrow", "Creative Master Northcord Ltd",
		"22.5", "0",
		"1", 1,
		"model", "15",
		"", "pd1356656321.htm",
		"", 1,
		"CMNL", "0",
		 0)
	
		Entry[379] = new Element(
		379, "assets/thumb/as105.jpg",
		137, 65,
		"AS1-05", "AEC Short Swift  Cat. No. AS1-05",
		"London Transport", "Britbus",
		"25", "0",
		"1", 1,
		"model", "5",
		"", "pd1316968151.htm",
		"", 1,
		"BRITBUS", "0",
		 0)
	
		Entry[380] = new Element(
		380, "assets/thumb/es201.jpg",
		137, 91,
		"ES2-01", "Scania Omnidekka/East Lancs  Cat. No. ES2-01",
		"Metrobus - Go Ahead", "Britbus",
		"29", "0",
		"1", 1,
		"model", "5",
		"", "pd1435735261.htm",
		"", 1,
		"BRITBUS", "0",
		 0)
	
		Entry[381] = new Element(
		381, "assets/thumb/r804.jpg",
		137, 90,
		"R804", "Scania 113/Alexander  Cat. No. R804",
		"BTS", "Britbus",
		"29", "0",
		"1", 1,
		"model", "5",
		"", "pd-1497933229.htm",
		"", 1,
		"BRITBUS", "0",
		 0)
	
		Entry[382] = new Element(
		382, "assets/thumb/OM43913_RIBBLE Guy Arab.jpg",
		137, 97,
		"OM43913B", "Guy Arab  Cat. No. OM43913",
		"Ribble - route 10 Preston", "Corgi",
		"22", "0",
		"1", 1,
		"model", "11",
		"", "pd516820650.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[383] = new Element(
		383, "assets/thumb/OM44112_GOWER Explorer.jpg",
		137, 77,
		"OM44112B", "Optare Solo  Cat. No. OM44112",
		"Gower Explorer - route 117 Horton", "Corgi",
		"18", "0",
		"1", 1,
		"model", "11",
		"", "pd1591016680.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[384] = new Element(
		384, "assets/thumb/OM45117_LONDON EXPRESS Bus.jpg",
		137, 80,
		"OM45117B", "Metrobus  Cat. No. OM45117",
		"Reading Buses - destination Heathrow", "Corgi",
		"22", "0",
		"1", 1,
		"model", "11",
		"", "pd947703126.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[385] = new Element(
		385, "assets/thumb/OM46002_WHITELAWS Coaches.jpg",
		137, 64,
		"OM46002B", "Wright single deck  Cat. No. OM46002",
		"Whitelaws - route 254 Hamilton Bus Station", "Corgi",
		"21.5", "0",
		"1", 1,
		"model", "11",
		"", "pd-1679619212.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[386] = new Element(
		386, "assets/thumb/krssr_small.jpg",
		137, 71,
		"N-KRS-SR", "KRS-SR 4 function plug-in decoder",
		"Direct plug-in to Kato RS2, Stewart VO-1000, Imtn F7, 4 function", "NCE",
		"24.5", "0",
		"1", 1,
		"decoder", "101",
		"", "pd1146923301.htm",
		"", 1,
		"HODec", "0",
		 0)
	
		Entry[387] = new Element(
		387, "assets/thumb/sw9sr.jpg",
		137, 60,
		"N-SW9-SR", "SW9-SR 3 function decoder",
		"3 Function, SW8/9/1200 (HO- soldering required)", "NCE",
		"24.5", "0",
		"1", 1,
		"decoder", "101",
		"", "pd1364633563.htm",
		"", 1,
		"HODec", "0",
		 0)
	
		Entry[388] = new Element(
		388, "assets/thumb/switch8.jpg",
		137, 108,
		"N-Switch8", "Switch8 point motor decoder",
		"For Tortoise point motors", "NCE",
		"40", "0",
		"1", 1,
		"decoder", "104",
		"", "pd439541121.htm",
		"", 1,
		"TurDec", "0",
		 0)
	
		Entry[389] = new Element(
		389, "assets/thumb/efe17305thumb.jpg",
		137, 51,
		"17305", "Leyland National Mk 1 Long  Cat. No. 17305",
		"Widnes Corporation", "EFE",
		"15.5", "0",
		"1", 1,
		"model", "18",
		"", "pd-1100082511.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[390] = new Element(
		390, "assets/thumb/efe16219thumb.jpg",
		137, 56,
		"16219", "Bristol LS  Cat. No. 16219",
		"Cumberland", "EFE",
		"15", "0",
		"1", 1,
		"model", "18",
		"", "pd1147696426.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[391] = new Element(
		391, "assets/thumb/mx63r.jpg",
		137, 138,
		"MX63R", "OO/HO 4 Function decoder +SUSI with 8 pin NEM652 board",
		"MX63R OO/HO 4 Function decoder +SUSI with 8 pin NEM652 board", "Zimo",
		"29.5", "0",
		"1", 1,
		"decoder", "127",
		"", "pd-2146664139.htm",
		"", 1,
		"ZIMODEC", "0",
		 0)
	
		Entry[392] = new Element(
		392, "assets/thumb/mx64.jpg",
		137, 104,
		"MX64", "OO/HO 4 Function decoder +SUSI with wires only",
		"MX64 OO/HO 4 Function decoder +SUSI and 9 wires", "Zimo",
		"27", "0",
		"1", 1,
		"decoder", "127",
		"", "pd-1472692629.htm",
		"", 1,
		"ZIMODEC", "0",
		 0)
	
		Entry[393] = new Element(
		393, "assets/thumb/mx64r.jpg",
		137, 103,
		"MX64R", "OO/HO 4 Function decoder with 8 pin NEM652 board",
		"MX64R OO/HO 4 Function decoder with 8 pin NEM652 board", "Zimo",
		"27.5", "0",
		"1", 1,
		"decoder", "127",
		"", "pd1480644241.htm",
		"", 1,
		"ZIMODEC", "0",
		 0)
	
		Entry[394] = new Element(
		394, "assets/thumb/OM41306_Wright Eclipse.jpg",
		137, 54,
		"OM41306B", "Wright Solar Fusion   Cat. No. OM41306",
		"First York - Route 8 to Grimston Bar", "Corgi",
		"24.5", "0",
		"1", 1,
		"model", "11",
		"", "pd-518247578.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[395] = new Element(
		395, "assets/thumb/OM42514_Blackpool Transport.jpg",
		137, 74,
		"OM42514B", "Dennis Trident/East Lancs Myllenium   Cat. No. OM42514",
		"Blackpool Transport - Route 14 to St Annes Square", "Corgi",
		"22.5", "0",
		"1", 1,
		"model", "11",
		"", "pd882366468.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[396] = new Element(
		396, "assets/thumb/OM41401_Roe Trolley Bus.jpg",
		137, 107,
		"OM41401B", "Roe Trolleybus   Cat. No. OM41401",
		"Tees-side Railess Traction Board - Destination North Ormesby", "Corgi",
		"22", "0",
		"1", 1,
		"model", "11",
		"", "pd-1412428334.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[397] = new Element(
		397, "assets/thumb/efe30704thumb.jpg",
		137, 76,
		"30704", "AEC Renown  Cat. No. 30704",
		"Crosville", "EFE",
		"18.5", "0",
		"1", 1,
		"model", "18",
		"", "pd-14027651.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[398] = new Element(
		398, "assets/thumb/efe29408thumb.jpg",
		137, 49,
		"29408", "Bristol RELH D/P Coach  Cat. No. 29408",
		"Bristol Omnibus Co Ltd", "EFE",
		"17", "0",
		"1", 1,
		"model", "18",
		"", "pd2067338615.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[399] = new Element(
		399, "assets/thumb/efe18009thumb.jpg",
		137, 75,
		"18009", "MCW Fleetline  Cat. No. 18009",
		"Rochdale Corporation", "EFE",
		"15", "0",
		"1", 1,
		"model", "18",
		"", "pd967564219.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[400] = new Element(
		400, "assets/thumb/efe17217thumb.jpg",
		137, 52,
		"17217", "Leyland National Mk 1 Long  Cat. No. 17217",
		"Northern Tyne &amp; Wear", "EFE",
		"15.5", "0",
		"1", 1,
		"model", "18",
		"", "pd1262957061.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[401] = new Element(
		401, "assets/thumb/efe16220thumb.jpg",
		137, 56,
		"16220", "Bristol MW  Cat. No. 16220",
		"Bristol Omnibus Co Ltd", "EFE",
		"15", "0",
		"1", 1,
		"model", "18",
		"", "pd1149934015.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[402] = new Element(
		402, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ200-1", "US Diesel Horn 1",
		"", "ITTC",
		"16", "0",
		"1", 1,
		"item", "63",
		"", "pd1150470003.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[403] = new Element(
		403, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ200-2", "US Diesel Horn 2",
		"", "ITTC",
		"16", "0",
		"1", 1,
		"item", "63",
		"", "pd-456169767.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[404] = new Element(
		404, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ200-3", "US Diesel Horn 3",
		"", "ITTC",
		"16", "0",
		"1", 1,
		"item", "63",
		"", "pd-1450447697.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[405] = new Element(
		405, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ200-4", "US Diesel Horn 4",
		"", "ITTC",
		"16", "0",
		"1", 1,
		"item", "63",
		"", "pd-892961163.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[406] = new Element(
		406, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ200-5", "US Diesel Horn 5",
		"", "ITTC",
		"16", "0",
		"1", 1,
		"item", "63",
		"", "pd403684779.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[407] = new Element(
		407, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ200-6", "US Diesel Horn 6",
		"", "ITTC",
		"16", "0",
		"1", 1,
		"item", "63",
		"", "pd1765746641.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[408] = new Element(
		408, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ200-7", "US Diesel Horn 7",
		"", "ITTC",
		"16", "0",
		"1", 1,
		"item", "63",
		"", "pd-1547798937.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[409] = new Element(
		409, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ200-8", "US Diesel Horn 8",
		"", "ITTC",
		"16", "0",
		"1", 1,
		"item", "63",
		"", "pd-498860307.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[410] = new Element(
		410, "assets/thumb/ukbus5002.jpg",
		137, 62,
		"UK5002", "Mercedes Citaro Rigid  Cat. No. UKBUS5002",
		"Oxford Park &amp; Ride", "Creative Master Northcord Ltd",
		"22.5", "0",
		"1", 1,
		"model", "15",
		"", "pd-639016282.htm",
		"", 1,
		"CMNL", "0",
		 0)
	
		Entry[411] = new Element(
		411, "assets/thumb/sb3athumb.jpg",
		137, 67,
		"N-SB3A", "Smart Booster for PowerCab Starter System",
		"N-SB3a 5 Amp Smart Booster for PowerCab", "NCE",
		"110", "0",
		"1", 1,
		"item", "99",
		"", "pd1159299849.htm",
		"", 1,
		"Comps", "0",
		 0)
	
		Entry[412] = new Element(
		412, "assets/thumb/db3athumb.jpg",
		137, 67,
		"N-DB3A", "5 Amp Booster for any DCC System",
		"N-DB3a 5 Amp Booster that can be used to boost the power of any DCC system", "NCE",
		"84", "0",
		"1", 1,
		"item", "99",
		"", "pd1505633375.htm",
		"", 1,
		"Comps", "0",
		 0)
	
		Entry[413] = new Element(
		413, "assets/thumb/autoswthumb.jpg",
		137, 90,
		"N-Auto-SW", "Automatic switch for PowerCab",
		"N-Auto-SW Automatic switch for PowerCab enabling automatic use of programming track", "NCE",
		"20", "0",
		"1", 1,
		"item", "99",
		"", "pd-73646683.htm",
		"", 1,
		"Comps", "0",
		 0)
	
		Entry[414] = new Element(
		414, "assets/thumb/efe14013thumb.jpg",
		137, 74,
		"14013", "Bristol Lodekka FLF  Cat. No. 14013",
		"Northern Scottish", "EFE",
		"18.5", "0",
		"1", 1,
		"model", "18",
		"", "pd1160741913.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[415] = new Element(
		415, "assets/thumb/pcpthumb.jpg",
		137, 63,
		"N-PCP-1", "PowerCab power panel",
		"PowerCab UTP fascia power panel with track wire plug and RJ12 connectors", "NCE",
		"15.5", "0",
		"1", 1,
		"item", "99",
		"", "pd1161010904.htm",
		"", 1,
		"Comps", "0",
		 0)
	
		Entry[416] = new Element(
		416, "assets/thumb/2mmsunnywhite.jpg",
		137, 108,
		"HLED-TWPW", "2mm Daylight White (Sunny White) Tower LED",
		"2mm Daylight White (Sunny White) Tower LED - minimum order quantity 2", "DCC Concepts",
		"0.8", "0",
		"1", 1,
		"item", "29",
		"", "pd1152031873.htm",
		"", 2,
		"LED", "0",
		 0)
	
		Entry[417] = new Element(
		417, "assets/thumb/efe17218thumb.jpg",
		137, 50,
		"17218", "Leyland National Mk 1 Long  Cat. No. 17218",
		"Eastern National", "EFE",
		"15", "0",
		"1", 1,
		"model", "18",
		"", "pd-2011273968.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[418] = new Element(
		418, "assets/thumb/efe20010thumb.jpg",
		137, 86,
		"20010", "Leyland PD2/12 Orion  Cat. No. 20010",
		"Greater Manchester Transport", "EFE",
		"15", "0",
		"1", 1,
		"model", "18",
		"", "pd-2122481468.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[419] = new Element(
		419, "assets/thumb/efe28809dlthumb.jpg",
		137, 80,
		"28809DL", "Leyland Titan 2 Door  Cat. No. 28809DL",
		"Blackburn Transport deLuxe", "EFE",
		"17", "0",
		"1", 1,
		"model", "18",
		"", "pd-1916268098.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[420] = new Element(
		420, "assets/thumb/efe28904thumb.jpg",
		137, 73,
		"28904", "GM Atlantean  Cat. No. 28904",
		"Fylde Borough Transport", "EFE",
		"16", "0",
		"1", 1,
		"model", "18",
		"", "pd841778716.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[421] = new Element(
		421, "assets/thumb/CC13403.jpg",
		130, 82,
		"CC13403-1", "MAN TGA XXL Curtainside  Cat. No. CC13403",
		"Ken Thomas Ltd", "Corgi",
		"56.25", "0",
		"1", 1,
		"", "1",
		"", "pd-1953953205.htm",
		"", 1,
		"CLEAR", "50",
		 0)
	
		Entry[422] = new Element(
		422, "assets/thumb/efe32101thumb.jpg",
		137, 77,
		"32101", "RMF Front Entrance Routemaster  Cat. No. 32101",
		"London Transport", "EFE",
		"19", "0",
		"1", 1,
		"model", "18",
		"", "pd1359503567.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[423] = new Element(
		423, "assets/thumb/efe31801.jpg",
		137, 86,
		"31801", "RMA Airport Coach  Cat. No. 31801",
		"London Transport", "EFE",
		"19", "0",
		"1", 1,
		"model", "18",
		"", "pd559796765.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[424] = new Element(
		424, "assets/thumb/efe31701thumb.jpg",
		137, 92,
		"31701", "RMC Routemaster Coach  Cat. No. 31701",
		"Greenline", "EFE",
		"19", "0",
		"1", 1,
		"model", "18",
		"", "pd-647477767.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[425] = new Element(
		425, "assets/thumb/efe31501thumb.jpg",
		137, 83,
		"31501", "RM Routemaster  Cat. No. 31501",
		"London Transport", "EFE",
		"19", "0",
		"1", 1,
		"model", "18",
		"", "pd1154988965.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[426] = new Element(
		426, "assets/images/nopicturegreen.jpg",
		133, 46,
		"N-RJH", "RJ-H cable ",
		"RJ-H cable 15ft in length to connect boosters together with system box", "NCE",
		"6", "0",
		"1", 1,
		"item", "106",
		"", "pd1156246011.htm",
		"", 1,
		"CabsW", "0",
		 0)
	
		Entry[427] = new Element(
		427, "assets/thumb/mx64.jpg",
		137, 111,
		"MX64H", "OO/HO 8 Function decoder +SUSI  wires only",
		"MX64H OO/HO 8 Function decoder +SUSI with 9 wires", "Zimo",
		"34", "0",
		"1", 1,
		"decoder", "127",
		"", "pd-1705943739.htm",
		"", 1,
		"ZIMODEC", "0",
		 0)
	
		Entry[428] = new Element(
		428, "assets/thumb/d13srj.jpg",
		137, 52,
		"N-D13SRJ", "D13SRJ OO/HO decoder with NMRA &quot;Quick Plug&quot;",
		"D13SR OO/HO 4 function silent running decoder with 4in (100mm) wires terminated NMRA &quot;Quick Plug&quot;", "NCE",
		"14", "0",
		"1", 1,
		"decoder", "101",
		"", "pd1156592529.htm",
		"", 1,
		"HODec", "0",
		 0)
	
		Entry[429] = new Element(
		429, "assets/thumb/mx68.jpg",
		137, 102,
		"MX68", "MX68 8 Function only decoder",
		"", "Zimo",
		"18.5", "0",
		"1", 1,
		"decoder", "126",
		"", "pd748331913.htm",
		"", 1,
		"ZimoAc", "0",
		 0)
	
		Entry[430] = new Element(
		430, "assets/thumb/mx68l.jpg",
		137, 104,
		"MX68L", "MX68L 4 Function only decoder",
		"", "Zimo",
		"16.5", "0",
		"1", 1,
		"decoder", "126",
		"", "pd-938067745.htm",
		"", 1,
		"ZimoAc", "0",
		 0)
	
		Entry[431] = new Element(
		431, "assets/thumb/trafo24.gif",
		137, 127,
		"TRAFO", "24V Transformer",
		"24V  8Amp Transformer", "Zimo",
		"66", "0",
		"1", 1,
		"item", "125",
		"", "pd-495460088.htm",
		"", 1,
		"Accessorie", "0",
		 0)
	
		Entry[432] = new Element(
		432, "assets/thumb/mx82d.jpg",
		137, 104,
		"MX82D", "MX82D 1 turnout/2 lamp accessory decoder",
		"MX82D 1 turnout/2 lamp accessory decoder with shrinking tube sealed on both ends", "Zimo",
		"33", "0",
		"1", 1,
		"decoder", "126",
		"", "pd1156765104.htm",
		"", 1,
		"ZimoAc", "0",
		 0)
	
		Entry[433] = new Element(
		433, "assets/thumb/mx82v.jpg",
		137, 105,
		"MX82V", "MX82V 2 turnout/4 lamp accessory decoder",
		"", "Zimo",
		"28", "0",
		"1", 1,
		"decoder", "126",
		"", "pd-1283427490.htm",
		"", 1,
		"ZimoAc", "0",
		 0)
	
		Entry[434] = new Element(
		434, "assets/thumb/mxdecup.jpg",
		137, 61,
		"MXDECUP", "MXDECUP pack with serial connector for decoder firmware updates",
		"MXDECUP pack with serial connector for decoder firmware updates", "Zimo",
		"91", "0",
		"1", 1,
		"set", "125",
		"", "pd1156804930.htm",
		"", 1,
		"Accessorie", "0",
		 0)
	
		Entry[435] = new Element(
		435, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ651", "Church Bell 1",
		"", "ITTC",
		"24", "0",
		"1", 1,
		"item", "63",
		"", "pd1156946329.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[436] = new Element(
		436, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ652", "Church Bell 2",
		"", "ITTC",
		"24", "0",
		"1", 1,
		"item", "63",
		"", "pd-1534370507.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[437] = new Element(
		437, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ653", "Church Bell 3",
		"", "ITTC",
		"24", "0",
		"1", 1,
		"item", "63",
		"", "pd214088299.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[438] = new Element(
		438, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ654", "Church Bell 4",
		"", "ITTC",
		"23", "0",
		"1", 1,
		"item", "63",
		"", "pd-1656393071.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[439] = new Element(
		439, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ655", "Church Bell 5",
		"", "ITTC",
		"24", "0",
		"1", 1,
		"item", "63",
		"", "pd-1329545433.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[440] = new Element(
		440, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ656", "Church Bell 6",
		"", "ITTC",
		"23", "0",
		"1", 1,
		"item", "63",
		"", "pd-153455187.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[441] = new Element(
		441, "assets/thumb/mx63fthumb.jpg",
		137, 90,
		"MX63F", "OO/HO 4 Function decoder +SUSI with 6 pin NEM651 board",
		"MX63F OO/HO 4 Function decoder +SUSI with 6 pin NEM651 board", "Zimo",
		"28.5", "0",
		"1", 1,
		"decoder", "127",
		"", "pd1157641272.htm",
		"", 1,
		"ZIMODEC", "0",
		 0)
	
		Entry[442] = new Element(
		442, "assets/thumb/mx82.jpg",
		137, 105,
		"MX82E", "MX82E 1 turnout/2 lamp accessory decoder",
		"MX82E 1 turnout/2 lamp accessory decoder with thin shrinking tube without seal", "Zimo",
		"19", "0",
		"1", 1,
		"decoder", "126",
		"", "pd1158059739.htm",
		"", 1,
		"ZimoAc", "0",
		 0)
	
		Entry[443] = new Element(
		443, "assets/thumb/efe28814sbthumb.jpg",
		137, 72,
		"28814SB", "Leyland Titan Cat. No. 28814SB",
		"Stagecoach East London EFE Showbus 2006", "EFE",
		"19", "0",
		"1", 1,
		"model", "18",
		"", "pd-1080691539.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[444] = new Element(
		444, "assets/thumb/efe28813thumb.jpg",
		137, 71,
		"28813", "Leyland Titan Cat. No. 28813",
		"Stagecoach East London", "EFE",
		"17", "0",
		"1", 1,
		"model", "18",
		"", "pd130803239.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[445] = new Element(
		445, "assets/thumb/EFE26704.jpg",
		137, 80,
		"26704", "Plaxton Paramount 3500 Cat. No. 26704",
		"National Express Rapide", "EFE",
		"16", "0",
		"1", 1,
		"model", "18",
		"", "pd564265361.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[446] = new Element(
		446, "assets/thumb/efe24324.jpg",
		137, 58,
		"24324", "BET Weymann Cat. No. 24324",
		"Fishwick &amp; Sons", "EFE",
		"16", "0",
		"1", 1,
		"item", "18",
		"", "pd1158443371.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[447] = new Element(
		447, "assets/thumb/throttle_pocket_thumb.jpg",
		137, 137,
		"NRM40020", "Universal Throttle Pocket™",
		"", "New Rail Models",
		"8", "0",
		"1", 1,
		"item", "71",
		"", "pd-1337361786.htm",
		"", 1,
		"NRMACC", "0",
		 0)
	
		Entry[448] = new Element(
		448, "assets/thumb/nrm12007.jpg",
		137, 80,
		"NRM12007", "N Scale Loading Warehouse",
		"", "New Rail Models",
		"26", "0",
		"1", 1,
		"kit", "74",
		"", "pd750699496.htm",
		"", 1,
		"NRMSTRUC", "0",
		 0)
	
		Entry[449] = new Element(
		449, "assets/thumb/nrm13007.jpg",
		137, 73,
		"NRM13007", "HO Scale Loading Warehouse",
		"", "New Rail Models",
		"41", "0",
		"1", 1,
		"kit", "74",
		"", "pd431483990.htm",
		"", 1,
		"NRMSTRUC", "0",
		 0)
	
		Entry[450] = new Element(
		450, "assets/thumb/nrm32001.jpg",
		137, 103,
		"NRM32001", "N Scale Picnic Table (4 per kit)",
		"", "New Rail Models",
		"4", "0",
		"1", 1,
		"kit", "73",
		"", "pd321864308.htm",
		"", 1,
		"NRMDETAIL", "0",
		 0)
	
		Entry[451] = new Element(
		451, "assets/images/nopicturegreen.jpg",
		133, 46,
		"NRM32005", "N Shake Ultra Shingles™ (4 sheets)",
		"", "New Rail Models",
		"4", "0",
		"1", 1,
		"pack", "73",
		"", "pd297876930.htm",
		"", 1,
		"NRMDETAIL", "0",
		 0)
	
		Entry[452] = new Element(
		452, "assets/thumb/nrm32008.jpg",
		137, 98,
		"NRM32008", "N Scale Plywood Loads (20 per kit)",
		"", "New Rail Models",
		"7", "0",
		"1", 1,
		"kit", "73",
		"", "pd-1077075520.htm",
		"", 1,
		"NRMDETAIL", "0",
		 0)
	
		Entry[453] = new Element(
		453, "assets/thumb/nrm33001.jpg",
		137, 103,
		"NRM33001", "HO Scale Picnic Table (4 per kit)",
		"", "New Rail Models",
		"4.25", "0",
		"1", 1,
		"kit", "73",
		"", "pd-1126048274.htm",
		"", 1,
		"NRMDETAIL", "0",
		 0)
	
		Entry[454] = new Element(
		454, "assets/thumb/nrm33005.jpg",
		137, 98,
		"NRM33005", "HO Shake Ultra Shingles™ (2 sheets)",
		"", "New Rail Models",
		"4", "0",
		"1", 1,
		"pack", "73",
		"", "pd108391884.htm",
		"", 1,
		"NRMDETAIL", "0",
		 0)
	
		Entry[455] = new Element(
		455, "assets/thumb/nrm33008.jpg",
		137, 98,
		"NRM33008", "HO Scale Plywood Loads (16 per kit)",
		"", "New Rail Models",
		"12", "0",
		"1", 1,
		"kit", "73",
		"", "pd-756926246.htm",
		"", 1,
		"NRMDETAIL", "0",
		 0)
	
		Entry[456] = new Element(
		456, "assets/thumb/nrm33001.jpg",
		137, 103,
		"NRM35001", "O Scale Picnic Table (2 per kit)",
		"", "New Rail Models",
		"4.25", "0",
		"1", 1,
		"kit", "73",
		"", "pd-732433768.htm",
		"", 1,
		"NRMDETAIL", "0",
		 0)
	
		Entry[457] = new Element(
		457, "assets/thumb/pcp.jpg",
		137, 63,
		"N-PCP", "PowerCab power panel",
		"PowerCab UTP fascia power panel with track wire plug and RJ12 connectors", "NCE",
		"15.5", "0",
		"1", 1,
		"item", "106",
		"", "pd1155682395.htm",
		"", 1,
		"CabsW", "0",
		 0)
	
		Entry[458] = new Element(
		458, "assets/thumb/efe32202thumb.jpg",
		137, 48,
		"32202", "Bristol RELH Coach  Cat. No. 32202",
		"Crosville NBC", "EFE",
		"18.5", "0",
		"1", 1,
		"model", "18",
		"", "pd1159529252.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[459] = new Element(
		459, "assets/thumb/mx31.jpg",
		137, 125,
		"MX31", "MX31 Throttle",
		"", "Zimo",
		"203", "0",
		"1", 1,
		"item", "124",
		"", "pd1160300374.htm",
		"", 1,
		"ZimoCon", "0",
		 0)
	
		Entry[460] = new Element(
		460, "assets/thumb/mxdecupusb.jpg",
		137, 87,
		"MXDECUPUSB", "MXDECUP pack with USB connector for decoder firmware updates",
		"MXDECUP pack with USB connector for decoder firmware updates  MSRP £114", "Zimo",
		"111", "0",
		"1", 1,
		"set", "125",
		"", "pd-350775948.htm",
		"", 1,
		"Accessorie", "0",
		 0)
	
		Entry[461] = new Element(
		461, "assets/thumb/efe20635thumb.jpg",
		137, 48,
		"20635", "Plaxton Pointer Dart  Cat. No. 20635",
		"Stagecoach East London", "EFE",
		"15", "0",
		"1", 1,
		"model", "18",
		"", "pd802863010.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[462] = new Element(
		462, "assets/thumb/PO1004.jpg",
		137, 42,
		"PO1004", "Post Office Set  Cat. No. PO1004",
		"MSRP £15.99", "Corgi",
		"10", "0",
		"1", 1,
		"set", "13",
		"", "pd-1082863834.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[463] = new Element(
		463, "assets/thumb/LT1004.jpg",
		137, 30,
		"LT1004", "London Transport Set  Cat. No. LT1004",
		"MSRP £15.99", "Corgi",
		"10", "0",
		"1", 1,
		"set", "13",
		"", "pd92503916.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[464] = new Element(
		464, "assets/thumb/ES2004.jpg",
		137, 30,
		"ES2004", "Emergency Set  Cat. No. ES2004",
		"Emergency Set  MSRP £15.99", "Corgi",
		"10", "0",
		"1", 1,
		"set", "13",
		"", "pd1414454840.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[465] = new Element(
		465, "assets/thumb/DG213000.jpg",
		137, 105,
		"DG213001", "Harrington Horsebox  Cat. No. DG213001",
		"Southern Railways  MSRP £7.99", "Corgi",
		"7", "0",
		"1", 1,
		"model", "13",
		"", "pd-755583154.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[466] = new Element(
		466, "assets/thumb/dg21300.jpg",
		137, 83,
		"DG213000", "Harrington Horsebox  Cat. No. DG213000",
		"LNER  MSRP £7.99", "Corgi",
		"7", "0",
		"1", 1,
		"model", "13",
		"", "pd1183798538.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[467] = new Element(
		467, "assets/thumb/DG211000.jpg",
		137, 99,
		"DG211000", "Morris 1000 Van  Cat. No. DG211000",
		"Cooperative", "Corgi",
		"3.8", "0",
		"1", 1,
		"model", "13",
		"", "pd366016864.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[468] = new Element(
		468, "assets/thumb/DG209000.jpg",
		137, 99,
		"DG209000", "Bedford HA Van  Cat. No. DG209000",
		"BR Express Parcels  MSRP £4.99", "Corgi",
		"3.8", "0",
		"1", 1,
		"model", "13",
		"", "pd359248994.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[469] = new Element(
		469, "assets/thumb/DG207000.jpg",
		137, 99,
		"DG207000", "Ford Anglia Van  Cat. No. DG207000",
		"Marley Tiles", "Corgi",
		"3.8", "0",
		"1", 1,
		"model", "13",
		"", "pd-645527672.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[470] = new Element(
		470, "assets/thumb/DG206004.jpg",
		137, 107,
		"DG206004", "Scammell Townsman Box Trailer  Cat. No. DG206004",
		"Royal Mail  MSRP £12.99", "Corgi",
		"10", "0",
		"1", 1,
		"model", "13",
		"", "pd-1413742912.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[471] = new Element(
		471, "assets/thumb/DG206003.jpg",
		137, 93,
		"DG206003", "Scammell Townsman Box Trailer  Cat. No. DG206003",
		"NCL", "Corgi",
		"10", "0",
		"1", 1,
		"model", "13",
		"", "pd1386545384.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[472] = new Element(
		472, "assets/thumb/DG206002.jpg",
		137, 71,
		"DG206002", "Scammell Townsman Flatbed/Load  Cat. No. DG206002",
		"Isle of Man Steam Packet Co Ltd", "Corgi",
		"10", "0",
		"1", 1,
		"model", "13",
		"", "pd-1980741860.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[473] = new Element(
		473, "assets/thumb/DG202006.jpg",
		137, 83,
		"DG202006", "Austin J2  Cat. No. DG202006",
		"Huddersfield Corporation", "Corgi",
		"3.8", "0",
		"1", 1,
		"model", "13",
		"", "pd-1378271158.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[474] = new Element(
		474, "assets/thumb/DG202005.jpg",
		137, 89,
		"DG202005", "Austin J2  Cat. No. DG202005",
		"BMC Register", "Corgi",
		"3.8", "0",
		"1", 1,
		"model", "13",
		"", "pd-1317372322.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[475] = new Element(
		475, "assets/thumb/DG201005.jpg",
		137, 85,
		"DG201005", "Morris LD  Cat. No. DG201005",
		"BRS", "Corgi",
		"3.8", "0",
		"1", 1,
		"model", "13",
		"", "pd-27049028.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[476] = new Element(
		476, "assets/thumb/DG200006.jpg",
		137, 66,
		"DG200006", "Ford Transit  Cat. No. DG200006",
		"Evening News", "Corgi",
		"3.8", "0",
		"1", 1,
		"model", "13",
		"", "pd-1869915914.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[477] = new Element(
		477, "assets/thumb/DG200005.jpg",
		137, 74,
		"DG200005", "Ford Transit  Cat. No. DG200005",
		"Castrol", "Corgi",
		"3.8", "0",
		"1", 1,
		"model", "13",
		"", "pd-1435719504.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[478] = new Element(
		478, "assets/thumb/DG199012.jpg",
		137, 72,
		"DG199012", "Scammell Mechanical Horse Flatbed Trailer/Load   Cat. No. DG199012",
		"Railfreight", "Corgi",
		"10", "0",
		"1", 1,
		"model", "13",
		"", "pd1054872258.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[479] = new Element(
		479, "assets/thumb/DG199011.jpg",
		137, 88,
		"DG199011", "Scammell Mechanical Horse Flatbed/Load   Cat. No. DG199011",
		"TNT Inter County Express  MSRP £12.99", "Corgi",
		"10", "0",
		"1", 1,
		"model", "13",
		"", "pd1683779926.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[480] = new Element(
		480, "assets/thumb/DG199010.jpg",
		137, 91,
		"DG199010", "Scammell Mechanical Horse Flatbed/Container   Cat. No. DG199010",
		"GWR   MSRP £12.99", "Corgi",
		"10", "0",
		"1", 1,
		"model", "13",
		"", "pd1655665322.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[481] = new Element(
		481, "assets/thumb/DG198011.jpg",
		137, 77,
		"DG198011", "Scammell Contractor  Cat. No. DG198011",
		"United Heavy Haulage   MSRP £13.99", "Corgi",
		"12", "0",
		"1", 1,
		"model", "13",
		"", "pd-1717685216.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[482] = new Element(
		482, "assets/thumb/DG187011.jpg",
		137, 88,
		"DG187011", "Guy Big J Tipper    Cat. No. DG187011",
		"NCB   MSRP £13.99", "Corgi",
		"11.5", "0",
		"1", 1,
		"model", "13",
		"", "pd-862225796.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[483] = new Element(
		483, "assets/thumb/DG187010.jpg",
		137, 84,
		"DG187010", "Guy Big J Tipper    Cat. No. DG187010",
		"Tarmac   MSRP £12.99", "Corgi",
		"11", "0",
		"1", 1,
		"model", "13",
		"", "pd-1145749626.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[484] = new Element(
		484, "assets/thumb/DG186015.jpg",
		137, 76,
		"DG186015", "ERF LV Flatbed Trailer/Load    Cat. No. DG186015",
		"Moreton C Cullimore   MSRP £13.99", "Corgi",
		"11.5", "0",
		"1", 1,
		"model", "13",
		"", "pd-118187316.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[485] = new Element(
		485, "assets/thumb/DG176025.jpg",
		137, 65,
		"DG176025", "Leyland Octopus Tanker    Cat. No. DG176025",
		"Fina   MSRP £13.99", "Corgi",
		"12", "0",
		"1", 1,
		"model", "13",
		"", "pd-1073340126.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[486] = new Element(
		486, "assets/thumb/DG176023.jpg",
		137, 68,
		"DG176023", "Leyland Octopus Tanker    Cat. No. DG176023",
		"Alfred Manchester   MSRP £13.99", "Corgi",
		"10.5", "0",
		"1", 1,
		"model", "13",
		"", "pd1066708442.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[487] = new Element(
		487, "assets/thumb/DG175017.jpg",
		137, 70,
		"DG175017", "Scammell Handyman Flatbed Trailer/Load    Cat. No. DG175017",
		"Thomas Paine", "Corgi",
		"11.25", "0",
		"1", 1,
		"model", "13",
		"", "pd-1222914348.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[488] = new Element(
		488, "assets/thumb/DG175016.jpg",
		137, 73,
		"DG175016", "Scammell Handyman Sheeted Trailer    Cat. No. DG175016",
		"Freeway Haulage", "Corgi",
		"11.25", "0",
		"1", 1,
		"model", "13",
		"", "pd75722648.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[489] = new Element(
		489, "assets/thumb/DG174012.jpg",
		137, 95,
		"DG174012", "Noddy Van    Cat. No. DG174012",
		"Lucas", "Corgi",
		"5.5", "0",
		"1", 1,
		"model", "13",
		"", "pd1698924836.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[490] = new Element(
		490, "assets/thumb/DG148021.jpg",
		137, 69,
		"DG148021", "Scammell Scarab Dropside/Load    Cat. No. DG148021",
		"Roadline", "Corgi",
		"10.5", "0",
		"1", 1,
		"model", "13",
		"", "pd685461364.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[491] = new Element(
		491, "assets/thumb/DG148020.jpg",
		137, 101,
		"DG148020", "Scammell Scarab Box Trailer    Cat. No. DG148020",
		"Sharps Toffee", "Corgi",
		"10.5", "0",
		"1", 1,
		"model", "13",
		"", "pd1744448190.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[492] = new Element(
		492, "assets/thumb/DG146017.jpg",
		137, 91,
		"DG146017", "Guy Pantechnicon    Cat. No. DG146017",
		"Guy Motors Ltd", "Corgi",
		"7", "0",
		"1", 1,
		"model", "13",
		"", "pd-224056760.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[493] = new Element(
		493, "assets/thumb/DG146016.jpg",
		137, 91,
		"DG146016", "Guy Pantechnicon  Cat. No. DG146016",
		"Pickfords Overseas", "Corgi",
		"7", "0",
		"1", 1,
		"model", "13",
		"", "pd1799357166.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[494] = new Element(
		494, "assets/thumb/cr3003.jpg",
		137, 51,
		"CR3003", "Car Set 3    Cat. No. CR3003",
		"MSRP £10.99", "Corgi",
		"8.5", "0",
		"1", 1,
		"set", "13",
		"", "pd-1089661424.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[495] = new Element(
		495, "assets/thumb/cr2003.jpg",
		137, 32,
		"CR2003", "Car Set 2    Cat. No. CR2003",
		"MSRP £10.99", "Corgi",
		"8.5", "0",
		"1", 1,
		"set", "13",
		"", "pd2119724434.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[496] = new Element(
		496, "assets/thumb/om46103.jpg",
		137, 59,
		"OM46103", "Plaxton Paragon  Cat. No. OM46103",
		"First Eastern Counties", "Corgi",
		"22.5", "0",
		"1", 1,
		"model", "11",
		"", "pd1598747758.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[497] = new Element(
		497, "assets/thumb/om46102.jpg",
		137, 57,
		"OM46102", "Plaxton Panther  Cat. No. OM46102",
		"National Express   MSRP £25.99", "Corgi",
		"22.5", "0",
		"1", 1,
		"model", "11",
		"", "pd-1165595582.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[498] = new Element(
		498, "assets/thumb/om46101.jpg",
		137, 56,
		"OM46101", "Plaxton Paragon  Cat. No. OM46101",
		"Felix Coaches", "Corgi",
		"22.5", "0",
		"1", 1,
		"model", "11",
		"", "pd-1035571980.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[499] = new Element(
		499, "assets/thumb/OM46008thumb.jpg",
		137, 61,
		"OM46008", "Wright Solar  Cat. No. OM46008",
		"Reading Transport", "Corgi",
		"22.5", "0",
		"1", 1,
		"model", "11",
		"", "pd1733893162.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[500] = new Element(
		500, "assets/thumb/om46007thumb.jpg",
		137, 50,
		"OM46007", "Wright Eclipse Urban  Cat. No. OM46007",
		"Rossendale Transport 50th Anniversary", "Corgi",
		"22.5", "0",
		"1", 1,
		"model", "11",
		"", "pd-123195680.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[501] = new Element(
		501, "assets/thumb/om46004.jpg",
		137, 52,
		"OM46004", "Wright Eclipse Urban  Cat. No. OM46004",
		"Fastrack/Kent Thameside", "Corgi",
		"22.5", "0",
		"1", 1,
		"model", "11",
		"", "pd-1890496546.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[502] = new Element(
		502, "assets/thumb/OM45911.jpg",
		137, 71,
		"OM45911", "Van Hool T9  Cat. No. OM45911",
		"Bibby&rsquo;s of Ingleton", "Corgi",
		"22.5", "0",
		"1", 1,
		"model", "11",
		"", "pd-981470144.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[503] = new Element(
		503, "assets/thumb/om45910thumb.jpg",
		137, 69,
		"OM45910", "Van Hool T9 Cat. No. OM45910",
		"Bartons Transport   MSRP £25.99", "Corgi",
		"22.5", "0",
		"1", 1,
		"model", "11",
		"", "pd1119859414.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[504] = new Element(
		504, "assets/images/nopicturegreen.jpg",
		133, 46,
		"OM45711", "AEC Q Double Deck  Cat. No. OM45711",
		"Birmingham Corporation   MSRP £25.99", "Corgi",
		"22.5", "0",
		"1", 1,
		"model", "11",
		"", "pd-1152686318.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[505] = new Element(
		505, "assets/thumb/om45119.jpg",
		137, 82,
		"OM45119", "MCW Metrobus MkII SD  Cat. No. OM45119",
		"Dublin Bus", "Corgi",
		"22.5", "0",
		"1", 1,
		"model", "11",
		"", "pd767643106.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[506] = new Element(
		506, "assets/thumb/om45118thumb.jpg",
		137, 98,
		"OM45118", "MCW Metrobus MkI DD Cat. No. OM45118",
		"London Transport  MSRP £25.99", "Corgi",
		"22.5", "0",
		"1", 1,
		"model", "11",
		"", "pd-2095751822.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[507] = new Element(
		507, "assets/thumb/OM44710thumb.jpg",
		137, 37,
		"OM44710", "Dart SLF/Pointer 1  Cat. No. OM44710",
		"Trent Barton &rsquo;The Villager&rsquo;   MSRP £25.99", "Corgi",
		"22.5", "0",
		"1", 1,
		"model", "11",
		"", "pd1348257384.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[508] = new Element(
		508, "assets/thumb/OM44709.jpg",
		137, 78,
		"OM44709", "Dart SLF/Pointer 2  Cat. No. OM44709",
		"Arriva London", "Corgi",
		"22.5", "0",
		"1", 1,
		"model", "11",
		"", "pd-382269200.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[509] = new Element(
		509, "assets/images/nopicturegreen.jpg",
		133, 46,
		"OM44113", "Optare Solo  Cat. No. OM44113",
		"Cardiff Bay Express", "Corgi",
		"22.5", "0",
		"1", 1,
		"model", "11",
		"", "pd1453919496.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[510] = new Element(
		510, "assets/thumb/OM41408.jpg",
		137, 98,
		"OM41408", "AEC Regent V/Roe  Cat. No. OM41408",
		"Samuel Ledguard  MSRP £25.99", "Corgi",
		"22.5", "0",
		"1", 1,
		"model", "11",
		"", "pd-1766149978.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[511] = new Element(
		511, "assets/thumb/om40817thumb.gif",
		137, 116,
		"OM40817", "Bristol Lodekka FS   Cat. No. OM40817",
		"Western SMT  MSRP £25.99", "Corgi",
		"22.5", "0",
		"1", 1,
		"model", "11",
		"", "pd-1219476552.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[512] = new Element(
		512, "assets/thumb/np114thumb.jpg",
		137, 75,
		"N-P114", "PowerCab power supply",
		"P114 14 volt DC 2 Amp (peak) power supply for PowerCab", "NCE",
		"20", "0",
		"1", 1,
		"item", "99",
		"", "pd-17432378.htm",
		"", 1,
		"Comps", "0",
		 0)
	
		Entry[513] = new Element(
		513, "assets/thumb/bluepointbmp.jpg",
		52, 80,
		"NRM40018-1", "Blue Point™ Manual Turnout Control",
		"", "New Rail Models",
		"8.5", "0",
		"1", 1,
		"pack", "72",
		"Multi-pack;Single item@", "pd-252690083.htm",
		"", 1,
		"BluePoints", "0",
		 0)
	
		Entry[514] = new Element(
		514, "assets/thumb/efe29613thumb.jpg",
		137, 78,
		"29613", "Leyland Olympian  Cat. No. 29613",
		"Eastern Counties", "EFE",
		"18", "0",
		"1", 1,
		"model", "18",
		"", "pd-1740283397.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[515] = new Element(
		515, "assets/thumb/efe28605thumb.jpg",
		137, 79,
		"28605", "GM Standard Atlantean  Cat. No. 28605",
		"North Birmingham Busways", "EFE",
		"18.5", "0",
		"1", 1,
		"model", "18",
		"", "pd1161788415.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[516] = new Element(
		516, "assets/thumb/efe27618thumb.jpg",
		137, 46,
		"27618", "Wright Volvo Renown  Cat. No. 27618",
		"Blackburn Transport", "EFE",
		"18.5", "0",
		"1", 1,
		"model", "18",
		"", "pd251962529.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[517] = new Element(
		517, "assets/thumb/efe27103thumb.jpg",
		137, 63,
		"27103", "BET Weymann  Cat. No. 27103",
		"Aldershot &amp; District", "EFE",
		"18.5", "0",
		"1", 1,
		"model", "18",
		"", "pd-1418630979.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[518] = new Element(
		518, "assets/thumb/efe16528thumb.jpg",
		137, 80,
		"16528", "MCW Atlantean  Cat. No. 16528",
		"Portsmouth Transport", "EFE",
		"18.5", "0",
		"1", 1,
		"model", "18",
		"", "pd-1603698761.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[519] = new Element(
		519, "assets/thumb/r6311thumb.jpg",
		137, 32,
		"R6311", "Blue Circle PDA Depressed Centre Wagon",
		"R6311 Blue Circle PDA Depressed Centre Wagon  MSRP £23.99", "Hornby",
		"18", "0",
		"1", 1,
		"item", "149",
		"", "pd1786753827.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[520] = new Element(
		520, "assets/thumb/R6313THUMB.jpg",
		137, 32,
		"R6313", "Lloyds &amp; Scottish PDA Depressed Centre Wagon",
		"R6313 Lloyds &amp; Scottish PDA Depressed Centre Wagon  MSRP £21.04", "Hornby",
		"17", "0",
		"1", 1,
		"item", "149",
		"", "pd1513028105.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[521] = new Element(
		521, "assets/thumb/cab04p-thumb.jpg",
		102, 205,
		"N-CAB04p", "Intermediate Cab 04p",
		"Intermediate Cab, with potentiometer speed knob", "NCE",
		"63", "0",
		"1", 1,
		"item", "100",
		"", "pd1163026793.htm",
		"", 1,
		"Throttles", "0",
		 0)
	
		Entry[522] = new Element(
		522, "assets/thumb/n_cso2thumb.jpg",
		137, 86,
		"N-PH-CS02", "PowerPro Command Station for 10Amp System",
		"PowerPro Command Station includes a manual and wiring", "NCE",
		"154", "0",
		"1", 1,
		"item", "99",
		"", "pd-567301697.htm",
		"", 1,
		"Comps", "0",
		 0)
	
		Entry[523] = new Element(
		523, "assets/thumb/switchkat.jpg",
		137, 63,
		"N-Switch-Kat", "Switch-Kat Accessory decoder for Kato switch machines",
		"Accessory decoder for 1 x Kato motor switch machine or LGB remote control turnout", "NCE",
		"14.5", "0",
		"1", 1,
		"decoder", "104",
		"", "pd-1078803963.htm",
		"", 1,
		"TurDec", "0",
		 0)
	
		Entry[524] = new Element(
		524, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ2000", "On the throne",
		"", "ITTC",
		"16", "0",
		"1", 1,
		"item", "63",
		"", "pd-2088381201.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[525] = new Element(
		525, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ150-1", "Coal drop",
		"", "ITTC",
		"23", "0",
		"1", 1,
		"item", "63",
		"", "pd-986996555.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[526] = new Element(
		526, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ150-2", "Shovel coal",
		"", "ITTC",
		"16", "0",
		"1", 1,
		"item", "63",
		"", "pd-260396565.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[527] = new Element(
		527, "assets/thumb/rramp1.jpg",
		137, 62,
		"RRAMP1", "RRampmeter Version 1",
		"RRampmeter Version 1 with no enclosure", "Tony's Train Exchange",
		"44", "0",
		"1", 1,
		"item", "129",
		"", "pd986414163.htm",
		"", 1,
		"POWERTEST", "0",
		 0)
	
		Entry[528] = new Element(
		528, "assets/thumb/rrampv2thumb.jpg",
		137, 51,
		"RRAMP2", "RRampmeter Version 2",
		"RRampmeter Version 2 with enclosure and clip leads", "Tony's Train Exchange",
		"69", "0",
		"1", 1,
		"item", "129",
		"", "pd886932614.htm",
		"", 1,
		"POWERTEST", "0",
		 0)
	
		Entry[529] = new Element(
		529, "assets/thumb/tds16.jpg",
		137, 106,
		"TT16", "Speaker 16mm (0.62&quot;) 8 ohm",
		"", "Tony's Train Exchange",
		"5.75", "0",
		"1", 1,
		"speaker", "132",
		"", "pd1893235797.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[530] = new Element(
		530, "assets/thumb/tds16.jpg",
		137, 106,
		"TT25", "Speaker 25mm (1.0&quot;) 8 ohm",
		"", "Tony's Train Exchange",
		"4", "0",
		"1", 1,
		"speaker", "132",
		"", "pd-603099509.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[531] = new Element(
		531, "assets/images/nopicturegreen.jpg",
		133, 46,
		"STX826101", "Tsunami Light Steam",
		"TSU-1000 Light Steam", "Soundtraxx",
		"79", "0",
		"1", 1,
		"decoder", "112",
		"", "pd-116226432.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[532] = new Element(
		532, "assets/images/nopicturegreen.jpg",
		133, 46,
		"STX826102", "Tsunami Medium Steam",
		"TSU-1000 Medium Steam", "Soundtraxx",
		"79", "0",
		"1", 1,
		"decoder", "112",
		"", "pd1281413294.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[533] = new Element(
		533, "assets/images/nopicturegreen.jpg",
		133, 46,
		"STX826103", "Tsunami Heavy Steam",
		"TSU-1000 Heavy Steam", "Soundtraxx",
		"79", "0",
		"1", 1,
		"decoder", "112",
		"", "pd1900093068.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[534] = new Element(
		534, "assets/images/nopicturegreen.jpg",
		133, 46,
		"STX826104", "Tsunami DRGW K Class",
		"TSU-1000 Denver &amp; Rio Grande K-Class", "Soundtraxx",
		"76.75", "0",
		"1", 1,
		"decoder", "112",
		"", "pd-1995712614.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[535] = new Element(
		535, "assets/images/nopicturegreen.jpg",
		133, 46,
		"STX826116", "Tsunami DRGW C-Class",
		"TSU-1000 Denver &amp; Rio Grande C-Class", "Soundtraxx",
		"85", "0",
		"1", 1,
		"decoder", "112",
		"", "pd-1224888488.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[536] = new Element(
		536, "assets/images/nopicturegreen.jpg",
		133, 46,
		"STX826120", "Tsunami Geared &amp; Logging",
		"TSU-1000 Tsunami for Light Logging Engines", "Soundtraxx",
		"85", "0",
		"1", 1,
		"decoder", "112",
		"", "pd-1233091258.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[537] = new Element(
		537, "assets/images/nopicturegreen.jpg",
		133, 46,
		"STX824214", "DSX   UK Class L1 tank loco",
		"DSX   UK Class L-1 tank loco sound only decoder", "Soundtraxx",
		"51", "0",
		"1", 1,
		"decoder", "111",
		"", "pd-1572319768.htm",
		"", 1,
		"STXXSO", "0",
		 0)
	
		Entry[538] = new Element(
		538, "assets/images/nopicturegreen.jpg",
		133, 46,
		"STX825222", "DSX   EMD2/ Leslie S3",
		"EMD 2nd Generation with Leslie S3 3-chime Airhorn", "Soundtraxx",
		"51", "0",
		"1", 1,
		"decoder", "111",
		"", "pd952134612.htm",
		"", 1,
		"STXXSO", "0",
		 0)
	
		Entry[539] = new Element(
		539, "assets/images/nopicturegreen.jpg",
		133, 46,
		"STX820072", "DSD-LL110LC Alco",
		"For NEW Life-Like® LA diesels", "Soundtraxx",
		"44", "0",
		"1", 1,
		"decoder", "110",
		"", "pd677944131.htm",
		"", 1,
		"STXXLC", "0",
		 0)
	
		Entry[540] = new Element(
		540, "assets/images/nopicturegreen.jpg",
		133, 46,
		"STX820070", "DSD-LL110LC EMD1/LLP2K",
		"For Life-Like® Proto 2000 Series GP7, GP9 and GP30 models", "Soundtraxx",
		"44", "0",
		"1", 1,
		"decoder", "110",
		"", "pd-2106517305.htm",
		"", 1,
		"STXXLC", "0",
		 0)
	
		Entry[541] = new Element(
		541, "assets/images/nopicturegreen.jpg",
		133, 46,
		"STX820041", "DSD-AT100LC EMD2/Atlas",
		"For Atlas, Athearn Genesis, and Intermountain Railway models", "Soundtraxx",
		"44", "0",
		"1", 1,
		"decoder", "110",
		"", "pd-1412802979.htm",
		"", 1,
		"STXXLC", "0",
		 0)
	
		Entry[542] = new Element(
		542, "assets/images/nopicturegreen.jpg",
		133, 46,
		"STX820112", "DSD-101LC for Medium Steam",
		"", "Soundtraxx",
		"45", "0",
		"1", 1,
		"decoder", "110",
		"", "pd1028414405.htm",
		"", 1,
		"STXXLC", "0",
		 0)
	
		Entry[543] = new Element(
		543, "assets/images/nopicturegreen.jpg",
		133, 46,
		"STX820121", "DSD-101LC for ALCO",
		"", "Soundtraxx",
		"45", "0",
		"1", 1,
		"decoder", "110",
		"", "pd-885862089.htm",
		"", 1,
		"STXXLC", "0",
		 0)
	
		Entry[544] = new Element(
		544, "assets/thumb/mp183-1.jpg",
		137, 172,
		"HP-MP183", "Parrot Jaw Spring Wire &amp; Hardened Steel Cutter",
		"High quality precision wire cutter", "DCC Concepts",
		"12", "0",
		"1", 1,
		"item", "31",
		"", "pd1164055279.htm",
		"", 1,
		"Tools", "0",
		 0)
	
		Entry[545] = new Element(
		545, "assets/thumb/tortoise.jpg",
		137, 139,
		"TORT1", "Tortoise™ Point Motor Single",
		"", "Circuitron",
		"13", "0",
		"1", 1,
		"item", "44",
		"", "pd297550550.htm",
		"", 1,
		"CIRCUITRON", "0",
		 0)
	
		Entry[546] = new Element(
		546, "assets/thumb/cc18102.jpg",
		137, 59,
		"CC18102", "Scania R Series Topline Fridge    Cat. No. CC18102",
		"Scott Trawlers    MSRP £29.99", "Corgi",
		"20", "0",
		"1", 1,
		"model", "12",
		"", "pd82622598.htm",
		"", 1,
		"ROADSCENE", "0",
		 0)
	
		Entry[547] = new Element(
		547, "assets/thumb/cc18104.jpg",
		137, 66,
		"CC18104", "Scania R Series Box Trailer    Cat. No. CC18104",
		"Hadfields Transport    MSRP £29.99", "Corgi",
		"17", "0",
		"1", 1,
		"model", "12",
		"", "pd1715860150.htm",
		"", 1,
		"ROADSCENE", "0",
		 0)
	
		Entry[548] = new Element(
		548, "assets/thumb/CC18201.jpg",
		137, 45,
		"CC18201", "Mercedes Benz Actros Curtainside    Cat. No. CC18201",
		"Charles Gee &amp; Co Ltd    MSRP £29.99", "Corgi",
		"17", "0",
		"1", 1,
		"model", "12",
		"", "pd-150164238.htm",
		"", 1,
		"ROADSCENE", "0",
		 0)
	
		Entry[549] = new Element(
		549, "assets/thumb/ogar.jpg",
		137, 89,
		"OG-AR", "DCC Auto Reverser and Circuit Breaker",
		"OnGuard DCC Auto Reverser and Circuit Breaker", "DCC Specialties",
		"26.5", "0",
		"1", 1,
		"item", "130",
		"", "pd287246726.htm",
		"", 1,
		"ONGUARD", "0",
		 0)
	
		Entry[550] = new Element(
		550, "assets/thumb/r6173.jpg",
		137, 78,
		"R6173", "Containers 2x30ft Blister Pack",
		"R6173  2 x 30ft Containers in Blister Pack  MSRP £6.25", "Hornby",
		"5.5", "0",
		"1", 1,
		"pack", "152",
		"", "pd1310700553.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[551] = new Element(
		551, "assets/thumb/r6174.jpg",
		137, 170,
		"R6174", "Containers 3x20ft Blister Pack",
		"R6174 3 x 20ft Containers in Blister Pack   MSRP £", "Hornby",
		"5.5", "0",
		"1", 1,
		"pack", "152",
		"", "pd1104395615.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[552] = new Element(
		552, "assets/thumb/r6176.jpg",
		137, 71,
		"R6176", "Crates X 4 Blister Pack",
		"R6176 4 x Crates in Blister Pack    MSRP £6.50", "Hornby",
		"5.5", "0",
		"1", 1,
		"pack", "152",
		"", "pd2102098267.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[553] = new Element(
		553, "assets/thumb/efe27620thumb.jpg",
		137, 48,
		"27620", "Wright Volvo Renown  Cat. No. 27620",
		"Translink", "EFE",
		"18", "0",
		"1", 1,
		"model", "18",
		"", "pd1167855078.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[554] = new Element(
		554, "assets/thumb/efe27311thumb.jpg",
		137, 92,
		"27311", "Leyland TD1 Closed Rear   Cat. No. 27311",
		"Cork City Services", "EFE",
		"18", "0",
		"1", 1,
		"model", "18",
		"", "pd886341252.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[555] = new Element(
		555, "assets/thumb/efe20009dlthumb.jpg",
		137, 89,
		"20009DL", "Leyland PD2/12 Orion  Cat. No. 20009DL",
		"Manchester City", "EFE",
		"18", "0",
		"1", 1,
		"model", "18",
		"", "pd-1666770862.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[556] = new Element(
		556, "assets/thumb/efe29614thumb.jpg",
		137, 75,
		"29614", "Leyland Olympian  Cat. No. 29614",
		"East Yorkshire", "EFE",
		"18", "0",
		"1", 1,
		"model", "18",
		"", "pd-1101337171.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[557] = new Element(
		557, "assets/thumb/remotemount_01.jpg",
		137, 162,
		"TORT-M", "Remote Tortoise™ Mount",
		"", "Circuitron",
		"7.75", "0",
		"1", 1,
		"item", "44",
		"", "pd1169064607.htm",
		"", 1,
		"CIRCUITRON", "0",
		 0)
	
		Entry[558] = new Element(
		558, "assets/thumb/tds-spkez-rnd.gif",
		137, 77,
		"TTE16", "Enclosure for 16mm (0.62&quot;) speaker",
		"Enclosure for 16mm (0.62&quot;) 8 ohm speaker", "Tony's Train Exchange",
		"4.5", "0",
		"1", 1,
		"item", "132",
		"", "pd1374995941.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[559] = new Element(
		559, "assets/thumb/tds-spkez-rnd.gif",
		137, 77,
		"TTE25", "Enclosure for 25mm (1.0&quot;) speaker",
		"Enclosure for 25mm (1.0&quot;) 8 ohm speaker", "Tony's Train Exchange",
		"4", "0",
		"1", 1,
		"item", "132",
		"", "pd-649653605.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[560] = new Element(
		560, "assets/thumb/tortoise.jpg",
		137, 139,
		"TORT6", "Tortoise™ Point Motor 6-pack",
		"", "Circuitron",
		"77", "0",
		"1", 1,
		"pack", "44",
		"", "pd-1582545343.htm",
		"", 1,
		"CIRCUITRON", "0",
		 0)
	
		Entry[561] = new Element(
		561, "assets/thumb/2912.jpg",
		137, 89,
		"2912", "RMC 1469 - Routemaster Coach  Cat. No. 2912",
		"RMC 1469 - Routemaster Coach 486 CLT ", "Sunstar",
		"97", "0",
		"1", 1,
		"model", "25",
		"", "pd1169900835.htm",
		"", 1,
		"SunRoute", "0",
		 0)
	
		Entry[562] = new Element(
		562, "assets/thumb/5007thumb.jpg",
		137, 73,
		"5007", "Bedford OB Coach  in Southdown livery  Cat. No. 5007",
		"1949 Bedford OB Coach in Southdown livery  MSRP £99.99", "Sunstar",
		"84", "0",
		"1", 1,
		"model", "24",
		"", "pd195026688.htm",
		"", 1,
		"ssbEDFORD", "0",
		 0)
	
		Entry[563] = new Element(
		563, "assets/thumb/miniconn.jpg",
		137, 110,
		"H-DCA-PF2", "Micro connector - 4-way",
		"Micro connector - 4-way - available in 2 or 5 packs", "DCC Concepts",
		"7.5", "0",
		"1", 1,
		"pack", "30",
		"Multi-pack;2-pack@", "pd-966755525.htm",
		"", 1,
		"Switches", "0",
		 0)
	
		Entry[564] = new Element(
		564, "assets/thumb/r530.jpg",
		137, 129,
		"R530", "Pylons 3",
		"R530 Set of 3 Pylons  MSRP 12.50", "Hornby",
		"11", "0",
		"1", 1,
		"pack", "152",
		"", "pd587045211.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[565] = new Element(
		565, "assets/thumb/r564.jpg",
		137, 55,
		"R564", "Farm People",
		"R564 Farm People  MSRP £4.00", "Hornby",
		"3.75", "0",
		"1", 1,
		"pack", "152",
		"", "pd-515298559.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[566] = new Element(
		566, "assets/thumb/r565.jpg",
		137, 55,
		"R565", "Farm Animals",
		"R565 Farm Animals  MSRP £4.00", "Hornby",
		"3.75", "0",
		"1", 1,
		"pack", "152",
		"", "pd-949031657.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[567] = new Element(
		567, "assets/thumb/r767.jpg",
		137, 55,
		"R767", "Sheep",
		"R767 Sheep  MSRP £4.99", "Hornby",
		"4.5", "0",
		"1", 1,
		"pack", "152",
		"", "pd-1361177315.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[568] = new Element(
		568, "assets/thumb/r768.jpg",
		137, 55,
		"R768", "Cows",
		"R768 Cows  MSRP £4.99", "Hornby",
		"4.5", "0",
		"1", 1,
		"pack", "152",
		"", "pd-666970989.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[569] = new Element(
		569, "assets/thumb/r2621.jpg",
		137, 32,
		"R2621", "BR (Late) N15 &quot;Sir Ironside&quot; Weathered",
		"R2621 BR (Late) N15 &quot;Sir Ironside&quot; Weathered  DCC Ready  MSRP £96.00", "Hornby",
		"79", "0",
		"1", 1,
		"loco", "150",
		"", "pd1938062239.htm",
		"", 1,
		"HornbyStea", "0",
		 0)
	
		Entry[570] = new Element(
		570, "assets/thumb/r2646.jpg",
		137, 55,
		"R2646", "Class 56 BR Railfreight (1987) 56 049",
		"R2646 BR Class 56 Railfreight (1987) 56 049  DCC Ready   MSRP £102.15", "Hornby",
		"64.5", "0",
		"1", 1,
		"loco", "151",
		"", "pd2026338125.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[571] = new Element(
		571, "assets/thumb/r2648.jpg",
		137, 55,
		"R2648", "Class 56 EWS",
		"R2648 EWS Class 56  DCC Ready  MSRP £95.00", "Hornby",
		"64.5", "0",
		"1", 1,
		"loco", "151",
		"", "pd-1246749143.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[572] = new Element(
		572, "assets/thumb/r2652.jpg",
		137, 55,
		"R2652", "Class 66 GB 66702 &quot;Blue Lightning&quot;",
		"R2652 GB Class 66 66702 &quot;Blue Lightning&quot;  DCC Ready  MSRP £65.00", "Hornby",
		"50", "0",
		"1", 1,
		"loco", "151",
		"", "pd495788667.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[573] = new Element(
		573, "assets/thumb/r2655.jpg",
		137, 29,
		"R2655", "Class 73 73 235 SW Trains",
		"R2655  Class 73 73 235 SW Trains  DCC Ready", "Hornby",
		"51", "0",
		"1", 1,
		"loco", "151",
		"", "pd-1892530121.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[574] = new Element(
		574, "assets/thumb/r4188b.jpg",
		137, 26,
		"R4188B", "BR 68ft Restaurant Car",
		"R4188B BR 68ft Restaurant Car  &rsquo;M233M&rsquo; MSRP £20.00", "Hornby",
		"17", "0",
		"1", 1,
		"coach", "148",
		"", "pd1677288765.htm",
		"", 1,
		"HornbyCarr", "0",
		 0)
	
		Entry[575] = new Element(
		575, "assets/thumb/r4298.jpg",
		138, 55,
		"R4298A", "SR Maunsell Corridor 1st Class",
		"R4298A SR Maunsell Corridor 1st Class  MSRP £25.00", "Hornby",
		"21", "0",
		"1", 1,
		"carriage", "148",
		"", "pd271346415.htm",
		"", 1,
		"HornbyCarr", "0",
		 0)
	
		Entry[576] = new Element(
		576, "assets/images/nopicturegreen.jpg",
		133, 46,
		"R8234", "14.1mm 4 Hole Wheels (Pk 10)",
		"R8234 14.1mm 4 Hole Disc Wheels (Pk 10)  MSRP £4.00", "Hornby",
		"3.5", "0",
		"1", 1,
		"pack", "152",
		"", "pd1499242149.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[577] = new Element(
		577, "assets/images/nopicturegreen.jpg",
		133, 46,
		"FL-PMH", "Harness for FL 2 function decoder",
		"Harness for FL decoders with 8-pin NMRA plug - available in 2 lengths", "TCS",
		"3.5", "0",
		"1", 1,
		"item", "117",
		"Harness;MH@", "pd1170975367.htm",
		"", 1,
		"TCS Harn", "0",
		 0)
	
		Entry[578] = new Element(
		578, "assets/thumb/efe11904thumb.jpg",
		137, 62,
		"11904", "Harrington Cavalier  Cat. No. 11904",
		"Southend Transport", "EFE",
		"17", "0",
		"1", 1,
		"model", "18",
		"", "pd-1270375335.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[579] = new Element(
		579, "assets/thumb/26320thumb.jpg",
		137, 88,
		"26320", "Guy Arab II Utility  Cat. No. 26320",
		"Southdown", "EFE",
		"18", "0",
		"1", 1,
		"model", "18",
		"", "pd1171284605.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[580] = new Element(
		580, "assets/thumb/50-001-L.jpg",
		137, 28,
		"MIN50001", "Mini 2-pin connector",
		"Mini 2-pin connector, 2 pairs", "Miniatronics",
		"8.5", "0",
		"1", 1,
		"pack", "131",
		"", "pd-198919617.htm",
		"", 1,
		"MINIATRONI", "0",
		 0)
	
		Entry[581] = new Element(
		581, "assets/thumb/50-003-L.jpg",
		137, 33,
		"MIN50003", "Mini 3-pin connector",
		"Mini 3-pin connector - 1 pair", "Miniatronics",
		"6", "0",
		"1", 1,
		"pack", "131",
		"", "pd-544742558.htm",
		"", 1,
		"MINIATRONI", "0",
		 0)
	
		Entry[582] = new Element(
		582, "assets/thumb/50-004-L.jpg",
		137, 32,
		"MIN50004", "Mini 4-pin connector",
		"Mini 4-pin connector - 1 pair", "Miniatronics",
		"7", "0",
		"1", 1,
		"pack", "131",
		"", "pd452378720.htm",
		"", 1,
		"MINIATRONI", "0",
		 0)
	
		Entry[583] = new Element(
		583, "assets/thumb/psx1.jpg",
		137, 70,
		"PSX-1", "One block intelligent circuit breaker",
		"Solid State Circuit Breaker with Integrated Block Detection and Feed Back", "DCC Specialties",
		"28", "0",
		"1", 1,
		"item", "130",
		"", "pd1171738208.htm",
		"", 1,
		"ONGUARD", "0",
		 0)
	
		Entry[584] = new Element(
		584, "assets/thumb/efe17306thumb.jpg",
		137, 53,
		"17306", "Leyland National Mk1 Long  Cat. No. 17306",
		"Midland Red", "EFE",
		"18", "0",
		"1", 1,
		"model", "18",
		"", "pd-363416473.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[585] = new Element(
		585, "assets/thumb/efe32203thumb.jpg",
		137, 58,
		"32203", "Bristol RELH Coach Cat. No.32203",
		"Crosville", "EFE",
		"19.5", "0",
		"1", 1,
		"model", "18",
		"", "pd-728360021.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[586] = new Element(
		586, "assets/thumb/hare_front_thumb.jpg",
		137, 142,
		"HARE1", "Hare Version 1",
		"HARE PnP stationary decoder for the Tortoise™ Switch Machine ", "DCC Specialties",
		"23.5", "0",
		"1", 1,
		"item", "130",
		"", "pd1172088649.htm",
		"", 1,
		"ONGUARD", "0",
		 0)
	
		Entry[587] = new Element(
		587, "assets/images/nopicturegreen.jpg",
		133, 46,
		"STX821101", "DSD 090 N Light Steam",
		"", "Soundtraxx",
		"50", "0",
		"1", 1,
		"decoder", "110",
		"", "pd-1660273997.htm",
		"", 1,
		"STXXLC", "0",
		 0)
	
		Entry[588] = new Element(
		588, "assets/images/nopicturegreen.jpg",
		133, 46,
		"STX821102", "DSD 090 N Medium Steam",
		"DSD 090 N Medium Steam", "Soundtraxx",
		"50", "0",
		"1", 1,
		"decoder", "110",
		"", "pd1303972889.htm",
		"", 1,
		"STXXLC", "0",
		 0)
	
		Entry[589] = new Element(
		589, "assets/thumb/wire.jpg",
		137, 152,
		"T-AWG30BK", "30 AWG wire (0.26&quot;) - 3 metres",
		"", "TCS",
		"1.4", "0",
		"1", 1,
		"pack", "30",
		"Color;Black@", "pd-110233310.htm",
		"", 1,
		"Switches", "0",
		 0)
	
		Entry[590] = new Element(
		590, "assets/thumb/r6328abc.jpg",
		137, 44,
		"R6328B", "YGB Sealion Olive Green (Weathered)",
		"R6328B YGB Sealion Olive Green (Weathered)  MSRP £17.00", "Hornby",
		"15", "0",
		"1", 1,
		"wagon", "149",
		"", "pd1173125926.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[591] = new Element(
		591, "assets/thumb/r6328abc.jpg",
		137, 44,
		"R6328C", "YGB Sealion Olive Green (Weathered)",
		"R6328C YGB Sealion Olive Green (Weathered) MSRP £17.00", "Hornby",
		"15", "0",
		"1", 1,
		"wagon", "149",
		"", "pd266841540.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[592] = new Element(
		592, "assets/thumb/r6329thumb.jpg",
		137, 55,
		"R6329B", "YGB Sealion Departmental (Weathered)",
		"R6329B YGB Sealion Departmental (Weathered)  MSRP £17.00", "Hornby",
		"15", "0",
		"1", 1,
		"wagon", "149",
		"", "pd755161490.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[593] = new Element(
		593, "assets/thumb/r6329thumb.jpg",
		137, 55,
		"R6329C", "YGB Sealion Departmental (Weathered)",
		"R6329C YGB Sealion Departmental (Weathered) MSRP £17.00", "Hornby",
		"15", "0",
		"1", 1,
		"wagon", "149",
		"", "pd-974298608.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[594] = new Element(
		594, "assets/thumb/r6330abc.jpg",
		137, 43,
		"R6330B", "YGB Sealion Transrail (Weathered)",
		"R6330B YGB Sealion Transrail (Weathered)  MSRP £17.00", "Hornby",
		"15", "0",
		"1", 1,
		"wagon", "149",
		"", "pd-41724226.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[595] = new Element(
		595, "assets/thumb/r6330abc.jpg",
		137, 43,
		"R6330C", "YGB Sealion Transrail (Weathered)",
		"R6330C YGB Sealion Transrail (Weathered)  MSRP £17.00", "Hornby",
		"15", "0",
		"1", 1,
		"wagon", "149",
		"", "pd902648604.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[596] = new Element(
		596, "assets/thumb/r6332.jpg",
		137, 21,
		"R6332", "Procor Hopper Wagons - pack of 3",
		"R6332 Procor Hopper Wagons  MSRP £33.00", "Hornby",
		"27.5", "0",
		"1", 1,
		"pack", "149",
		"", "pd315280616.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[597] = new Element(
		597, "assets/thumb/r6351.jpg",
		137, 44,
		"R6351", "BR Railfreight Ferry Van Circa 1980",
		"R6351 BR Railfreight Ferry Van Circa 1980  MSRP £16.39", "Hornby",
		"12", "0",
		"1", 1,
		"wagon", "149",
		"", "pd1082351274.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[598] = new Element(
		598, "assets/thumb/r6354.jpg",
		137, 55,
		"R6354", "BR Standard GUV InterCity",
		"R6354 BR Standard GUV InterCity  MSRP £18.99", "Hornby",
		"14", "0",
		"1", 1,
		"wagon", "149",
		"", "pd984030550.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[599] = new Element(
		599, "assets/thumb/efe15639thumb.jpg",
		137, 85,
		"15639", "RM Routemaster   Cat. No. 15639",
		"Transport for London Arriva Route 38", "EFE",
		"17", "0",
		"1", 1,
		"model", "18",
		"", "pd25696951.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[600] = new Element(
		600, "assets/thumb/atl2066pthumb.jpg",
		137, 69,
		"ATL2066-S", "ATL 2066  Loco decoder module with built-in steam and diesel sounds and fitted speaker",
		" Loco decoder module with built-in steam and diesel sounds fitted with 8-pin NMRA plug and 20mm speaker", "UMELEC",
		"58", "0",
		"1", 1,
		"decoder", "122",
		"", "pd-533813155.htm",
		"", 1,
		"UMELEC", "0",
		 0)
	
		Entry[601] = new Element(
		601, "assets/thumb/trackbedthumb.jpg",
		137, 49,
		"H-DCM-RB100", "MASTERscene Roadbed",
		"50 x 60cm strip of UV stable foam roadbed", "DCC Concepts",
		"47", "0",
		"1", 1,
		"pack", "40",
		"", "pd1174333140.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[602] = new Element(
		602, "assets/thumb/sap145.jpg",
		137, 175,
		"H-DCS145", "Sapphire 145 solder",
		"Sapphire 145 solder 4m pack", "DCC Concepts",
		"5.5", "0",
		"1", 1,
		"pack", "28",
		"", "pd1175101214.htm",
		"", 1,
		"Shrink", "0",
		 0)
	
		Entry[603] = new Element(
		603, "assets/thumb/sap179.jpg",
		137, 174,
		"H-DCS179", "Sapphire 179 solder",
		"Sapphire 179 solder 4m pack", "DCC Concepts",
		"5.75", "0",
		"1", 1,
		"pack", "28",
		"", "pd429609596.htm",
		"", 1,
		"Shrink", "0",
		 0)
	
		Entry[604] = new Element(
		604, "assets/thumb/dcssfnc.jpg",
		137, 139,
		"H-DCS-SFNC", "Sapphire NO clean liquid flux  50ml",
		"", "DCC Concepts",
		"8.25", "0",
		"1", 1,
		"bottle", "28",
		"", "pd1175196002.htm",
		"", 1,
		"Shrink", "0",
		 0)
	
		Entry[605] = new Element(
		605, "assets/thumb/131-03.jpg",
		137, 215,
		"MIN131-03", "3mm Blinking/Flashing LED - Red",
		"Pack of 3 x 3mm Blinking/Flashing LEDs - Red with resistors", "Miniatronics",
		"3.75", "0",
		"1", 1,
		"pack", "29",
		"", "pd1177676734.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[606] = new Element(
		606, "assets/thumb/130-03.jpg",
		137, 220,
		"MIN130-03", "3mm Blinking/Flashing LED - Green, Red, Yellow",
		"Pack of 3 x 3mm Blinking/Flashing LEDs - Green, Red, Yellow with resistors", "Miniatronics",
		"2.2", "0",
		"1", 1,
		"pack", "29",
		"", "pd-744465171.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[607] = new Element(
		607, "assets/thumb/132-03.jpg",
		137, 202,
		"MIN132-03", "3mm Blinking/Flashing LED - Green",
		"Pack of 3 x 3mm Blinking/Flashing LEDs - Green with resistors", "Miniatronics",
		"2.2", "0",
		"1", 1,
		"pack", "29",
		"", "pd-1929404189.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[608] = new Element(
		608, "assets/thumb/s23.jpg",
		137, 137,
		"S23", "No.23 smoke generator unit",
		"No.23 smoke generator unit with 10ml smoke oil", "Seuthe",
		"25", "0",
		"1", 1,
		"pack", "75",
		"", "pd728735177.htm",
		"", 1,
		"Seuthe", "0",
		 0)
	
		Entry[609] = new Element(
		609, "assets/thumb/s22.jpg",
		137, 219,
		"S22", "No.22 smoke generator unit",
		"No.22 smoke generator unit with 10ml smoke oil", "Seuthe",
		"25", "0",
		"1", 1,
		"pack", "75",
		"", "pd839850100.htm",
		"", 1,
		"Seuthe", "0",
		 0)
	
		Entry[610] = new Element(
		610, "assets/thumb/s101.jpg",
		137, 214,
		"S101", "Smoke generator oil",
		"Smoke oil filling set with 10ml bottle smoke oil", "Seuthe",
		"3", "0",
		"1", 1,
		"bottle", "75",
		"", "pd-1640168510.htm",
		"", 1,
		"Seuthe", "0",
		 0)
	
		Entry[611] = new Element(
		611, "assets/thumb/efe20705thumb.jpg",
		137, 58,
		"20705", "AEC Regal Coach  Cat. No. 20705",
		"Surrey Motors", "EFE",
		"18", "0",
		"1", 1,
		"model", "18",
		"", "pd-1053608711.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[612] = new Element(
		612, "assets/thumb/efe23206thumb.jpg",
		137, 55,
		"23206", "AEC RF MkII Bus  Cat. No. 23206",
		"Greenline", "EFE",
		"18", "0",
		"1", 1,
		"model", "18",
		"", "pd-2035750961.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[613] = new Element(
		613, "assets/thumb/CC13211.jpg",
		130, 82,
		"CC13211-1", "DAF XF Space Cab Curtainside  Cat. No. CC13211",
		"C M Downton Ltd", "Corgi",
		"56.25", "0",
		"1", 1,
		"", "1",
		"", "pd-1386101053.htm",
		"", 1,
		"CLEAR", "50",
		 0)
	
		Entry[614] = new Element(
		614, "assets/thumb/efe20636thumb.jpg",
		137, 55,
		"20636", "Plaxton Pointer Dart  Cat. No. 20636",
		"Southern Vectis", "EFE",
		"18", "0",
		"1", 1,
		"model", "18",
		"", "pd1179913939.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[615] = new Element(
		615, "assets/thumb/efe29008thumb.jpg",
		137, 79,
		"29008", "GM Fleetline  Cat. No. 29008",
		"Grey Green", "EFE",
		"18", "0",
		"1", 1,
		"model", "18",
		"", "pd1094433493.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[616] = new Element(
		616, "assets/thumb/efe31702thumb.jpg",
		137, 85,
		"31702", "RMC Routemaster Coach  Cat. No. 31702",
		"London Country NBC", "EFE",
		"19", "0",
		"1", 1,
		"model", "18",
		"", "pd1489817867.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[617] = new Element(
		617, "assets/thumb/efe32002thumb.jpg",
		137, 81,
		"32002", "RCL Routemaster Coach  Cat. No. 32002",
		"London Country", "EFE",
		"19", "0",
		"1", 1,
		"model", "18",
		"", "pd46885391.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[618] = new Element(
		618, "assets/thumb/lk52611.jpg",
		137, 177,
		"LK52611", "LokPilotDCC V.3.0 decoder with 8-pin DCC plug",
		"LokPilotDCC V.3.0 decoder with 8-pin DCC plug  MSRP £28.23", "ESU",
		"27", "0",
		"1", 1,
		"decoder", "93",
		"", "pd-793083505.htm",
		"", 1,
		"LOKPILOT", "0",
		 0)
	
		Entry[619] = new Element(
		619, "assets/thumb/LokSoundV3.5_Thumb.jpg",
		137, 53,
		"LS52401", "Universal 2.Zyl. Narrow gauge (Prototype: BR99)",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-1122475893.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[620] = new Element(
		620, "assets/thumb/LokSoundV3.5_Thumb.jpg",
		137, 53,
		"LS52402", "Universal 3.Zyl. Narrow gauge (Prototype: BR44, Belg. 25.021)",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-1274542671.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[621] = new Element(
		621, "assets/thumb/LokSoundV3.5_Thumb.jpg",
		137, 53,
		"LS52403", "Universal 2/4.Zyl. Narrow gauge (Prototype: BR64)",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-87161017.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[622] = new Element(
		622, "assets/thumb/LokSoundV3.5_Thumb.jpg",
		137, 53,
		"LS52404", "BR38_P8",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd845511373.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[623] = new Element(
		623, "assets/thumb/LokSoundV3.5_Thumb.jpg",
		137, 53,
		"LS52405", "BR18_S3/6",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-1050316349.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[624] = new Element(
		624, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52406", "BR01",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd1775327657.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[625] = new Element(
		625, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52407", "BR03",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-387949569.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[626] = new Element(
		626, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52408", "BR23",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-1382826427.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[627] = new Element(
		627, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52410", "BR50+NMBS-SNCB type 25",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-558611973.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[628] = new Element(
		628, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52411", "Universal US Steam (Prototype: Big.Boy, Mikado )",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-91323231.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[629] = new Element(
		629, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52412", "US Steam (Prototype: Tenweeler, Mountain, Hudson )",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-1031381065.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[630] = new Element(
		630, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52413", "BR80",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-765900611.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[631] = new Element(
		631, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52417", "BR06",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-1498959565.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[632] = new Element(
		632, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52418", "BR05",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-534944103.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[633] = new Element(
		633, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52419", "BR 18201",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-1336872337.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[634] = new Element(
		634, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52420", "BR55 (+NMBS-SNCB type 81)",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-2093876683.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[635] = new Element(
		635, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52421", "BR64",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-1818321045.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[636] = new Element(
		636, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52422", "BR78",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd460840849.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[637] = new Element(
		637, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52423", "BR93",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-1488128985.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[638] = new Element(
		638, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52425", "BR41",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-1284132179.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[639] = new Element(
		639, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52426", "BR 01.10 Öl",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-1942754141.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[640] = new Element(
		640, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52427", "BR 03.10",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd1681117065.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[641] = new Element(
		641, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52428", "BR 44 Oel",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd612582623.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[642] = new Element(
		642, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52429", "BR 86",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-1898425819.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[643] = new Element(
		643, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52430", "Rangierlok Diesel V36",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd1455323355.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[644] = new Element(
		644, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52431", "Rangierlok Diesel V60",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-939321727.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[645] = new Element(
		645, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52432", "V100",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-663173993.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[646] = new Element(
		646, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52433", "Universal Diesel (Protoype: BR218 )",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd283752605.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[647] = new Element(
		647, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52434", "Belgische Bombardier Diesel",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-53402605.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[648] = new Element(
		648, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52436", "Universal US Diesel (Prototype: F7 )",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-1171024775.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[649] = new Element(
		649, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52438", "Diesel Nohab",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd1118720847.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[650] = new Element(
		650, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52439", "Dieseltriebwagen VT11.5_Lyntog",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd211142165.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[651] = new Element(
		651, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52440", "Dieseltriebwagen SVT18",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd515558987.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[652] = new Element(
		652, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52441", "Dieseltriebwagen VT628",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-1825625743.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[653] = new Element(
		653, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52442", "Diesellok BR232",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd1025560839.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[654] = new Element(
		654, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52444", "US Diesel PA1",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-1549510003.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[655] = new Element(
		655, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52445", "Renfe D 319",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd923162499.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[656] = new Element(
		656, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52446", "Diesel V200",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd2147202409.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[657] = new Element(
		657, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52448", "Diesel V320",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd2009669055.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[658] = new Element(
		658, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52449", "Dieseltriebwagen ICE_VT",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd775509509.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[659] = new Element(
		659, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52450", "Dieseltriebwagen VT08 / SVT137",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-839213125.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[660] = new Element(
		660, "assets/thumb/efe16529thumb.jpg",
		137, 76,
		"16529", "MCW Leyland Atlantean  Cat. No. 16529",
		"Great Yarmouth", "EFE",
		"18", "0",
		"1", 1,
		"model", "18",
		"", "pd1176309937.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[661] = new Element(
		661, "assets/thumb/efe29201thumb.jpg",
		137, 72,
		"29201", "Leyland Titan 1 Door  Cat. No. 29201",
		"Glendale Transport Ltd", "EFE",
		"18", "0",
		"1", 1,
		"model", "18",
		"", "pd-1800009145.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[662] = new Element(
		662, "assets/thumb/efe29303thumb.jpg",
		137, 72,
		"29303", "Leyland Olympian  Cat. No. 29303",
		"Stagecoach Swindon", "EFE",
		"18", "0",
		"1", 1,
		"model", "18",
		"", "pd2083439785.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[663] = new Element(
		663, "assets/thumb/hled18gw.jpg",
		137, 174,
		"HLED-PW18", "1.8mm Protowhite (Golden White) LED - 6 pack",
		"Pack of 6 x 1.8mm Protowhite (Golden White) LEDs and 6 x 1K ohm resistors", "DCC Concepts",
		"5.2", "0",
		"1", 1,
		"pack", "29",
		"", "pd102198831.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[664] = new Element(
		664, "assets/thumb/microscrews.jpg",
		137, 68,
		"H-DCF-MS-CSK", "Mixed pack of micro Philips CSK Head screws",
		"60 x assorted self tapping screws", "DCC Concepts",
		"3.5", "0",
		"1", 1,
		"pack", "31",
		"", "pd1185106120.htm",
		"", 1,
		"Tools", "0",
		 0)
	
		Entry[665] = new Element(
		665, "assets/thumb/hpsc2.jpg",
		137, 193,
		"H-DCF-MS-PAN", "Mixed pack of micro Flat Pan Head screws",
		"60 x assorted self tapping screws", "DCC Concepts",
		"4", "0",
		"1", 1,
		"pack", "31",
		"", "pd570915894.htm",
		"", 1,
		"Tools", "0",
		 0)
	
		Entry[666] = new Element(
		666, "assets/thumb/hpsc3.jpg",
		137, 193,
		"H-DCF-MS-BOL", "Mixed pack of Micro machine screws and bolts",
		"48 of each assorted", "DCC Concepts",
		"9", "0",
		"1", 1,
		"pack", "31",
		"", "pd28104020.htm",
		"", 1,
		"Tools", "0",
		 0)
	
		Entry[667] = new Element(
		667, "assets/thumb/dp2xbottom.jpg",
		137, 185,
		"DP2X", "DP2X - 2 function decoder",
		"DP2X - HO/OO Scale Plug and Play 1 amp 2 function decoder", "TCS",
		"18.25", "0",
		"1", 1,
		"decoder", "116",
		"", "pd1189171154.htm",
		"", 1,
		"TCSDCC", "0",
		 0)
	
		Entry[668] = new Element(
		668, "assets/thumb/M1.jpg",
		137, 89,
		"M1", "M1 series 2 function decoder",
		"M1 Micro decoder (N Scale) 2 function with back EMF and full lighting - one of the smallest decoders on the market", "TCS",
		"23", "0",
		"1", 1,
		"decoder", "116",
		"Harness;Wires only@", "pd421726225.htm",
		"", 1,
		"TCSDCC", "0",
		 0)
	
		Entry[669] = new Element(
		669, "assets/thumb/Detailremover.jpg",
		137, 183,
		"JT100", "Detail and Decal Remover",
		"", "Joe's Trains",
		"8.5", "0",
		"1", 1,
		"bottle", "40",
		"", "pd1465736543.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[670] = new Element(
		670, "assets/thumb/joes4paintcolors.jpg",
		137, 85,
		"JT103", "Rusty Rails Acrylic Paint",
		"Brown Rust 2oz bottle", "Joe's Trains",
		"5", "0",
		"1", 1,
		"bottle", "40",
		"", "pd-1414588069.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[671] = new Element(
		671, "assets/thumb/joes4paintcolors.jpg",
		137, 85,
		"JT104", "Rusty Rails Acrylic Paint",
		"Weathered Black  2oz bottle", "Joe's Trains",
		"5", "0",
		"1", 1,
		"bottle", "40",
		"", "pd1690539293.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[672] = new Element(
		672, "assets/thumb/BarrelsBig.jpg",
		137, 55,
		"99605", "Large Barrels ",
		"Set of 3 large barrels  1:76 OO Scale", "EFE",
		"1.4", "0",
		"1", 1,
		"pack", "36",
		"", "pd1105272052.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[673] = new Element(
		673, "assets/thumb/BarrelsSmall.jpg",
		137, 64,
		"99606", "Small Barrels ",
		"Set of 3 small barrels  1:76 OO Scale", "EFE",
		"1.4", "0",
		"1", 1,
		"pack", "36",
		"", "pd-933192638.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[674] = new Element(
		674, "assets/thumb/MetalKegBig.jpg",
		137, 50,
		"99607", "Aluminium Kegs ",
		"Set of 3 aluminium kegs  1:76 OO Scale", "EFE",
		"1.4", "0",
		"1", 1,
		"pack", "36",
		"", "pd-1717197760.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[675] = new Element(
		675, "assets/thumb/efe99608.jpg",
		137, 72,
		"99608", "Oil Drums ",
		"Set of 3 oil drums  1:76 OO Scale", "EFE",
		"1.5", "0",
		"1", 1,
		"pack", "36",
		"", "pd-1599593362.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[676] = new Element(
		676, "assets/thumb/efe99609thumb.jpg",
		137, 49,
		"99609", "Small Oil Drums ",
		"Set of 3 rows of small oil drums  1:76 OO Scale", "EFE",
		"1.4", "0",
		"1", 1,
		"pack", "36",
		"", "pd-1737516980.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[677] = new Element(
		677, "assets/thumb/efe99610.jpg",
		137, 106,
		"99610", "Bottles in Crates ",
		"Set of 3 crates with bottles  1:76 OO Scale", "EFE",
		"1.4", "0",
		"1", 1,
		"pack", "36",
		"", "pd-749869222.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[678] = new Element(
		678, "assets/thumb/ashsmall.jpg",
		137, 171,
		"H-DCMS-A150", "Ash - Small 150mm",
		"", "DCC Concepts",
		"5.5", "0",
		"1", 1,
		"each tree", "39",
		"", "pd1150949547.htm",
		"", 1,
		"Trees", "0",
		 0)
	
		Entry[679] = new Element(
		679, "assets/thumb/conifer.jpg",
		137, 334,
		"H-DCMS-C110", "Conifer - Small 110mm",
		"", "DCC Concepts",
		"2.5", "0",
		"1", 1,
		"each tree", "39",
		"", "pd1434222951.htm",
		"", 1,
		"Trees", "0",
		 0)
	
		Entry[680] = new Element(
		680, "assets/thumb/conifer.jpg",
		137, 334,
		"H-DCMS-C145", "Conifer - Medium 145mm",
		"", "DCC Concepts",
		"5", "0",
		"1", 1,
		"each tree", "39",
		"", "pd670892525.htm",
		"", 1,
		"Trees", "0",
		 0)
	
		Entry[681] = new Element(
		681, "assets/thumb/conifer.jpg",
		137, 334,
		"H-DCMS-C200", "Conifer - Large 200mm",
		"", "DCC Concepts",
		"6", "0",
		"1", 1,
		"each tree", "39",
		"", "pd1067503075.htm",
		"", 1,
		"Trees", "0",
		 0)
	
		Entry[682] = new Element(
		682, "assets/thumb/conifer.jpg",
		137, 334,
		"H-DCMS-C70", "Conifer - Very small 70mm",
		"", "DCC Concepts",
		"1.4", "0",
		"1", 1,
		"each tree", "39",
		"", "pd-572720431.htm",
		"", 1,
		"Trees", "0",
		 0)
	
		Entry[683] = new Element(
		683, "assets/thumb/elmmed.jpg",
		137, 161,
		"H-DCMS-E175", "Elm - Medium 175mm",
		"", "DCC Concepts",
		"6.25", "0",
		"1", 1,
		"each tree", "39",
		"", "pd-535487241.htm",
		"", 1,
		"Trees", "0",
		 0)
	
		Entry[684] = new Element(
		684, "assets/images/nopicturegreen.jpg",
		133, 46,
		"H-DCMS-E220", "Elm - Large 220mm",
		"", "DCC Concepts",
		"7", "0",
		"1", 1,
		"each tree", "39",
		"", "pd-674541599.htm",
		"", 1,
		"Trees", "0",
		 0)
	
		Entry[685] = new Element(
		685, "assets/thumb/fanpalm1.jpg",
		137, 132,
		"H-DCMS-FP100", "Etched fan palm 100mm",
		"", "DCC Concepts",
		"8", "0",
		"1", 1,
		"each tree", "39",
		"", "pd487947497.htm",
		"", 1,
		"Trees", "0",
		 0)
	
		Entry[686] = new Element(
		686, "assets/thumb/fanpalm1.jpg",
		137, 132,
		"H-DCMS-FP120", "Etched fan palm 120mm+",
		"", "DCC Concepts",
		"8.75", "0",
		"1", 1,
		"each tree", "39",
		"", "pd963373883.htm",
		"", 1,
		"Trees", "0",
		 0)
	
		Entry[687] = new Element(
		687, "assets/thumb/fanpalm1.jpg",
		137, 132,
		"H-DCMS-FP55", "Etched fan palm 55-60mm",
		"", "DCC Concepts",
		"6.5", "0",
		"1", 1,
		"each tree", "39",
		"", "pd1329239429.htm",
		"", 1,
		"Trees", "0",
		 0)
	
		Entry[688] = new Element(
		688, "assets/thumb/hpp-fp70.jpg",
		137, 226,
		"H-DCMS-FP70", "Etched fan palm 70mm",
		"", "DCC Concepts",
		"7.25", "0",
		"1", 1,
		"each tree", "39",
		"", "pd908472639.htm",
		"", 1,
		"Trees", "0",
		 0)
	
		Entry[689] = new Element(
		689, "assets/thumb/decidsmall.jpg",
		137, 227,
		"H-DCMS-GEN110", "Generic tree - Small 110mm",
		"", "DCC Concepts",
		"3.25", "0",
		"1", 1,
		"each tree", "39",
		"", "pd978436635.htm",
		"", 1,
		"Trees", "0",
		 0)
	
		Entry[690] = new Element(
		690, "assets/thumb/decidsmall.jpg",
		137, 227,
		"H-DCMS-GEN140", "Generic tree - Medium 140mm",
		"", "DCC Concepts",
		"5.25", "0",
		"1", 1,
		"each tree", "39",
		"", "pd-2109031905.htm",
		"", 1,
		"Trees", "0",
		 0)
	
		Entry[691] = new Element(
		691, "assets/thumb/decid.jpg",
		137, 236,
		"H-DCMS-GEN165", "Generic tree - Large 165mm",
		"", "DCC Concepts",
		"5.5", "0",
		"1", 1,
		"each tree", "39",
		"", "pd1946452417.htm",
		"", 1,
		"Trees", "0",
		 0)
	
		Entry[692] = new Element(
		692, "assets/thumb/decid.jpg",
		137, 236,
		"H-DCMS-GEN200", "Generic tree - Large 200mm",
		"", "DCC Concepts",
		"8.5", "0",
		"1", 1,
		"each tree", "39",
		"", "pd252220105.htm",
		"", 1,
		"Trees", "0",
		 0)
	
		Entry[693] = new Element(
		693, "assets/thumb/decidsmall.jpg",
		137, 227,
		"H-DCMS-GEN90", "Generic tree - Very small 90mm",
		"", "DCC Concepts",
		"2.5", "0",
		"1", 1,
		"each tree", "39",
		"", "pd-1487287963.htm",
		"", 1,
		"Trees", "0",
		 0)
	
		Entry[694] = new Element(
		694, "assets/thumb/oaksmall.jpg",
		137, 153,
		"H-DCMS-O150", "Oak - Small 150mm",
		"", "DCC Concepts",
		"5.5", "0",
		"1", 1,
		"each tree", "39",
		"", "pd-1806854225.htm",
		"", 1,
		"Trees", "0",
		 0)
	
		Entry[695] = new Element(
		695, "assets/thumb/oakmed.jpg",
		137, 169,
		"H-DCMS-O200", "Oak - Large 200mm",
		"", "DCC Concepts",
		"7", "0",
		"1", 1,
		"each tree", "39",
		"", "pd1195819635.htm",
		"", 1,
		"Trees", "0",
		 0)
	
		Entry[696] = new Element(
		696, "assets/thumb/hpp-p100.jpg",
		137, 250,
		"H-DCMS-P100", "Etched palm 100mm",
		"", "DCC Concepts",
		"8.5", "0",
		"1", 1,
		"each tree", "39",
		"", "pd-1269828473.htm",
		"", 1,
		"Trees", "0",
		 0)
	
		Entry[697] = new Element(
		697, "assets/images/nopicturegreen.jpg",
		133, 46,
		"H-DCMS-P150", "Etched palm 150mm",
		"", "DCC Concepts",
		"9.5", "0",
		"1", 1,
		"each tree", "39",
		"", "pd1192659632.htm",
		"", 1,
		"Trees", "0",
		 0)
	
		Entry[698] = new Element(
		698, "assets/thumb/hpp-p55.jpg",
		137, 236,
		"H-DCMS-P55", "Etched palm 55-60mm",
		"", "DCC Concepts",
		"6.5", "0",
		"1", 1,
		"each tree", "39",
		"", "pd218804995.htm",
		"", 1,
		"Trees", "0",
		 0)
	
		Entry[699] = new Element(
		699, "assets/images/nopicturegreen.jpg",
		133, 46,
		"H-DCMS-P75", "Etched palm 75mm",
		"", "DCC Concepts",
		"7.25", "0",
		"1", 1,
		"each tree", "39",
		"", "pd-2147079667.htm",
		"", 1,
		"Trees", "0",
		 0)
	
		Entry[700] = new Element(
		700, "assets/thumb/3mmprotowhite.jpg",
		137, 157,
		"HLED-PW3-6", "3mm Protowhite (Golden White) LED - 6 pack",
		"Pack of 6 x 3mm Protowhite (Golden White) LEDs and 6 x 1K ohm resistors", "DCC Concepts",
		"5", "0",
		"1", 1,
		"pack", "29",
		"", "pd1193136616.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[701] = new Element(
		701, "assets/thumb/EFE30604.jpg",
		137, 102,
		"30604", "AEC Renown Cat. No.30604",
		"Northern NBC", "EFE",
		"18", "0",
		"1", 1,
		"model", "18",
		"", "pd-1790719596.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[702] = new Element(
		702, "assets/thumb/BTOD15.jpg",
		137, 91,
		"BTOD15", "Leyland MO Van  Cat. No. BTOD15",
		"British Railways (yellow)", "Base Toys",
		"5.75", "0",
		"1", 1,
		"model", "4",
		"", "pd41891714.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[703] = new Element(
		703, "assets/thumb/efe16323.jpg",
		137, 61,
		"16323", "Bristol LS Bus  Cat. No. 16323",
		"London Transport", "EFE",
		"18", "0",
		"1", 1,
		"model", "18",
		"", "pd2062682865.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[704] = new Element(
		704, "assets/thumb/efe19709.jpg",
		137, 84,
		"19709", "AEC Regent V Orion  Cat. No. 19709",
		"Merseyside PTE", "EFE",
		"18", "0",
		"1", 1,
		"model", "18",
		"", "pd1193515826.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[705] = new Element(
		705, "assets/thumb/efe29203.jpg",
		137, 80,
		"29203", "Leyland Titan 1 Door  Cat. No. 29203",
		"Merseybus", "EFE",
		"18", "0",
		"1", 1,
		"model", "18",
		"", "pd131071877.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[706] = new Element(
		706, "assets/thumb/efe29616.jpg",
		137, 69,
		"29616", "Leyland Olympian  Cat. No. 29616",
		"Chester City Transport", "EFE",
		"18", "0",
		"1", 1,
		"model", "18",
		"", "pd-622570483.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[707] = new Element(
		707, "assets/thumb/npa.jpg",
		137, 85,
		"N-PA", "DCC Packet Analyzer",
		"DCC Packet Analyzer for the PowerPro DCC System", "NCE",
		"23.5", "0",
		"1", 1,
		"item", "107",
		"", "pd-538539842.htm",
		"", 1,
		"Access", "0",
		 0)
	
		Entry[708] = new Element(
		708, "assets/thumb/dxds44.jpg",
		137, 39,
		"DXDS44", "DS44",
		"Digitrax DS44 basic stationary decoder for 4 slow-motion point motors", "Digitrax",
		"28", "0",
		"1", 1,
		"decoder", "86",
		"", "pd149306530.htm",
		"", 1,
		"DXTURN", "0",
		 0)
	
		Entry[709] = new Element(
		709, "assets/thumb/dxds64.jpg",
		137, 93,
		"DXDS64", "DS64",
		"Digitrax DS64 Stationary decoder to operate 4 turnout motors", "Digitrax",
		"41", "0",
		"1", 1,
		"decoder", "86",
		"", "pd-941132870.htm",
		"", 1,
		"DXTURN", "0",
		 0)
	
		Entry[710] = new Element(
		710, "assets/thumb/ds51k1.jpg",
		137, 53,
		"DXDS51K1", "DS51K1 for Kato Unitrak",
		"", "Digitrax",
		"11", "0",
		"1", 1,
		"decoder", "86",
		"", "pd-1678132320.htm",
		"", 1,
		"DXTURN", "0",
		 0)
	
		Entry[711] = new Element(
		711, "assets/thumb/efe99602.jpg",
		137, 98,
		"99602", "Small crates",
		"Set of 3 small crates  1:76 OO Scale", "EFE",
		"1.4", "0",
		"1", 1,
		"pack", "36",
		"", "pd1193846397.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[712] = new Element(
		712, "assets/thumb/efe99601thumb.jpg",
		137, 75,
		"99601", "Large crates",
		"Set of 3 large crates  1:76 OO Scale", "EFE",
		"1.4", "0",
		"1", 1,
		"pack", "36",
		"", "pd-1836759821.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[713] = new Element(
		713, "assets/thumb/50-001-L.jpg",
		137, 28,
		"MIN50001-1", "Mini 2-pin connector",
		"Mini 2-pin connector, 2 pairs", "Miniatronics",
		"8.5", "0",
		"1", 1,
		"pack", "30",
		"", "pd1194121276.htm",
		"", 1,
		"Switches", "0",
		 0)
	
		Entry[714] = new Element(
		714, "assets/thumb/50-003-L.jpg",
		137, 33,
		"MIN50003-1", "Mini 3-pin connector",
		"Mini 3-pin connector - 1 pair", "Miniatronics",
		"6", "0",
		"1", 1,
		"pack", "30",
		"", "pd1979640010.htm",
		"", 1,
		"Switches", "0",
		 0)
	
		Entry[715] = new Element(
		715, "assets/thumb/50-004-L.jpg",
		137, 32,
		"MIN50004-1", "Mini 4-pin connector",
		"Mini 4-pin connector - 1 pair", "Miniatronics",
		"7", "0",
		"1", 1,
		"pack", "30",
		"", "pd1110828040.htm",
		"", 1,
		"Switches", "0",
		 0)
	
		Entry[716] = new Element(
		716, "assets/images/nopicturegreen.jpg",
		133, 46,
		"Q-ATLTMSTRNM", "QSI Quantum Chip Upgrade",
		"Atlas Trainmaster (No Mars)", "QSI",
		"14", "0",
		"1", 1,
		"item", "108",
		"", "pd1194424598.htm",
		"", 1,
		"QSI", "0",
		 0)
	
		Entry[717] = new Element(
		717, "assets/thumb/efe22514.jpg",
		137, 51,
		"22514", "Alexander Y Type  Cat. No. 22514",
		"Hants &amp; Dorset NBC", "EFE",
		"19.5", "0",
		"1", 1,
		"model", "18",
		"", "pd395776344.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[718] = new Element(
		718, "assets/thumb/efe33801.jpg",
		137, 51,
		"33801", "Bristol RELH Coach  Cat. No. 33801",
		"Eastern National", "EFE",
		"19.5", "0",
		"1", 1,
		"model", "18",
		"", "pd1344727450.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[719] = new Element(
		719, "assets/thumb/BTOLC02.jpg",
		137, 85,
		"BTOLC2", "Commer Dropside - Green  Cat. No. BTOLC2",
		"", "Base Toys",
		"4", "0",
		"1", 1,
		"model", "4",
		"", "pd1194880202.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[720] = new Element(
		720, "assets/thumb/BTOTT02.jpg",
		137, 84,
		"BTTT02", "Thorneycroft Flatbed - Green  Cat. No. BTT02",
		"", "Base Toys",
		"4", "0",
		"1", 1,
		"model", "4",
		"", "pd2140866568.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[721] = new Element(
		721, "assets/images/nopicturegreen.jpg",
		133, 46,
		"TR180", "Modern style 4 track width gantry",
		"", "Traintronics",
		"28.5", "0",
		"1", 1,
		"item", "38",
		"", "pd423567837.htm",
		"", 1,
		"SIGNALS", "0",
		 0)
	
		Entry[722] = new Element(
		722, "assets/thumb/tr115.jpg",
		137, 324,
		"TR115", "4 aspect feather right",
		"", "Traintronics",
		"26", "0",
		"1", 1,
		"item", "38",
		"", "pd83319767.htm",
		"", 1,
		"SIGNALS", "0",
		 0)
	
		Entry[723] = new Element(
		723, "assets/thumb/tr114.jpg",
		137, 324,
		"TR114", "4 aspect feather left",
		"", "Traintronics",
		"26", "0",
		"1", 1,
		"item", "38",
		"", "pd-1320506431.htm",
		"", 1,
		"SIGNALS", "0",
		 0)
	
		Entry[724] = new Element(
		724, "assets/images/nopicturegreen.jpg",
		133, 46,
		"TR113", "3 aspect red/green with feather right",
		"", "Traintronics",
		"25", "0",
		"1", 1,
		"item", "38",
		"", "pd-2053219301.htm",
		"", 1,
		"SIGNALS", "0",
		 0)
	
		Entry[725] = new Element(
		725, "assets/images/nopicturegreen.jpg",
		133, 46,
		"TR112", "3 aspect red/green with feather left",
		"", "Traintronics",
		"25", "0",
		"1", 1,
		"item", "38",
		"", "pd-1163701403.htm",
		"", 1,
		"SIGNALS", "0",
		 0)
	
		Entry[726] = new Element(
		726, "assets/thumb/tr111.jpg",
		137, 277,
		"TR111", "2 aspect red/green with feather right",
		"DCC Ready  MSRP £23.00", "Traintronics",
		"22.5", "0",
		"1", 1,
		"pack", "38",
		"", "pd-1371294689.htm",
		"", 1,
		"SIGNALS", "0",
		 0)
	
		Entry[727] = new Element(
		727, "assets/thumb/tr110.jpg",
		137, 277,
		"TR110", "2 aspect red/green with feather left",
		"DCC Ready  MSRP £23.00", "Traintronics",
		"22.5", "0",
		"1", 1,
		"pack", "38",
		"", "pd2076146889.htm",
		"", 1,
		"SIGNALS", "0",
		 0)
	
		Entry[728] = new Element(
		728, "assets/thumb/tr107.jpg",
		137, 248,
		"TR107", "4 aspect red/yellow/green/yellow",
		"", "Traintronics",
		"16.5", "0",
		"1", 1,
		"item", "38",
		"", "pd-467654685.htm",
		"", 1,
		"SIGNALS", "0",
		 0)
	
		Entry[729] = new Element(
		729, "assets/thumb/tr105.jpg",
		137, 188,
		"TR105", "3 aspect yellow/green/yellow",
		"", "Traintronics",
		"15", "0",
		"1", 1,
		"item", "38",
		"", "pd1626033133.htm",
		"", 1,
		"SIGNALS", "0",
		 0)
	
		Entry[730] = new Element(
		730, "assets/images/nopicturegreen.jpg",
		133, 46,
		"TR104", "3 aspect red/yellow/green",
		"", "Traintronics",
		"15", "0",
		"1", 1,
		"item", "38",
		"", "pd-1027851417.htm",
		"", 1,
		"SIGNALS", "0",
		 0)
	
		Entry[731] = new Element(
		731, "assets/images/nopicturegreen.jpg",
		133, 46,
		"TR103", "2 aspect yellow/green",
		"", "Traintronics",
		"13", "0",
		"1", 1,
		"item", "38",
		"", "pd-282286895.htm",
		"", 1,
		"SIGNALS", "0",
		 0)
	
		Entry[732] = new Element(
		732, "assets/thumb/tr102.jpg",
		137, 208,
		"TR102", "2 aspect red/green",
		"", "Traintronics",
		"13", "0",
		"1", 1,
		"item", "38",
		"", "pd569229714.htm",
		"", 1,
		"SIGNALS", "0",
		 0)
	
		Entry[733] = new Element(
		733, "assets/thumb/dxtl1.jpg",
		137, 127,
		"DXTL1", "Digitrax TL1",
		"TL1 Single DCC Function only decoder with integrated transponder", "Digitrax",
		"11", "0",
		"1", 1,
		"decoder", "82",
		"", "pd194472832.htm",
		"", 1,
		"DXHODEC", "0",
		 0)
	
		Entry[734] = new Element(
		734, "assets/thumb/dxpm42.jpg",
		137, 93,
		"DXDPM42", "PM42 Power Manager",
		"Digitrax Power Management System-PM42", "Digitrax",
		"56.5", "0",
		"1", 1,
		"item", "87",
		"", "pd147054186.htm",
		"", 1,
		"DXSIG", "0",
		 0)
	
		Entry[735] = new Element(
		735, "assets/thumb/n-bachdsl.jpg",
		137, 18,
		"N-BACHDSL", "BACHDSL Drop in for US Bachmann Diesel locos",
		"Drop in board for US Bachmann Diesel locos - contains 2 golden white LEDs (requires some soldering)", "NCE",
		"15.5", "0",
		"1", 1,
		"decoder", "101",
		"", "pd924582428.htm",
		"", 1,
		"HODec", "0",
		 0)
	
		Entry[736] = new Element(
		736, "assets/thumb/hledbip3rw.jpg",
		137, 129,
		"HLED-BPRW-P2", "Bi-Polar red/white 3 lead LED - 2 sizes available",
		"Bi-Polar red/white 3 lead LED - pack of 6 x 2mm tower LEDs and 12 x 1K ohm resistors", "DCC Concepts",
		"7", "0",
		"1", 1,
		"pack", "29",
		"LED size;2mm tower pack@", "pd1195765754.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[737] = new Element(
		737, "assets/thumb/dxup5.jpg",
		137, 97,
		"DXUP5", "UP5",
		"LocoNet Universal Interconnect Panel UP-5", "Digitrax",
		"11.5", "0",
		"1", 1,
		"item", "88",
		"", "pd-1033618002.htm",
		"", 1,
		"DXSPARE", "0",
		 0)
	
		Entry[738] = new Element(
		738, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52451", "Dieseltriebwagen VT610",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-507832223.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[739] = new Element(
		739, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52452", "Dieseltriebwagen VT650",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-467920521.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[740] = new Element(
		740, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52454", "Dieseltriebwagen VT98",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd-1839949699.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[741] = new Element(
		741, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52455", "Diesel V80",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd-1659205901.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[742] = new Element(
		742, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52456", "ÖBB 2016 (Hercules)",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd489370201.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[743] = new Element(
		743, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52457", "SNCF 68000",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd277521455.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[744] = new Element(
		744, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52458", "Blue Tiger",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd189923829.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[745] = new Element(
		745, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52459", "V 120 DR Taigatrommel",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd-1566249685.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[746] = new Element(
		746, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52460", "Electric E10 / 110",
		"Electric sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd-635051183.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[747] = new Element(
		747, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52461", "Universal Altbau Electric  (Prototype: E40 )",
		"Electric sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd1946263015.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[748] = new Element(
		748, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52462", "Electric  E75",
		"Electric sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd1634300525.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[749] = new Element(
		749, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52463", "Electric  E03 / 103",
		"Electric sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd622113379.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[750] = new Element(
		750, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52464", "Electric  E94 / 194",
		"Electric sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-1289680055.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[751] = new Element(
		751, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52465", "Electric  E120",
		"Electric sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-1452677473.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[752] = new Element(
		752, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52466", "Electric  E150 / E50",
		"Electric sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-1859204635.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[753] = new Element(
		753, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52467", "Elektrotriebzug ICE",
		"Electric sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-1499416933.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[754] = new Element(
		754, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52468", "Universal Neubau Electric  (Prototype: Re460 )",
		"Electric sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd1420724801.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[755] = new Element(
		755, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52469", "Electric  E143",
		"Electric sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-1691853225.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[756] = new Element(
		756, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52470", "Electric  E44",
		"Electric sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-485365667.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[757] = new Element(
		757, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52471", "Schweizer Krokodil Be 6/8 - Ce 6/8",
		"Electric sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-927213101.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[758] = new Element(
		758, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52472", "Electric  Re 4/4_II",
		"Electric sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd217858105.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[759] = new Element(
		759, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52473", "Electric  Reihe_1016.Taurus",
		"Electric sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-1633819377.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[760] = new Element(
		760, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52474", "Electric Ae 6/6",
		"Electric sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd1927196117.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[761] = new Element(
		761, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52475", "ÖBB 1044",
		"Electric sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd529857547.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[762] = new Element(
		762, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52476", "V-180/BR118 H0",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-883684047.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[763] = new Element(
		763, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52477", "BR89 /T3",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd2141674183.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[764] = new Element(
		764, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52478", "BR 643 Talent",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd658307661.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[765] = new Element(
		765, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52479", "KEG 2100",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-174654141.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[766] = new Element(
		766, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52480", "MaK Vossloh G1200 Serie",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-1885613783.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[767] = new Element(
		767, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52481", "VT 11.5 Gasturbine",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd2082316159.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[768] = new Element(
		768, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52482", "VT 12.5 Stuttgarter Rössle",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd422620613.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[769] = new Element(
		769, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52483", "BR185 / SBB 482",
		"Electric sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-18301573.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[770] = new Element(
		770, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52484", "E101",
		"Electric sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd1238723617.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[771] = new Element(
		771, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52485", "E141/41",
		"Electric sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd794137399.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[772] = new Element(
		772, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52486", "Eurosprinter",
		"Electric sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd1805232189.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[773] = new Element(
		773, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52487", "ETA/ESA 176",
		"Electric sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-51569485.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[774] = new Element(
		774, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS52499", "Universal 2/4.Zyl. Normal gauge (Prototype: BR64 )",
		"Steam sound decoder with 21-pin interface", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd698269209.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[775] = new Element(
		775, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS53401", "SNCB/NMBS HLE 13 - ALSTOM",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd1839207919.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[776] = new Element(
		776, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS53402", "SNCB/NMBS HLE 15 - ACEC",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-1833711179.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[777] = new Element(
		777, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS53403", "SNCB/NMBSHLE 16 - ACEC",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd1371732715.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[778] = new Element(
		778, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS53404", "SNCB/NMBS HLE 20 - BN ACEC",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd1571923729.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[779] = new Element(
		779, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS53405", "SNCB/NMBS HLE 11/12/21/27 - BN ACEC",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd264898471.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[780] = new Element(
		780, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS53406", "SNCB/NMBS HLE 23 - ACEC",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd194441773.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[781] = new Element(
		781, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS53407", "SNCB/NMBS HLE 26 - BN -ACEC",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-2084227037.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[782] = new Element(
		782, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS53408", "SNCB/NMBS DMU 41 Diesel - Alstom 6 cyl.",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd1130628873.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[783] = new Element(
		783, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS53409", "SNCB/NMBS HLD 62 - EMD 567C 12 cyl. (GM BN ACEC)",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-1365489569.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[784] = new Element(
		784, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS53410", "SNCB/NMBS HLD 55 - EMD 567 16 cyl.  (GM BN ACEC)",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-2085158491.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[785] = new Element(
		785, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS53411", "SNCB/NMBS HLD 59 - Cockerill Baldwin-Westinghouse 12 cyl.",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-1324698533.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[786] = new Element(
		786, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72400", "ALCO motor 244 12cylinder turbocharged with WABCO A-2",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd103267841.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[787] = new Element(
		787, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72401", "ALCO motor 244 12cylinder turbocharged with WABCO E-2",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd1314633751.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[788] = new Element(
		788, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72402", "ALCO motor 244 12cylinder turbocharged with Leslie A-200",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd1885591581.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[789] = new Element(
		789, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72403", "ALCO motor 244 12cylinder turbocharged with Leslie S3",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-219787373.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[790] = new Element(
		790, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72404", "ALCO motor 244 12cylinder turbocharged with Leslie S5",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-1358255111.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[791] = new Element(
		791, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72405", "ALCO motor 244 12cylinder turbocharged with Nathan K3",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-95865137.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[792] = new Element(
		792, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72406", "ALCO motor 244 12cylinder turbocharged with Nathan M3",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd373904789.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[793] = new Element(
		793, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72407", "ALCO motor 244 12cylinder turbocharged with Nathan M5",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-1318655541.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[794] = new Element(
		794, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72408", "ALCO motor 244 16cylinder turbocharged with WABCO A-2",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-1539919631.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[795] = new Element(
		795, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72409", "ALCO motor 244 16cylinder turbocharged with WABCO E-2",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd1344382087.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[796] = new Element(
		796, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72410", "ALCO motor 244 16cylinder turbocharged with Leslie A-200",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd15686157.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[797] = new Element(
		797, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72411", "ALCO motor 244 16cylinder turbocharged with Leslie S3",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-422092029.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[798] = new Element(
		798, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72412", "ALCO motor 244 16cylinder turbocharged with Leslie S5",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-1737380631.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[799] = new Element(
		799, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72413", "ALCO motor 244 16cylinder turbocharged with Nathan K3",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-73539265.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[800] = new Element(
		800, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72414", "ALCO motor 244 16cylinder turbocharged with Nathan M3",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-365312635.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[801] = new Element(
		801, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72415", "ALCO motor 244 16cylinder turbocharged with Nathan M5",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd1396611899.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[802] = new Element(
		802, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72416", "ALCO motor 251 12cylinder turbocharged dynamic brakes with WABCO A-2",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-358776863.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[803] = new Element(
		803, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72417", "ALCO motor 251 12cylinder turbocharged dynamic brakes with WABCO E-2",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd569560311.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[804] = new Element(
		804, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72418", "ALCO motor 251 12cylinder turbocharged dynamic brakes with Leslie A-200",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd300447741.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[805] = new Element(
		805, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72419", "ALCO motor 251 12cylinder turbocharged dynamic brakes with 3chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-1612746125.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[806] = new Element(
		806, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72420", "ALCO motor 251 12cylinder turbocharged dynamic brakes with 5chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd1966606809.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[807] = new Element(
		807, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72421", "ALCO motor 251 16cylinder turbocharged dynamic brakes",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd-1118746705.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[808] = new Element(
		808, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72422", "ALCO motor 251 6cylinder no turbo charger 3chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd85414261.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[809] = new Element(
		809, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72423", "EMD 201 8 cylinder without turbo 1-Chime Airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd1924712619.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[810] = new Element(
		810, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72424", "EMD 201 12 cylinder without turbo 1-Chime Airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd-841274671.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[811] = new Element(
		811, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72425", "EMD 201 12 cylinder without turbo 2-Chime Airhorn and dynamic brakes",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd-395955865.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[812] = new Element(
		812, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72426", "EMD 201 16 cylinder without turbo 2-Chime Airhorn and dynamic brakes",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd-708955667.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[813] = new Element(
		813, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72427", "EMD 567 16cylinder without turbo Charger 1Chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd1912962531.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[814] = new Element(
		814, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72428", "EMD 567 16cylinder without turbo Charger 1Chime airhorn dynamic brakes",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd-188955959.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[815] = new Element(
		815, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72429", "EMD 567 16cylinder without turbo Charger 2Chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd433744415.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[816] = new Element(
		816, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72430", "EMD 567 16cylinder without turbo Charger 2Chime airhorn dynamic brakes",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd-1036977819.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[817] = new Element(
		817, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72431", "EMD 567 16cylinder without turbo Charger 3Chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd935096859.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[818] = new Element(
		818, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72432", "EMD 567 16cylinder without turbo Charger 3Chime airhorn dynamic brakes",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd1949217217.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[819] = new Element(
		819, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72433", "EMD 567 16cylinder with turbo Charger 3Chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd1339216343.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[820] = new Element(
		820, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72434", "EMD 567 16cylinder with turbo Charger 3Chime airhorn dynamic brakes",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd1285523421.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[821] = new Element(
		821, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72435", "EMD 567 16cylinder with turbo Charger 5Chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd890275155.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[822] = new Element(
		822, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72436", "EMD 567 16cylinder with turbo Charger 5Chime airhorn dynamic brakes",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd-266414151.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[823] = new Element(
		823, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72437", "EMD 567 12cylinder without turbo Charger 1Chime airhorn (dynamic brakes)",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd728778895.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[824] = new Element(
		824, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72438", "EMD 567 12cylinder without turbo Charger 2Chime airhorn (dynamic brakes)",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd-1030374059.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[825] = new Element(
		825, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72439", "EMD 567 12cylinder with turbo Charger 3Chime airhorn dynamic brakes",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd-2047830133.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[826] = new Element(
		826, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72440", "EMD 645 12cylinder with turbo charger dynamic brakes and 3chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd630658225.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[827] = new Element(
		827, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72441", "EMD 645 16cylinder with turbo charger dynamic brakes and 3chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd-61886905.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[828] = new Element(
		828, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72442", "EMD 645 20cylinder with turbo charger dynamic brakes and 3chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd880507341.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[829] = new Element(
		829, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72443", "GE Cat. D17000 8cylinder without turbocharger 1chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd-1266186045.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[830] = new Element(
		830, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72444", "GE CB FWL-6T 6cylinder with turbo charger 1chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd1513965737.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[831] = new Element(
		831, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72445", "GE FDL-16 16 cylinders with turbo charger 2chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd-1140202753.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[832] = new Element(
		832, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72446", "GE FDL-16 16 cylinders with turbo charger 2chime airhorn dynamic brakes",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd-585851579.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[833] = new Element(
		833, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72447", "GE FDL-12 12 cylinders with turbo charger 2chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd1824274683.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[834] = new Element(
		834, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72448", "GE FDL-12 12 cylinders with turbo charger 2chime airhorn dynamic brakes",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd1003705249.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[835] = new Element(
		835, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72449", "Baldwin VO 6cyl. without turbo charger 1chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd-105658697.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[836] = new Element(
		836, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72450", "Baldwin VO 6cyl. without turbo charger 2chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd-117372995.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[837] = new Element(
		837, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72451", "Baldwin 606/606NA without turbo charger 1chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd531728435.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[838] = new Element(
		838, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72452", "Baldwin 606/606NA without turbo charger 2chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd800527769.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[839] = new Element(
		839, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72453", "Baldwin 606SC/606A with turbo charger 1chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd-1252116113.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[840] = new Element(
		840, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72454", "Baldwin 606SC/606A with turbo charger 2chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd238852405.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[841] = new Element(
		841, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72455", "Fairbanks Morse 6cylinders with Airpipe",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd-1756998037.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[842] = new Element(
		842, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72456", "Fairbanks Morse 8cylinders with 1chime Airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd308440721.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[843] = new Element(
		843, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72457", "Fairbanks Morse 8cylinders with 2chime Airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd731257639.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[844] = new Element(
		844, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72458", "Fairbanks Morse 10cylinders with 2chime Airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd-1549848147.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[845] = new Element(
		845, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72459", "Fairbanks Morse 12cylinders with 2chime Airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd2039841699.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[846] = new Element(
		846, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72460", "Fairbanks Morse H24-66 Trainmaster",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd1726693001.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[847] = new Element(
		847, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72461", "Galloping Goose",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd-1864086561.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[848] = new Element(
		848, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72462", "GE 7FDL12 12cylinders turbocharged dynamic brakes nathan 3chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd1750905125.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[849] = new Element(
		849, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72463", "GE 7FDL12 12cylinders turbocharged dynamic brakes nathan 5chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd-1133121573.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[850] = new Element(
		850, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72464", "GE 7FDL12 12cylinders turbocharged dynamic brakes Leslie 3chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd-159160959.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[851] = new Element(
		851, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72465", "GE 7FDL12 12cylinders turbocharged dynamic brakes Leslie 5chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd-1118983273.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[852] = new Element(
		852, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72466", "GE 7FDL16 16cylinders turbocharged dynamic brakes nathan 3chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd-880478307.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[853] = new Element(
		853, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72467", "GE 7FDL16 16cylinders turbocharged dynamic brakes nathan 5chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd150633235.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[854] = new Element(
		854, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72468", "GE 7FDL16 16cylinders turbocharged dynamic brakes Leslie 3chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd-537345159.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[855] = new Element(
		855, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72469", "GE 7FDL16 16cylinders turbocharged dynamic brakes Leslie 5chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd-942466481.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[856] = new Element(
		856, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72470", "GE 7FDL16A 16cylinders turbocharged dynamic brakes nathan 3chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd58975509.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[857] = new Element(
		857, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72471", "GE 7FDL16A 16cylinders turbocharged dynamic brakes nathan 5chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd250742091.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[858] = new Element(
		858, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72472", "GE 7FDL16A 16cylinders turbocharged dynamic brakes Leslie 3chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd389363825.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[859] = new Element(
		859, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72473", "GE 7FDL16A 16cylinders turbocharged dynamic brakes Leslie 5chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd-1846446073.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[860] = new Element(
		860, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72474", "EMD 8-645E 8cylinders not turbocharged dynamic brakes nathan 3chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd-2053023347.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[861] = new Element(
		861, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72475", "EMD 8-645E 8cylinders not turbocharged dynamic brakes nathan 5chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd-932745597.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[862] = new Element(
		862, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72476", "EMD 8-645E 8cylinders not turbocharged dynamic brakes Leslie 3chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd1421780073.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[863] = new Element(
		863, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72477", "EMD 8-645E 8cylinders not turbocharged dynamic brakes Leslie 5chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd1126278335.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[864] = new Element(
		864, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72478", "EMD 12-645E 12cylinders not turbocharged dynamic brakes nathan 3chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd-310299387.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[865] = new Element(
		865, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72479", "EMD 12-645E 12cylinders not turbocharged dynamic brakes nathan 5chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd-1390307653.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[866] = new Element(
		866, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72480", "EMD 12-645E 12cylindersnot turbocharged dynamic brakes Leslie 3chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd1966532449.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[867] = new Element(
		867, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72481", "EMD 12-645E 12cylinders not turbocharged dynamic brakes Leslie 5chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd-1269268361.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[868] = new Element(
		868, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72482", "EMD 16-645E 16cylinders not turbocharged dynamic brakes nathan 3chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd1419990909.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[869] = new Element(
		869, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72483", "EMD 16-645E 16cylinders not turbocharged dynamic brakes nathan 5chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd-702325261.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[870] = new Element(
		870, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72484", "EMD 16-645E 16cylinders not turbocharged dynamic brakes Leslie 3chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd1222369625.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[871] = new Element(
		871, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72485", "EMD 16-645E 16cylinders not turbocharged dynamic brakes Leslie 5chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd-880350417.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[872] = new Element(
		872, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72486", "EMD 16-645F 16cylinders turbocharged dynamic brakes nathan 3chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd434348277.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[873] = new Element(
		873, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72487", "EMD 16-645F 16cylinders turbocharged dynamic brakes nathan 5chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd288072747.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[874] = new Element(
		874, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72488", "EMD 16-645F 16cylinders turbocharged dynamic brakes Leslie 3chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"item", "91",
		"", "pd-754486703.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[875] = new Element(
		875, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72489", "EMD 16-645F 16cylinders  turbocharged dynamic brakes Leslie 5chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-954612505.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[876] = new Element(
		876, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72490", "EMD 20-645E 20cylinders turbocharged dynamic brakes nathan 3chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd419033453.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[877] = new Element(
		877, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72491", "EMD 20-645E 20cylinders turbocharged dynamic brakes nathan 5chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-466269853.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[878] = new Element(
		878, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72492", "EMD 20-645E 20cylinders turbocharged dynamic brakes Leslie 3chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-105940407.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[879] = new Element(
		879, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72493", "EMD 20-645E 20cylinders turbocharged dynamic brakes Leslie 5chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd2038033823.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[880] = new Element(
		880, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72494", "ALCO 539 6cylinders 1chime airhorn not turbocharged",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd1375348965.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[881] = new Element(
		881, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS72495", "ALCO 539 6cylinders 2chime airhorn not turbocharged",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-2131284581.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[882] = new Element(
		882, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82400", "EMD 12-710GB 12cylinders turbocharged dynamic brakes nathan 3chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd-1528440511.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[883] = new Element(
		883, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82401", "EMD 12-710GB 12cylinders turbocharged dynamic brakes nathan 5chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd1955349847.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[884] = new Element(
		884, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82402", "EMD 12-710GB 12cylinders turbocharged dynamic brakes Leslie 3chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd13903709.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[885] = new Element(
		885, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82403", "EMD 12-710GB 12cylinders turbocharged dynamic brakes Leslie 5chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd-1469828909.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[886] = new Element(
		886, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82404", "EMD 16-710GB 16cylinders turbocharged dynamic brakes nathan 3chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd1314418489.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[887] = new Element(
		887, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82405", "EMD 16-710GB 16cylinders turbocharged dynamic brakes nathan 5chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd624012303.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[888] = new Element(
		888, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82406", "EMD 16-710GB 16cylinders turbocharged dynamic brakes Leslie 3chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd617860309.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[889] = new Element(
		889, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82407", "EMD 16-710GB 16cylinders turbocharged dynamic brakes Leslie 5chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd2116760331.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[890] = new Element(
		890, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82408", "EMD 16-710GB 16cylinders turbocharged dynamic brakes nathan 3chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd13704241.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[891] = new Element(
		891, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82409", "EMD 16-710GB 16cylinders turbocharged dynamic brakes nathan 5chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd-557383225.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[892] = new Element(
		892, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82410", "EMD 16-710GB 16cylinders turbocharged dynamic brakes Leslie 3chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd2015426893.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[893] = new Element(
		893, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82411", "EMD 16-710GB 16cylinders turbocharged dynamic brakes Leslie 5chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd1278678083.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[894] = new Element(
		894, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82412", "EMD 20-710GB 20cylinders turbocharged dynamic brakes nathan 3chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd-944390103.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[895] = new Element(
		895, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82413", "EMD 20-710GB 20cylinders turbocharged dynamic brakes nathan 5chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd-693819777.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[896] = new Element(
		896, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82414", "EMD 20-710GB 20cylinders turbocharged dynamic brakes Leslie 3chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd-683701051.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[897] = new Element(
		897, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82415", "EMD 20-710GB 20cylinders turbocharged dynamic brakes Leslie 5chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd909030523.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[898] = new Element(
		898, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82416", "EMD 16-265H 16cylinders turbocharged dynamic brakes nathan 3chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd-1903674591.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[899] = new Element(
		899, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82417", "EMD 16-265H 16cylinders turbocharged dynamic brakes nathan 5chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd262208055.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[900] = new Element(
		900, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82418", "EMD 16-265H 16cylinders turbocharged dynamic brakes Leslie 3chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd412051261.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[901] = new Element(
		901, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82419", "EMD 16-265H 16cylinders turbocharged dynamic brakes Leslie 5chime airhorn",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"", "91",
		"", "pd-587926605.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[902] = new Element(
		902, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82420", "EMD JT42CWR (Class66)",
		"Diesel sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd1885760793.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[903] = new Element(
		903, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82450", "Shay",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd898325743.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[904] = new Element(
		904, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82451", "Heissler",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd1405905077.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[905] = new Element(
		905, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82452", "Mogul 2-6-0 (82466)",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-232214037.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[906] = new Element(
		906, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82453", "Climax",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd2005546513.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[907] = new Element(
		907, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82454", "Big Boy",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd1756442279.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[908] = new Element(
		908, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82455", "Mikado",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-1718718163.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[909] = new Element(
		909, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82456", "2-6-2 Tank",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-1146826973.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[910] = new Element(
		910, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82457", "0-6-0",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-859212279.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[911] = new Element(
		911, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82458", "4-4-0 American",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-111456417.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[912] = new Element(
		912, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82459", "4-8-4 Class J",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd449405093.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[913] = new Element(
		913, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82460", "2-8-0 Consolidation",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-2030032037.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[914] = new Element(
		914, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82461", "4-6-0",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd1461062913.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[915] = new Element(
		915, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82462", "2-6-6-2 Articulated",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd323919639.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[916] = new Element(
		916, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82463", "4-6-6-4 Challenger",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-1068689635.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[917] = new Element(
		917, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82464", "2-8-8-2",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd218998419.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[918] = new Element(
		918, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82465", "2-8-2",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-889332999.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[919] = new Element(
		919, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82466", "2-6-0",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd1498152399.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[920] = new Element(
		920, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82467", "4-8-2",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd843412629.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[921] = new Element(
		921, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82468", "2-10-0",
		"Steam sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd-983818037.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[922] = new Element(
		922, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LS82469", "Pennsylvania GG-1",
		"Electric sound decoder", "ESU",
		"99", "0",
		"1", 1,
		"decoder", "91",
		"", "pd707444721.htm",
		"", 1,
		"LOKSOUND", "0",
		 0)
	
		Entry[923] = new Element(
		923, "assets/thumb/lk52614.jpg",
		137, 97,
		"LK52614", "LokPilot V.3.0 decoder with 21-pin DCC connector",
		"LokPilot V.3.0 decoder with 21-pin DCC connector  MSRP £30.88", "ESU",
		"32", "0",
		"1", 1,
		"decoder", "93",
		"", "pd-724164733.htm",
		"", 1,
		"LOKPILOT", "0",
		 0)
	
		Entry[924] = new Element(
		924, "assets/thumb/hare_version2_thumb.jpg",
		137, 126,
		"HARE2", "Hare Version 2",
		"HARE PnP stationary decoder with feedback for the Tortoise™ Switch Machine ", "DCC Specialties",
		"27.5", "0",
		"1", 1,
		"item", "130",
		"", "pd1180532453.htm",
		"", 1,
		"ONGUARD", "0",
		 0)
	
		Entry[925] = new Element(
		925, "assets/thumb/r8211.jpg",
		137, 44,
		"R8211", "Rolling Road",
		"R8211 Loco Rolling Road (for all types of OO/HO loco)    MSRP £47.75", "Hornby",
		"43", "0",
		"1", 1,
		"item", "152",
		"", "pd1184320395.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[926] = new Element(
		926, "assets/thumb/joes4paintcolors.jpg",
		137, 85,
		"JT106", "Rusty Rails Acrylic Paint",
		"Shale 2oz bottle", "Joe's Trains",
		"5", "0",
		"1", 1,
		"bottle", "40",
		"", "pd1245211927.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[927] = new Element(
		927, "assets/thumb/jt103.jpg",
		137, 103,
		"JT107", "Rusty Rails Acrylic Paint",
		"Dark Brown  2oz bottle", "Joe's Trains",
		"5", "0",
		"1", 1,
		"bottle", "40",
		"", "pd-1353274623.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[928] = new Element(
		928, "assets/thumb/130-03.jpg",
		137, 220,
		"MIN130-03-1", "3mm Blinking/Flashing LED - Green, Red, Yellow",
		"Pack of 3 x 3mm Blinking/Flashing LEDs - Green, Red, Yellow with resistors", "Miniatronics",
		"2.2", "0",
		"1", 1,
		"pack", "131",
		"", "pd-56462437.htm",
		"", 1,
		"MINIATRONI", "0",
		 0)
	
		Entry[929] = new Element(
		929, "assets/thumb/131-03.jpg",
		137, 215,
		"MIN131-03-1", "3mm Blinking/Flashing LED - Red",
		"Pack of 3 x 3mm Blinking/Flashing LEDs - Red with resistors", "Miniatronics",
		"3.75", "0",
		"1", 1,
		"pack", "131",
		"", "pd-891646143.htm",
		"", 1,
		"MINIATRONI", "0",
		 0)
	
		Entry[930] = new Element(
		930, "assets/thumb/132-03.jpg",
		137, 202,
		"MIN132-03-1", "3mm Blinking/Flashing LED - Green",
		"Pack of 3 x 3mm Blinking/Flashing LEDs - Green with resistors", "Miniatronics",
		"2.2", "0",
		"1", 1,
		"pack", "131",
		"", "pd1973939031.htm",
		"", 1,
		"MINIATRONI", "0",
		 0)
	
		Entry[931] = new Element(
		931, "assets/images/nopicturegreen.jpg",
		133, 46,
		"OM41910", "Leyland PD3/Queen Mary  Cat. No. OM41910",
		"Southdown Motors  MSRP £19.99", "Corgi",
		"18.5", "0",
		"1", 1,
		"model", "11",
		"", "pd1180962328.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[932] = new Element(
		932, "assets/thumb/tds075dia_1456-02lg.jpg",
		137, 122,
		"TT75", "Speaker 20mm (0.75&quot;) 8 ohm",
		"", "Tony's Train Exchange",
		"3.5", "0",
		"1", 1,
		"speaker", "132",
		"", "pd1181060543.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[933] = new Element(
		933, "assets/thumb/tds-spkez-rnd.gif",
		137, 77,
		"TTE75", "Enclosure for 20mm (0.75&quot;) speaker",
		"Enclosure for 20mm (0.75&quot;) 8 ohm speaker", "Tony's Train Exchange",
		"4", "0",
		"1", 1,
		"item", "132",
		"", "pd-1309981179.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[934] = new Element(
		934, "assets/thumb/cmx-ho.jpg",
		137, 142,
		"CMX-HO", "CMX-HO Track Cleaning Wagon",
		"", "Tony's Train Exchange",
		"98.5", "0",
		"1", 1,
		"wagon", "43",
		"", "pd-1544812447.htm",
		"", 1,
		"CMX", "0",
		 0)
	
		Entry[935] = new Element(
		935, "assets/images/nopicturegreen.jpg",
		133, 46,
		"CMX-HOP", "Cleaning Pads for CMX-HO Track Cleaning Wagon",
		"", "Tony's Train Exchange",
		"3.5", "0",
		"1", 1,
		"pack", "43",
		"", "pd-948532873.htm",
		"", 1,
		"CMX", "0",
		 0)
	
		Entry[936] = new Element(
		936, "assets/thumb/efe26620.jpg",
		137, 55,
		"26620", "Plaxton Paramount 3500  Cat. No. 26620",
		"Fishwick &amp; Sons", "EFE",
		"18", "0",
		"1", 1,
		"model", "18",
		"", "pd-1540284963.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[937] = new Element(
		937, "assets/thumb/efe27506.jpg",
		137, 51,
		"27506", "Wright Scania  Cat. No. 27506",
		"First Eastern Counties", "EFE",
		"18", "0",
		"1", 1,
		"model", "18",
		"", "pd1697125205.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[938] = new Element(
		938, "assets/thumb/efe27702.jpg",
		137, 85,
		"27702", "AEC STL (no roof box)  Cat. No. 27702",
		"London Transport", "EFE",
		"18", "0",
		"1", 1,
		"model", "18",
		"", "pd445118423.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[939] = new Element(
		939, "assets/thumb/efe29406.jpg",
		137, 48,
		"29406", "Bristol RELH D/P Coach  Cat. No. 29406",
		"Lincolnshire NBC White", "EFE",
		"18", "0",
		"1", 1,
		"model", "18",
		"", "pd-124515501.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[940] = new Element(
		940, "assets/thumb/efe32102sb.jpg",
		137, 78,
		"32102SB", "RMF Routemaster  Cat. No. 32102SB",
		"Northern General Showbus", "EFE",
		"21", "0",
		"1", 1,
		"model", "18",
		"", "pd610807439.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[941] = new Element(
		941, "assets/thumb/efe32304.jpg",
		137, 54,
		"32304", "Bristol RELH Coach  Cat. No. 32304",
		"Southern National", "EFE",
		"19.5", "0",
		"1", 1,
		"model", "18",
		"", "pd929226123.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[942] = new Element(
		942, "assets/thumb/msplus.jpg",
		137, 104,
		"H-DCM-MSP", "MASTERswitch plus",
		"1 x MASTERswitch plus switch", "DCC Concepts",
		"16", "0",
		"1", 1,
		"item", "30",
		"", "pd1183043601.htm",
		"", 1,
		"Switches", "0",
		 0)
	
		Entry[943] = new Element(
		943, "assets/thumb/rj126custom.jpg",
		137, 93,
		"RJ12-6-1", "Flat 6-core cable with RJ12-6 connectors on each end",
		"1 metre", "",
		"1", "0",
		"1", 1,
		"metre", "133",
		"Length(m);1m@", "pd-1841494622.htm",
		"", 1,
		"RJCABLE", "0",
		 0)
	
		Entry[944] = new Element(
		944, "assets/thumb/psxar.jpg",
		137, 126,
		"PSX-AR", "Auto-reverser, circuit breaker, stall motor decoder",
		"Intelligent DCC solid state Auto-reverser and circuit breaker, with integrated control for stall motor decoder", "DCC Specialties",
		"44", "0",
		"1", 1,
		"item", "130",
		"", "pd1183385619.htm",
		"", 1,
		"ONGUARD", "0",
		 0)
	
		Entry[945] = new Element(
		945, "assets/thumb/msv2thumb.jpg",
		137, 121,
		"H-DCM-MS2", "MASTERswitch V2",
		"MASTERswitch V2 - set of 2 switches in pack", "DCC Concepts",
		"16.5", "0",
		"1", 1,
		"pack", "30",
		"", "pd1183817611.htm",
		"", 1,
		"Switches", "0",
		 0)
	
		Entry[946] = new Element(
		946, "assets/thumb/r8212.jpg",
		137, 55,
		"R8212", "Rolling Road Rollers",
		"R8212 Spare rollers (pack of 2) for rolling road  MSRP £11.00", "Hornby",
		"9.5", "0",
		"1", 1,
		"pack", "152",
		"", "pd-554899279.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[947] = new Element(
		947, "assets/thumb/mfp6.jpg",
		137, 64,
		"H-DCA-PF62", "Micro connector - 6-way",
		"Micro Powerflow connector - 6-way -with 150mm leads -  available in 2 or 5 packs", "DCC Concepts",
		"7.5", "0",
		"1", 1,
		"pack", "30",
		"Multi-pack;2-pack@", "pd1184936179.htm",
		"", 1,
		"Switches", "0",
		 0)
	
		Entry[948] = new Element(
		948, "assets/thumb/CC19903_ H E Payne Trailer.jpg",
		137, 91,
		"CC19903-1", "Curtainside Trailer  Cat. No. CC19903",
		"H E Payne", "Corgi",
		"35", "0",
		"1", 1,
		"model", "1",
		"", "pd-1284311003.htm",
		"", 1,
		"CLEAR", "50",
		 0)
	
		Entry[949] = new Element(
		949, "assets/images/nopicturegreen.jpg",
		133, 46,
		"JT109", "Rusty Rails Painter Tool Rollers",
		"Pack of 4 spare rollers for use with OO/HO/N scale painter tool", "Joe's Trains",
		"2.75", "0",
		"1", 1,
		"pack", "40",
		"", "pd2104942065.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[950] = new Element(
		950, "assets/thumb/jtDG.jpg",
		137, 305,
		"JT120", "Real Rocks Ballast",
		"Black Coal  8oz bottle", "Joe's Trains",
		"6", "0",
		"1", 1,
		"bottle", "40",
		"", "pd-425700205.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[951] = new Element(
		951, "assets/thumb/jtDG.jpg",
		137, 305,
		"JT121", "Real Rocks Ballast",
		"Dark Grey  8oz bottle", "Joe's Trains",
		"6", "0",
		"1", 1,
		"bottle", "40",
		"", "pd-1178060551.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[952] = new Element(
		952, "assets/thumb/jtLG.jpg",
		137, 327,
		"JT122", "Real Rocks Ballast",
		"Light Grey  8oz bottle", "Joe's Trains",
		"6", "0",
		"1", 1,
		"bottle", "40",
		"", "pd-1193964593.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[953] = new Element(
		953, "assets/thumb/jtEB.jpg",
		137, 344,
		"JT124", "Real Rocks Ballast",
		"Earth Blend  8oz bottle", "Joe's Trains",
		"6", "0",
		"1", 1,
		"bottle", "40",
		"", "pd-821391669.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[954] = new Element(
		954, "assets/thumb/efe16128thumb.jpg",
		137, 85,
		"16128", "Leyland PD2 Highbridge  Cat. No. 16128",
		"Southdown", "EFE",
		"20", "0",
		"1", 1,
		"model", "18",
		"", "pd2089881218.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[955] = new Element(
		955, "assets/thumb/efe31504thumb.jpg",
		137, 82,
		"31504", "RM Routemaster  Cat. No. 31504",
		"London Transport", "EFE",
		"20", "0",
		"1", 1,
		"model", "18",
		"", "pd773208750.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[956] = new Element(
		956, "assets/thumb/efe34904thumb.jpg",
		137, 70,
		"34904", "Leyland Olympian Coach  Cat. No. 34904",
		"Southern Vectis", "EFE",
		"20", "0",
		"1", 1,
		"model", "18",
		"", "pd-1000564596.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[957] = new Element(
		957, "assets/thumb/10000505a.jpg",
		137, 60,
		"ATL10000504A", "HO RTR GP38, CP Rail #4404",
		"ATL10000504A HO RTR GP38-2, CP Rail #4404 with Dual Flags Red/White", "Atlas",
		"74", "0",
		"1", 1,
		"loco", "138",
		"", "pd-945811534.htm",
		"", 1,
		"ATGP38", "0",
		 0)
	
		Entry[958] = new Element(
		958, "assets/thumb/r8216.jpg",
		137, 76,
		"R8216", "Points/Accessory Decoder",
		"R8216 Points/Accessory Decoder  MSRP £35.99", "Hornby",
		"30", "0",
		"1", 1,
		"decoder", "147",
		"", "pd-496999740.htm",
		"", 1,
		"DCC", "0",
		 0)
	
		Entry[959] = new Element(
		959, "assets/thumb/r8239thumb.jpg",
		137, 55,
		"R8239-1", "Power and Signal Booster",
		"R8239 Power and Signal Booster  MSRP £35.99", "Hornby",
		"61", "0",
		"1", 1,
		"decoder", "79",
		"", "pd739690874.htm",
		"", 1,
		"HORNBYDCC", "0",
		 0)
	
		Entry[960] = new Element(
		960, "assets/thumb/r8216.jpg",
		137, 76,
		"R8216-1", "Points/Accessory Decoder",
		"R8216 Points/Accessory Decoder  MSRP £35.99", "Hornby",
		"30", "0",
		"1", 1,
		"decoder", "79",
		"", "pd166556728.htm",
		"", 1,
		"HORNBYDCC", "0",
		 0)
	
		Entry[961] = new Element(
		961, "assets/thumb/r8214thumb.jpg",
		137, 91,
		"R8214-1", "DCC Elite Unit",
		"R8214 DCC Elite Unit - Advanced DCC Controller  MSRP £179", "Hornby",
		"140", "0",
		"1", 1,
		"item", "79",
		"", "pd-1546824410.htm",
		"", 1,
		"HORNBYDCC", "0",
		 0)
	
		Entry[962] = new Element(
		962, "assets/thumb/mrc1516thumb.jpg",
		137, 119,
		"MRC1516", "Prodigy Computer Interface",
		"MRC Prodigy USB Computer Interface for MRC and Gaugemaster Prodigy Advance DCC Systems", "Model Rectifier Corporation",
		"33", "0",
		"1", 1,
		"item", "96",
		"", "pd-1428416572.htm",
		"", 1,
		"MRCCONT", "0",
		 0)
	
		Entry[963] = new Element(
		963, "assets/thumb/dxsuperemp.jpg",
		137, 91,
		"DXSUPEMPX", "Super Empire Builder Xtra Set",
		"Super Empire Builder Xtra 5 amp Starter Set", "Digitrax",
		"265", "0",
		"1", 1,
		"set", "81",
		"", "pd1254992823.htm",
		"", 1,
		"DXCONTROL", "0",
		 0)
	
		Entry[964] = new Element(
		964, "assets/thumb/r8239thumb.jpg",
		137, 55,
		"R8239", "Power and Signal Booster",
		"R8239 Power and Signal Booster  MSRP £35.99", "Hornby",
		"61", "0",
		"1", 1,
		"decoder", "147",
		"", "pd1255342406.htm",
		"", 1,
		"DCC", "0",
		 0)
	
		Entry[965] = new Element(
		965, "assets/thumb/smbk.jpg",
		92, 141,
		"DXSMBK", "SMBK",
		"Signal Mast Base Kit", "Digitrax",
		"10", "0",
		"1", 1,
		"kit", "87",
		"", "pd1255688855.htm",
		"", 1,
		"DXSIG", "0",
		 0)
	
		Entry[966] = new Element(
		966, "assets/thumb/smhk.jpg",
		137, 82,
		"DXSMHK", "SMHK",
		"Signal Mounting Hardware Kit", "Digitrax",
		"7", "0",
		"1", 1,
		"kit", "87",
		"", "pd-1783845219.htm",
		"", 1,
		"DXSIG", "0",
		 0)
	
		Entry[967] = new Element(
		967, "assets/thumb/tsmk.jpg",
		137, 57,
		"DXTSMK", "TSMK",
		"Signal Terminal Strip Mounting Kit", "Digitrax",
		"10", "0",
		"1", 1,
		"kit", "87",
		"", "pd711264787.htm",
		"", 1,
		"DXSIG", "0",
		 0)
	
		Entry[968] = new Element(
		968, "assets/thumb/emd645nt.jpg",
		137, 109,
		"STX828048", "EMD 645 Non-Turbo Diesel Engines ",
		"TSU-AT1000 for EMD 645 Non-Turbo Diesel Engines ", "Soundtraxx",
		"66.5", "0",
		"1", 1,
		"decoder", "112",
		"", "pd-1832785287.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[969] = new Element(
		969, "assets/thumb/locolamps.jpg",
		137, 36,
		"H-DML-LLBWH", "Loco lamp White",
		"Pack of 6 x White loco lamps", "DCC Concepts",
		"32", "0",
		"1", 1,
		"pack", "29",
		"", "pd1256207743.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[970] = new Element(
		970, "assets/thumb/locolamps.jpg",
		137, 36,
		"H-DML-LLBWR", "Guards van lamp red/white",
		"Pack of 6 x guards van lamps red/white", "DCC Concepts",
		"33", "0",
		"1", 1,
		"pack", "29",
		"", "pd-884132923.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[971] = new Element(
		971, "assets/thumb/jt101a.jpg",
		137, 336,
		"JT101A", "Rusty Rails Painter Tool",
		"For use with OO/HO/N scales", "Joe's Trains",
		"11", "0",
		"1", 1,
		"item", "40",
		"", "pd1256315326.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[972] = new Element(
		972, "assets/thumb/jt101abr.jpg",
		137, 214,
		"JT101B-BR", "Rusty Rails Starter Set with one bottle of Acrylic Paint",
		"For use with OO/HO/N scales", "Joe's Trains",
		"14.5", "0",
		"1", 1,
		"set", "40",
		"Color;Brown Rust@", "pd-889483748.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[973] = new Element(
		973, "assets/thumb/em76652.jpg",
		137, 92,
		"EM76652", "Morris Minor Pickup Cat. No. EM76652",
		"Brook &amp; Son Agricultural Engineers  MSRP £3.99", "Classix",
		"3.5", "0",
		"1", 1,
		"model", "6",
		"", "pd1256913937.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[974] = new Element(
		974, "assets/thumb/em76661.jpg",
		137, 92,
		"EM76661", "Austin A30 Van       Cat. No. EM76661",
		"Austin Service   MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "6",
		"", "pd1398236327.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[975] = new Element(
		975, "assets/thumb/em76678.jpg",
		137, 92,
		"EM76678", "Ford Thames 300E 7-Cwt Van   Cat. No. EM76678",
		"Red  MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "6",
		"", "pd79140653.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[976] = new Element(
		976, "assets/thumb/em76680.jpg",
		137, 92,
		"EM76680", "Ford Thames 300E 7-Cwt Van   Cat. No. EM76678",
		"Lyons Maid  MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "6",
		"", "pd-120953565.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[977] = new Element(
		977, "assets/thumb/em76848.jpg",
		137, 92,
		"EM76848", "Austin A30 4-Door Saloon     Cat. No. EM76848",
		"Pale Blue   MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "6",
		"", "pd-1073677303.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[978] = new Element(
		978, "assets/thumb/em76865.jpg",
		137, 92,
		"EM76865", "Ford Anglia 100E 2-Door    Cat. No. EM76865",
		"Dark Blue   MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "6",
		"", "pd1186285221.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[979] = new Element(
		979, "assets/thumb/circ800-6101.jpg",
		137, 93,
		"TORT-MX", "Tortoise™ Switch Machine Cable &amp; Actuator",
		"", "Circuitron",
		"4.5", "0",
		"1", 1,
		"item", "44",
		"", "pd1257192647.htm",
		"", 1,
		"CIRCUITRON", "0",
		 0)
	
		Entry[980] = new Element(
		980, "assets/thumb/efe23320thumb.jpg",
		137, 55,
		"23320", "AEC RF MkI Bus  Cat. No. 23320",
		"London Transport", "EFE",
		"20", "0",
		"1", 1,
		"model", "18",
		"", "pd-299283591.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[981] = new Element(
		981, "assets/thumb/efe35701thumb.jpg",
		137, 47,
		"35701", "BET 36 foot 4 bay  Cat. No. 35701",
		"Greenline", "EFE",
		"21", "0",
		"1", 1,
		"model", "18",
		"", "pd1089724091.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[982] = new Element(
		982, "assets/thumb/efe35202thumb.jpg",
		137, 47,
		"35202", "BET 36 foot Leyland Leopard  Cat. No. 35202",
		"Yorkshire Traction", "EFE",
		"21", "0",
		"1", 1,
		"model", "18",
		"", "pd2133374595.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[983] = new Element(
		983, "assets/thumb/efe16223thumb.jpg",
		137, 57,
		"16223", "Bristol LS/MW  Cat. No. 16223",
		"Crosville NBC", "EFE",
		"20", "0",
		"1", 1,
		"model", "18",
		"", "pd734154059.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[984] = new Element(
		984, "assets/thumb/efe32206thumb.jpg",
		137, 46,
		"32206", "Bristol RELH Coach  Cat. No. 32206",
		"Hants &amp; Dorset", "EFE",
		"20", "0",
		"1", 1,
		"model", "18",
		"", "pd717712575.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[985] = new Element(
		985, "assets/thumb/efe26323thumb.jpg",
		137, 86,
		"26323", "Guy Arab II Utility  Cat. No. 26323",
		"Walsall Corporation", "EFE",
		"20", "0",
		"1", 1,
		"model", "18",
		"", "pd-1124900467.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[986] = new Element(
		986, "assets/thumb/efe29622thumb.jpg",
		137, 73,
		"29622", "Leyland Olympian  Cat. No. 29622",
		"Isle of Man Transport", "EFE",
		"20", "0",
		"1", 1,
		"model", "18",
		"", "pd-694796281.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[987] = new Element(
		987, "assets/thumb/efe27314thumb.jpg",
		137, 83,
		"27314", "Leyland TD1 Closed Rear  Cat. No. 27314",
		"Scout Motor Services", "EFE",
		"20", "0",
		"1", 1,
		"model", "18",
		"", "pd1519837775.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[988] = new Element(
		988, "assets/thumb/efe36703thumb.jpg",
		137, 43,
		"36703", "Plaxton SLF Dart MkII  Cat. No. 36703",
		"Aldershot &amp; District", "EFE",
		"21", "0",
		"1", 1,
		"model", "18",
		"", "pd1673280773.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[989] = new Element(
		989, "assets/thumb/76mmc002.jpg",
		137, 72,
		"76MMC002", "Morris Minor Convertible",
		"Black - 1:76 scale    MSRP £2.90", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd2056583761.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[990] = new Element(
		990, "assets/thumb/76aa002thumb.jpg",
		137, 81,
		"76AA002", "Austin A40 Mk II",
		"West Midlands Police - 1:76 scale    MSRP £3.50", "Oxford Diecast",
		"3.25", "0",
		"1", 1,
		"model", "21",
		"", "pd1719831783.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[991] = new Element(
		991, "assets/thumb/76sr002thumb.jpg",
		137, 66,
		"76SR002", "Sunbeam Rapier MkIII",
		"Grey/Red - 1:76 scale    MSRP £3.50", "Oxford Diecast",
		"3.25", "0",
		"1", 1,
		"model", "21",
		"", "pd-1196426899.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[992] = new Element(
		992, "assets/thumb/76tea001thumb.jpg",
		137, 105,
		"76TEA001", "Ferguson TEA Tractor",
		"Grey - 1:76 scale    MSRP £3.50", "Oxford Diecast",
		"3.25", "0",
		"1", 1,
		"model", "21",
		"", "pd1241157987.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[993] = new Element(
		993, "assets/thumb/76tea002thumb.jpg",
		137, 102,
		"76TEA002", "Ferguson TEA Tractor",
		"Red - 1:76 scale    MSRP £3.50", "Oxford Diecast",
		"3.25", "0",
		"1", 1,
		"model", "21",
		"", "pd689308233.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[994] = new Element(
		994, "assets/thumb/76lan188009thumb.jpg",
		137, 93,
		"76LAN188009", "Land Rover Series 1 88&quot; Canvas Top",
		"Bronze Green - 1:76 scale  MSRP £3.50", "Oxford Diecast",
		"3.25", "0",
		"1", 1,
		"model", "21",
		"", "pd677623199.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[995] = new Element(
		995, "assets/thumb/148nob006thumb.jpg",
		137, 72,
		"148NOB006", "Bedford OB",
		"Yelloways - 1:148 scale    MSRP £3.95", "Oxford Diecast",
		"3.6", "0",
		"1", 1,
		"model", "22",
		"", "pd-586748352.htm",
		"", 1,
		"OXN", "0",
		 0)
	
		Entry[996] = new Element(
		996, "assets/thumb/basereflexdcs02thumb.jpg",
		100, 100,
		"DCCS01-100", "Loksound compatible 100ohm bass reflex speaker ",
		"Loksound compatible speaker 100ohm bass reflex 58mm x 22mm", "DCC Supplies",
		"8.5", "0",
		"1", 1,
		"speaker", "132",
		"", "pd1258111687.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[997] = new Element(
		997, "assets/thumb/basereflexdcs02thumb.jpg",
		100, 100,
		"DCCS01-8", "Speaker 8 ohm bass enhanced speaker",
		"Speaker 8 ohm bass enhanced 58mm x 22mm", "DCC Supplies",
		"8.5", "0",
		"1", 1,
		"speaker", "132",
		"", "pd-1768409718.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[998] = new Element(
		998, "assets/thumb/smallbaseenhancedthumb.jpg",
		100, 80,
		"DCCS02-100", "Loksound compatible 100ohm bass enhanced speaker  ",
		"Loksound compatible speaker 100ohm bass enhanced 20mm x 40mm", "DCC Supplies",
		"7.5", "0",
		"1", 1,
		"speaker", "132",
		"", "pd-473235768.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[999] = new Element(
		999, "assets/thumb/smallbaseenhancedthumb.jpg",
		100, 80,
		"DCCS02-8", "Speaker 8 ohm bass enhanced speaker 20mm x 40mm",
		"Speaker 8 ohm bass enhanced speaker 20mm x 40mm", "DCC Supplies",
		"7.5", "0",
		"1", 1,
		"speaker", "132",
		"", "pd-644996554.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[1000] = new Element(
		1000, "assets/thumb/basereflexdcs03thumb.jpg",
		100, 75,
		"DCCS03-100-01", "Single Loksound compatible 100ohm bass reflex slim speaker ",
		"Single Loksound compatible speaker 100ohm bass reflex slim 52mm x 18mm", "DCC Supplies",
		"9", "0",
		"1", 1,
		"speaker", "132",
		"Multi-pack;Single item@", "pd-1469322412.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[1001] = new Element(
		1001, "assets/thumb/basereflexdcs03thumb.jpg",
		100, 75,
		"DCCS03-8", "Speaker 8 ohm bass reflex slim speaker",
		"Speaker 8 ohm bass reflex slim 52mm x 18mm", "DCC Supplies",
		"8.5", "0",
		"1", 1,
		"speaker", "132",
		"", "pd-717909598.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[1002] = new Element(
		1002, "assets/thumb/148NOB007thumb.jpg",
		137, 84,
		"148NOB007", "Bedford OB",
		"Grey Cars - 1:148 scale    MSRP £3.95", "Oxford Diecast",
		"3.6", "0",
		"1", 1,
		"model", "22",
		"", "pd1258454745.htm",
		"", 1,
		"OXN", "0",
		 0)
	
		Entry[1003] = new Element(
		1003, "assets/thumb/sap145.jpg",
		137, 175,
		"H-DCS100", "Sapphire 100 solder",
		"Sapphire 100 low melt point solder pack", "DCC Concepts",
		"8", "0",
		"1", 1,
		"pack", "28",
		"", "pd1258624685.htm",
		"", 1,
		"Shrink", "0",
		 0)
	
		Entry[1004] = new Element(
		1004, "assets/thumb/nlswthumb.jpg",
		137, 151,
		"HLED-NLSW", "NANO lights Daylight White",
		"Pack of 6 x pre-wired Daylight White NANO LEDs with resistors", "DCC Concepts",
		"11", "0",
		"1", 1,
		"pack", "29",
		"", "pd2735784.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[1005] = new Element(
		1005, "assets/thumb/nlpwthumb.jpg",
		137, 165,
		"HLED-NLPW", "NANO lights Prototype White",
		"Pack of 6 x pre-wired Prototype White (Golden White) NANO LEDs with resistors", "DCC Concepts",
		"11", "0",
		"1", 1,
		"pack", "29",
		"", "pd1097753878.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[1006] = new Element(
		1006, "assets/thumb/nlrdthumb.jpg",
		137, 164,
		"HLED-NLRD", "NANO lights Red",
		"Pack of 6 x pre-wired Red NANO LEDs with resistors", "DCC Concepts",
		"10.5", "0",
		"1", 1,
		"pack", "29",
		"", "pd-61511372.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[1007] = new Element(
		1007, "assets/thumb/nanolight.jpg",
		137, 100,
		"HLED-NLWR", "NANO lights Red/white",
		"Pack of 6 x pre-wired Red/white NANO LEDs with resistors", "DCC Concepts",
		"13.5", "0",
		"1", 1,
		"pack", "29",
		"", "pd-388578686.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[1008] = new Element(
		1008, "assets/thumb/nh4lthumb.jpg",
		137, 114,
		"HLED-NH4L", "NANO vehicle harness large",
		"3 x NANO harnesses consisting of 2 red and 2 white NANO LEDs with resistors", "DCC Concepts",
		"14", "0",
		"1", 1,
		"pack", "29",
		"", "pd1259341378.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[1009] = new Element(
		1009, "assets/thumb/nh4sthumb.jpg",
		137, 116,
		"HLED-NH4S", "NANO vehicle harness small",
		"3 x NANO harnesses consisting of 2 red and 2 white NANO LEDs with resistors", "DCC Concepts",
		"14", "0",
		"1", 1,
		"pack", "29",
		"", "pd508239424.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[1010] = new Element(
		1010, "assets/thumb/nh4mthumb.jpg",
		137, 115,
		"HLED-NH4M", "NANO vehicle harness medium",
		"3 x NANO harnesses consisting of 2 red and 2 white NANO LEDs with resistors", "DCC Concepts",
		"14", "0",
		"1", 1,
		"pack", "29",
		"", "pd1584541294.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[1011] = new Element(
		1011, "assets/thumb/nh2rdthumb.jpg",
		137, 115,
		"HLED-NH2RD", "NANO harness with 2 x Red LEDs",
		"3 x NANO harnesses consisting of 2 red NANO LEDs supplied with resistors for markers or any red lights", "DCC Concepts",
		"11.5", "0",
		"1", 1,
		"pack", "29",
		"", "pd70300236.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[1012] = new Element(
		1012, "assets/thumb/nh2swthumb.jpg",
		137, 119,
		"HLED-NH2SW", "NANO harness with 2 x Sunny White LEDs",
		"3 x NANO harnesses consisting of 2 x Sunny White NANO LEDs supplied with resistors", "DCC Concepts",
		"11.5", "0",
		"1", 1,
		"pack", "29",
		"", "pd-400780966.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[1013] = new Element(
		1013, "assets/thumb/nh2pwthumb.jpg",
		137, 88,
		"HLED-NH2PW", "NANO harness with 2 x Golden White LEDs",
		"3 x NANO harnesses consisting of 2 x Golden White NANO LEDs supplied with resistors for marker/ditch/headlights", "DCC Concepts",
		"11.5", "0",
		"1", 1,
		"pack", "29",
		"", "pd2095841048.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[1014] = new Element(
		1014, "assets/thumb/zephyr.jpg",
		137, 93,
		"DXDCS50", "DCS50 Zephyr Command Station Starter Set",
		"DCS50 Zephyr Command Station", "Digitrax",
		"130", "0",
		"1", 1,
		"set", "81",
		"", "pd694264498.htm",
		"", 1,
		"DXCONTROL", "0",
		 0)
	
		Entry[1015] = new Element(
		1015, "assets/thumb/dt402.jpg",
		137, 404,
		"DXDT402", "DT402 Loconet Super Throttle",
		"DT402 Loconet Super Walkaround/IR Throttle", "Digitrax",
		"117.5", "0",
		"1", 1,
		"item", "81",
		"", "pd487531366.htm",
		"", 1,
		"DXCONTROL", "0",
		 0)
	
		Entry[1016] = new Element(
		1016, "assets/thumb/db150.jpg",
		137, 117,
		"DXDB150", "DB150 Command Station/Booster",
		"DB150 Command Station/Booster with Intelligent AutoReverse", "Digitrax",
		"116.5", "0",
		"1", 1,
		"item", "81",
		"", "pd334897420.htm",
		"", 1,
		"DXCONTROL", "0",
		 0)
	
		Entry[1017] = new Element(
		1017, "assets/thumb/dxscfxd.jpg",
		137, 91,
		"DXSUPCFXD", "Duplex Equipped Super Chief 5 Amp Xtra Set",
		"Duplex Equipped Super Chief 5 Amp Xtra Starter Set", "Digitrax",
		"437", "0",
		"1", 1,
		"set", "81",
		"", "pd-1628269546.htm",
		"", 1,
		"DXCONTROL", "0",
		 0)
	
		Entry[1018] = new Element(
		1018, "assets/thumb/dxscfx8.jpg",
		137, 91,
		"DXSUPCFX8", "Super Chief Xtra Set (8amp)",
		"8 Amp Super Chief Xtra Starter Set - All scales", "Digitrax",
		"375", "0",
		"1", 1,
		"set", "81",
		"", "pd-1689178060.htm",
		"", 1,
		"DXCONTROL", "0",
		 0)
	
		Entry[1019] = new Element(
		1019, "assets/thumb/dxdz125PS.jpg",
		137, 157,
		"DXDZ125PS", "DZ125PS",
		"DZ125PS Z Scale Mobile Decoder", "Digitrax",
		"19.5", "0",
		"1", 1,
		"decoder", "83",
		"", "pd-879212802.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[1020] = new Element(
		1020, "assets/thumb/hj05002.jpg",
		137, 25,
		"HJ5002", "IWB bogie van",
		"HJ5002 IWB bogie van Blue Circle Cement branding (yellow, blue)  MSRP £25.00", "Heljan",
		"21.5", "0",
		"1", 1,
		"model", "144",
		"", "pd243440390.htm",
		"", 1,
		"HJWAG", "0",
		 0)
	
		Entry[1021] = new Element(
		1021, "assets/thumb/hj858903.jpg",
		137, 92,
		"HJ858903", "Pack of 4 containers",
		"HJ858903 Pack of 4 x Heljan 20 ft. containers", "Heljan",
		"10", "0",
		"1", 1,
		"item", "145",
		"", "pd1748930275.htm",
		"", 1,
		"HJACC", "0",
		 0)
	
		Entry[1022] = new Element(
		1022, "assets/thumb/hj858906.jpg",
		137, 47,
		"HJ858906", "Metal adapters for containers",
		"HJ858906 Metal adapters for containers", "Heljan",
		"5.5", "0",
		"1", 1,
		"item", "145",
		"", "pd1173953261.htm",
		"", 1,
		"HJACC", "0",
		 0)
	
		Entry[1023] = new Element(
		1023, "assets/thumb/hj1740.jpg",
		137, 98,
		"HJ01740", "Beer depot",
		"Kit of plastic parts to create a beer depot", "Heljan",
		"10", "0",
		"1", 1,
		"kit", "145",
		"", "pd1190748004.htm",
		"", 1,
		"HJACC", "0",
		 0)
	
		Entry[1024] = new Element(
		1024, "assets/thumb/EFE29615.jpg",
		137, 79,
		"29615", "Leyland Olympian  Cat. No. 29615",
		"First Hampshire", "EFE",
		"18", "0",
		"1", 1,
		"model", "18",
		"", "pd231852815.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1025] = new Element(
		1025, "assets/thumb/EFE28006.jpg",
		137, 79,
		"28006", "Daimler DMS 1 Door  Cat. No. 28006",
		"Trent Buses", "EFE",
		"18", "0",
		"1", 1,
		"model", "18",
		"", "pd412714071.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1026] = new Element(
		1026, "assets/thumb/EFE27621.jpg",
		137, 48,
		"27621", "Wright Volvo Renown  Cat. No. 27621",
		"First Portsmouth", "EFE",
		"18", "0",
		"1", 1,
		"model", "18",
		"", "pd-1027907629.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1027] = new Element(
		1027, "assets/thumb/EFE25305.jpg",
		137, 85,
		"25305", "AEC Duple Coach  Cat. No. 25305",
		"Wilts &amp; Dorset", "EFE",
		"18", "0",
		"1", 1,
		"model", "18",
		"", "pd-1168326591.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1028] = new Element(
		1028, "assets/thumb/EFE17219.jpg",
		137, 70,
		"17219", "Leyland National Mk1 Long   Cat. No. 17219",
		"Damory Coaches", "EFE",
		"18", "0",
		"1", 1,
		"model", "18",
		"", "pd-497076679.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1029] = new Element(
		1029, "assets/thumb/dxar1.jpg",
		137, 116,
		"DXAR1", "AR-1 Auto Reverser",
		"AR1 Auto Reversing Controller", "Digitrax",
		"21.5", "0",
		"1", 1,
		"decoder", "87",
		"", "pd-794996772.htm",
		"", 1,
		"DXSIG", "0",
		 0)
	
		Entry[1030] = new Element(
		1030, "assets/thumb/dxbd4.jpg",
		137, 269,
		"DXBD4", "BD4-Block Detector",
		"BD4 Quad Occupancy Detector", "Digitrax",
		"20.5", "0",
		"1", 1,
		"item", "87",
		"", "pd1542367594.htm",
		"", 1,
		"DXSIG", "0",
		 0)
	
		Entry[1031] = new Element(
		1031, "assets/thumb/dxbdl168.jpg",
		137, 153,
		"DXBDL168", "BDL-168 Block Detector",
		"BDL168 LocoNet Occupancy Detector ", "Digitrax",
		"102", "0",
		"1", 1,
		"item", "87",
		"", "pd1236932008.htm",
		"", 1,
		"DXSIG", "0",
		 0)
	
		Entry[1032] = new Element(
		1032, "assets/thumb/dxse8c2.jpg",
		137, 168,
		"DXSE8C", "SE8C Signal Decoder",
		"Digitrax SE8C Plug &rsquo;N Play Signal Decoder", "Digitrax",
		"80", "0",
		"1", 1,
		"item", "87",
		"", "pd-643256530.htm",
		"", 1,
		"DXSIG", "0",
		 0)
	
		Entry[1033] = new Element(
		1033, "assets/thumb/dxdz143.gif",
		84, 110,
		"DXDZ143", "DZ143",
		"DZ143 Z Scale Mobile Decoder", "Digitrax",
		"23.5", "0",
		"1", 1,
		"decoder", "83",
		"", "pd-186335908.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[1034] = new Element(
		1034, "assets/thumb/dxdz143.gif",
		84, 110,
		"DXDZ143PS", "DZ143 PS",
		"DZ143PS Z Scale Mobile Decoder", "Digitrax",
		"25", "0",
		"1", 1,
		"decoder", "83",
		"", "pd-720776470.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[1035] = new Element(
		1035, "assets/thumb/dxdn143k2thumb.jpg",
		137, 49,
		"DXDN143K2", "DN143K2",
		"DN143k2 N Decoder For Kato RDC", "Digitrax",
		"24", "0",
		"1", 1,
		"decoder", "83",
		"", "pd1718689524.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[1036] = new Element(
		1036, "assets/thumb/dxdn143ip.jpg",
		137, 91,
		"DXDN143IP", "DN143IP",
		"DN143IP N Scale Mobile Decoder	", "Digitrax",
		"20.5", "0",
		"1", 1,
		"decoder", "83",
		"", "pd-1455919550.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[1037] = new Element(
		1037, "assets/thumb/dn163.jpg",
		137, 117,
		"DXDN163", "DN163",
		"DN163 N Scale Mobile Decoder", "Digitrax",
		"24", "0",
		"1", 1,
		"decoder", "83",
		"", "pd-985020864.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[1038] = new Element(
		1038, "assets/thumb/dn163A0.jpg",
		137, 22,
		"DXDN163A0", "DN163A0",
		"DN163A0 N Decoder For Atlas GP40-2, U25B, TM Etc", "Digitrax",
		"24", "0",
		"1", 1,
		"decoder", "83",
		"", "pd1261508206.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[1039] = new Element(
		1039, "assets/thumb/DN163A1.jpg",
		137, 17,
		"DXDN163A1", "DN163A1",
		"DN163A1 Plug N Play Decoder for Atlas N Scale SD60, SD60M and SD50 locos; 1.5 Amp (2 amp peak) with 6 FX3 Functions rated at 0.5Amp; Golden White LEDs for added realism ", "Digitrax",
		"24", "0",
		"1", 1,
		"decoder", "83",
		"", "pd-441853364.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[1040] = new Element(
		1040, "assets/thumb/dxdn163A2thumb.jpg",
		137, 47,
		"DXDN163A2", "DN163A2",
		"DN163A2 N Decoder For Atlas GP30, GP35 Etc", "Digitrax",
		"24", "0",
		"1", 1,
		"decoder", "83",
		"", "pd-1378223782.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[1041] = new Element(
		1041, "assets/thumb/dxdn163A3thumb.jpg",
		137, 52,
		"DXDN163A3", "DN163A3",
		"DN163A3 N Scale Mobile Decoder fro Atlas MP15", "Digitrax",
		"21.5", "0",
		"1", 1,
		"decoder", "83",
		"", "pd-1987598568.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[1042] = new Element(
		1042, "assets/thumb/dxdn163I0.jpg",
		137, 28,
		"DXDN163I0", "DN163i0",
		"DN163i0 Plug N Play Decoder for InterMoutain SD40T-2 Tunnel Motor; 1.0Amp/1.5 Amp with 6 FX3 Functions rated at 1/2 Amp; Golden White LEDs for added realism ", "Digitrax",
		"24", "0",
		"1", 1,
		"decoder", "83",
		"", "pd801260294.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[1043] = new Element(
		1043, "assets/thumb/dn163i1a.jpg",
		137, 86,
		"DXDN163I1A", "DN163I1A",
		"DN163 I1A Plug N’ Play Decoder for InterMoutain FT-A unit 1.0 Amp/1.5 Amp with 6 FX3 Functions rated at 1/2 Amp", "Digitrax",
		"24", "0",
		"1", 1,
		"decoder", "83",
		"", "pd-1523173212.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[1044] = new Element(
		1044, "assets/thumb/dxdn163k0a.jpg",
		137, 36,
		"DXDN163K0A", "DN163K0A",
		"DN163K0A Plug N Play Decoder for Kato N-Scale, P42 Genesis, PA-1, E8 and Others, 1.0/1.5 Amp with 6 FX3 Functions rated at 1/2 Amp, White LEDs for added realism, ", "Digitrax",
		"25", "0",
		"1", 1,
		"decoder", "83",
		"", "pd1143201650.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[1045] = new Element(
		1045, "assets/thumb/dxdn163k0b.jpg",
		137, 29,
		"DXDN163K0B", "DN163K0B",
		"DN163K0B Plug N’ Play Series 3 Decoder for Kato N-Scale F3 A&amp;B. 1.0/2.0 Amp with 6 FX3 Functions rated at 1/2 Amp. Golden White LED for added realism. ", "Digitrax",
		"24", "0",
		"1", 1,
		"decoder", "83",
		"", "pd1689344752.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[1046] = new Element(
		1046, "assets/thumb/dxdn163k0dthumb.jpg",
		137, 42,
		"DXDN163K0D", "DN163K0D",
		"DN163K0D Plug N Play Decoder for Kato N Scale F40PH 1.0Amp/1.5 Amp with 6 FX3 Functions rated at 1/2 Amp", "Digitrax",
		"25.5", "0",
		"1", 1,
		"decoder", "83",
		"", "pd-1458603362.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[1047] = new Element(
		1047, "assets/thumb/dxdn163k1b.jpg",
		137, 117,
		"DXDN163K1B", "DN163K1B",
		"DN163K1B Plug N’ Play Decoder for Kato AC4400, C44-9, SD70MAC, and pre-2006 SD40-2 1.0 Amp/1.5 Amp with 6 FX3 Functions rated at 1/2 Amp", "Digitrax",
		"24", "0",
		"1", 1,
		"decoder", "83",
		"", "pd2108267004.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[1048] = new Element(
		1048, "assets/thumb/dxdn163k1c.jpg",
		137, 97,
		"DXDN163K1C", "DN163K1C",
		"DN163K1C Plug N Play Decoder for 2006 and later Kato SD40-2 1.0 Amp/1.5 Amp with 6 FX3 Functions rated at 1/2 Amp", "Digitrax",
		"25.5", "0",
		"1", 1,
		"decoder", "83",
		"", "pd-1202159478.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[1049] = new Element(
		1049, "assets/thumb/dxdn163k2.jpg",
		137, 167,
		"DXDN163K2", "DN163K2",
		"DN163K2 Plug N&rsquo; Play Series 3 Decoder for Kato N-Scale SD80/90MAC, RS2, RSC2, 1.0/2.0 Amp with 6 FX3 Functions rated at 1/2 Amp. White LEDs for added realism.", "Digitrax",
		"24", "0",
		"1", 1,
		"decoder", "83",
		"", "pd441467336.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[1050] = new Element(
		1050, "assets/thumb/dxdn163m0.jpg",
		137, 72,
		"DXDN163M0", "DN163M0",
		"DN163M0 Plug N’ Play Series 3 Decoder for MicroTrains N-Scale FT. 1.0/2.0 Amp with 6 FX3 Functions rated at 1/2 Amp; White LED for added realism", "Digitrax",
		"24", "0",
		"1", 1,
		"decoder", "83",
		"", "pd-12509898.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[1051] = new Element(
		1051, "assets/thumb/dxdn163ps.jpg",
		137, 117,
		"DXDN163PS", "DN163PS",
		"DN163PS N Scale Mobile Decoder", "Digitrax",
		"27", "0",
		"1", 1,
		"decoder", "83",
		"", "pd1759731284.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[1052] = new Element(
		1052, "assets/thumb/dh123at.jpg",
		137, 123,
		"DXDH123AT", "Digitrax DH123AT",
		"Basic HO No Solder Installation for Athearn Standard Locomotives", "Digitrax",
		"17.5", "0",
		"1", 1,
		"decoder", "82",
		"", "pd-924652598.htm",
		"", 1,
		"DXHODEC", "0",
		 0)
	
		Entry[1053] = new Element(
		1053, "assets/thumb/dxdh123d.jpg",
		137, 90,
		"DXDH123D", "Digitrax DH123D",
		"Digitrax DH123D 2 function HO decoder with Digitrax Easy Connect 9 pin plug harness", "Digitrax",
		"15", "0",
		"1", 1,
		"decoder", "82",
		"", "pd1046847240.htm",
		"", 1,
		"DXHODEC", "0",
		 0)
	
		Entry[1054] = new Element(
		1054, "assets/images/nopicturegreen.jpg",
		133, 46,
		"DXDH123PS", "Digitrax DH123PS",
		"", "Digitrax",
		"15.5", "0",
		"1", 1,
		"decoder", "82",
		"", "pd447942548.htm",
		"", 1,
		"DXHODEC", "0",
		 0)
	
		Entry[1055] = new Element(
		1055, "assets/thumb/dh163d.jpg",
		137, 91,
		"DXDH163AT", "Digitrax DH163AT",
		"Series 3 HO No Solder Installation for Athearn Standard Locomotives", "Digitrax",
		"24.5", "0",
		"1", 1,
		"decoder", "82",
		"", "pd-361692960.htm",
		"", 1,
		"DXHODEC", "0",
		 0)
	
		Entry[1056] = new Element(
		1056, "assets/thumb/dxdh163d.jpg",
		137, 90,
		"DXDH163D", "Digitrax DH163D",
		"Series 3 HO Wired Decoder", "Digitrax",
		"20.5", "0",
		"1", 1,
		"decoder", "82",
		"", "pd1432441358.htm",
		"", 1,
		"DXHODEC", "0",
		 0)
	
		Entry[1057] = new Element(
		1057, "assets/thumb/dxdh165ip.jpg",
		137, 131,
		"DXDH165IP", "Digitrax DH165IP  HO Scale 6 function Mobile Decoder",
		"DH165IP 6 function decdoer fits Kato HO-Scale EMD SD70MAC Locomotives &amp; Others", "Digitrax",
		"19.5", "0",
		"1", 1,
		"decoder", "82",
		"", "pd-722534676.htm",
		"", 1,
		"DXHODEC", "0",
		 0)
	
		Entry[1058] = new Element(
		1058, "assets/thumb/dh163p.jpg",
		137, 137,
		"DXDH163P", "Digitrax DH163P",
		"Series 3 HO/OO Plug ‘N Play Decoder with medium harness (3&quot;)", "Digitrax",
		"22.5", "0",
		"1", 1,
		"decoder", "82",
		"", "pd1386615462.htm",
		"", 1,
		"DXHODEC", "0",
		 0)
	
		Entry[1059] = new Element(
		1059, "assets/thumb/dh163ps.jpg",
		137, 137,
		"DXDH163PS", "Digitrax DH163PS",
		"DH163PS HO/OO Scale Mobile Decoder with short harness (1&quot;)", "Digitrax",
		"23.5", "0",
		"1", 1,
		"decoder", "82",
		"", "pd1546195268.htm",
		"", 1,
		"DXHODEC", "0",
		 0)
	
		Entry[1060] = new Element(
		1060, "assets/thumb/dxsdck.jpg",
		137, 98,
		"DXSDCK", "SDCK",
		"Signal Driver Cable Kit", "Digitrax",
		"13", "0",
		"1", 1,
		"kit", "87",
		"", "pd2052645120.htm",
		"", 1,
		"DXSIG", "0",
		 0)
	
		Entry[1061] = new Element(
		1061, "assets/thumb/dxdg583s.jpg",
		137, 117,
		"DXDG583S", "DG583S",
		"DG583S Large Scale, High Current Draw Mobile Decoder", "Digitrax",
		"46", "0",
		"1", 1,
		"decoder", "84",
		"", "pd-1730288836.htm",
		"", 1,
		"DXLARGE", "0",
		 0)
	
		Entry[1062] = new Element(
		1062, "assets/thumb/dxdg583ar.jpg",
		137, 103,
		"DXDG583AR", "DG583AR",
		"DG583AR Large Scale, High Current Draw Mobile Decoder", "Digitrax",
		"45", "0",
		"1", 1,
		"decoder", "84",
		"", "pd-1131810338.htm",
		"", 1,
		"DXLARGE", "0",
		 0)
	
		Entry[1063] = new Element(
		1063, "assets/thumb/dxdg383ar.jpg",
		137, 102,
		"DXDG383AR", "DG383AR",
		"DG383AR Large Scale, High Current Draw Mobile Decoder", "Digitrax",
		"41", "0",
		"1", 1,
		"decoder", "84",
		"", "pd118083632.htm",
		"", 1,
		"DXLARGE", "0",
		 0)
	
		Entry[1064] = new Element(
		1064, "assets/thumb/dxrx4.jpg",
		98, 130,
		"DXRX4", "RX4",
		"RX4 4-ZoneTransponding Receiver Add-on for BDL Series Detectors ", "Digitrax",
		"34", "0",
		"1", 1,
		"item", "87",
		"", "pd-1220822270.htm",
		"", 1,
		"DXSIG", "0",
		 0)
	
		Entry[1065] = new Element(
		1065, "assets/thumb/dxut4.jpg",
		137, 137,
		"DXUT4", "UT4",
		"UT4 Utility Throttle", "Digitrax",
		"58.5", "0",
		"1", 1,
		"item", "81",
		"", "pd-920112040.htm",
		"", 1,
		"DXCONTROL", "0",
		 0)
	
		Entry[1066] = new Element(
		1066, "assets/images/nopicturegreen.jpg",
		133, 46,
		"DXRD2", "RD2",
		"RD2 Remote Sensing Diodes", "Digitrax",
		"6", "0",
		"1", 1,
		"item", "87",
		"", "pd1482804660.htm",
		"", 1,
		"DXSIG", "0",
		 0)
	
		Entry[1067] = new Element(
		1067, "assets/images/nopicturegreen.jpg",
		133, 46,
		"DXDHAT", "DHAT Athearn Harness",
		"DHAT 9 pin harness for Athearn Standard Loco", "Digitrax",
		"5", "0",
		"1", 1,
		"item", "88",
		"", "pd633399570.htm",
		"", 1,
		"DXSPARE", "0",
		 0)
	
		Entry[1068] = new Element(
		1068, "assets/thumb/dxdhwh.jpg",
		137, 137,
		"DXDHWH", "DHWH",
		"DHWH 9 pin to bare wires wire harnesses (5 pack)", "Digitrax",
		"8.5", "0",
		"1", 1,
		"pack", "88",
		"", "pd-683844034.htm",
		"", 1,
		"DXSPARE", "0",
		 0)
	
		Entry[1069] = new Element(
		1069, "assets/images/nopicturegreen.jpg",
		133, 46,
		"DXDHWHP", "DHWHP Harness w/plug",
		"DHWHP Digitrax 9 pin to DCC medium plug long harness (3&quot;)", "Digitrax",
		"3.5", "0",
		"1", 1,
		"item", "88",
		"", "pd985966236.htm",
		"", 1,
		"DXSPARE", "0",
		 0)
	
		Entry[1070] = new Element(
		1070, "assets/images/nopicturegreen.jpg",
		133, 46,
		"DXDHWHPS", "DHWHPS Short Harness w/ Plug",
		"DHWHP Digitrax 9 pin to DCC medium plug short harness (1&quot;)", "Digitrax",
		"3.5", "0",
		"1", 1,
		"item", "88",
		"", "pd1789451818.htm",
		"", 1,
		"DXSPARE", "0",
		 0)
	
		Entry[1071] = new Element(
		1071, "assets/thumb/sfx004.jpg",
		137, 258,
		"DXSFX004", "SFX004 Soundbug sound module for use with DH165 series loco decoders",
		"", "Digitrax",
		"32", "0",
		"1", 1,
		"decoder", "85",
		"", "pd-184919960.htm",
		"", 1,
		"DXSOUND", "0",
		 0)
	
		Entry[1072] = new Element(
		1072, "assets/thumb/dxtf4.jpg",
		137, 117,
		"DXTF4", "Digitrax TF4",
		"Digitrax TF4 Quad DCC Function Only Decoder with Integrated Transponder. Four 125mA (250mA peak) function output for lights or other functions", "Digitrax",
		"15.5", "0",
		"1", 1,
		"decoder", "82",
		"", "pd158589314.htm",
		"", 1,
		"DXHODEC", "0",
		 0)
	
		Entry[1073] = new Element(
		1073, "assets/thumb/cr4003thumb.jpg",
		137, 41,
		"CR4003", "Mini Set    Cat. No. CR4003",
		"MSRP £8.99", "Corgi",
		"7.5", "0",
		"1", 1,
		"set", "13",
		"", "pd1053261612.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[1074] = new Element(
		1074, "assets/thumb/DG176026 Trackside BRS Flat.jpg",
		137, 90,
		"DG176026", "Leyland 8 Wheel Platform    Cat. No. DG176026",
		"BRS", "Corgi",
		"8", "0",
		"1", 1,
		"model", "13",
		"", "pd1133308754.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[1075] = new Element(
		1075, "assets/thumb/DG199013 Bouts Van.jpg",
		137, 107,
		"DG199013", "Scammell Mechanical Horse    Cat. No. DG199013",
		"Bouts Tillotson", "Corgi",
		"8.6", "0",
		"1", 1,
		"model", "13",
		"", "pd1753721146.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[1076] = new Element(
		1076, "assets/thumb/DG199014 Trackside_Gt West.jpg",
		137, 80,
		"DG199014", "Scammell Mechanical Horse    Cat. No. DG199014",
		"GW &amp; GC Central Railway", "Corgi",
		"8.6", "0",
		"1", 1,
		"model", "13",
		"", "pd1459140316.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[1077] = new Element(
		1077, "assets/thumb/DG200010.jpg",
		137, 80,
		"DG200010", "Ford Transit    Cat. No. DG200010",
		"DER Television Rentals", "Corgi",
		"2.6", "0",
		"1", 1,
		"model", "13",
		"", "pd-2018580402.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[1078] = new Element(
		1078, "assets/thumb/DG201009 Yellow Post Office.jpg",
		137, 94,
		"DG201009", "Morris LD Van    Cat. No. DG201009",
		"Post Office International Telegraph Service", "Corgi",
		"2.6", "0",
		"1", 1,
		"model", "13",
		"", "pd-1063827500.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[1079] = new Element(
		1079, "assets/thumb/DG202009 Ross Van_Whitethumb.jpg",
		137, 85,
		"DG202009", "Austin J2 Van    Cat. No. DG202009",
		"Ross Frozen Foods", "Corgi",
		"2.6", "0",
		"1", 1,
		"model", "13",
		"", "pd27478710.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[1080] = new Element(
		1080, "assets/thumb/DG203008 Ovaltine Blue Van.jpg",
		137, 104,
		"DG203008", "Bedford CA Van    Cat. No. DG203008",
		"Ovaltine", "Corgi",
		"2.6", "0",
		"1", 1,
		"model", "13",
		"", "pd886575944.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[1081] = new Element(
		1081, "assets/thumb/DG206005 Trackside E H Ste.jpg",
		137, 109,
		"DG206005", "Scammell Townsman    Cat. No. DG206005",
		"E H Steele", "Corgi",
		"8.6", "0",
		"1", 1,
		"model", "13",
		"", "pd39111120.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[1082] = new Element(
		1082, "assets/thumb/DG209005.jpg",
		137, 106,
		"DG209005", "Bedford HA Van    Cat. No. DG209005",
		"Co-op", "Corgi",
		"2.6", "0",
		"1", 1,
		"model", "13",
		"", "pd613104928.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[1083] = new Element(
		1083, "assets/thumb/DG211005 Brown Muff Van.jpg",
		137, 98,
		"DG211005", "Morris 1000    Cat. No. DG211005",
		"Brown Muffs Department Store", "Corgi",
		"2.6", "0",
		"1", 1,
		"model", "13",
		"", "pd-1022994934.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[1084] = new Element(
		1084, "assets/thumb/DG213002 Express Horse Box.jpg",
		137, 90,
		"DG213002", "Harrington Horsebox   DG213002",
		"Great Western Railways  MSRP £7.99", "Corgi",
		"7", "0",
		"1", 1,
		"model", "13",
		"", "pd-972006920.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[1085] = new Element(
		1085, "assets/thumb/DG214001 Trackside BR Flat.jpg",
		137, 94,
		"DG214001", "Thornycroft Nippy   DG214001",
		"British Rail Flatbed", "Corgi",
		"8.6", "0",
		"1", 1,
		"model", "13",
		"", "pd-341834626.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[1086] = new Element(
		1086, "assets/thumb/om41219thumb.jpg",
		137, 80,
		"OM41219", "Wright Eclipse Gemini Cat. No. OM41219",
		"Lincolnshire Road Car", "Corgi",
		"21.5", "0",
		"1", 1,
		"model", "11",
		"", "pd-1404062782.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[1087] = new Element(
		1087, "assets/thumb/OM42519 Southdown.jpg",
		137, 85,
		"OM42519", "East Lancs Myllennium  Cat. No. OM42519",
		"Southdown PSV", "Corgi",
		"22", "0",
		"1", 1,
		"model", "11",
		"", "pd-1896998760.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[1088] = new Element(
		1088, "assets/thumb/OM42704.jpg",
		137, 58,
		"OM42704", "Van Hool Alizee  Cat. No. OM42704",
		"Greenline", "Corgi",
		"22", "0",
		"1", 1,
		"model", "11",
		"", "pd-15369104.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[1089] = new Element(
		1089, "assets/thumb/OM44114 Brighton & Hove.jpg",
		137, 72,
		"OM44114", "Optare Solo  Cat. No. OM44114",
		"Brighton &amp; Hove", "Corgi",
		"16", "0",
		"1", 1,
		"model", "11",
		"", "pd-848055348.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[1090] = new Element(
		1090, "assets/images/nopicturegreen.jpg",
		133, 46,
		"OM45912", "Van Hool T9  Cat. No. OM45912",
		"Golden Boy Coaches", "Corgi",
		"21.5", "0",
		"1", 1,
		"model", "11",
		"", "pd-1642146948.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[1091] = new Element(
		1091, "assets/thumb/OM46106 Plaxton Panther.jpg",
		137, 70,
		"OM46106", "Plaxton Panther  Cat. No. OM46106",
		"Parks of Hamilton", "Corgi",
		"22.5", "0",
		"1", 1,
		"model", "11",
		"", "pd-1219606412.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[1092] = new Element(
		1092, "assets/thumb/OM46203 IrizarPB CityLink Galway.jpg",
		137, 58,
		"OM46203", "Scania Irizar PB  Cat. No. OM46203",
		"Citylink Galway", "Corgi",
		"22.5", "0",
		"1", 1,
		"model", "11",
		"", "pd2062791662.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[1093] = new Element(
		1093, "assets/thumb/NW1004 Trackside Paper Van.jpg",
		137, 53,
		"NW1004", "Newspaper Set  Cat. No. NW1004",
		"Express and Star, Evening Standard, Daily Mirror, Daily Express", "Corgi",
		"10", "0",
		"1", 1,
		"set", "13",
		"", "pd-1509465632.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[1094] = new Element(
		1094, "assets/thumb/CC13515_McKay Ltd - Volvo.jpg",
		137, 76,
		"CC13515-1", "Volvo FM Fridge Lorry  Cat. No. CC13515",
		"The Real McKay Ltd ", "Corgi",
		"49", "0",
		"1", 1,
		"model", "1",
		"", "pd1259148677.htm",
		"", 1,
		"CLEAR", "50",
		 0)
	
		Entry[1095] = new Element(
		1095, "assets/thumb/CC13516_Countrywide - Volvo.jpg",
		137, 78,
		"CC13516-1", "Volvo FM Curtainside Lorry  Cat. No. CC13516",
		"Countrywide Farmers", "Corgi",
		"49", "0",
		"1", 1,
		"model", "1",
		"", "pd327314235.htm",
		"", 1,
		"CLEAR", "50",
		 0)
	
		Entry[1096] = new Element(
		1096, "assets/thumb/CC13520_D R MACLEOD.jpg",
		137, 68,
		"CC13520-1", "Volvo FM Box  Cat. No. CC13520",
		"Macleod of Stornaway", "Corgi",
		"49", "0",
		"1", 1,
		"model", "1",
		"", "pd-1131176713.htm",
		"", 1,
		"CLEAR", "50",
		 0)
	
		Entry[1097] = new Element(
		1097, "assets/thumb/CC13903_Stan Robinson Ltd.jpg",
		137, 78,
		"CC13903-2", "Foden Alpha Curtainside Lorry  Cat. No. CC13903",
		"Stan Robinson Ltd ", "Corgi",
		"43", "0",
		"1", 1,
		"model", "1",
		"", "pd-1890543445.htm",
		"", 1,
		"CLEAR", "50",
		 0)
	
		Entry[1098] = new Element(
		1098, "assets/thumb/ls50440.jpg",
		83, 77,
		"LS50440", "ESU Miniature speaker rectangular 16 x 25mm",
		"LS50440 ESU Miniature speaker rectangular 16 x 25mm  100 ohms  MSRP £4.80", "ESU",
		"4.5", "0",
		"1", 1,
		"speaker", "94",
		"", "pd1195911962.htm",
		"", 1,
		"ESUSPEAK", "0",
		 0)
	
		Entry[1099] = new Element(
		1099, "assets/thumb/ls50441.jpg",
		51, 48,
		"LS50441", "ESU Miniature round speaker 20mm",
		"LS50441 ESU Miniature round speaker 20mm  100 ohms  with sound chamber MSRP £4.80", "ESU",
		"4.5", "0",
		"1", 1,
		"speaker", "94",
		"", "pd894323705.htm",
		"", 1,
		"ESUSPEAK", "0",
		 0)
	
		Entry[1100] = new Element(
		1100, "assets/thumb/ls50447.jpg",
		64, 46,
		"LS50447", "ESU Miniature dual speaker 16mm",
		"LS50447 ESU Miniature dual speaker 16mm  50ohms each  MSRP £4.80", "ESU",
		"4.5", "0",
		"1", 1,
		"speaker", "94",
		"", "pd-1531586865.htm",
		"", 1,
		"ESUSPEAK", "0",
		 0)
	
		Entry[1101] = new Element(
		1101, "assets/thumb/ls50440.jpg",
		137, 127,
		"LS50440-1", "ESU Miniature speaker rectangular 16 x 25mm",
		"LS50440 ESU Miniature speaker rectangular 16 x 25mm  100 ohms  MSRP £4.80", "ESU",
		"4.5", "0",
		"1", 1,
		"speaker", "132",
		"", "pd-1736486380.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[1102] = new Element(
		1102, "assets/thumb/ls50447.jpg",
		137, 98,
		"LS50447-1", "ESU Miniature dual speaker 16mm",
		"LS50447 ESU Miniature dual speaker 16mm  100 ohms  MSRP £4.80", "ESU",
		"4.5", "0",
		"1", 1,
		"speaker", "132",
		"", "pd1509578338.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[1103] = new Element(
		1103, "assets/thumb/ls50441.jpg",
		137, 129,
		"LS50441-1", "ESU Miniature round speaker 20mm",
		"LS50441 ESU Miniature round speaker 20mm  100ohms  MSRP £4.80", "ESU",
		"4.5", "0",
		"1", 1,
		"speaker", "132",
		"", "pd622488416.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[1104] = new Element(
		1104, "assets/thumb/dxdh165lo.jpg",
		137, 254,
		"DXDH165L0", "Digitrax DH165L0 HO Scale 6 function Mobile Decoder ",
		"DH165L0 fits many Lifelike HO Diesel Locomotives GP7/SD60", "Digitrax",
		"18.5", "0",
		"1", 1,
		"decoder", "82",
		"", "pd-736347531.htm",
		"", 1,
		"DXHODEC", "0",
		 0)
	
		Entry[1105] = new Element(
		1105, "assets/thumb/dxdh165ao.jpg",
		137, 315,
		"DXDH165A0", "Digitrax DH165A0 HO Scale 6 function Mobile Decoder",
		"DH165A0 fits Athearn Genesis, Kato, Stewart, Atlas &amp; Other HO Locomotives", "Digitrax",
		"19.5", "0",
		"1", 1,
		"decoder", "82",
		"", "pd-859055701.htm",
		"", 1,
		"DXHODEC", "0",
		 0)
	
		Entry[1106] = new Element(
		1106, "assets/thumb/dxdh165ko.jpg",
		137, 249,
		"DXDH165K0", "DH165K0 HO Scale 6 function Mobile Decoder ",
		"DH165K0 Fits Kato, Stewart, Atlas &amp; Other Locomotives", "Digitrax",
		"19.5", "0",
		"1", 1,
		"decoder", "82",
		"", "pd1699259345.htm",
		"", 1,
		"DXHODEC", "0",
		 0)
	
		Entry[1107] = new Element(
		1107, "assets/thumb/dxdh165k1a.jpg",
		105, 464,
		"DXDH165K1A", "DH165K1A HO Scale 6 function Mobile Decoder",
		"DH165K1A fits many Kato HO Diesel Locomotives", "Digitrax",
		"19", "0",
		"1", 1,
		"decoder", "82",
		"", "pd-1588309401.htm",
		"", 1,
		"DXHODEC", "0",
		 0)
	
		Entry[1108] = new Element(
		1108, "assets/thumb/cab05.jpg",
		137, 266,
		"N-CAB05", "Intermediate Cab 05",
		"Intermediate Cab, with pushbutton speed control", "NCE",
		"56", "0",
		"1", 1,
		"item", "100",
		"", "pd1196070477.htm",
		"", 1,
		"Throttles", "0",
		 0)
	
		Entry[1109] = new Element(
		1109, "assets/thumb/efe17220.jpg",
		137, 53,
		"17220", "Leyland National Mk 1 Long  Cat. No. 17220",
		"Barrow in Furness", "EFE",
		"18", "0",
		"1", 1,
		"model", "18",
		"", "pd1196193886.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1110] = new Element(
		1110, "assets/thumb/3mmsunnywhite.jpg",
		137, 98,
		"HLED-3MMSW", "3mm Daylight White (Sunny White) LED",
		"Single 3mm Daylight White (Sunny White) LED - min order quantity = 2", "DCC Concepts",
		"0.8", "0",
		"1", 1,
		"item", "29",
		"", "pd1196278578.htm",
		"", 2,
		"LED", "0",
		 0)
	
		Entry[1111] = new Element(
		1111, "assets/thumb/hlff.jpg",
		137, 104,
		"HDCM-FF", "Flicker Free 2 - single in pack with 6 springs",
		"Flicker Free constant lighting device - available in single, 3 or 6 packs - singles have no lighting boards or LEDs", "DCC Concepts",
		"9", "0",
		"1", 1,
		"pack", "29",
		"Multi-pack;Single item@", "pd906498874.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[1112] = new Element(
		1112, "assets/thumb/nrm40022.jpg",
		137, 93,
		"NRM40022", "Flex Link™ Starter Kit",
		"Flex Link™ Starter Kit 36&quot; flexible tubing and other hardware to connect up to one Blue Point. For any scale.", "New Rail Models",
		"6", "0",
		"1", 1,
		"pack", "72",
		"", "pd1197115199.htm",
		"", 1,
		"BluePoints", "0",
		 0)
	
		Entry[1113] = new Element(
		1113, "assets/thumb/mug1.jpg",
		137, 177,
		"MUG1", "Bromsgrove Models Mug with Green BR style logo",
		"Bromsgrove Models Mug with Green BR style logo", "",
		"4.5", "0",
		"1", 1,
		"item", "161",
		"", "pd1933680955.htm",
		"", 1,
		"MUGS", "0",
		 0)
	
		Entry[1114] = new Element(
		1114, "assets/thumb/mug2.jpg",
		137, 171,
		"MUG2", "Bromsgrove Models Mug with Brown BR style logo",
		"Bromsgrove Models Mug with Brown BR style logo", "",
		"4.5", "0",
		"1", 1,
		"item", "161",
		"", "pd1940911585.htm",
		"", 1,
		"MUGS", "0",
		 0)
	
		Entry[1115] = new Element(
		1115, "assets/thumb/mug3.jpg",
		137, 151,
		"MUG3", "Bromsgrove Models Mug with Bromsgrove Models logo",
		"Bromsgrove Models Mug with Bromsgrove Models logo", "",
		"4.5", "0",
		"1", 1,
		"item", "161",
		"", "pd-1167969545.htm",
		"", 1,
		"MUGS", "0",
		 0)
	
		Entry[1116] = new Element(
		1116, "assets/thumb/nrm40023.jpg",
		137, 179,
		"NRM40023", "Flex Link™ Hardware Kit",
		"Flex Link™ Hardware Kit for 5 Blue Point switches. For any scale.", "New Rail Models",
		"22.5", "0",
		"1", 1,
		"pack", "72",
		"", "pd-2016575036.htm",
		"", 1,
		"BluePoints", "0",
		 0)
	
		Entry[1117] = new Element(
		1117, "assets/images/nopicturegreen.jpg",
		133, 46,
		"NRM40024", "Flex Link™ Tubing",
		"Flex Link™ Tubing contains 5 x 3ft flexible tubes", "New Rail Models",
		"7", "0",
		"1", 1,
		"pack", "72",
		"", "pd674024850.htm",
		"", 1,
		"BluePoints", "0",
		 0)
	
		Entry[1118] = new Element(
		1118, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ602", "Industry - NEW",
		"", "ITTC",
		"18", "0",
		"1", 1,
		"item", "63",
		"", "pd1197203942.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[1119] = new Element(
		1119, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ603", "Bascule Bridge - NEW",
		"", "ITTC",
		"18", "0",
		"1", 1,
		"item", "63",
		"", "pd-177704316.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[1120] = new Element(
		1120, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ605", "Water Wheel - NEW",
		"", "ITTC",
		"18", "0",
		"1", 1,
		"item", "63",
		"", "pd-1532220334.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[1121] = new Element(
		1121, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ622-1", "Construction background sounds - NEW",
		"", "ITTC",
		"18", "0",
		"1", 1,
		"item", "63",
		"", "pd-1838550320.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[1122] = new Element(
		1122, "assets/thumb/CC19904_Stobart Trailer.jpg",
		137, 91,
		"CC19904-1", "Curtainside Trailer Cat. No. CC19904",
		"Eddie Stobart", "Corgi",
		"35", "0",
		"1", 1,
		"model", "1",
		"", "pd1308015306.htm",
		"", 1,
		"CLEAR", "50",
		 0)
	
		Entry[1123] = new Element(
		1123, "assets/thumb/CC19905_Pollock Trailer.jpg",
		137, 91,
		"CC19905-1", "Curtainside Trailer   Cat. No. CC19905",
		"Pollock", "Corgi",
		"35", "0",
		"1", 1,
		"model", "1",
		"", "pd-1174796792.htm",
		"", 1,
		"CLEAR", "50",
		 0)
	
		Entry[1124] = new Element(
		1124, "assets/thumb/hj858905.jpg",
		137, 86,
		"HJ858905", "Track extension pack for container terminal",
		"HJ858905 Track extension pack for container terminal", "Heljan",
		"11", "0",
		"1", 1,
		"set", "145",
		"", "pd1494942333.htm",
		"", 1,
		"HJACC", "0",
		 0)
	
		Entry[1125] = new Element(
		1125, "assets/thumb/CC13808_YUILL & DODDS.jpg",
		137, 105,
		"CC13808-1", "Mercedes Actros  Cat. No. CC13808",
		"Yuill &amp; Dodds", "Corgi",
		"46", "0",
		"1", 1,
		"model", "1",
		"", "pd128909987.htm",
		"", 1,
		"CLEAR", "50",
		 0)
	
		Entry[1126] = new Element(
		1126, "assets/thumb/CC13802_Jack Richards.jpg",
		137, 94,
		"CC13802-1", "Mercedes Benz Actros  Cat. No. CC13802",
		"Jack Richards &amp; Son", "Corgi",
		"36", "0",
		"1", 1,
		"model", "1",
		"", "pd-474163831.htm",
		"", 1,
		"CLEAR", "50",
		 0)
	
		Entry[1127] = new Element(
		1127, "assets/thumb/hj58050.jpg",
		137, 28,
		"HJ5805", "Class 58 58050 &rsquo;Toton Traction Depot&rsquo; (version 2)  Cat. No. 5805",
		"HJ5805 Class 58 58050 &rsquo;Toton Traction Depot&rsquo; (version 2)  DCC ready MSRP £89.00", "Heljan",
		"52", "0",
		"1", 1,
		"loco", "143",
		"", "pd-638845367.htm",
		"", 1,
		"HJLOCOS", "0",
		 0)
	
		Entry[1128] = new Element(
		1128, "assets/thumb/r6379.jpg",
		137, 61,
		"R6379", "6 wheel tank wagon - United Dairies",
		"R6379 6 wheel tank wagon - United Dairies  MSRP £7.83", "Hornby",
		"6.75", "0",
		"1", 1,
		"wagon", "149",
		"", "pd-1961446344.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[1129] = new Element(
		1129, "assets/thumb/efe30605.jpg",
		137, 73,
		"30605", "AEC Renown  Cat.No. 30605",
		"Hants &amp; Dorset NBC", "EFE",
		"19", "0",
		"1", 1,
		"model", "18",
		"", "pd1108479036.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1130] = new Element(
		1130, "assets/thumb/efe29505thumb.jpg",
		137, 49,
		"29505", "Plaxton Panorama  Cat.No. 29505",
		"Eastern Counties", "EFE",
		"19", "0",
		"1", 1,
		"model", "18",
		"", "pd818598834.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1131] = new Element(
		1131, "assets/thumb/efe28905thumb.jpg",
		137, 76,
		"28905", "GM Standard Atlantean  Cat.No. 28905",
		"London Country", "EFE",
		"19", "0",
		"1", 1,
		"model", "18",
		"", "pd896545502.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1132] = new Element(
		1132, "assets/thumb/efe28815.jpg",
		137, 75,
		"28815", "Leyland Titan 2 Door  Cat.No. 28815",
		"Bexleybus", "EFE",
		"19", "0",
		"1", 1,
		"model", "18",
		"", "pd-1717951772.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1133] = new Element(
		1133, "assets/thumb/efe14604thumb.jpg",
		137, 53,
		"14604", "Leyland National Short  Cat.No. 14604",
		"West Yorkshire NBC", "EFE",
		"19", "0",
		"1", 1,
		"model", "18",
		"", "pd1198502726.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1134] = new Element(
		1134, "assets/thumb/CC13601thumb.jpg",
		137, 52,
		"CC13601-1", "DAF CF Curtainside  Cat. No. CC13601",
		"R Swain &amp; Sons Ltd", "Corgi",
		"56.25", "0",
		"1", 1,
		"model", "1",
		"", "pd643733465.htm",
		"", 1,
		"CLEAR", "50",
		 0)
	
		Entry[1135] = new Element(
		1135, "assets/thumb/CC13603thumb.jpg",
		137, 54,
		"CC13603-1", "DAF CF Curtainside  Cat. No. CC13603",
		"Tyson H Burridge Ltd", "Corgi",
		"56.25", "0",
		"1", 1,
		"model", "1",
		"", "pd-1674395787.htm",
		"", 1,
		"CLEAR", "50",
		 0)
	
		Entry[1136] = new Element(
		1136, "assets/thumb/psx1.jpg",
		137, 70,
		"PSX-4", "Four block intelligent circuit breakers",
		"Solid State Circuit Breaker with Integrated Block Detection and Feed Back", "DCC Specialties",
		"106", "0",
		"1", 1,
		"item", "130",
		"", "pd1159174062.htm",
		"", 1,
		"ONGUARD", "0",
		 0)
	
		Entry[1137] = new Element(
		1137, "assets/thumb/CC13417_Ian Wright - ERF.jpg",
		137, 83,
		"CC13417-1", "ERF ECT  Cat. No. CC13417",
		"Ian Wright Transport ", "Corgi",
		"36", "0",
		"1", 1,
		"model", "1",
		"", "pd162192513.htm",
		"", 1,
		"CLEAR", "50",
		 0)
	
		Entry[1138] = new Element(
		1138, "assets/thumb/PDB-1.jpg",
		137, 187,
		"PDB", "Power distribution block",
		"12 position pre-wired power distribution block", "Miniatronics",
		"15", "0",
		"1", 1,
		"item", "30",
		"", "pd1215874762.htm",
		"", 1,
		"Switches", "0",
		 0)
	
		Entry[1139] = new Element(
		1139, "assets/thumb/smc4.jpg",
		137, 103,
		"TD-SMC4", "Servo and Motor Controller",
		"SMC4", "Team Digital",
		"39", "0",
		"1", 1,
		"item", "115",
		"", "pd1200055847.htm",
		"", 1,
		"TD", "0",
		 0)
	
		Entry[1140] = new Element(
		1140, "assets/thumb/hj5100.jpg",
		137, 28,
		"HJ5100", "Cargowaggon IGA bogie flat",
		"HJ5100 Cargowaggon IGA bogie flat 4647 044 (ex works) MSRP  £27.00", "Heljan",
		"22.5", "0",
		"1", 1,
		"wagon", "144",
		"", "pd2024986127.htm",
		"", 1,
		"HJWAG", "0",
		 0)
	
		Entry[1141] = new Element(
		1141, "assets/thumb/hj5100.jpg",
		137, 28,
		"HJ5101", "Cargowaggon IGA bogie flat",
		"HJ5101 Cargowaggon IGA bogie flat 4647 005 (ex works) MSRP £27.00", "Heljan",
		"22.5", "0",
		"1", 1,
		"wagon", "144",
		"", "pd-1247738155.htm",
		"", 1,
		"HJWAG", "0",
		 0)
	
		Entry[1142] = new Element(
		1142, "assets/thumb/hj5100.jpg",
		137, 28,
		"HJ5102", "Cargowaggon IGA bogie flat",
		"HJ5102 Cargowaggon IGA bogie flat 4647 035 MSRP £27.00", "Heljan",
		"22.5", "0",
		"1", 1,
		"wagon", "144",
		"", "pd-1956446965.htm",
		"", 1,
		"HJWAG", "0",
		 0)
	
		Entry[1143] = new Element(
		1143, "assets/thumb/hj5100.jpg",
		137, 28,
		"HJ5103", "Cargowaggon IGA bogie flat weathered",
		"HJ5103 Cargowaggon IGA bogie flat 4647 030 (weathered finish)  MSRP £30.00", "Heljan",
		"26.5", "0",
		"1", 1,
		"wagon", "144",
		"", "pd146142769.htm",
		"", 1,
		"HJWAG", "0",
		 0)
	
		Entry[1144] = new Element(
		1144, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HJ5104", "Cargowaggon IGA bogie flat weathered",
		"HJ5104 Cargowaggon IGA bogie flat 4647 026 with tubular steel load (weathered finish) MSRP £32.00", "Heljan",
		"27.5", "0",
		"1", 1,
		"wagon", "144",
		"", "pd-1017156665.htm",
		"", 1,
		"HJWAG", "0",
		 0)
	
		Entry[1145] = new Element(
		1145, "assets/thumb/5009.jpg",
		137, 77,
		"5009", "Bedford OB Coach in Southern National livery  Cat. No. 5009",
		"1949 Bedford OB Coach in Southern National livery  MSRP £124.99", "Sunstar",
		"96", "0",
		"1", 1,
		"model", "24",
		"", "pd500930434.htm",
		"", 1,
		"ssbEDFORD", "0",
		 0)
	
		Entry[1146] = new Element(
		1146, "assets/thumb/CC13612_James Hislop - DAF.jpg",
		137, 54,
		"CC13612-1", "DAF CF Curtainside  Cat. No. CC13612",
		"James S Hislop/Bedmax", "Corgi",
		"58.25", "0",
		"1", 1,
		"model", "1",
		"", "pd-369092102.htm",
		"", 1,
		"CLEAR", "50",
		 0)
	
		Entry[1147] = new Element(
		1147, "assets/thumb/hledbip3rw.jpg",
		137, 129,
		"HLED-BPRW-S2", "Bi-Polar red/white 3 lead LED - 2 sizes available - single LED",
		"Bi-Polar red/white 3 lead LED - 2mm tower single", "DCC Concepts",
		"1", "0",
		"1", 1,
		"each", "29",
		"LED size;2mm tower@", "pd1202654564.htm",
		"", 2,
		"LED", "0",
		 0)
	
		Entry[1148] = new Element(
		1148, "assets/thumb/r8245thumb.jpg",
		137, 87,
		"R8245", "Sapphire Decoder",
		"R8245 Sapphire Decoder MSRP £22.75", "Hornby",
		"20.5", "0",
		"1", 1,
		"decoder", "147",
		"", "pd-258856129.htm",
		"", 1,
		"DCC", "0",
		 0)
	
		Entry[1149] = new Element(
		1149, "assets/thumb/dxdz125.jpg",
		137, 223,
		"DXDZ125", "DZ125",
		"DZ125 Z scale Loco decoder with BEMF 1 Amp/2 Amp Peak, 2 FX3 Functions@0.5 Amp ", "Digitrax",
		"17.5", "0",
		"1", 1,
		"decoder", "83",
		"", "pd1203033706.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[1150] = new Element(
		1150, "assets/thumb/efe18611thumb.jpg",
		137, 70,
		"18611", "Bristol VRIII Open Top  Cat. No. 18611",
		"York Pullman", "EFE",
		"19", "0",
		"1", 1,
		"model", "18",
		"", "pd-1098381274.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1151] = new Element(
		1151, "assets/thumb/efe20443thumb.jpg",
		137, 80,
		"20443", "Bristol VRIII Cat. No. 20443",
		"Trent Buses", "EFE",
		"19", "0",
		"1", 1,
		"model", "18",
		"", "pd-670671958.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1152] = new Element(
		1152, "assets/thumb/efe16221thumb.jpg",
		137, 62,
		"16221", "Bristol LS  Cat. No. 16221",
		"Southern Vectis", "EFE",
		"18", "0",
		"1", 1,
		"model", "18",
		"", "pd1203581859.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1153] = new Element(
		1153, "assets/images/nopicturegreen.jpg",
		133, 46,
		"OM41112", "Leyland PD3/East Lancs  Cat. No. OM41112",
		"Burnley  MSRP £25.99", "Corgi",
		"22", "0",
		"1", 1,
		"model", "11",
		"", "pd1203700849.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[1154] = new Element(
		1154, "assets/thumb/r8665.jpg",
		137, 145,
		"R8665", "Road Signs Pre 60s (pk 12)",
		"R8665 Road Signs Pre 60s (pk 12)  MSRP £8.75", "Hornby",
		"7.5", "0",
		"1", 1,
		"pack", "154",
		"", "pd-238986571.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1155] = new Element(
		1155, "assets/thumb/r8585.jpg",
		123, 106,
		"R8585", "Lamp Hut",
		"R8585 Skaledale Lamp Hut MSRP £6.20", "Hornby",
		"5.7", "0",
		"1", 1,
		"item", "154",
		"", "pd1833755816.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1156] = new Element(
		1156, "assets/thumb/r8666.jpg",
		137, 145,
		"R8666", "Road Signs Post 60s (pk 12)",
		"R8666 Road Signs Post 60s (pk 12)  MSRP £7.99", "Hornby",
		"7.5", "0",
		"1", 1,
		"pack", "154",
		"", "pd-1867582485.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1157] = new Element(
		1157, "assets/thumb/r8586.jpg",
		137, 125,
		"R8586", "Platelayers Hut",
		"R8586 Skaledale Series Platelayers Hut MSRP £7.00", "Hornby",
		"6.4", "0",
		"1", 1,
		"item", "154",
		"", "pd-115475690.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1158] = new Element(
		1158, "assets/thumb/stx750thumb.jpg",
		137, 84,
		"STX826001", "Micro Tsunami Light Steam",
		"TSU-750 Light Steam", "Soundtraxx",
		"92", "0",
		"1", 1,
		"decoder", "112",
		"", "pd1204799735.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[1159] = new Element(
		1159, "assets/thumb/tdsmedoval-01-lg-100.jpg",
		137, 137,
		"TT35", "Medium oval speaker 20 x 35mm (0.8&quot; x 1.6&quot;) 8 ohm",
		"", "Tony's Train Exchange",
		"4", "0",
		"1", 1,
		"speaker", "132",
		"", "pd1204834941.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[1160] = new Element(
		1160, "assets/images/nopicturegreen.jpg",
		133, 46,
		"R8264", "14.1mm 2 Hole Coach Wheels (Pk 10)",
		"R8264 14.1mm 2 Hole Coach Wheels (Pk 10)  MSRP £4.80", "Hornby",
		"4.3", "0",
		"1", 1,
		"pack", "152",
		"", "pd328519827.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[1161] = new Element(
		1161, "assets/thumb/r6398.jpg",
		137, 55,
		"R6398", "Car Transporter - 3 mini vans",
		"R6398 Car Transporter (Carflat) - 3 mini vans  MSRP £21.50", "Hornby",
		"17", "0",
		"1", 1,
		"pack", "149",
		"", "pd-1281762853.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[1162] = new Element(
		1162, "assets/thumb/r2691.jpg",
		137, 55,
		"R2691", "SR V Cab West Country &quot;Torrington&quot;",
		"R2691  SR V Cab West Country &quot;Torrington&quot;  DCC Ready  MSRP £111.00", "Hornby",
		"88", "0",
		"1", 1,
		"loco", "150",
		"", "pd1879201527.htm",
		"", 1,
		"HornbyStea", "0",
		 0)
	
		Entry[1163] = new Element(
		1163, "assets/thumb/r2714thumb.jpg",
		137, 55,
		"R2714", "BR Early Standard Class 75000 DCC Ready",
		"R2714 BR Early Standard Class 75000 DCC Ready  MSRP £100.75", "Hornby",
		"88", "0",
		"1", 1,
		"loco", "150",
		"", "pd-2003029333.htm",
		"", 1,
		"HornbyStea", "0",
		 0)
	
		Entry[1164] = new Element(
		1164, "assets/thumb/r2715thumb.jpg",
		137, 55,
		"R2715", "BR Late Standard Class 75000 DCC Ready",
		"R2715 BR Late Standard Class 75000 DCC Ready  MSRP £100.75", "Hornby",
		"88", "0",
		"1", 1,
		"loco", "150",
		"", "pd1758766289.htm",
		"", 1,
		"HornbyStea", "0",
		 0)
	
		Entry[1165] = new Element(
		1165, "assets/thumb/R2715.jpg",
		137, 55,
		"R2716", "BR Late (W) Stand.Class 75000 DCC Ready",
		"R2716 BR Late (W) Stand.Class 75000 DCC Ready MSRP £100.75", "Hornby",
		"88", "0",
		"1", 1,
		"loco", "150",
		"", "pd1956920167.htm",
		"", 1,
		"HornbyStea", "0",
		 0)
	
		Entry[1166] = new Element(
		1166, "assets/thumb/r2724.jpg",
		137, 55,
		"R2724", "BR Early N15 &quot;Sir Mileaus De Lile&quot; DCC Ready",
		"R2724 BR Early N15 &quot;Sir Mileaus De Lile&quot; DCC Ready  MSRP £99.00", "Hornby",
		"81", "0",
		"1", 1,
		"loco", "150",
		"", "pd-1523862497.htm",
		"", 1,
		"HornbyStea", "0",
		 0)
	
		Entry[1167] = new Element(
		1167, "assets/thumb/r2732.jpg",
		137, 55,
		"R2732", "BR Late Stanier 4MT DCC Ready",
		"R2732 BR Late Stanier 4MT DCC Ready  MSRP £79.50", "Hornby",
		"69.5", "0",
		"1", 1,
		"loco", "150",
		"", "pd734745445.htm",
		"", 1,
		"HornbyStea", "0",
		 0)
	
		Entry[1168] = new Element(
		1168, "assets/thumb/r2742thumb.jpg",
		137, 55,
		"R2742", "SR Schools (Maunsell Green) &quot;Charterhouse&quot; DCC Ready",
		"R2742 SR Schools (Maunsell Green) &quot;Charterhouse&quot; DCC Ready  MSRP £108.50", "Hornby",
		"89", "0",
		"1", 1,
		"loco", "150",
		"", "pd-83469285.htm",
		"", 1,
		"HornbyStea", "0",
		 0)
	
		Entry[1169] = new Element(
		1169, "assets/thumb/r2743thumb.jpg",
		137, 55,
		"R2743", "BR Schools (Late) &quot;Brighton&quot; DCC Ready",
		"R2743 BR Schools (Late) &quot;Brighton&quot; DCC Ready MSRP £108.25", "Hornby",
		"89", "0",
		"1", 1,
		"loco", "150",
		"", "pd-990729279.htm",
		"", 1,
		"HornbyStea", "0",
		 0)
	
		Entry[1170] = new Element(
		1170, "assets/thumb/r2744xthumb.jpg",
		137, 55,
		"R2744X", "BR Schools (BR Black) &quot;Blundells&quot; DCC Fitted",
		"R2744X BR Schools (BR Black) &quot;Blundells&quot; DCC Fitted  MSRP £124.49", "Hornby",
		"101", "0",
		"1", 1,
		"loco", "150",
		"", "pd-522232873.htm",
		"", 1,
		"HornbyStea", "0",
		 0)
	
		Entry[1171] = new Element(
		1171, "assets/thumb/r2746.jpg",
		137, 55,
		"R2746", "Class 60 EWS No.60029 &quot;Clitheroe Castle&quot;",
		"R2746 EWS Class 60 No.60029 &quot;Clitheroe Castle&quot;  DCC Ready MSRP £100.75", "Hornby",
		"89", "0",
		"1", 1,
		"loco", "151",
		"", "pd-144236067.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[1172] = new Element(
		1172, "assets/thumb/r2747.jpg",
		137, 55,
		"R2747", "Class 60 BR Sub-Sector No.60062",
		"R2747 BR Sub-Sector Class 60 No.60062 DCC Ready  MSRP £100.75", "Hornby",
		"89", "0",
		"1", 1,
		"loco", "151",
		"", "pd1783213907.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[1173] = new Element(
		1173, "assets/thumb/r2760thumb.jpg",
		137, 55,
		"R2760", "Class 20 BR Large Arrow 20227",
		"R2760 BR Class 20 Large Arrow 20227 DCC Ready  MSRP £61.00", "Hornby",
		"54", "0",
		"1", 1,
		"loco", "151",
		"", "pd-1690238581.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[1174] = new Element(
		1174, "assets/thumb/r2792thumb.jpg",
		137, 55,
		"R2792", "Class 153 East Midlands Trains ",
		"R2792 East Midlands Trains Class 153  DCC Ready MSRP £68.50", "Hornby",
		"59", "0",
		"1", 1,
		"loco", "151",
		"", "pd-1060456377.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[1175] = new Element(
		1175, "assets/thumb/r2793.jpg",
		137, 55,
		"R2793", "Class 50 NSE &quot;Dauntless&quot;",
		"R2793 NSE Class 50 &quot;Dauntless&quot;  DCC Ready  MSRP £100.75", "Hornby",
		"89", "0",
		"1", 1,
		"loco", "151",
		"", "pd-1437232179.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[1176] = new Element(
		1176, "assets/thumb/r4294.jpg",
		137, 55,
		"R4294A", "BR InterCity Mk3 (Exec) Open First",
		"R4294A BR InterCity Mk3 (Exec) Open First  MSRP £24.75", "Hornby",
		"21.5", "0",
		"1", 1,
		"carriage", "148",
		"", "pd951911081.htm",
		"", 1,
		"HornbyCarr", "0",
		 0)
	
		Entry[1177] = new Element(
		1177, "assets/thumb/r4296.jpg",
		137, 55,
		"R4296A", "BR InterCity Mk3 (Exec) Buffet Car",
		"R4296A BR InterCity Mk3 (Exec) Buffet Car  MSRP £24.75", "Hornby",
		"21.5", "0",
		"1", 1,
		"carriage", "148",
		"", "pd-2032928955.htm",
		"", 1,
		"HornbyCarr", "0",
		 0)
	
		Entry[1178] = new Element(
		1178, "assets/thumb/r4302d.jpg",
		137, 55,
		"R4302C", "BR Maunsell Corridor 3rd Class No.S118",
		"R4302C BR Maunsell Corridor 3rd Class No.S118 MSRP £26.50", "Hornby",
		"22", "0",
		"1", 1,
		"carriage", "148",
		"", "pd1622352635.htm",
		"", 1,
		"HornbyCarr", "0",
		 0)
	
		Entry[1179] = new Element(
		1179, "assets/thumb/r4302d.jpg",
		137, 55,
		"R4302D", "BR Maunsell Corridor 3rd Class No.S112",
		"R4302D BR Maunsell Corridor 3rd Class No.S112  MSRP £26.50", "Hornby",
		"22", "0",
		"1", 1,
		"carriage", "148",
		"", "pd1091325345.htm",
		"", 1,
		"HornbyCarr", "0",
		 0)
	
		Entry[1180] = new Element(
		1180, "assets/thumb/r4303d.jpg",
		137, 55,
		"R4303C", "BR Maunsell Corridor 1st Class No.S740",
		"R4303C BR Maunsell Corridor 1st Class No.S740  MSRP £26.99", "Hornby",
		"22", "0",
		"1", 1,
		"carriage", "148",
		"", "pd-2009247561.htm",
		"", 1,
		"HornbyCarr", "0",
		 0)
	
		Entry[1181] = new Element(
		1181, "assets/thumb/r4303d.jpg",
		137, 55,
		"R4303D", "BR Maunsell Corridor 1st Class No.S741",
		"R4303D BR Maunsell Corridor 1st Class No.S741  MSRP £26.99", "Hornby",
		"22", "0",
		"1", 1,
		"carriage", "148",
		"", "pd831365565.htm",
		"", 1,
		"HornbyCarr", "0",
		 0)
	
		Entry[1182] = new Element(
		1182, "assets/thumb/r4304d.jpg",
		137, 55,
		"R4304C", "BR Maunsell Composite No.1",
		"R4304C BR Maunsell Composite No.1  MSRP £26.50", "Hornby",
		"22", "0",
		"1", 1,
		"carriage", "148",
		"", "pd204976691.htm",
		"", 1,
		"HornbyCarr", "0",
		 0)
	
		Entry[1183] = new Element(
		1183, "assets/thumb/r4304d.jpg",
		137, 55,
		"R4304D", "BR Maunsell Composite No.2",
		"R4304D BR Maunsell Composite No.2  MSRP £26.50", "Hornby",
		"22", "0",
		"1", 1,
		"carriage", "148",
		"", "pd1964068761.htm",
		"", 1,
		"HornbyCarr", "0",
		 0)
	
		Entry[1184] = new Element(
		1184, "assets/images/nopicturegreen.jpg",
		133, 46,
		"R4320B", "BR Maunsell Brake",
		"R4320B BR Maunsell Brake  MSRP £26.50", "Hornby",
		"23", "0",
		"1", 1,
		"carriage", "148",
		"", "pd179449251.htm",
		"", 1,
		"HornbyCarr", "0",
		 0)
	
		Entry[1185] = new Element(
		1185, "assets/thumb/r562.jpg",
		137, 55,
		"R562", "Town People",
		"R562 Town People  MSRP £4.75", "Hornby",
		"4.5", "0",
		"1", 1,
		"pack", "152",
		"", "pd687662159.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[1186] = new Element(
		1186, "assets/thumb/r8754.jpg",
		137, 55,
		"R8754", "Toll House",
		"R8754 Toll House  MSRP £16.00", "Hornby",
		"13.5", "0",
		"1", 1,
		"model", "154",
		"", "pd1678078861.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1187] = new Element(
		1187, "assets/thumb/r8755.jpg",
		137, 55,
		"R8755", "Large Big Bin",
		"R8755 Large Big Bin  MSRP £4.50", "Hornby",
		"3.5", "0",
		"1", 1,
		"pack", "154",
		"", "pd-1131341693.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1188] = new Element(
		1188, "assets/thumb/r8757.jpg",
		137, 55,
		"R8757", "Container/Builders Office",
		"R8757 Container/Builders Office  MSRP £5.00", "Hornby",
		"4.25", "0",
		"1", 1,
		"model", "154",
		"", "pd277475007.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1189] = new Element(
		1189, "assets/thumb/r8758.jpg",
		137, 55,
		"R8758", "St.Mary&rsquo;s Chapel",
		"R8758 St.Mary&rsquo;s Chapel  MSRP £12.00", "Hornby",
		"10.5", "0",
		"1", 1,
		"model", "154",
		"", "pd-485847291.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1190] = new Element(
		1190, "assets/thumb/r8761.jpg",
		137, 55,
		"R8761", "Modern Telephone Box",
		"R8761 Modern Telephone Box  MSRP £2.75", "Hornby",
		"2.5", "0",
		"1", 1,
		"item", "154",
		"", "pd-1175289669.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1191] = new Element(
		1191, "assets/thumb/r8763.jpg",
		137, 55,
		"R8763", "Letter Box x 2",
		"R8763 Letter Box x 2  MSRP £2.75", "Hornby",
		"2.25", "0",
		"1", 1,
		"pack", "154",
		"", "pd1834748535.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1192] = new Element(
		1192, "assets/thumb/r8765.jpg",
		137, 55,
		"R8765", "Car Sales Portacabin",
		"R8765 Car Sales Portacabin MSRP £5.25", "Hornby",
		"4.5", "0",
		"1", 1,
		"item", "154",
		"", "pd1489209331.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1193] = new Element(
		1193, "assets/thumb/r8781.jpg",
		137, 55,
		"R8781", "Public Drinking Fountain",
		"R8781 Public Drinking Fountain  MSRP £10.00", "Hornby",
		"8.5", "0",
		"1", 1,
		"model", "154",
		"", "pd-1418757387.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1194] = new Element(
		1194, "assets/thumb/r8790.jpg",
		137, 55,
		"R8790", "Cattle Pen",
		"R8790 Cattle Pen  MSRP £8.25", "Hornby",
		"6.5", "0",
		"1", 1,
		"model", "154",
		"", "pd121583519.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1195] = new Element(
		1195, "assets/images/nopicturegreen.jpg",
		133, 46,
		"R8799", "Farm Animals",
		"R8799 Farm Animals  MSRP £6.00", "Hornby",
		"5", "0",
		"1", 1,
		"pack", "154",
		"", "pd-686459377.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1196] = new Element(
		1196, "assets/images/nopicturegreen.jpg",
		133, 46,
		"R8801", "Civilians",
		"R8801 Civilians  MSRP £6.00", "Hornby",
		"5", "0",
		"1", 1,
		"pack", "154",
		"", "pd-1857771819.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1197] = new Element(
		1197, "assets/thumb/cmx_n.jpg",
		137, 78,
		"CMX-N", "CMX-N Track Cleaning Wagon",
		"", "Tony's Train Exchange",
		"87", "0",
		"1", 1,
		"wagon", "43",
		"", "pd1203172713.htm",
		"", 1,
		"CMX", "0",
		 0)
	
		Entry[1198] = new Element(
		1198, "assets/images/nopicturegreen.jpg",
		133, 46,
		"CMX-NP", "Cleaning Pads for CMX-N Track Cleaning Wagon",
		"", "Tony's Train Exchange",
		"2.5", "0",
		"1", 1,
		"pack", "43",
		"", "pd1257659839.htm",
		"", 1,
		"CMX", "0",
		 0)
	
		Entry[1199] = new Element(
		1199, "assets/thumb/tds-spkez-ovl-100.gif",
		100, 100,
		"TTE14", "Enclosure for mini oval speaker 14 x 25mm (0.56&quot; x 1.0&quot;&quot;)",
		"Enclosure for mini oval 8 ohm speaker 14 x 25mm (0.56&quot; x 1.0&quot;&quot;)", "Tony's Train Exchange",
		"6", "0",
		"1", 1,
		"item", "132",
		"", "pd-928722701.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[1200] = new Element(
		1200, "assets/thumb/tdsmini-oval-04-lg-100.jpg",
		137, 137,
		"TT14", "Mini oval speaker 14 x 25mm (0.56&quot; x 1.0&quot;&quot;) 8 ohm",
		"", "Tony's Train Exchange",
		"5", "0",
		"1", 1,
		"speaker", "132",
		"", "pd-442069927.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[1201] = new Element(
		1201, "assets/thumb/tds-spkez-ovl-100.gif",
		100, 100,
		"TTE35", "Enclosure for medium oval speaker 20 x 40mm (0.8&quot; x 1.6&quot;)",
		"Enclosure for medium oval 8 ohm speaker 20 x 40mm (0.8&quot; x 1.6&quot;)", "Tony's Train Exchange",
		"5", "0",
		"1", 1,
		"item", "132",
		"", "pd-1315074513.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[1202] = new Element(
		1202, "assets/thumb/hj1502.jpg",
		137, 39,
		"HJ1502", "Class 15 D8229 in BR green livery with full yellow ends Cat. No. 1502",
		"Class 15 D8229 in BR green livery with full yellow ends  DCC ready MSRP £89.00", "Heljan",
		"88", "0",
		"1", 1,
		"loco", "143",
		"", "pd-684320750.htm",
		"", 1,
		"HJLOCOS", "0",
		 0)
	
		Entry[1203] = new Element(
		1203, "assets/thumb/cp6.jpg",
		137, 101,
		"N-CP6", "CP6 Circuit Protector",
		"Six zone DCC circuit protector", "NCE",
		"24", "0",
		"1", 1,
		"item", "105",
		"", "pd1207212639.htm",
		"", 1,
		"SigDec", "0",
		 0)
	
		Entry[1204] = new Element(
		1204, "assets/thumb/dp2x-uk.jpg",
		137, 208,
		"DP2X-UK", "DP2X-UK - 2 function decoder",
		"DP2X-UK - HO/OO Scale Plug and Play 1 amp 2 function decoder", "TCS",
		"19.5", "0",
		"1", 1,
		"decoder", "116",
		"", "pd-1422004026.htm",
		"", 1,
		"TCSDCC", "0",
		 0)
	
		Entry[1205] = new Element(
		1205, "assets/thumb/r8544thumb.jpg",
		137, 103,
		"R8544", "Stone Portals Side Walls",
		"R8544 Skaledale Stone Portals Side Walls  MSRP £4.20", "Hornby",
		"3.6", "0",
		"1", 1,
		"pack", "154",
		"", "pd1877680924.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1206] = new Element(
		1206, "assets/thumb/r8552.jpg",
		137, 107,
		"R8552", "Wooden Garage",
		"R8552 Wooden Garage  MSRP £5.00", "Hornby",
		"4.5", "0",
		"1", 1,
		"model", "154",
		"", "pd780843257.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1207] = new Element(
		1207, "assets/thumb/r8577thumb.jpg",
		137, 66,
		"R8577", "Wheel Bins x 4",
		"R8577 Skaledale Wheel Bins Pack of 4  MSRP £5.00", "Hornby",
		"4.5", "0",
		"1", 1,
		"pack", "154",
		"", "pd1545161239.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1208] = new Element(
		1208, "assets/thumb/r8578thumb.jpg",
		137, 98,
		"R8578", "Recycling Bins x 4",
		"R8578 Skaledale Recycling Bins Pack of 4  MSRP £4.25", "Hornby",
		"3.75", "0",
		"1", 1,
		"item", "154",
		"", "pd845396509.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1209] = new Element(
		1209, "assets/thumb/r8584thumb.jpg",
		137, 61,
		"R8584", "Platform No.4 - Loading Bay Pack",
		"R8584 Skaledale Platform No.4 - Loading Bay Pack  MSRP £6.50", "Hornby",
		"6", "0",
		"1", 1,
		"pack", "154",
		"", "pd2138991958.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1210] = new Element(
		1210, "assets/thumb/r8588.jpg",
		137, 118,
		"R8588", "Weighbridge Office",
		"R8588 Skaledale Weighbridge Office  MSRP £7.50", "Hornby",
		"7", "0",
		"1", 1,
		"item", "154",
		"", "pd657656015.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1211] = new Element(
		1211, "assets/thumb/r8591.jpg",
		137, 78,
		"R8591", "AWS Boxes",
		"R8591 Skaledale AWS Boxes (2 pairs) MSRP £2.75", "Hornby",
		"2.5", "0",
		"1", 1,
		"pack", "154",
		"", "pd1192599630.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1212] = new Element(
		1212, "assets/thumb/r8592.jpg",
		137, 111,
		"R8592", "Coal No.1 - 4 Plank Wagon ( x 4 pieces)",
		"R8592 Coal No.1 - load for 4 Plank Wagon ( x 4 pieces) MSRP £5.49", "Hornby",
		"4.5", "0",
		"1", 1,
		"pack", "154",
		"", "pd-395512020.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1213] = new Element(
		1213, "assets/thumb/r8593.jpg",
		137, 112,
		"R8593", "Coal No.2 - 5 Plank Wagon ( x 4 pieces)",
		"R8593 Coal No.2 - load for 5 Plank Wagon ( x 4 pieces)", "Hornby",
		"4.5", "0",
		"1", 1,
		"pack", "154",
		"", "pd-376839878.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1214] = new Element(
		1214, "assets/thumb/r8594.jpg",
		137, 84,
		"R8594", "Coal No.3 - 6 Plank Wagon ( x 4 pieces)",
		"R8594 Coal No.3 - load for 6 Plank Wagon ( x 4 pieces) MSRP £5.49", "Hornby",
		"4.5", "0",
		"1", 1,
		"pack", "154",
		"", "pd-2000858632.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1215] = new Element(
		1215, "assets/thumb/r8595.jpg",
		137, 122,
		"R8595", "Iron Ore - Iron Ore Wagon ( x 4 pieces)",
		"R8595 Iron Ore - Iron Ore Wagon load ( x4 pieces)", "Hornby",
		"4.5", "0",
		"1", 1,
		"pack", "154",
		"", "pd463431910.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1216] = new Element(
		1216, "assets/thumb/r8596.jpg",
		137, 99,
		"R8596", "Timber x 4",
		"R8596 Skaledale timber loads Pack of 4", "Hornby",
		"4.5", "0",
		"1", 1,
		"item", "154",
		"", "pd865292676.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1217] = new Element(
		1217, "assets/thumb/r8597.jpg",
		137, 103,
		"R8597", "Crates x 5",
		"R8597 Skaledale wooden crate loads assorted sizes Pack of 5  MSRP £4.65", "Hornby",
		"4.3", "0",
		"1", 1,
		"pack", "154",
		"", "pd1157111535.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1218] = new Element(
		1218, "assets/thumb/R8599thumb.jpg",
		137, 74,
		"R8599", "Irregular Tarpaulined Shapes",
		"R8599 Skaledale Irregular Tarpaulined Shapes  MSRP £4.65", "Hornby",
		"4.4", "0",
		"1", 1,
		"pack", "154",
		"", "pd502461169.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1219] = new Element(
		1219, "assets/thumb/r8601.jpg",
		137, 64,
		"R8601", "Cable Drums",
		"R8601 Skaledale Cable Drums  MSRP £4.25", "Hornby",
		"3.9", "0",
		"1", 1,
		"pack", "154",
		"", "pd1325644813.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1220] = new Element(
		1220, "assets/thumb/r8603.jpg",
		137, 73,
		"R8603", "Coal Staithes",
		"R8603 Skaledale Coal Staithes MSRP £6.35", "Hornby",
		"5.5", "0",
		"1", 1,
		"item", "154",
		"", "pd-1050953598.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1221] = new Element(
		1221, "assets/thumb/r8604thumb.jpg",
		137, 70,
		"R8604", "Platform No.5 - Platform Steps Pack",
		"R8604 Skaledale Platform No.5 - Platform Steps Pack  MSRP £8.50", "Hornby",
		"7.5", "0",
		"1", 1,
		"pack", "154",
		"", "pd759016308.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1222] = new Element(
		1222, "assets/thumb/r8642.jpg",
		137, 55,
		"R8642", "Curved Platform 1st Rad.",
		"R8642 Curved Platform 1st Rad.", "Hornby",
		"7", "0",
		"1", 1,
		"pack", "154",
		"", "pd-850912889.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1223] = new Element(
		1223, "assets/thumb/r8667.jpg",
		137, 55,
		"R8667", "Traffic Lights Pre 60s (pk 4)",
		"R8667 Traffic Lights Pre 60s (pk 4)  MSRP £6.20", "Hornby",
		"5.6", "0",
		"1", 1,
		"pack", "154",
		"", "pd-1270724591.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1224] = new Element(
		1224, "assets/thumb/r8668.jpg",
		137, 55,
		"R8668", "Traffic Lights Post 60s (pk 4)",
		"R8668 Traffic Lights Post 60s (pk 4)  MSRP £4.99", "Hornby",
		"4.5", "0",
		"1", 1,
		"pack", "154",
		"", "pd204443815.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1225] = new Element(
		1225, "assets/thumb/r8672.jpg",
		137, 141,
		"R8672", "Street Lights Post 60s (pk 4)",
		"R8672 Street Lights Post 60s (pk 4)  msrp £4.65", "Hornby",
		"4.5", "0",
		"1", 1,
		"pack", "154",
		"", "pd-1266825207.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1226] = new Element(
		1226, "assets/thumb/r8675.jpg",
		137, 106,
		"R8675", "Modern Line Side Building &amp; Aws Box Set",
		"R8675 Modern Line Side Building &amp; Aws Box Set  MSRP £9.75", "Hornby",
		"9.5", "0",
		"1", 1,
		"model", "154",
		"", "pd1081273691.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1227] = new Element(
		1227, "assets/thumb/r8686.jpg",
		91, 80,
		"R8686", "Builders Yard Accessories",
		"R8686 Builders Yard Accessories  ", "Hornby",
		"6.8", "0",
		"1", 1,
		"pack", "154",
		"", "pd-938804759.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1228] = new Element(
		1228, "assets/thumb/R8689.jpg",
		137, 59,
		"R8689", "Bay Terrace Garden Walls",
		"R8689  Bay Terrace Garden Walls  MSRP £6.00", "Hornby",
		"5.25", "0",
		"1", 1,
		"model", "154",
		"", "pd499122235.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1229] = new Element(
		1229, "assets/thumb/R8690.jpg",
		137, 59,
		"R8690", "Bay Terrace Garden Walls - T Sections",
		"R8690 Bay Terrace Garden Walls - T Sections  MSRP £6.50", "Hornby",
		"6", "0",
		"1", 1,
		"model", "154",
		"", "pd-1158583071.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1230] = new Element(
		1230, "assets/thumb/r8691.jpg",
		137, 112,
		"R8691", "Rear Extension Building",
		"R8691 Rear Extension Building  MSRP £7.00", "Hornby",
		"6", "0",
		"1", 1,
		"model", "154",
		"", "pd-1921220105.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1231] = new Element(
		1231, "assets/thumb/r8692.jpg",
		137, 126,
		"R8692", "Courtyard Building - &quot;Craft Corner&quot;",
		"R8692 Courtyard Building - &quot;Craft Corner&quot;  MSRP £7.00", "Hornby",
		"6", "0",
		"1", 1,
		"model", "154",
		"", "pd297612541.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1232] = new Element(
		1232, "assets/thumb/r8711.jpg",
		137, 220,
		"R8711", "Cement Hopper",
		"R8711 Cement Hopper  MSRP £21.00", "Hornby",
		"18", "0",
		"1", 1,
		"model", "154",
		"", "pd-1305766299.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1233] = new Element(
		1233, "assets/thumb/r8712.jpg",
		137, 65,
		"R8712", "Coal Hopper",
		"R8712  Coal Hopper  MSRP £16.75", "Hornby",
		"14.25", "0",
		"1", 1,
		"model", "154",
		"", "pd808731.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1234] = new Element(
		1234, "assets/thumb/R8716.jpg",
		137, 162,
		"R8716", "Country Station - Main Building",
		"R8716 Country Station - Main Building  MSRP 16.50", "Hornby",
		"13.5", "0",
		"1", 1,
		"model", "154",
		"", "pd688833757.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1235] = new Element(
		1235, "assets/thumb/r8717.jpg",
		137, 55,
		"R8717", "Country Station - Office Building (Waiting Rooms)",
		"R8717  Country Station - Office Building (Waiting Rooms)  MSRP £13.00", "Hornby",
		"11", "0",
		"1", 1,
		"model", "154",
		"", "pd493226579.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1236] = new Element(
		1236, "assets/thumb/r8718.jpg",
		74, 44,
		"R8718", "Small Wood Shelter",
		"R8718  Small Wood Shelter  MSRP £7.25", "Hornby",
		"6.25", "0",
		"1", 1,
		"model", "154",
		"", "pd2128864441.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1237] = new Element(
		1237, "assets/thumb/r8720.jpg",
		137, 55,
		"R8720", "Station Office - Wood",
		"R8720 Station Office - Wood  MSRP £14.50", "Hornby",
		"12.3", "0",
		"1", 1,
		"model", "154",
		"", "pd-1288857003.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1238] = new Element(
		1238, "assets/thumb/r8723.jpg",
		86, 65,
		"R8723", "Embankment Steps",
		"R8723 Embankment Steps  MSRP £7.50", "Hornby",
		"6.4", "0",
		"1", 1,
		"model", "154",
		"", "pd21938609.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1239] = new Element(
		1239, "assets/thumb/r8509thumb.jpg",
		137, 92,
		"R8509", "Single Stone Tunnel Portal x 2",
		"R8509 Skaledale Single Stone Tunnel Portal x 2", "Hornby",
		"4.75", "0",
		"1", 1,
		"pack", "154",
		"", "pd954085904.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1240] = new Element(
		1240, "assets/images/nopicturegreen.jpg",
		133, 46,
		"R8510", "Single Brick Tunnel Portal x 2",
		"R8510 Single Brick Tunnel Portal x 2", "Hornby",
		"4.75", "0",
		"1", 1,
		"pack", "154",
		"", "pd1663084222.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1241] = new Element(
		1241, "assets/thumb/r8538.jpg",
		137, 87,
		"R8538", "Granite Wall Pack No.3",
		"R8538 Skaledale Granite Wall Pack No.1 MSRP £5.25", "Hornby",
		"5", "0",
		"1", 1,
		"item", "154",
		"", "pd1714234971.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1242] = new Element(
		1242, "assets/thumb/r8947.jpg",
		137, 119,
		"R8947", "Power Strip",
		"R8947 Power Strip  MSRP £6.50", "Hornby",
		"5.8", "0",
		"1", 1,
		"item", "156",
		"", "pd-1639901959.htm",
		"", 1,
		"SKALELIGHT", "0",
		 0)
	
		Entry[1243] = new Element(
		1243, "assets/thumb/r8948.jpg",
		137, 181,
		"R8948", "Small Plugs (Pk 6)",
		"R8948 Small Plugs (Pk 6)  MSRP £2.40", "Hornby",
		"1.5", "0",
		"1", 1,
		"pack", "156",
		"", "pd-2048276529.htm",
		"", 1,
		"SKALELIGHT", "0",
		 0)
	
		Entry[1244] = new Element(
		1244, "assets/thumb/r8949.jpg",
		137, 117,
		"R8949", "Double Socket",
		"R8949 Double Socket  MSRP £3.00", "Hornby",
		"2", "0",
		"1", 1,
		"pack", "156",
		"", "pd1073761941.htm",
		"", 1,
		"SKALELIGHT", "0",
		 0)
	
		Entry[1245] = new Element(
		1245, "assets/thumb/r8950.jpg",
		137, 51,
		"R8950", "Fuses (Pk 4)",
		"R8950 Fuses (Pk 4)  MSRP £1.75", "Hornby",
		"1.25", "0",
		"1", 1,
		"pack", "156",
		"", "pd-1145402677.htm",
		"", 1,
		"SKALELIGHT", "0",
		 0)
	
		Entry[1246] = new Element(
		1246, "assets/thumb/r8951.jpg",
		137, 94,
		"R8951", "Wire",
		"R8951 Wire  MSRP £4.75", "Hornby",
		"3.25", "0",
		"1", 1,
		"pack", "156",
		"", "pd639056369.htm",
		"", 1,
		"SKALELIGHT", "0",
		 0)
	
		Entry[1247] = new Element(
		1247, "assets/thumb/r8952.jpg",
		137, 71,
		"R8952", "Bulbs (Pk 4)",
		"R8952 Bulbs (Pk 4)  MSRP £4.75", "Hornby",
		"4.25", "0",
		"1", 1,
		"pack", "156",
		"", "pd-1292282489.htm",
		"", 1,
		"SKALELIGHT", "0",
		 0)
	
		Entry[1248] = new Element(
		1248, "assets/thumb/r7001.jpg",
		137, 85,
		"R7001", "Royal Mail Morris Minor Van",
		"R7001Royal Mail Morris Minor Van  msrp £3.00", "Hornby",
		"2.75", "0",
		"1", 1,
		"model", "155",
		"", "pd1658033713.htm",
		"", 1,
		"SKALAUT", "0",
		 0)
	
		Entry[1249] = new Element(
		1249, "assets/thumb/r7002.jpg",
		137, 79,
		"R7002", "British Railways Morris Minor van",
		"R7002 British Railways Morris Minor van  MSRP £3.00", "Hornby",
		"2.75", "0",
		"1", 1,
		"model", "155",
		"", "pd-1925837881.htm",
		"", 1,
		"SKALAUT", "0",
		 0)
	
		Entry[1250] = new Element(
		1250, "assets/thumb/r7004.jpg",
		137, 83,
		"R7004", "Television Rentals Ltd.Morris Van W/Ladder",
		"R7004 Television Rentals Ltd.Morris Van W/Ladder  MSRP £3.00", "Hornby",
		"2.75", "0",
		"1", 1,
		"model", "155",
		"", "pd-839205309.htm",
		"", 1,
		"SKALAUT", "0",
		 0)
	
		Entry[1251] = new Element(
		1251, "assets/thumb/r7007.jpg",
		137, 74,
		"R7007", "British Railways Ford Anglia Van",
		"R7007 British Railways Ford Anglia Van  MSRP £3.00", "Hornby",
		"2.75", "0",
		"1", 1,
		"model", "155",
		"", "pd-762124603.htm",
		"", 1,
		"SKALAUT", "0",
		 0)
	
		Entry[1252] = new Element(
		1252, "assets/thumb/r7011.jpg",
		137, 79,
		"R7011", "Mixed Concrete Site Maintenance Min Van",
		"R7011 Mixed Concrete Site Maintenance Min Van  MSRP £3.00", "Hornby",
		"2.75", "0",
		"1", 1,
		"model", "155",
		"", "pd-114294467.htm",
		"", 1,
		"SKALAUT", "0",
		 0)
	
		Entry[1253] = new Element(
		1253, "assets/thumb/r7013.jpg",
		137, 78,
		"R7013", "Television Rentals Ltd.Box Van",
		"R7013 Television Rentals Ltd.Box Van  MSRP £5.95", "Hornby",
		"5.5", "0",
		"1", 1,
		"model", "155",
		"", "pd-1491818727.htm",
		"", 1,
		"SKALAUT", "0",
		 0)
	
		Entry[1254] = new Element(
		1254, "assets/thumb/r7015.jpg",
		137, 78,
		"R7015", "W.Briggs &amp; Son Removals Ltd. Pantechnicon",
		"R7015 W.Briggs &amp; Son Removals Ltd. Pantechnicon  MSRP £5.95", "Hornby",
		"5.5", "0",
		"1", 1,
		"model", "155",
		"", "pd698499765.htm",
		"", 1,
		"SKALAUT", "0",
		 0)
	
		Entry[1255] = new Element(
		1255, "assets/thumb/r7016.jpg",
		137, 86,
		"R7016", "Fine Foods Supermarket - Advertising Lorry",
		"R7016 Fine Foods Supermarket - Advertising Lorry  MSRP £5.95", "Hornby",
		"5.5", "0",
		"1", 1,
		"model", "155",
		"", "pd-98952213.htm",
		"", 1,
		"SKALAUT", "0",
		 0)
	
		Entry[1256] = new Element(
		1256, "assets/thumb/r7025.jpg",
		137, 60,
		"R7025", "Humber Super Snipe Estate-Skalais Estate",
		"R7025 Humber Super Snipe Estate-Skalais Estate  MSRP £3.00", "Hornby",
		"2.75", "0",
		"1", 1,
		"model", "155",
		"", "pd-403343069.htm",
		"", 1,
		"SKALAUT", "0",
		 0)
	
		Entry[1257] = new Element(
		1257, "assets/thumb/r7027.jpg",
		137, 71,
		"R7027", "Ford Anglia 105E - Saloon Pale Yellow",
		"R7027 Ford Anglia 105E - Saloon Pale Yellow  MSRP £3.00", "Hornby",
		"2.75", "0",
		"1", 1,
		"model", "155",
		"", "pd-1326305271.htm",
		"", 1,
		"SKALAUT", "0",
		 0)
	
		Entry[1258] = new Element(
		1258, "assets/thumb/blma4100thumb.jpg",
		62, 120,
		"BLMA4100", "Cell Phone Antenna Tower Kit",
		"", "BLMA",
		"13", "0",
		"1", 1,
		"item", "36",
		"", "pd751818090.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[1259] = new Element(
		1259, "assets/thumb/blma4105a.jpg",
		137, 99,
		"BLMA4105", "Concrete Grade Crossing",
		"", "BLMA",
		"5", "0",
		"1", 1,
		"item", "36",
		"", "pd-1727669623.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[1260] = new Element(
		1260, "assets/thumb/blma4106a.jpg",
		137, 118,
		"BLMA4106", "Modern Rubber Grade Crossing",
		"", "BLMA",
		"6.5", "0",
		"1", 1,
		"item", "36",
		"", "pd1936738271.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[1261] = new Element(
		1261, "assets/thumb/blma4210b.jpg",
		137, 81,
		"BLMA4210", "Chain Link Fence - 6&rsquo; Tall (110 Scale Feet)",
		"", "BLMA",
		"13", "0",
		"1", 1,
		"kit", "36",
		"", "pd60402651.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[1262] = new Element(
		1262, "assets/thumb/efe20637thumb.jpg",
		137, 56,
		"20637", "Plaxton Pointer Dart  Cat. No. 20637",
		"West Coast Motors", "EFE",
		"18.5", "0",
		"1", 1,
		"model", "18",
		"", "pd1205931431.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1263] = new Element(
		1263, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM82869", "Pennsylvania GG-1",
		"", "ESU",
		"99", "0",
		"0", 1,
		"decoder", "92",
		"", "pd-1286238770.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1264] = new Element(
		1264, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM82864", "2-8-8-2",
		"", "ESU",
		"99", "0",
		"0", 1,
		"decoder", "92",
		"", "pd-1195325792.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1265] = new Element(
		1265, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM82863", "4-6-6-4 Challenger",
		"", "ESU",
		"99", "0",
		"0", 1,
		"decoder", "92",
		"", "pd-140177502.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1266] = new Element(
		1266, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM82862", "2-6-6-2 Articulated",
		"", "ESU",
		"99", "0",
		"0", 1,
		"decoder", "92",
		"", "pd-1360610988.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1267] = new Element(
		1267, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM82859", "4-8-4 Class J",
		"", "ESU",
		"99", "0",
		"0", 1,
		"decoder", "92",
		"", "pd-1086865354.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1268] = new Element(
		1268, "assets/thumb/LokSoundmicro_PCB.jpg",
		137, 55,
		"LM82857", "0-6-0",
		"", "ESU",
		"99", "0",
		"0", 1,
		"decoder", "92",
		"", "pd-168104760.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1269] = new Element(
		1269, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM82856", "2-6-2 Tank",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd112849802.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1270] = new Element(
		1270, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM82855", "Mikado",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-508128004.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1271] = new Element(
		1271, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM82854", "Big Boy",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd887012766.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1272] = new Element(
		1272, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM82853", "Climax",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-1792301584.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1273] = new Element(
		1273, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM82850", "Shay N",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1093923442.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1274] = new Element(
		1274, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM82820", "EMD JT42CWR (Class66)",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1383650212.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1275] = new Element(
		1275, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM82815", "EMD 20-710GB 20cylinders- turbocharged- dynamic brakes- Leslie 5chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-1179245050.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1276] = new Element(
		1276, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM82814", "EMD 20-710GB 20cylinders- turbocharged- dynamic brakes- Leslie 3chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd993890840.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1277] = new Element(
		1277, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM82813", "EMD 20-710GB 20cylinders- turbocharged- dynamic brakes- nathan 5chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-81482662.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1278] = new Element(
		1278, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM82812", "EMD 20-710GB 20cylinders- turbocharged- dynamic brakes- nathan 3chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-1244785332.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1279] = new Element(
		1279, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM82811", "EMD 16-710GB 16cylinders- turbocharged- dynamic brakes- Leslie 5chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-1340761746.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1280] = new Element(
		1280, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM82810", "EMD 16-710GB 16cylinders- turbocharged- dynamic brakes- Leslie 3chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1797738816.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1281] = new Element(
		1281, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM82809", "EMD 16-710GB 16cylinders- turbocharged- dynamic brakes- nathan 5chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1791607106.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1282] = new Element(
		1282, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM82808", "EMD 16-710GB 16cylinders- turbocharged- dynamic brakes- nathan 3chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-1851590156.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1283] = new Element(
		1283, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM82807", "EMD 16-710GB 16cylinders- turbocharged- dynamic brakes- Leslie 5chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-306137130.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1284] = new Element(
		1284, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM82806", "EMD 16-710GB 16cylinders- turbocharged- dynamic brakes- Leslie 3chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-127171736.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1285] = new Element(
		1285, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM82805", "EMD 16-710GB 16cylinders- turbocharged- dynamic brakes- nathan 5chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1997328682.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1286] = new Element(
		1286, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM82804", "EMD 16-710GB 16cylinders- turbocharged- dynamic brakes- nathan 3chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd128983452.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1287] = new Element(
		1287, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM82803", "EMD 12-710GB 12cylinders- turbocharged- dynamic brakes- Leslie 5chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd577184062.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1288] = new Element(
		1288, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM82802", "EMD 12-710GB 12cylinders- turbocharged- dynamic brakes- Leslie 3chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-1449604976.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1289] = new Element(
		1289, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM82801", "EMD 12-710GB 12cylinders- turbocharged- dynamic brakes- nathan 5chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd906198034.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1290] = new Element(
		1290, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM82800", "EMD 12-710GB 12cylinders- turbocharged- dynamic brakes- nathan 3chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-805688252.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1291] = new Element(
		1291, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72895", "ALCO 539 6cylinders- 2chime airhorn- not turbocharged",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd180994232.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1292] = new Element(
		1292, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72894", "ALCO 539 6cylinders- 1chime airhorn- not turbocharged",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd460284410.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1293] = new Element(
		1293, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72893", "EMD 20-645E 20cylinders- turbocharged- dynamic brakes- Leslie 5chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-299600474.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1294] = new Element(
		1294, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72892", "EMD 20-645E 20cylinders- turbocharged- dynamic brakes- Leslie 3chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1666300396.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1295] = new Element(
		1295, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72891", "EMD 20-645E 20cylinders- turbocharged- dynamic brakes- nathan 5chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-1476373234.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1296] = new Element(
		1296, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72890", "EMD 20-645E 20cylinders- turbocharged- dynamic brakes- nathan 3chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1881476064.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1297] = new Element(
		1297, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72889", "EMD 16-645F 16cylinders- turbocharged- dynamic brakes- Leslie 5chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-683793694.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1298] = new Element(
		1298, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72888", "EMD 16-645F 16cylinders- turbocharged- dynamic brakes- Leslie 3chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1439918740.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1299] = new Element(
		1299, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72887", "EMD 16-645F 16cylinders- turbocharged- dynamic brakes- nathan 5chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-730964106.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1300] = new Element(
		1300, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72886", "EMD 16-645F 16cylinders- turbocharged- dynamic brakes- nathan 3chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd677202440.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1301] = new Element(
		1301, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72885", "EMD 16-645E 16cylinders- not turbocharged- dynamic brakes- Leslie 5chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-469147958.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1302] = new Element(
		1302, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72884", "EMD 16-645E 16cylinders- not turbocharged- dynamic brakes- Leslie 3chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-513286596.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1303] = new Element(
		1303, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72883", "EMD 16-645E 16cylinders- not turbocharged- dynamic brakes- nathan 5chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1271805150.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1304] = new Element(
		1304, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72882", "EMD 16-645E 16cylinders- not turbocharged- dynamic brakes- nathan 3chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-550429904.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1305] = new Element(
		1305, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72881", "EMD 12-645E 12cylinders- not turbocharged- dynamic brakes- Leslie 5chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-979978830.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1306] = new Element(
		1306, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72880", "EMD 12-645E 12cylinders-not turbocharged- dynamic brakes- Leslie 3chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-1606175516.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1307] = new Element(
		1307, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72879", "EMD 12-645E 12cylinders- not turbocharged- dynamic brakes- nathan 5chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd283866438.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1308] = new Element(
		1308, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72878", "EMD 12-645E 12cylinders- not turbocharged- dynamic brakes- nathan 3chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd803938136.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1309] = new Element(
		1309, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72877", "EMD 8-645E 8cylinders- not turbocharged- dynamic brakes- Leslie 5chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-145242214.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1310] = new Element(
		1310, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72876", "EMD 8-645E 8cylinders- not turbocharged- dynamic brakes- Leslie 3chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd2003275404.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1311] = new Element(
		1311, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72875", "EMD 8-645E 8cylinders- not turbocharged- dynamic brakes- nathan 5chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-679624530.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1312] = new Element(
		1312, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72874", "EMD 8-645E 8cylinders- not turbocharged- dynamic brakes- nathan 3chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1742861952.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1313] = new Element(
		1313, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72869", "GE 7FDL16- 16cylinders turbocharged- dynamic brakes- Leslie 5chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-1964362622.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1314] = new Element(
		1314, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72868", "GE 7FDL16- 16cylinders turbocharged- dynamic brakes- Leslie 3chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-1323300044.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1315] = new Element(
		1315, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72867", "GE 7FDL16- 16cylinders turbocharged- dynamic brakes- nathan 5chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd984135446.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1316] = new Element(
		1316, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72866", "GE 7FDL16- 16cylinders turbocharged- dynamic brakes- nathan 3chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd2029535400.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1317] = new Element(
		1317, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72865", "GE 7FDL12- 12cylinders turbocharged- dynamic brakes- Leslie 5chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1989647466.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1318] = new Element(
		1318, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72864", "GE 7FDL12- 12cylinders turbocharged- dynamic brakes- Leslie 3chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1199950556.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1319] = new Element(
		1319, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72863", "GE 7FDL12- 12cylinders turbocharged- dynamic brakes- nathan 5chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-1552156546.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1320] = new Element(
		1320, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72862", "GE 7FDL12- 12cylinders turbocharged- dynamic brakes- nathan 3chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd471637456.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1321] = new Element(
		1321, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72861", "Galloping Goose",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-1814716590.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1322] = new Element(
		1322, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72852", "Baldwin 606/606A",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-546102042.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1323] = new Element(
		1323, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72851", "Baldwin 606/606A",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd600419832.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1324] = new Element(
		1324, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72850", "Baldwin VO6",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1304812858.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1325] = new Element(
		1325, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72849", "Baldwin VO6",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-256404692.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1326] = new Element(
		1326, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72848", "GE FDL-12- 12 cylinders- with turbo charger- 2chime airhorn- dynamic brakes",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1593666948.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1327] = new Element(
		1327, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72847", "GE FDL-12- 12 cylinders- with turbo charger- 2chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1727388750.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1328] = new Element(
		1328, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72846", "GE FDL-16- 16 cylinders- with turbo charger- 2chime airhorn- dynamic brakes",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-24768224.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1329] = new Element(
		1329, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72845", "GE FDL-16- 16 cylinders- with turbo charger- 2chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-4852190.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1330] = new Element(
		1330, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72843", "GE Cat. D17000 8cylinder- without turbocharger- 1chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-1523524652.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1331] = new Element(
		1331, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72842", "EMD 645 20cylinder- with turbo charger- dynamic brakes and 3chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1406647990.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1332] = new Element(
		1332, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72841", "EMD 645 16cylinder- with turbo charger- dynamic brakes and 3chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1768187720.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1333] = new Element(
		1333, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72840", "EMD 645 12cylinder- with turbo charger- dynamic brakes and 3chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd60787210.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1334] = new Element(
		1334, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72839", "EMD 567 12cylinder with turbo Charger- 3Chime airhorn- dynamic brakes",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-558766212.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1335] = new Element(
		1335, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72838", "EMD 567 12cylinder without turbo Charger- 2Chime airhorn (dynamic brakes)",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd131623966.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1336] = new Element(
		1336, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72837", "EMD 567 12cylinder without turbo Charger- 1Chime airhorn (dynamic brakes)",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1384337520.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1337] = new Element(
		1337, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72836", "EMD 567 16cylinder with turbo Charger- 5Chime airhorn- dynamic brakes",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1890072818.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1338] = new Element(
		1338, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72835", "EMD 567 16cylinder with turbo Charger- 5Chime airhorn-",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-204515804.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1339] = new Element(
		1339, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72834", "EMD 567 16cylinder with turbo Charger- 3Chime airhorn- dynamic brakes",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-2094824314.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1340] = new Element(
		1340, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72833", "EMD 567 16cylinder with turbo Charger- 3Chime airhorn-",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-343053160.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1341] = new Element(
		1341, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72832", "EMD 567 16cylinder without turbo Charger- 3Chime airhorn- dynamic brakes",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-1985895718.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1342] = new Element(
		1342, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72831", "EMD 567 16cylinder without turbo Charger- 3Chime airhorn-",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-1712732212.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1343] = new Element(
		1343, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72830", "EMD 567 16cylinder without turbo Charger- 2Chime airhorn- dynamic brakes",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1792059374.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1344] = new Element(
		1344, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72829", "EMD 567 16cylinder without turbo Charger- 2Chime airhorn-",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-331785280.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1345] = new Element(
		1345, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72828", "EMD 567 16cylinder without turbo Charger- 1Chime airhorn- dynamic brakes",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-611751998.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1346] = new Element(
		1346, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72827", "EMD 567 16cylinder without turbo Charger- 1Chime airhorn-",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd2142100596.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1347] = new Element(
		1347, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72822", "ALCO motor 251 6cylinder no turbo charger 3chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1010081964.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1348] = new Element(
		1348, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72820", "ALCO motor 251 12cylinder turbocharged- dynamic brakes with 5chime airhorn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-1084000682.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1349] = new Element(
		1349, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72819", "ALCO motor 251 12cylinder turbocharged- dynamic brakes with 3chime airhorn",
		"", "ESU",
		"99", "0",
		"0", 1,
		"", "92",
		"", "pd80330216.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1350] = new Element(
		1350, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72818", "ALCO motor 251 12cylinder turbocharged- dynamic brakes with Leslie A-200",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd201926570.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1351] = new Element(
		1351, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72817", "ALCO motor 251 12cylinder turbocharged- dynamic brakes with WABCO E-2",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd395588636.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1352] = new Element(
		1352, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72816", "ALCO motor 251 12cylinder turbocharged- dynamic brakes with WABCO A-2",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1129025470.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1353] = new Element(
		1353, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72815", "ALCO motor 244 16cylinder turbocharged with Nathan M5",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-2138230000.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1354] = new Element(
		1354, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72814", "ALCO motor 244 16cylinder turbocharged with Nathan M3",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1475773074.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1355] = new Element(
		1355, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72813", "ALCO motor 244 16cylinder turbocharged with Nathan K3",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-1839108412.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1356] = new Element(
		1356, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72812", "ALCO motor 244 16cylinder turbocharged with Leslie S5",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-1855679450.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1357] = new Element(
		1357, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72811", "ALCO motor 244 16cylinder turbocharged with Leslie S3",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd408836920.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1358] = new Element(
		1358, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72810", "ALCO motor 244 16cylinder turbocharged with Leslie A-200",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-1043130246.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1359] = new Element(
		1359, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72809", "ALCO motor 244 16cylinder turbocharged with WABCO E-2",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd161885292.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1360] = new Element(
		1360, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72808", "ALCO motor 244 16cylinder turbocharged with WABCO A-2",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-478796914.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1361] = new Element(
		1361, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72807", "ALCO motor 244 12cylinder turbocharged with Nathan M5",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-182200736.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1362] = new Element(
		1362, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72806", "ALCO motor 244 12cylinder turbocharged with Nathan M3",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-263419550.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1363] = new Element(
		1363, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72805", "ALCO motor 244 12cylinder turbocharged with Nathan K3",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-633402092.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1364] = new Element(
		1364, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72804", "ALCO motor 244 12cylinder turbocharged with Leslie S5",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-2001478154.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1365] = new Element(
		1365, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72803", "ALCO motor 244 12cylinder turbocharged with Leslie S3",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-498056056.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1366] = new Element(
		1366, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72802", "ALCO motor 244 12cylinder turbocharged with Leslie A-200",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-1128499894.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1367] = new Element(
		1367, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72801", "ALCO motor 244 12cylinder turbocharged with WABCO E-2",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd785690812.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1368] = new Element(
		1368, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM72800", "ALCO motor 244 12cylinder turbocharged with WABCO A-2",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd205349726.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1369] = new Element(
		1369, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM53811", "SNCB/NMBS HLD 59 - Cockerill Baldwin-Westinghouse 12 cyl.",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-1582646174.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1370] = new Element(
		1370, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM53810", "SNCB/NMBS HLD 55 - EMD 567 16 cyl. (GM BN ACEC)",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd858441748.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1371] = new Element(
		1371, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM53809", "SNCB/NMBS HLD 62 - EMD 567C 12 cyl. (GM BN ACEC)",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-1997283082.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1372] = new Element(
		1372, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM53808", "SNCB/NMBS DMU 41 Diesel - Alstom 6 cyl.",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1761431432.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1373] = new Element(
		1373, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM53807", "SNCB/NMBS HLE 26 - BN -ACEC",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-730773430.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1374] = new Element(
		1374, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM53806", "SNCB/NMBS HLE 23 - ACEC",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1247677372.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1375] = new Element(
		1375, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM53805", "SNCB/NMBS HLE 11/12/21/27 - BN ACEC",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-540408226.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1376] = new Element(
		1376, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM53804", "SNCB/NMBS HLE 20 - BN ACEC",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1932718256.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1377] = new Element(
		1377, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM53803", "SNCB NMBS HLE16",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1950347058.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1378] = new Element(
		1378, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM53802", "SNCB/NMBS HLE 15 - ACEC",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1563341412.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1379] = new Element(
		1379, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM53801", "SNCB/NMBS HLE 13 - ALSTOM",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1111725766.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1380] = new Element(
		1380, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM52894", "Desiro",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1950663896.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1381] = new Element(
		1381, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM52890", "Straßenbahn",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1304973594.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1382] = new Element(
		1382, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM52889", "Köf II",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-1881318388.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1383] = new Element(
		1383, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM52876", "V180 / BR118",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-993432576.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1384] = new Element(
		1384, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM52873", "Taurus",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1541934594.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1385] = new Element(
		1385, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM52861", "Universal Altbau - Elok (Vorbild: E40)",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1140238516.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1386] = new Element(
		1386, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM52859", "V 120 DR Taigatrommel",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-311723882.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1387] = new Element(
		1387, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM52850", "Triebwagen SVT137 / VT08",
		"", "ESU",
		"99", "0",
		"10", 1,
		"item", "92",
		"", "pd-1176271320.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1388] = new Element(
		1388, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM52846", "V200 / BR220",
		"", "ESU",
		"99", "0",
		"10", 1,
		"item", "92",
		"", "pd371770858.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1389] = new Element(
		1389, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM52842", "BR232 Ludmilla",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1658009692.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1390] = new Element(
		1390, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM52838", "Nohab",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd2093812222.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1391] = new Element(
		1391, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM52836", "Universal US-Diesel (Vorbild:F 7)",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-943606960.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1392] = new Element(
		1392, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM52833", "Universal Diesel (Vorbild: BR 218)",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd1866471634.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1393] = new Element(
		1393, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM52823", "US Shay N",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd-669537532.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1394] = new Element(
		1394, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM52819", "Dampflok BR18 201",
		"", "ESU",
		"99", "0",
		"10", 1,
		"", "92",
		"", "pd574129766.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1395] = new Element(
		1395, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM52802", "Univers. 3 Zyl. Vollspur (Vorbild: BR 44- Belg. 25.021)",
		"", "ESU",
		"99", "0",
		"0", 1,
		"decoder", "92",
		"", "pd-736193672.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1396] = new Element(
		1396, "assets/images/nopicturegreen.jpg",
		133, 46,
		"LM52801", "Universal 2 Zyl. Schmalspur (Vorbild: BR 99)",
		"", "ESU",
		"99", "0",
		"0", 1,
		"decoder", "92",
		"", "pd-2087737670.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1397] = new Element(
		1397, "assets/thumb/LokSoundmicro_PCB.jpg",
		137, 55,
		"LM52800", "Sound Anonym",
		"", "ESU",
		"99", "0",
		"0", 1,
		"decoder", "92",
		"", "pd1633169966.htm",
		"", 1,
		"LoksoundMi", "0",
		 0)
	
		Entry[1398] = new Element(
		1398, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HJ2636", "Class 25 26024 in BR blue with West Highland terrier depot embellishment and full yellow ends",
		"HJ2636 26024 in BR blue with West Highland terrier depot embellishment and full yellow ends  DCC Ready  MSRP £79.00", "Heljan",
		"64", "0",
		"1", 1,
		"loco", "143",
		"", "pd-1195536719.htm",
		"", 1,
		"HJLOCOS", "0",
		 0)
	
		Entry[1399] = new Element(
		1399, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HJ2633", "Class 26 26038 in Engineers &rsquo;Dutch&rsquo; grey and yellow livery  Cat. No. 2633",
		"HJ2633 26038 in Engineers &rsquo;Dutch&rsquo; grey and yellow livery DCC Ready  MSRP £79.00", "Heljan",
		"64", "0",
		"1", 1,
		"item", "143",
		"", "pd-963112305.htm",
		"", 1,
		"HJLOCOS", "0",
		 0)
	
		Entry[1400] = new Element(
		1400, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HJ2612", "Class 26 26027 in BR blue with full yellow ends  Cat. No. 2612",
		"HJ2612 26027 in BR blue with full yellow ends  Cat. No. 2612  DCC Ready  MSRP £79.00", "Heljan",
		"64", "0",
		"1", 1,
		"loco", "143",
		"", "pd-840258623.htm",
		"", 1,
		"HJLOCOS", "0",
		 0)
	
		Entry[1401] = new Element(
		1401, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HJ2610", "Class 26 26028 in BR blue with full yellow ends  Cat. No. 2610",
		"", "Heljan",
		"64", "0",
		"1", 1,
		"item", "143",
		"", "pd1833128805.htm",
		"", 1,
		"HJLOCOS", "0",
		 0)
	
		Entry[1402] = new Element(
		1402, "assets/thumb/efe14405thumb.jpg",
		137, 58,
		"14405", "Leyland National MkI  Cat.No. 14405",
		"Grey Green", "EFE",
		"18.5", "0",
		"1", 1,
		"model", "18",
		"", "pd1206792763.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1403] = new Element(
		1403, "assets/thumb/BTOD18.jpg",
		137, 72,
		"BTOD18", "Commer Dropside  Cat. No. BTOD18",
		"BRS Brentford", "Base Toys",
		"6", "0",
		"1", 1,
		"model", "4",
		"", "pd-1125466590.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1404] = new Element(
		1404, "assets/thumb/BTOD16.jpg",
		137, 73,
		"BTOD16", "Thorneycroft Articulated Van  Cat. No. BTOD16",
		"BRS London Parcels", "Base Toys",
		"6", "0",
		"1", 1,
		"model", "4",
		"", "pd1345849014.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1405] = new Element(
		1405, "assets/thumb/EM76308.jpg",
		137, 87,
		"EM76308", "Austin K2 Dropside with Crates Cat. No. EM76308",
		"British Railways", "Classix",
		"6.25", "0",
		"1", 1,
		"model", "6",
		"", "pd-1486375906.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1406] = new Element(
		1406, "assets/thumb/EM76612.jpg",
		137, 83,
		"EM76612", "Morris J Van Cat. No. EM76612",
		"Royal Mail", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "6",
		"", "pd804549784.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1407] = new Element(
		1407, "assets/thumb/EM76614thumb.jpg",
		137, 94,
		"EM76614", "Morris J Van Cat. No. EM76614",
		"Royal Mail with Poster Panels", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "6",
		"", "pd342012187.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1408] = new Element(
		1408, "assets/thumb/EM76618.jpg",
		137, 83,
		"EM76618", "Morris J Van Cat. No. EM76618",
		"British Railways", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "6",
		"", "pd-1056846714.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1409] = new Element(
		1409, "assets/thumb/EM76619.jpg",
		137, 75,
		"EM76619", "Ford E38 Van Cat. No. EM76619",
		"Mothers Pride", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "6",
		"", "pd821915464.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1410] = new Element(
		1410, "assets/thumb/EM76623.jpg",
		137, 74,
		"EM76623", "Ford E38W Estate Cat. No. EM76623",
		"British Railways", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "6",
		"", "pd1827885578.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1411] = new Element(
		1411, "assets/thumb/EM76624.jpg",
		137, 88,
		"EM76624", "Ford E38W Van Cat. No. EM76624",
		"British Railways", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "6",
		"", "pd-50930140.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1412] = new Element(
		1412, "assets/thumb/EM76626.jpg",
		137, 80,
		"EM76626", "Morris Minor Van Cat. No. EM76626",
		"Royal Mail", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "6",
		"", "pd1933246706.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1413] = new Element(
		1413, "assets/thumb/EM76627thumb.jpg",
		137, 89,
		"EM76627", "Morris Minor Van Cat. No. EM76627",
		"Telephone Engineer", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "6",
		"", "pd-1105334290.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1414] = new Element(
		1414, "assets/thumb/EM76628thumb.jpg",
		137, 95,
		"EM76628", "Morris Minor Van Cat. No. EM76628",
		"RAC Road Service", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "6",
		"", "pd-1843900468.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1415] = new Element(
		1415, "assets/thumb/em76818thumb.jpg",
		137, 92,
		"EM76818", "Morris Minor 2 Door Saloon Cat. No. EM76818",
		"Blue/Green", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "6",
		"", "pd-990744708.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1416] = new Element(
		1416, "assets/thumb/EM76821.jpg",
		137, 86,
		"EM76821", "Morris Minor 4-Door Saloon Cat. No. EM76821",
		"Biege", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "6",
		"", "pd1318283994.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1417] = new Element(
		1417, "assets/thumb/efe26621thumb.jpg",
		137, 57,
		"26621", "Plaxton Paramount 3500  Cat. No. 26621",
		"First Southern National", "EFE",
		"18.5", "0",
		"1", 1,
		"model", "18",
		"", "pd1207991373.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1418] = new Element(
		1418, "assets/thumb/efe29617thumb.jpg",
		137, 69,
		"29617", "Leyland Olympian  Cat. No. 29617",
		"Southern Vectis", "EFE",
		"18.5", "0",
		"1", 1,
		"model", "18",
		"", "pd198070083.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1419] = new Element(
		1419, "assets/thumb/CC13701_Mason Brothers.jpg",
		137, 69,
		"CC13701-1", "Scania R Series Topline Curtainside  Cat. No. CC13701",
		"Mason Brothers", "Corgi",
		"71.5", "0",
		"1", 1,
		"model", "1",
		"", "pd1266921254.htm",
		"", 1,
		"CLEAR", "50",
		 0)
	
		Entry[1420] = new Element(
		1420, "assets/thumb/CC13806_NORFOLKLINE.jpg",
		137, 53,
		"CC13806-1", "Mercedes Actros Curtainside  Cat. No. CC13806",
		"Norfolkline ", "Corgi",
		"77", "0",
		"1", 1,
		"model", "1",
		"", "pd-912129596.htm",
		"", 1,
		"CLEAR", "50",
		 0)
	
		Entry[1421] = new Element(
		1421, "assets/thumb/r4302thumb.jpg",
		137, 55,
		"R4302E", "BR Maunsell Corridor 3rd Class",
		"R4302E BR Maunsell Corridor 3rd Class  MSRP £26.50", "Hornby",
		"23", "0",
		"1", 1,
		"carriage", "148",
		"", "pd585503193.htm",
		"", 1,
		"HornbyCarr", "0",
		 0)
	
		Entry[1422] = new Element(
		1422, "assets/thumb/r4303dthumb.jpg",
		137, 55,
		"R4303E", "BR Maunsell Corridor 1st Class",
		"R4303E BR Maunsell Corridor 1st Class  MSRP £26.99", "Hornby",
		"23", "0",
		"1", 1,
		"carriage", "148",
		"", "pd1208125409.htm",
		"", 1,
		"HornbyCarr", "0",
		 0)
	
		Entry[1423] = new Element(
		1423, "assets/thumb/r4304ethumb.jpg",
		137, 30,
		"R4304E", "BR Maunsell Composite",
		"R4304E BR Maunsell Composite  MSRP £26.50", "Hornby",
		"23", "0",
		"1", 1,
		"carriage", "148",
		"", "pd1493112055.htm",
		"", 1,
		"HornbyCarr", "0",
		 0)
	
		Entry[1424] = new Element(
		1424, "assets/thumb/r6433.jpg",
		137, 61,
		"R6433", "Departmental Shark Ballast Brake Van",
		"R6433 Departmental Shark Ballast Brake Van  MSRP £14.75", "Hornby",
		"12.75", "0",
		"1", 1,
		"wagon", "149",
		"", "pd1452913183.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[1425] = new Element(
		1425, "assets/thumb/CC13231_James Irlam & Sons.jpg",
		137, 62,
		"CC13231-1", "DAF XF Curtainside  Cat. No. CC13231",
		"James Irlam Logistics ", "Corgi",
		"66.5", "0",
		"1", 1,
		"model", "1",
		"", "pd836694732.htm",
		"", 1,
		"CLEAR", "50",
		 0)
	
		Entry[1426] = new Element(
		1426, "assets/thumb/CC13405_MAN TGA Curtainside.jpg",
		137, 52,
		"CC13405-1", "MAN TGA XL Step Frame Curtainside Trailer  Cat. No. CC13405",
		"Eddie Stobart Ltd", "Corgi",
		"61.5", "0",
		"1", 1,
		"model", "1",
		"", "pd461588376.htm",
		"", 1,
		"CLEAR", "50",
		 0)
	
		Entry[1427] = new Element(
		1427, "assets/thumb/dyeskitbox.JPG",
		137, 202,
		"JT112", "Joe&rsquo;s Weathering Dyes Kit",
		"Joe&rsquo;s Weathering Dyes Kit with 6 colours", "Joe's Trains",
		"28.5", "0",
		"1", 1,
		"kit", "40",
		"", "pd1208712690.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[1428] = new Element(
		1428, "assets/thumb/CC13232_BEAMISH Transport.jpg",
		137, 102,
		"CC13232-1", "DAF XF  Cat. No. CC13232",
		"Beamish", "Corgi",
		"31", "0",
		"1", 1,
		"model", "1",
		"", "pd1766664759.htm",
		"", 1,
		"CLEAR", "50",
		 0)
	
		Entry[1429] = new Element(
		1429, "assets/thumb/dxds52.jpg",
		137, 71,
		"DXDS52", "DS52",
		"DS52 Dual Stationary Decoder", "Digitrax",
		"18", "0",
		"1", 1,
		"decoder", "86",
		"", "pd124488398.htm",
		"", 1,
		"DXTURN", "0",
		 0)
	
		Entry[1430] = new Element(
		1430, "assets/thumb/efe16801thumb.jpg",
		137, 80,
		"16801", "Alexander Fleetline  Cat. No. 16801",
		"Travel Decourcey", "EFE",
		"18.5", "0",
		"1", 1,
		"model", "18",
		"", "pd-328743697.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1431] = new Element(
		1431, "assets/thumb/efe27623thumb.jpg",
		137, 48,
		"27623", "Wright Volvo Renown  Cat. No. 27623",
		"Brighton &amp; Hove Metro", "EFE",
		"18.5", "0",
		"1", 1,
		"model", "18",
		"", "pd1642257331.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1432] = new Element(
		1432, "assets/thumb/rj126custom.jpg",
		137, 93,
		"RJ12-6-1", "Flat 6-core cable with RJ12-6 connectors on each end",
		"1 metre", "",
		"1.05", "0",
		"1", 1,
		"metre", "106",
		"Length(m);1m@", "pd-1535763734.htm",
		"", 1,
		"CabsW", "0",
		 0)
	
		Entry[1433] = new Element(
		1433, "assets/thumb/nceusbthumb.jpg",
		137, 138,
		"N-USB", "USB Interface for NCE DCC Systems",
		"", "NCE",
		"35", "0",
		"1", 1,
		"item", "99",
		"", "pd1210458309.htm",
		"", 1,
		"Comps", "0",
		 0)
	
		Entry[1434] = new Element(
		1434, "assets/thumb/n_cp175thumb.jpg",
		137, 104,
		"N-CP175", "Pack of 6 x 1.75 Amp bulbs for CP6",
		"", "NCE",
		"6.75", "0",
		"1", 1,
		"pack", "107",
		"", "pd2101831803.htm",
		"", 1,
		"Access", "0",
		 0)
	
		Entry[1435] = new Element(
		1435, "assets/thumb/bt-d23.jpg",
		137, 70,
		"BTOD23", "Leyland Beaver Flatbed  Cat. No. BTOD23",
		"British Railways (yellow)", "Base Toys",
		"5.75", "0",
		"1", 1,
		"model", "4",
		"", "pd997495723.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1436] = new Element(
		1436, "assets/thumb/jt113.jpg",
		137, 377,
		"JT113", "Joe&rsquo;s Weathering Dyes",
		"Black Grime - bottle with dropper", "Joe's Trains",
		"4.75", "0",
		"1", 1,
		"bottle", "40",
		"", "pd1210676275.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[1437] = new Element(
		1437, "assets/thumb/jt114.jpg",
		137, 408,
		"JT114", "Joe&rsquo;s Weathering Dyes",
		"Limestone - bottle with dropper", "Joe's Trains",
		"4.75", "0",
		"1", 1,
		"bottle", "40",
		"", "pd1260446105.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[1438] = new Element(
		1438, "assets/thumb/jt115.jpg",
		137, 430,
		"JT115", "Joe&rsquo;s Weathering Dyes",
		"Clay Dust - bottle with dropper", "Joe's Trains",
		"4.75", "0",
		"1", 1,
		"bottle", "40",
		"", "pd-393419409.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[1439] = new Element(
		1439, "assets/images/nopicturegreen.jpg",
		133, 46,
		"JT116", "Joe&rsquo;s Weathering Dyes",
		"Dirt and Oil - bottle with dropper", "Joe's Trains",
		"4.75", "0",
		"1", 1,
		"bottle", "40",
		"", "pd-163896011.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[1440] = new Element(
		1440, "assets/thumb/jt117.jpg",
		137, 399,
		"JT117", "Joe&rsquo;s Weathering Dyes",
		"Rust - bottle with dropper", "Joe's Trains",
		"4.75", "0",
		"1", 1,
		"bottle", "40",
		"", "pd-468204949.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[1441] = new Element(
		1441, "assets/thumb/jt118.jpg",
		137, 323,
		"JT118", "Joe&rsquo;s Weathering Dyes",
		"Dark Buff - bottle with dropper", "Joe's Trains",
		"4.75", "0",
		"1", 1,
		"bottle", "40",
		"", "pd-1614693743.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[1442] = new Element(
		1442, "assets/thumb/efe34202thumb.jpg",
		137, 83,
		"34202", "AEC RLH Bus  Cat. No. 34202",
		"London Transport", "EFE",
		"19.5", "0",
		"1", 1,
		"model", "18",
		"", "pd-944355545.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1443] = new Element(
		1443, "assets/thumb/efe29618thumb.jpg",
		137, 73,
		"29618", "Leyland Olympian  Cat. No. 29618",
		"Tyne &amp; Wear Transport", "EFE",
		"18.5", "0",
		"1", 1,
		"model", "18",
		"", "pd-1385140317.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1444] = new Element(
		1444, "assets/thumb/efe29619thumb.jpg",
		137, 67,
		"29619", "Leyland Olympian  Cat. No. 29619",
		"Maidstone &amp; District", "EFE",
		"18.5", "0",
		"1", 1,
		"model", "18",
		"", "pd-1469052279.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1445] = new Element(
		1445, "assets/images/nopicturegreen.jpg",
		133, 46,
		"STX820124", "DSD-101LC-EH for EMD 1st Gen",
		"DSD-101LC-EH for EMD 1st Gen with Canadian Airhorns", "Soundtraxx",
		"45", "0",
		"1", 1,
		"decoder", "110",
		"", "pd1210926421.htm",
		"", 1,
		"STXXLC", "0",
		 0)
	
		Entry[1446] = new Element(
		1446, "assets/thumb/EM76503.jpg",
		137, 56,
		"EM76503", "Jen-Tug Artic &amp; Flatbed Trailer   Cat. No. EM76503",
		"British Railways", "Classix",
		"6.25", "0",
		"1", 1,
		"model", "6",
		"", "pd1212270380.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1447] = new Element(
		1447, "assets/thumb/EM76504.jpg",
		137, 93,
		"EM76504", "Jen-Tug Artic &amp; Parcels Van Trailer   Cat. No. EM76504",
		"British Railways", "Classix",
		"7", "0",
		"1", 1,
		"model", "6",
		"", "pd380318010.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1448] = new Element(
		1448, "assets/thumb/EM76506.jpg",
		137, 59,
		"EM76506", "Jen-Tug Artic Dropside Trailer    Cat. No. EM76506",
		"National Coal Board", "Classix",
		"6.25", "0",
		"1", 1,
		"model", "6",
		"", "pd1711219192.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1449] = new Element(
		1449, "assets/thumb/EM76810.jpg",
		137, 75,
		"EM76810", "Ford Zephyr Six MkI   Cat. No. EM76810",
		"Winchester Blue", "Classix",
		"3.5", "0",
		"1", 1,
		"model", "6",
		"", "pd401979622.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1450] = new Element(
		1450, "assets/thumb/EM76809.jpg",
		137, 80,
		"EM76809", "Ford Consul MkI Taxi  Cat. No. EM76809",
		"Black/Yellow", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "6",
		"", "pd-1491983996.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1451] = new Element(
		1451, "assets/thumb/EM76816.jpg",
		137, 81,
		"EM76816", "Austin A40 Dorset 2-Door    Cat. No. EM76816",
		"Cherry Red", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "6",
		"", "pd1082429904.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1452] = new Element(
		1452, "assets/thumb/em76825thumb.jpg",
		137, 92,
		"EM76825", "Morris Minor Traveller     Cat. No. EM76825",
		"Old English White", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "6",
		"", "pd-2089481090.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1453] = new Element(
		1453, "assets/thumb/efe31502thumb.jpg",
		137, 83,
		"31502", "RM Routemaster  Cat. No. 31502",
		"Kelvin Scottish", "EFE",
		"18.5", "0",
		"1", 1,
		"model", "18",
		"", "pd1212336977.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1454] = new Element(
		1454, "assets/thumb/mrc1414thumb.jpg",
		137, 89,
		"MRC1414", "Prodigy Advance 2 &quot;Squared&quot;",
		"Prodigy Advance 2 &quot;Squared&quot;   ", "Model Rectifier Corporation",
		"195", "0",
		"1", 1,
		"set", "96",
		"", "pd1199801139.htm",
		"", 1,
		"MRCCONT", "0",
		 0)
	
		Entry[1455] = new Element(
		1455, "assets/thumb/nceeb1thumb.jpg",
		137, 224,
		"N-EB1", "EB1 Circuit Breaker",
		"Single output electronic circuit breaker (2.5 to 8 Amps per output) with status LED", "NCE",
		"21", "0",
		"1", 1,
		"item", "105",
		"", "pd1213346381.htm",
		"", 1,
		"SigDec", "0",
		 0)
	
		Entry[1456] = new Element(
		1456, "assets/thumb/efe32103thumb.jpg",
		137, 79,
		"32103", "RMF Routemaster  Cat. No. 32103",
		"Stevensons", "EFE",
		"18.5", "0",
		"1", 1,
		"model", "18",
		"", "pd1213390283.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1457] = new Element(
		1457, "assets/thumb/dz125in.jpg",
		137, 140,
		"DXDZ125IN", "DZ125IN",
		"DZ125IN Z scale Loco 6-pin direct plug-in NEM 651 decoder with BEMF 1 Amp/2 Amp Peak, 2 FX3 Functions@0.5 Amp ", "Digitrax",
		"18.75", "0",
		"1", 1,
		"decoder", "83",
		"", "pd1161889371.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[1458] = new Element(
		1458, "assets/thumb/ath93807thumb.jpg",
		137, 137,
		"ATH93807", "HO RTR Rotary Snowplow, CN #55348",
		"ATH93807 HO RTR Rotary Snowplow, CN #55348  in CN livery", "Athearn",
		"33", "0",
		"1", 1,
		"loco", "135",
		"", "pd726178333.htm",
		"", 1,
		"CN", "0",
		 0)
	
		Entry[1459] = new Element(
		1459, "assets/thumb/efe15714thumb.jpg",
		137, 52,
		"15714", "Plaxton Panorama Elite III  Cat. No. 15714",
		"Wallace Arnold", "EFE",
		"19", "0",
		"1", 1,
		"model", "18",
		"", "pd-1296256980.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1460] = new Element(
		1460, "assets/thumb/efe17506thumb.jpg",
		137, 51,
		"17506", "Leyland National Mk II Long  Cat. No. 17506",
		"Kelvin Scottish", "EFE",
		"19", "0",
		"1", 1,
		"model", "18",
		"", "pd1262955140.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1461] = new Element(
		1461, "assets/thumb/efe20640thumb.jpg",
		137, 51,
		"20640", "Plaxton Pointer Dart  Cat. No. 20640",
		"London Busways", "EFE",
		"19", "0",
		"1", 1,
		"model", "18",
		"", "pd-619529438.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1462] = new Element(
		1462, "assets/thumb/efe26206thumb.jpg",
		137, 89,
		"26206", "Guy Arab I Utility Bus  Cat. No. 26206",
		"Wolverhampton Corporation", "EFE",
		"19", "0",
		"1", 1,
		"model", "18",
		"", "pd69556436.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1463] = new Element(
		1463, "assets/thumb/em76501thumb.jpg",
		137, 61,
		"EM76501", "Jen-Tug Artic &amp; Flatbed Trailer   Cat. No. EM76501",
		"British Railways", "Classix",
		"6.25", "0",
		"1", 1,
		"model", "6",
		"", "pd1215449209.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1464] = new Element(
		1464, "assets/thumb/em76507thumb.jpg",
		137, 81,
		"EM76507", "Jen-Tug Artic &amp; Parcels Van Trailer   Cat. No. EM76507",
		"BRS", "Classix",
		"7", "0",
		"1", 1,
		"model", "6",
		"", "pd-480499889.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1465] = new Element(
		1465, "assets/thumb/em76615thumb.jpg",
		137, 103,
		"EM76615", "Morris J Van Cat. No. EM76615",
		"Telephone Engineer", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "6",
		"", "pd2110241301.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1466] = new Element(
		1466, "assets/thumb/em76617thumb.jpg",
		137, 92,
		"EM76617", "Morris J Van Cat. No. EM76617",
		"British Railways (maroon/cream)", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "6",
		"", "pd9298507.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1467] = new Element(
		1467, "assets/thumb/CC13803_Summers - Detail1.jpg",
		137, 69,
		"CC13803-1", "Mercedes Benz Actros Curtainside  Cat. No. CC13803",
		"Robert Summers Transport Ltd", "Corgi",
		"77", "0",
		"1", 1,
		"model", "1",
		"", "pd1215519179.htm",
		"", 1,
		"CLEAR", "50",
		 0)
	
		Entry[1468] = new Element(
		1468, "assets/thumb/CC13906_RITCHIE Transport.jpg",
		137, 57,
		"CC13906-1", "Foden Alpha Curtainside  Cat. No. CC13906",
		"E &amp; N Ritchie", "Corgi",
		"82", "0",
		"1", 1,
		"model", "1",
		"", "pd-2021528842.htm",
		"", 1,
		"CLEAR", "50",
		 0)
	
		Entry[1469] = new Element(
		1469, "assets/thumb/efe26622thumb.jpg",
		137, 49,
		"26622", "Plaxton Paramount 3500  Cat. No. 26622",
		"National Holidays", "EFE",
		"19", "0",
		"1", 1,
		"model", "18",
		"", "pd1909747635.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1470] = new Element(
		1470, "assets/thumb/efe28817thumb.jpg",
		137, 73,
		"28817", "Leyland Titan 2 Door  Cat. No. 28817",
		"London Northern Buses", "EFE",
		"19", "0",
		"1", 1,
		"model", "18",
		"", "pd389716207.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1471] = new Element(
		1471, "assets/thumb/efe29009thumb.jpg",
		137, 74,
		"29009", "GM Fleetline  Cat. No. 29009",
		"Greater Manchester Transport", "EFE",
		"19", "0",
		"1", 1,
		"model", "18",
		"", "pd829264401.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1472] = new Element(
		1472, "assets/thumb/efe36001thumb.jpg",
		137, 94,
		"36001", "Leyland RTL  Cat. No. 36001",
		"Chieftan", "EFE",
		"19.5", "0",
		"1", 1,
		"model", "18",
		"", "pd1254246681.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1473] = new Element(
		1473, "assets/thumb/dxpr3.jpg",
		137, 101,
		"DXPR3", "PR3",
		"PR3 SoundFX Decoder Programmer", "Digitrax",
		"57.5", "0",
		"1", 1,
		"item", "88",
		"", "pd1218360901.htm",
		"", 1,
		"DXSPARE", "0",
		 0)
	
		Entry[1474] = new Element(
		1474, "assets/thumb/dxpr3.jpg",
		137, 101,
		"DXPR3-1", "PR3",
		"PR3 SoundFX Decoder Programmer", "Digitrax",
		"57", "0",
		"1", 1,
		"item", "85",
		"", "pd1006173345.htm",
		"", 1,
		"DXSOUND", "0",
		 0)
	
		Entry[1475] = new Element(
		1475, "assets/thumb/dxpr2.jpg",
		137, 123,
		"DXPR2", "PR2",
		"PR2 SoundFX Decoder Programmer", "Digitrax",
		"53", "0",
		"1", 1,
		"item", "88",
		"", "pd349542327.htm",
		"", 1,
		"DXSPARE", "0",
		 0)
	
		Entry[1476] = new Element(
		1476, "assets/thumb/dxpr2.jpg",
		137, 123,
		"DXPR2-1", "PR2",
		"PR2 SoundFX Decoder Programmer", "Digitrax",
		"53", "0",
		"1", 1,
		"item", "85",
		"", "pd1528512701.htm",
		"", 1,
		"DXSOUND", "0",
		 0)
	
		Entry[1477] = new Element(
		1477, "assets/thumb/msdetectorthumb.jpg",
		137, 87,
		"H-DCM-DET", "MASTERswitch Ultimate Detector",
		"MASTERswitch Ultimate Detector", "DCC Concepts",
		"53", "0",
		"1", 1,
		"pack", "30",
		"", "pd-60916756.htm",
		"", 1,
		"Switches", "0",
		 0)
	
		Entry[1478] = new Element(
		1478, "assets/thumb/quadrelaythumb.jpg",
		137, 92,
		"H-DCM-REL", "MASTERswitch Quad Relay Board",
		"MASTERswitch Quad Relay Board", "DCC Concepts",
		"37", "0",
		"1", 1,
		"pack", "30",
		"", "pd-1609436166.htm",
		"", 1,
		"Switches", "0",
		 0)
	
		Entry[1479] = new Element(
		1479, "assets/thumb/phoswirethumb.jpg",
		137, 153,
		"H-DCW-PB028", "Phosphor Bronze Wire",
		"Phosphor Bronze Wire 0.028 for use as loco pickup  2m pack", "DCC Concepts",
		"3.5", "0",
		"1", 1,
		"pack", "30",
		"", "pd305570488.htm",
		"", 1,
		"Switches", "0",
		 0)
	
		Entry[1480] = new Element(
		1480, "assets/thumb/silvptthumb.jpg",
		137, 129,
		"HT-Silver", "Silver conductive paint",
		"Silver loaded conductive varnish", "DCC Concepts",
		"8.5", "0",
		"1", 1,
		"item", "30",
		"", "pd-855036348.htm",
		"", 1,
		"Switches", "0",
		 0)
	
		Entry[1481] = new Element(
		1481, "assets/thumb/msaccdpdt.jpg",
		137, 86,
		"H-DCM-MS", "MASTERswitch DPDT Switch Kit",
		"MASTERswitch DPDT Switch Kit", "DCC Concepts",
		"6", "0",
		"1", 1,
		"pack", "30",
		"", "pd1412961767.htm",
		"", 1,
		"Switches", "0",
		 0)
	
		Entry[1482] = new Element(
		1482, "assets/thumb/mp251thumb.jpg",
		137, 152,
		"HP-MP251A", "Long Fine Taper Jaw Pliers",
		"Fine parallel pliers. 3mm RV", "DCC Concepts",
		"10", "0",
		"1", 1,
		"item", "31",
		"", "pd526690925.htm",
		"", 1,
		"Tools", "0",
		 0)
	
		Entry[1483] = new Element(
		1483, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HLED-3MMSW6", "3mm Daylight White (Sunny White) LED - 6 pack",
		"Pack of 6 x 3mm Daylight White (Sunny White) LED and 6 x 1K resistors", "DCC Concepts",
		"5.5", "0",
		"1", 1,
		"pack", "29",
		"", "pd1423144876.htm",
		"1::20::5;", 2,
		"LED", "0",
		 0)
	
		Entry[1484] = new Element(
		1484, "assets/thumb/CC11908_ERF EC Trailer.jpg",
		137, 57,
		"CC11908-1", "ERF EC Series Log Trailer  Cat. No. CC11908",
		"A &amp; J Nielsen Ltd", "Corgi",
		"71.5", "0",
		"1", 1,
		"model", "1",
		"", "pd1624122979.htm",
		"", 1,
		"CLEAR", "50",
		 0)
	
		Entry[1485] = new Element(
		1485, "assets/thumb/efe17507thumb.jpg",
		137, 50,
		"17507", "Leyland National Mk II  Cat. No. 17507",
		"Merseybus", "EFE",
		"19", "0",
		"1", 1,
		"model", "18",
		"", "pd1921437832.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1486] = new Element(
		1486, "assets/thumb/efe20444thumb.jpg",
		137, 73,
		"20444", "Bristol VRIII  Cat. No. 20444",
		"Mansfield &amp; District", "EFE",
		"19", "0",
		"1", 1,
		"model", "18",
		"", "pd1264787786.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1487] = new Element(
		1487, "assets/thumb/efe31303sbthumb.jpg",
		137, 73,
		"31303SB", "Daimler Fleetline B20  Cat. No. 31303SB",
		"London Transport - Showbus", "EFE",
		"21", "0",
		"1", 1,
		"model", "18",
		"", "pd548228958.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1488] = new Element(
		1488, "assets/thumb/efe34901thumb.jpg",
		137, 69,
		"34901", "Leyland Olympian Coach  Cat. No. 34901",
		"Wilts &amp; Dorset", "EFE",
		"19.5", "0",
		"1", 1,
		"model", "18",
		"", "pd-151618372.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1489] = new Element(
		1489, "assets/thumb/emd567-1.jpg",
		137, 100,
		"STX827101", "EMD 567 Diesel Engines (1st Generation)",
		"TSU-1000 for EMD 567 Diesel Engines (1st Generation)", "Soundtraxx",
		"82", "0",
		"1", 1,
		"decoder", "112",
		"", "pd-260003553.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[1490] = new Element(
		1490, "assets/thumb/emd645-1.jpg",
		137, 124,
		"STX827102", "EMD 645 Diesel Engines (2nd Generation)",
		"TSU-1000 for EMD 645 Diesel Engines (2nd Generation)", "Soundtraxx",
		"82", "0",
		"1", 1,
		"decoder", "112",
		"", "pd358436965.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[1491] = new Element(
		1491, "assets/thumb/emd710-1.jpg",
		137, 116,
		"STX827103", "EMD 710 Diesel Engines (3rd Generation)",
		"TSU-1000 for EMD 710 Diesel Engines (3rd Generation)", "Soundtraxx",
		"85", "0",
		"1", 1,
		"decoder", "112",
		"", "pd-1472421605.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[1492] = new Element(
		1492, "assets/thumb/alco244-1.jpg",
		137, 113,
		"STX827104", "ALCO 244 Diesel Engines",
		"TSU-1000 for ALCO 244 Diesel Engines", "Soundtraxx",
		"85", "0",
		"1", 1,
		"decoder", "112",
		"", "pd-830048063.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[1493] = new Element(
		1493, "assets/thumb/stxalco251.jpg",
		137, 102,
		"STX827105", "ALCO 251 Diesel Engines",
		"TSU-1000 for ALCO 251 V12 Diesel Engines", "Soundtraxx",
		"85", "0",
		"1", 1,
		"decoder", "112",
		"", "pd-1960054569.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[1494] = new Element(
		1494, "assets/thumb/man03csthumb.jpg",
		137, 53,
		"76MAN03CS", "MAN Curtainside Trailer",
		"Downton - 1:76 scale  MSRP £18.99", "Oxford Diecast",
		"17", "0",
		"1", 1,
		"model", "21",
		"", "pd1833878592.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1495] = new Element(
		1495, "assets/thumb/76jen001thumb.jpg",
		137, 70,
		"76JEN001", "Jensen 541R",
		"Imperial Crimson  - 1:76 scale    MSRP £3.49", "Oxford Diecast",
		"3.25", "0",
		"1", 1,
		"model", "21",
		"", "pd-1124711314.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1496] = new Element(
		1496, "assets/thumb/76rs002thumb.jpg",
		137, 69,
		"76RS002", "Reliant Scimitar",
		"Nevada Yellow - 1:76 scale  MSRP £3.99", "Oxford Diecast",
		"3.25", "0",
		"1", 1,
		"model", "21",
		"", "pd569030732.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1497] = new Element(
		1497, "assets/thumb/76xr002thumb.jpg",
		137, 74,
		"76XR002", "Ford Escort XR3i",
		"Diamond White - 1:76 scale  MSRP £3.49", "Oxford Diecast",
		"3.25", "0",
		"1", 1,
		"model", "21",
		"", "pd-1581381798.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1498] = new Element(
		1498, "assets/thumb/76fb002thumb.jpg",
		137, 70,
		"76FB002", "Vauxhall FB Victor",
		"Glade/Alpine Green - 1:76 scale  MSRP £3.49", "Oxford Diecast",
		"3.25", "0",
		"1", 1,
		"model", "21",
		"", "pd344089880.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1499] = new Element(
		1499, "assets/thumb/76fb001thumb.jpg",
		137, 71,
		"76FB001", "Vauxhall FB Victor",
		"Venetian Red/Gull Grey - 1:76 scale  MSRP £3.49", "Oxford Diecast",
		"3.25", "0",
		"1", 1,
		"model", "21",
		"", "pd477311238.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1500] = new Element(
		1500, "assets/thumb/76tk008thumb.jpg",
		137, 72,
		"76TK008", "Bedford TK Barrel Truck",
		"Watneys - 1:76 scale    MSRP £8.95", "Oxford Diecast",
		"7.95", "0",
		"1", 1,
		"model", "21",
		"", "pd-850864476.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1501] = new Element(
		1501, "assets/thumb/148nrt002thumb.jpg",
		137, 119,
		"148NRT002", "RT Bus",
		"Green Line - 1:148 scale    MSRP £4.95", "Oxford Diecast",
		"4.5", "0",
		"1", 1,
		"model", "22",
		"", "pd-684741262.htm",
		"", 1,
		"OXN", "0",
		 0)
	
		Entry[1502] = new Element(
		1502, "assets/thumb/76fp001thumb.jpg",
		137, 88,
		"76FP001", "Ford Popular 103E",
		"Winchester Blue - 1:76 scale    MSRP£2.95", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd-1017650036.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1503] = new Element(
		1503, "assets/thumb/hdccrelay3thumb.jpg",
		137, 174,
		"H-DCC-RELAY3", "Micro Relay",
		"Micro relay 3-pack", "DCC Concepts",
		"7.5", "0",
		"1", 1,
		"pack", "30",
		"", "pd1264978614.htm",
		"", 1,
		"Switches", "0",
		 0)
	
		Entry[1504] = new Element(
		1504, "assets/thumb/jt204.JPG",
		137, 272,
		"JT204", "Rusty Rails Painter Tool",
		"For use with O scale", "Joe's Trains",
		"11", "0",
		"1", 1,
		"item", "40",
		"", "pd1265711230.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[1505] = new Element(
		1505, "assets/thumb/jt210.JPG",
		137, 103,
		"JT210", "Rusty Rails Painter Tool rollers",
		"Pack of spare rollers for use with O gauge painter tool", "Joe's Trains",
		"2.75", "0",
		"1", 1,
		"pack", "40",
		"", "pd-1652749604.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[1506] = new Element(
		1506, "assets/thumb/hj4099thumb.jpg",
		137, 44,
		"HJ4099", "Pack of 4 Dogfish - 1970&rsquo;s/80&rsquo;s weathered pack, no loads",
		"HJ4099 Pack of 4 Dogfish - 1970&rsquo;s/80&rsquo;s weathered pack (no load)  MSRP £69.00", "Heljan",
		"63", "0",
		"1", 1,
		"pack", "144",
		"", "pd-228533142.htm",
		"", 1,
		"HJWAG", "0",
		 0)
	
		Entry[1507] = new Element(
		1507, "assets/thumb/hj4100thumb.jpg",
		137, 44,
		"HJ4100", "Pack of 4 Dogfish - 1980&rsquo;s/90&rsquo;s weathered pack, no loads",
		"HJ4100 Pack of 4 Dogfish - 1980&rsquo;s/90&rsquo;s weathered pack (no load)  MSRP £69.00", "Heljan",
		"63", "0",
		"1", 1,
		"pack", "144",
		"", "pd-1763475288.htm",
		"", 1,
		"HJWAG", "0",
		 0)
	
		Entry[1508] = new Element(
		1508, "assets/thumb/76rab006thumb.jpg",
		137, 45,
		"76RAB006", "Scammell Scarab Flatbed Trailer",
		"British Rail - 1:76 scale  MSRP £5.95", "Oxford Diecast",
		"5.5", "0",
		"1", 1,
		"model", "21",
		"", "pd1265745756.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1509] = new Element(
		1509, "assets/thumb/76ms001thumb.jpg",
		137, 71,
		"76MS001", "Morris Six",
		"Maroon - 1:76 scale    MSRP £3.49", "Oxford Diecast",
		"3.25", "0",
		"1", 1,
		"model", "21",
		"", "pd-1943624470.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1510] = new Element(
		1510, "assets/thumb/sb3athumb.jpg",
		137, 67,
		"N-SB3A-U", "Smart Booster upgrade for PowerCab Starter System from existing SB3",
		"N-SB3a 5 Amp Smart Booster Upgrade from SB3", "NCE",
		"42", "0",
		"1", 1,
		"item", "99",
		"", "pd-929641646.htm",
		"", 1,
		"Comps", "0",
		 0)
	
		Entry[1511] = new Element(
		1511, "assets/thumb/efe16119thumb.jpg",
		137, 78,
		"16119", "Leyland PD2 Highbridge  Cat. No. 16119",
		"Oldham Corporation", "EFE",
		"21", "0",
		"1", 1,
		"model", "18",
		"", "pd-114428253.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1512] = new Element(
		1512, "assets/thumb/efe17508thumb.jpg",
		137, 51,
		"17508", "Leyland National Mk II  Cat. No. 17508",
		"Western Scottish", "EFE",
		"21", "0",
		"1", 1,
		"model", "18",
		"", "pd-540332883.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1513] = new Element(
		1513, "assets/thumb/efe20643thumb.jpg",
		137, 48,
		"20643", "Plaxton Pointer Dart  Cat. No. 20643",
		"Clydeside", "EFE",
		"21", "0",
		"1", 1,
		"model", "18",
		"", "pd1179370203.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1514] = new Element(
		1514, "assets/thumb/efe25809thumb.jpg",
		137, 70,
		"25809", "Daimler DMS 1 Door  Cat. No. 25809",
		"Bournemouth Yellow Buses", "EFE",
		"21", "0",
		"1", 1,
		"model", "18",
		"", "pd-1149112609.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1515] = new Element(
		1515, "assets/thumb/efe26207thumb.jpg",
		137, 85,
		"26207", "Guy Arab 1 Utility Bus  Cat. No. 26207",
		"Bristol Tramways", "EFE",
		"21", "0",
		"1", 1,
		"model", "18",
		"", "pd-760944247.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1516] = new Element(
		1516, "assets/thumb/efe35801thumb.jpg",
		137, 42,
		"35801", "Plaxton SLF Dart Mk1 1 Door  Cat. No. 35801",
		"Arriva Medway Towns", "EFE",
		"21", "0",
		"1", 1,
		"model", "18",
		"", "pd-715191259.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1517] = new Element(
		1517, "assets/thumb/om43709thumb.jpg",
		137, 100,
		"OM43709", "Q1 Trolleybus   Cat. No. OM43709",
		"London Transport   MSRP £28.99", "Corgi",
		"26.5", "0",
		"1", 1,
		"model", "11",
		"", "pd1267549985.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[1518] = new Element(
		1518, "assets/thumb/om46207thumb.jpg",
		137, 82,
		"OM46207", "Scania Irizar PB  Cat. No. OM46207",
		"Johnsons Quality Coach Travel  MRSP £28.99", "Corgi",
		"26.5", "0",
		"1", 1,
		"model", "11",
		"", "pd48031287.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[1519] = new Element(
		1519, "assets/thumb/cc12824.jpg",
		137, 47,
		"CC12824", "Scania T Dropside with Cement Bag Load  Cat. No. CC12824",
		"Larkins   MSRP £81.49", "Corgi",
		"69", "0",
		"1", 1,
		"model", "10",
		"", "pd-1940049091.htm",
		"", 1,
		"HR", "0",
		 0)
	
		Entry[1520] = new Element(
		1520, "assets/thumb/76aa003thumb.jpg",
		137, 75,
		"76AA003", "Austin A40 Mk II",
		"Cumulus Grey/Snowberry White - 1:76 scale    MSRP £3.50", "Oxford Diecast",
		"3.25", "0",
		"1", 1,
		"model", "21",
		"", "pd1267611632.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1521] = new Element(
		1521, "assets/thumb/76cap004thumb.jpg",
		137, 71,
		"76CAP004", "Ford Capri MK III",
		"Sebring Red - 1:76 scale    MSRP£3.50", "Oxford Diecast",
		"3.25", "0",
		"1", 1,
		"model", "21",
		"", "pd-1005871202.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1522] = new Element(
		1522, "assets/thumb/76cap003thumb.jpg",
		137, 70,
		"76CAP003", "Ford Capri MK III",
		"Diamond White - 1:76 scale    MSRP£3.50", "Oxford Diecast",
		"3.25", "0",
		"1", 1,
		"model", "21",
		"", "pd1710638844.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1523] = new Element(
		1523, "assets/thumb/76xr003thumb.jpg",
		137, 75,
		"76XR003", "Ford Escort XR3i",
		"Black - 1:76 scale  MSRP £3.49", "Oxford Diecast",
		"3.25", "0",
		"1", 1,
		"model", "21",
		"", "pd-2021067382.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1524] = new Element(
		1524, "assets/thumb/148nah001thumb.jpg",
		137, 87,
		"148NAH001", "Albion Horsebox",
		"British Rail - 1:148 scale    MSRP£3.95", "Oxford Diecast",
		"3.5", "0",
		"1", 1,
		"model", "22",
		"", "pd-1456881976.htm",
		"", 1,
		"OXN", "0",
		 0)
	
		Entry[1525] = new Element(
		1525, "assets/thumb/76vw002htumb.jpg",
		137, 75,
		"76VW002", "VW Pick Up",
		"Light Grey - 1:76 scale  MSRP £3.49", "Oxford Diecast",
		"3.25", "0",
		"1", 1,
		"model", "21",
		"", "pd-2129993162.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1526] = new Element(
		1526, "assets/thumb/76vw003thumb.jpg",
		137, 106,
		"76VW003", "VW Bus with surfboards",
		"Blue/White  - 1:76 scale  MSRP £3.49", "Oxford Diecast",
		"3.25", "0",
		"1", 1,
		"model", "21",
		"", "pd-1221153964.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1527] = new Element(
		1527, "assets/thumb/76vw004thumb.jpg",
		137, 87,
		"76VW004", "VW Camper Open",
		"Senegal Red/White   - 1:76 scale  MSRP £3.49", "Oxford Diecast",
		"3.25", "0",
		"1", 1,
		"model", "21",
		"", "pd335434146.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1528] = new Element(
		1528, "assets/thumb/76xr004thumb.jpg",
		137, 75,
		"76XR004", "Ford Escort XR3i",
		"Rosso Red- 1:76 scale  MSRP £3.49", "Oxford Diecast",
		"3.25", "0",
		"1", 1,
		"model", "21",
		"", "pd-1820075872.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1529] = new Element(
		1529, "assets/thumb/148nrt004thumb.jpg",
		137, 106,
		"148NRT004", "RT Bus",
		"London Country - 1:148 scale    MSRP £4.95", "Oxford Diecast",
		"4.5", "0",
		"1", 1,
		"model", "22",
		"", "pd-271126578.htm",
		"", 1,
		"OXN", "0",
		 0)
	
		Entry[1530] = new Element(
		1530, "assets/thumb/148nrt005thumb.jpg",
		137, 112,
		"148NRT005", "RT Bus",
		"London Country - 1:148 scale    MSRP £4.95", "Oxford Diecast",
		"4.5", "0",
		"1", 1,
		"model", "22",
		"", "pd1876742828.htm",
		"", 1,
		"OXN", "0",
		 0)
	
		Entry[1531] = new Element(
		1531, "assets/thumb/148n105002thumb.jpg",
		137, 75,
		"148N105002", "Ford Anglia",
		"Maroon/Grey - 1:148 scale    MSRP£2.49", "Oxford Diecast",
		"2.25", "0",
		"1", 1,
		"model", "22",
		"", "pd1408968890.htm",
		"", 1,
		"OXN", "0",
		 0)
	
		Entry[1532] = new Element(
		1532, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ618-2", "Maintenance Crew",
		"", "ITTC",
		"23", "0",
		"1", 1,
		"item", "63",
		"", "pd-1036130952.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[1533] = new Element(
		1533, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ646", "Hobo Campfire",
		"", "ITTC",
		"23", "0",
		"1", 1,
		"item", "63",
		"", "pd-898619290.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[1534] = new Element(
		1534, "assets/thumb/efe19812thumb.jpg",
		137, 81,
		"19812", "Daimler CVG6 Orion  Cat. No. 19812",
		"Aberdeen Corporation", "EFE",
		"21", "0",
		"1", 1,
		"model", "18",
		"", "pd70460456.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1535] = new Element(
		1535, "assets/thumb/efe28008thumb.jpg",
		137, 71,
		"28008", "Daimler DMS 1 Door  Cat. No. 28008",
		"Cornish Fairways", "EFE",
		"21", "0",
		"1", 1,
		"model", "18",
		"", "pd926611036.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1536] = new Element(
		1536, "assets/thumb/efe30510thumb.jpg",
		137, 64,
		"30510", "Guy GS Special  Cat. No. 30510",
		"London Country", "EFE",
		"21", "0",
		"1", 1,
		"model", "18",
		"", "pd-1855183180.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1537] = new Element(
		1537, "assets/thumb/efe34104thumb.jpg",
		137, 88,
		"34104", "AEC RT3 Bus  Cat. No. 34104",
		"Greenline", "EFE",
		"21", "0",
		"1", 1,
		"model", "18",
		"", "pd-1057208682.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1538] = new Element(
		1538, "assets/thumb/om45608.jpg",
		137, 94,
		"OM45608B", "BMMO D9   Cat. No. OM45608A",
		"Midland Red - Destination Cradley   MSRP £28.99", "Corgi",
		"25", "0",
		"1", 1,
		"model", "11",
		"", "pd1288102935.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[1539] = new Element(
		1539, "assets/thumb/r8237thumb.jpg",
		137, 55,
		"R8237-1", "RJ12 Connection Socket",
		"R8237 RJ12 Connection Socket  MSRP £2.60", "Hornby",
		"2", "0",
		"1", 1,
		"item", "79",
		"", "pd-823145480.htm",
		"", 1,
		"HORNBYDCC", "0",
		 0)
	
		Entry[1540] = new Element(
		1540, "assets/thumb/r8236thumb.jpg",
		137, 55,
		"R8236-1", "RJ12 Leads",
		"R8236 RJ12 Leads   MSRP £6.50", "Hornby",
		"4.5", "0",
		"1", 1,
		"pack", "79",
		"", "pd163476198.htm",
		"", 1,
		"HORNBYDCC", "0",
		 0)
	
		Entry[1541] = new Element(
		1541, "assets/thumb/src16thumb.jpg",
		137, 86,
		"TD-SRC16", "Switch and Route Controller",
		"SRC16 - DCC Compatible accessory decoder", "Team Digital",
		"36", "0",
		"1", 1,
		"item", "115",
		"", "pd-1275103844.htm",
		"", 1,
		"TD", "0",
		 0)
	
		Entry[1542] = new Element(
		1542, "assets/thumb/motodthumb.jpg",
		137, 90,
		"TD-MOTOD", "Satellite Motor Driver",
		"MOTOD - Satellite Stall Motor Driver", "Team Digital",
		"15.5", "0",
		"1", 1,
		"item", "115",
		"", "pd-1296284374.htm",
		"", 1,
		"TD", "0",
		 0)
	
		Entry[1543] = new Element(
		1543, "assets/thumb/r083thumb.jpg",
		137, 84,
		"R083", "Buffer stop",
		"R083 Buffer Stop  MSRP 1.50", "Hornby",
		"1.25", "0",
		"1", 1,
		"pack", "152",
		"", "pd1000463348.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[1544] = new Element(
		1544, "assets/thumb/r6385thumb.jpg",
		137, 55,
		"R6385", "China Clay Hoppers (CDA) Weathered - pack of 3",
		"R6385 China Clay Hoppers (CDA) Weathered EWS - 3 pack  MSRP £52.70", "Hornby",
		"47.5", "0",
		"1", 1,
		"pack", "149",
		"", "pd-1909755070.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[1545] = new Element(
		1545, "assets/thumb/r2738thumb.jpg",
		137, 55,
		"R2738", "BR Fowler 2-6-4T  DCC Ready",
		"R2738 BR Early Fowler 2-6-4T DCC Ready  MSRP £80.00", "Hornby",
		"69.5", "0",
		"1", 1,
		"loco", "150",
		"", "pd-404204736.htm",
		"", 1,
		"HornbyStea", "0",
		 0)
	
		Entry[1546] = new Element(
		1546, "assets/thumb/efe34102thumb.jpg",
		137, 83,
		"34102", "AEC RT3  Cat.No. 34102",
		"London Country", "EFE",
		"19.5", "0",
		"1", 1,
		"model", "18",
		"", "pd1474455692.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1547] = new Element(
		1547, "assets/thumb/efe29010thumb.jpg",
		137, 74,
		"29010", "GM Standard Fleetline  Cat.No. 29010",
		"Badgerline", "EFE",
		"19", "0",
		"1", 1,
		"model", "18",
		"", "pd1222347438.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1548] = new Element(
		1548, "assets/thumb/efe28007thumb.jpg",
		137, 72,
		"28007", "Daimler DMS 1 Door  Cat.No. 28007",
		"Bexleybus", "EFE",
		"19", "0",
		"1", 1,
		"model", "18",
		"", "pd-25808486.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1549] = new Element(
		1549, "assets/thumb/efe23708thumb.jpg",
		137, 78,
		"23708", "Alexander Fleetline  Cat.No. 23708",
		"Maidstone &amp; District", "EFE",
		"19", "0",
		"1", 1,
		"model", "18",
		"", "pd-267092154.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1550] = new Element(
		1550, "assets/thumb/efe20445thumb.jpg",
		137, 74,
		"20445", "Bristol VRIII  Cat.No. 20445",
		"Devon General", "EFE",
		"19", "0",
		"1", 1,
		"model", "18",
		"", "pd-1432905384.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1551] = new Element(
		1551, "assets/thumb/efe14605thumb.jpg",
		137, 51,
		"14605", "Leyland National Mk I  Cat.No. 14605",
		"London Country North West", "EFE",
		"19", "0",
		"1", 1,
		"model", "18",
		"", "pd-1468281116.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1552] = new Element(
		1552, "assets/thumb/ox76ang004.jpg",
		137, 80,
		"76ANG004", "Anglia Van",
		"Royal Mail - 1:76 scale    MSRP£2.95", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd2026687204.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1553] = new Element(
		1553, "assets/thumb/ox76ang005.jpg",
		137, 73,
		"76ANG005", "Anglia Van",
		"Post Office - 1:76 scale    MSRP£2.95", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd1625144242.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1554] = new Element(
		1554, "assets/thumb/ox76ang008thumb.jpg",
		137, 101,
		"76ANG008", "Anglia Van",
		"Walls Ice Cream - 1:76 scale    MSRP£2.95", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd-450391760.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1555] = new Element(
		1555, "assets/thumb/ox76ang031.jpg",
		137, 77,
		"76ANG031", "Anglia Van",
		"London Transport - 1:76 scale    MSRP£2.95", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd-1144939810.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1556] = new Element(
		1556, "assets/thumb/76ca007thumb.jpg",
		137, 100,
		"76CA007", "Bedford CA Van",
		"Royal Mail - 1:76 scale    MSRP£2.95", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd-1274483722.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1557] = new Element(
		1557, "assets/thumb/ox76cor103thumb.jpg",
		137, 78,
		"76COR103", "Ford Cortina Mk 1",
		"Goodwood Green - 1:76 scale    MSRP£2.95", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd401009792.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1558] = new Element(
		1558, "assets/thumb/76COR2003.jpg",
		137, 74,
		"76COR203", "Ford Cortina Mk 2",
		"Red - 1:76 scale    MSRP£2.95", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd-366762322.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1559] = new Element(
		1559, "assets/thumb/76lan188002thumb.jpg",
		137, 83,
		"76LAN188002", "Land Rover Series 1 88&quot; Canvas ",
		"Sand - 1:76 scale  MSRP £2.95", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd-237976676.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1560] = new Element(
		1560, "assets/thumb/76lan188001thumb.jpg",
		137, 89,
		"76LAN188001", "Land Rover Series 1 88&quot; Hard Top ",
		"Civil Defence - 1:76 scale  MSRP £2.95", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd-429505750.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1561] = new Element(
		1561, "assets/thumb/mm007thumb.jpg",
		137, 93,
		"76MM007", "Morris Minor Van",
		"Post Office - 1:76 scale    MSRP £2.95", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd1682997256.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1562] = new Element(
		1562, "assets/thumb/76mm012.jpg",
		137, 94,
		"76MM012", "Morris Minor Van",
		"Co-op - 1:76 scale    MSRP £2.95", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd-2052291210.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1563] = new Element(
		1563, "assets/thumb/76mm015.jpg",
		137, 74,
		"76MM015", "Morris Minor Van",
		"Royal Mail - 1:76 scale    MSRP £2.95", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd-82444140.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1564] = new Element(
		1564, "assets/thumb/mm016thumb.jpg",
		137, 94,
		"76MM016", "Morris Minor Van",
		"AA - 1:76 scale    MSRP £2.95", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd1138403554.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1565] = new Element(
		1565, "assets/thumb/76mm030.jpg",
		137, 78,
		"76MM030", "Morris Minor Van",
		"British Rail - 1:76 scale    MSRP £2.95", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd-848494112.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1566] = new Element(
		1566, "assets/thumb/76mm049.jpg",
		137, 87,
		"76MM049", "Morris Minor Van",
		"Evening News - 1:76 scale    MSRP £2.95", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd-710853874.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1567] = new Element(
		1567, "assets/thumb/76mm050.jpg",
		137, 86,
		"76MM050", "Morris Minor Van",
		"Pickfords - 1:76 scale    MSRP £2.95", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd-826994708.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1568] = new Element(
		1568, "assets/thumb/76mm052.jpg",
		137, 87,
		"76MM052", "Morris Minor Van",
		"BRS Parcels - 1:76 scale    MSRP £2.95", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd-434460678.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1569] = new Element(
		1569, "assets/thumb/twpw4l.jpg",
		137, 166,
		"HLED-TWPW6", "2mm Daylight White (Sunny White) Tower LED - 6 pack",
		"Pack of 6 x 2mm Daylight White (Sunny White) Tower LEDs  with 6 x 1K ohm resistors", "DCC Concepts",
		"5", "0",
		"1", 1,
		"pack", "29",
		"", "pd1019255725.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[1570] = new Element(
		1570, "assets/thumb/EM76637thumb.jpg",
		137, 103,
		"EM76637", "NCB Electric High Top Van Cat. No. EM76637",
		"British Railways  MSRP £4.99", "Classix",
		"4.5", "0",
		"1", 1,
		"model", "6",
		"", "pd-1625749592.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1571] = new Element(
		1571, "assets/thumb/em76638thumb.jpg",
		137, 102,
		"EM76638", "NCB Electric Milk Float Cat. No. EM76638",
		"United Dairies  MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "6",
		"", "pd720557590.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1572] = new Element(
		1572, "assets/thumb/EM76830thumb.jpg",
		137, 70,
		"EM76830", "Austin FL1 Private Hire     Cat. No. EM76830",
		"Brown  MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "6",
		"", "pd690920832.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1573] = new Element(
		1573, "assets/thumb/src8thumb.jpg",
		137, 74,
		"TD-SRC8", "Switch and Route Controller",
		"Requires a Loconet compatible DCC system", "Team Digital",
		"33", "0",
		"1", 1,
		"item", "78",
		"", "pd-1597984299.htm",
		"", 1,
		"OTHRDCCDIS", "10",
		 0)
	
		Entry[1574] = new Element(
		1574, "assets/thumb/CC19902_Gibbs Trailer.jpg",
		137, 91,
		"CC19902-1", "Fridge Trailer  Cat. No. CC19902",
		"Gibbs of Fraserburgh", "Corgi",
		"35", "0",
		"1", 1,
		"model", "1",
		"", "pd1657590888.htm",
		"", 1,
		"CLEAR", "50",
		 0)
	
		Entry[1575] = new Element(
		1575, "assets/thumb/efe14014thumb.jpg",
		137, 78,
		"14014", "Bristol FLF Lodekka  Cat. No. 14014",
		"Eastern Scottish", "EFE",
		"20", "0",
		"1", 1,
		"model", "18",
		"", "pd-679860911.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1576] = new Element(
		1576, "assets/thumb/efe34204thumb.jpg",
		137, 84,
		"34204", "AEC RLH  Cat. No. 34204",
		"London Transport", "EFE",
		"20", "0",
		"1", 1,
		"model", "18",
		"", "pd775413547.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1577] = new Element(
		1577, "assets/thumb/dxsfx064d.jpg",
		137, 239,
		"DXSFX064D", "SFX064D Sound module ",
		"SFX064D Sound module for HO and large scale locos with 6 function outputs", "Digitrax",
		"46", "0",
		"1", 1,
		"decoder", "85",
		"", "pd-1773653876.htm",
		"", 1,
		"DXSOUND", "0",
		 0)
	
		Entry[1578] = new Element(
		1578, "assets/thumb/em76645thumb.jpg",
		137, 85,
		"EM76645", "Ford E83W Van  Cat. No. EM76645",
		"Royal Mail  MSRP £3.99", "Classix",
		"3.5", "0",
		"1", 1,
		"model", "6",
		"", "pd1229598025.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1579] = new Element(
		1579, "assets/thumb/em76648thumb.jpg",
		137, 80,
		"EM76648", "Morris Minor Van  Cat. No. EM76648",
		"British Rail (Yellow)  MSRP £3.99", "Classix",
		"3.5", "0",
		"1", 1,
		"model", "6",
		"", "pd905959583.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1580] = new Element(
		1580, "assets/thumb/tcs_z2.jpg",
		137, 47,
		"Z2", "Z2 2 function decoder",
		"Z2 2 function decoder for Z, N and HO scales - wires only", "TCS",
		"24.5", "0",
		"1", 1,
		"decoder", "116",
		"Harness;Wires only@", "pd-1438825386.htm",
		"", 1,
		"TCSDCC", "0",
		 0)
	
		Entry[1581] = new Element(
		1581, "assets/thumb/Mini microdot Red.jpg",
		137, 97,
		"HLED-MD-RD", "1.6mm Mini Microdot LED pack",
		"Pack of 6 x 1.6mm Mini Microdot Coaxial LEDs with 1K ohm resistors", "DCC Concepts",
		"3", "0",
		"1", 1,
		"pack", "29",
		"Colours available;Red@", "pd135009730.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[1582] = new Element(
		1582, "assets/thumb/76mmt003.jpg",
		137, 79,
		"76MMT003", "Morris Minor Traveller",
		"1967 Maroon - 1:76 scale    MSRP £2.95", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd-1472408232.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1583] = new Element(
		1583, "assets/thumb/ox76mv007thumb.jpg",
		137, 95,
		"76MV007", "Mini Van",
		"Royal Mail - 1:76 scale    MSRP £2.95", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd398358200.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1584] = new Element(
		1584, "assets/thumb/76mv011.jpg",
		137, 78,
		"76MV011", "Mini Van",
		"British Rail - 1:76 scale    MSRP £2.95", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd775953318.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1585] = new Element(
		1585, "assets/thumb/76mv013.jpg",
		137, 90,
		"76MV013", "Mini Van With Ladder",
		"Post Office - 1:76 scale    MSRP£2.95", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd-447331772.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1586] = new Element(
		1586, "assets/thumb/76rab001thumb.jpg",
		137, 70,
		"76RAB001", "Scammell Scarab Van Trailer",
		"British Rail - 1:76 scale  MSRP £6.95", "Oxford Diecast",
		"6.25", "0",
		"1", 1,
		"model", "21",
		"", "pd1180008978.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1587] = new Element(
		1587, "assets/thumb/76sca02cs.jpg",
		137, 69,
		"76SCA02CS", "Scania R420 Curtainside",
		"Pollock - 1:76 scale  MSRP £17.99", "Oxford Diecast",
		"15", "0",
		"1", 1,
		"model", "21",
		"", "pd-96838531.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1588] = new Element(
		1588, "assets/thumb/76sca03csthumb.jpg",
		137, 68,
		"76SCA03CS", "Scania R420 Curtainside",
		"Tinnelly - 1:76 scale  MSRP £17.99", "Oxford Diecast",
		"15", "0",
		"1", 1,
		"model", "21",
		"", "pd-1554377153.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1589] = new Element(
		1589, "assets/thumb/76sca05csthumb.jpg",
		137, 72,
		"76SCA05CS", "Scania R420 Curtainside",
		"Mulgrew Haulage - 1:76 scale  MSRP £17.99", "Oxford Diecast",
		"15", "0",
		"1", 1,
		"model", "21",
		"", "pd1220867811.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1590] = new Element(
		1590, "assets/thumb/ox76tm001thumb.jpg",
		137, 69,
		"76TM001", "Triumph Mayflower",
		"White - 1:76 scale    MSRP £2.95", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd-1409277830.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1591] = new Element(
		1591, "assets/thumb/esu_decoder_tester.jpg",
		137, 137,
		"LS51900", "ESU Decoder Tester",
		"LS51900  ESU Decoder Tester for decoders, plug in for NEM652, NEM651, 21MTC, single wire, motor, LED monitor and 20mm speaker  MSRP £39.52", "ESU",
		"38", "0",
		"1", 1,
		"item", "94",
		"", "pd1222898725.htm",
		"", 1,
		"ESUSPEAK", "0",
		 0)
	
		Entry[1592] = new Element(
		1592, "assets/thumb/pb110.jpg",
		137, 50,
		"N-PB110", "PB110 Power Booster",
		"10 Amp Power Booster (requires separate 10 Amp transformer)", "NCE",
		"164", "0",
		"1", 1,
		"item", "99",
		"", "pd1223850118.htm",
		"", 1,
		"Comps", "0",
		 0)
	
		Entry[1593] = new Element(
		1593, "assets/thumb/76lan1109001thumb.jpg",
		137, 78,
		"76LAN1109001", "Land Rover Series 1 109&quot;",
		"Grey  - 1:76 scale  MSRP £2.95", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd11470698.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1594] = new Element(
		1594, "assets/thumb/dcc218.jpg",
		137, 135,
		"HP-DCC218", "21 pin to 8 pin DCC adapter",
		"Available singly or in 5-packs", "DCC Concepts",
		"2.75", "0",
		"1", 1,
		"item", "133",
		"Multi-pack;Single item@", "pd1224773591.htm",
		"", 1,
		"RJCABLE", "0",
		 0)
	
		Entry[1595] = new Element(
		1595, "assets/thumb/efe20641thumb.jpg",
		137, 50,
		"20641", "Plaxton Pointer Dart  Cat. No. 20641",
		"MTL London", "EFE",
		"19.5", "0",
		"1", 1,
		"model", "18",
		"", "pd1273424086.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1596] = new Element(
		1596, "assets/thumb/efe23319thumb.jpg",
		137, 56,
		"23319", "AEC RF  Mk1 Bus  Cat. No. 23319",
		"London Transport", "EFE",
		"19.5", "0",
		"1", 1,
		"model", "18",
		"", "pd1028059690.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1597] = new Element(
		1597, "assets/thumb/efe36201thumb.jpg",
		137, 60,
		"36201", "RMA Routemaster and Trailer  Cat. No. 36201",
		"BEA", "EFE",
		"21", "0",
		"1", 1,
		"model", "18",
		"", "pd1406702324.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1598] = new Element(
		1598, "assets/thumb/atl9481.jpg",
		137, 52,
		"ATL9481", "HO RTR MP15DC, Norfolk Southern  #2424",
		"ATL9470 HO RTR MP15DC Norfolk Southern (Hood with Square Air Filter) #2424 Atlas Master® Series Gold (With Decoder &amp; QSI Sound) ", "Atlas",
		"189", "0",
		"1", 1,
		"loco", "139",
		"", "pd-223403200.htm",
		"", 1,
		"MP15DC", "0",
		 0)
	
		Entry[1599] = new Element(
		1599, "assets/images/nopicturegreen.jpg",
		133, 46,
		"DXFN04K1", "SDH series function only FN04K1 decoder",
		"", "Digitrax",
		"17", "0",
		"1", 1,
		"decoder", "85",
		"", "pd1225732322.htm",
		"", 1,
		"DXSOUND", "0",
		 0)
	
		Entry[1600] = new Element(
		1600, "assets/thumb/em76827thumb.jpg",
		137, 71,
		"EM76827", "Austin FX3 London Taxi     Cat. No. EM76827",
		"Black  MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "6",
		"", "pd591268837.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1601] = new Element(
		1601, "assets/thumb/em76835thumb.jpg",
		137, 77,
		"EM76835", "Morris Minor Convertible     Cat. No. EM76835",
		"Primrose Yellow MSRP £3.99", "Classix",
		"3.5", "0",
		"1", 1,
		"model", "6",
		"", "pd101304475.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1602] = new Element(
		1602, "assets/thumb/em76840thumb.jpg",
		137, 84,
		"EM76840", "Austin A40 Devon 4-door  Cat. No. EM76840",
		"Black MSRP £3.99", "Classix",
		"3.5", "0",
		"1", 1,
		"model", "6",
		"", "pd433492055.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1603] = new Element(
		1603, "assets/thumb/nce_mini_panel.jpg",
		137, 107,
		"N-MINI", "Mini Panel",
		"MiniPanel, Accessory and Macro Decoder", "NCE",
		"34", "0",
		"1", 1,
		"item", "107",
		"", "pd-348390906.htm",
		"", 1,
		"Access", "0",
		 0)
	
		Entry[1604] = new Element(
		1604, "assets/thumb/EM76639thumb.jpg",
		137, 80,
		"EM76639", "NCB Electric Milk Float Cat. No. EM76639",
		"Co-op  MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "6",
		"", "pd1229699633.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1605] = new Element(
		1605, "assets/thumb/r8696.jpg",
		73, 98,
		"R8696", "Police Box",
		"R8696 Police Box  MSRP £4.75", "Hornby",
		"4.25", "0",
		"1", 1,
		"model", "154",
		"", "pd-1186681227.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1606] = new Element(
		1606, "assets/thumb/eun651thumb.jpg",
		137, 137,
		"EUN651", "EUN651 N scale decoder with direct plug 6-pin interface",
		"2 function direct plug N scale decoder with 6-pin NEM 651 interface - 1 amp continuous 2 amp peak", "TCS",
		"23", "0",
		"1", 1,
		"decoder", "116",
		"", "pd1214276644.htm",
		"", 1,
		"TCSDCC", "0",
		 0)
	
		Entry[1607] = new Element(
		1607, "assets/thumb/mx640rthumb.jpg",
		137, 109,
		"MX640R", "OO/HO 6 function sound decoder with 8 pin NEM652 board",
		"MX640R OO/HO 6 function sound decoder with 8 pin NEM652 board", "Zimo",
		"72", "0",
		"1", 1,
		"decoder", "127",
		"", "pd-88976961.htm",
		"", 1,
		"ZIMODEC", "0",
		 0)
	
		Entry[1608] = new Element(
		1608, "assets/thumb/r8545thumb.jpg",
		137, 110,
		"R8545", "Brick Portals Side Walls",
		"R8545 Skaledale Brick Portals Side Walls  MSRP £4.20", "Hornby",
		"3.6", "0",
		"1", 1,
		"pack", "154",
		"", "pd1226491780.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1609] = new Element(
		1609, "assets/thumb/CC13404_MAN Curtainside.jpg",
		137, 51,
		"CC13404-1", "MAN TGA XL Curtainside/Moffett Mounty  Cat. No. CC13404",
		"Norman Emerson &amp; Sons Ltd", "Corgi",
		"69.5", "0",
		"1", 1,
		"model", "1",
		"", "pd-1502379394.htm",
		"", 1,
		"CLEAR", "50",
		 0)
	
		Entry[1610] = new Element(
		1610, "assets/thumb/CC13408thumb.jpg",
		137, 54,
		"CC13408-1", "ERF ECT Olympic Curtainside  Cat. No. CC13408",
		"Richard Read (Transport) Ltd", "Corgi",
		"61.5", "0",
		"1", 1,
		"model", "1",
		"", "pd36725980.htm",
		"", 1,
		"CLEAR", "50",
		 0)
	
		Entry[1611] = new Element(
		1611, "assets/thumb/CC14002_Eddie Stobart Ltd.jpg",
		137, 57,
		"CC14002-1", "Volvo FH Curtainside  Cat. No. CC14002",
		"Eddie Stobart ", "Corgi",
		"77", "0",
		"1", 1,
		"model", "1",
		"", "pd-1907328344.htm",
		"", 1,
		"CLEAR", "50",
		 0)
	
		Entry[1612] = new Element(
		1612, "assets/thumb/wabbitthumb.jpg",
		137, 151,
		"WABBIT", "Wabbit",
		"Wabbit dual output stall motor type stationary decoder", "DCC Specialties",
		"21.5", "0",
		"1", 1,
		"item", "130",
		"", "pd1226589701.htm",
		"", 1,
		"ONGUARD", "0",
		 0)
	
		Entry[1613] = new Element(
		1613, "assets/thumb/wabbitthumb.jpg",
		137, 151,
		"WABBITFB", "Wabbit with feedback",
		"Wabbit dual output stall motor type stationary decoder with feedback", "DCC Specialties",
		"29", "0",
		"1", 1,
		"item", "130",
		"", "pd1096224699.htm",
		"", 1,
		"ONGUARD", "0",
		 0)
	
		Entry[1614] = new Element(
		1614, "assets/thumb/dcc218.jpg",
		137, 135,
		"HP-DCC218", "21 pin to 8 pin DCC adapter",
		"Available singly or in 5-packs", "DCC Concepts",
		"2.75", "0",
		"1", 1,
		"item", "30",
		"Multi-pack;Single item@", "pd1892610686.htm",
		"", 1,
		"Switches", "0",
		 0)
	
		Entry[1615] = new Element(
		1615, "assets/thumb/hj8600thumb.jpg",
		137, 48,
		"HJ8600", "Class 86 86205 “City of Lancaster” in Virgin red livery",
		"HJ8600 86205 “City of Lancaster” in Virgin red livery  DCC ready MSRP £134.95", "Heljan",
		"95", "0",
		"1", 1,
		"loco", "143",
		"", "pd1226934318.htm",
		"", 1,
		"HJLOCOS", "0",
		 0)
	
		Entry[1616] = new Element(
		1616, "assets/thumb/efe22716thumb.jpg",
		137, 50,
		"22716", "Alexander Y Type  Cat. No. 22716",
		"West Coast Motors", "EFE",
		"20", "0",
		"1", 1,
		"model", "18",
		"", "pd278069886.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1617] = new Element(
		1617, "assets/thumb/efe29205thumb.jpg",
		137, 74,
		"29205", "Leyland Titan 1 Door  Cat. No. 29205",
		"Stagecoach East London", "EFE",
		"21", "0",
		"1", 1,
		"model", "18",
		"", "pd-2024020772.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1618] = new Element(
		1618, "assets/thumb/efe29621thumb.jpg",
		137, 70,
		"29621", "Leyland Olympian  Cat. No. 29621",
		"Arriva Serving the Shires", "EFE",
		"19.5", "0",
		"1", 1,
		"model", "18",
		"", "pd830686826.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1619] = new Element(
		1619, "assets/thumb/efe31503thumb.jpg",
		137, 85,
		"31503", "RM Routemaster  Cat. No. 31503",
		"London Transport", "EFE",
		"21", "0",
		"1", 1,
		"model", "18",
		"", "pd-1724646744.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1620] = new Element(
		1620, "assets/thumb/daf04csthumb.jpg",
		137, 58,
		"76DAF04CS", "DAF XF105 Curtainside",
		"Jack Richards - 1:76 scale  MSRP £17.99", "Oxford Diecast",
		"15", "0",
		"1", 1,
		"model", "21",
		"", "pd-742447336.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1621] = new Element(
		1621, "assets/images/nopicturegreen.jpg",
		133, 46,
		"UK", "UK style harness for T series decoders",
		"UK style wiring harness for T series decoders with NMRA plug ", "TCS",
		"4.5", "0",
		"1", 1,
		"item", "117",
		"", "pd1227619595.htm",
		"", 1,
		"TCS Harn", "0",
		 0)
	
		Entry[1622] = new Element(
		1622, "assets/thumb/lk52685.jpg",
		137, 85,
		"LK52685", "LokPilot micro V3.0 DCC Decoder, with direct 6-pin plug NEM 651 without wire harness",
		"LokPilot micro V3.0 DCC Decoder, with direct 6-pin plug NEM 651 without wire harness  MSRP £36.73", "ESU",
		"30", "0",
		"1", 1,
		"decoder", "93",
		"", "pd-701025603.htm",
		"", 1,
		"LOKPILOT", "0",
		 0)
	
		Entry[1623] = new Element(
		1623, "assets/thumb/dxur90.jpg",
		137, 110,
		"DXUR90", "UR90",
		"UR90 IR Receiver Unit", "Digitrax",
		"31", "0",
		"1", 1,
		"item", "88",
		"", "pd1208374156.htm",
		"", 1,
		"DXSPARE", "0",
		 0)
	
		Entry[1624] = new Element(
		1624, "assets/thumb/148nob001thumb.jpg",
		137, 73,
		"148NOB001", "Bedford OB",
		"British Railways - 1:148 scale    MSRP£3.95", "Oxford Diecast",
		"3.6", "0",
		"1", 1,
		"model", "22",
		"", "pd1228308044.htm",
		"", 1,
		"OXN", "0",
		 0)
	
		Entry[1625] = new Element(
		1625, "assets/thumb/76lan188003thumb.jpg",
		137, 83,
		"76LAN188003", "Land Rover Series 1 88&quot;",
		"Green - 1:76 scale  MSRP £2.95", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd1313291610.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1626] = new Element(
		1626, "assets/thumb/76ca012thumb.jpg",
		137, 83,
		"76CA012", "Bedford CA Milk Float",
		"Express Dairies - 1:76 scale    MSRP£2.95", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd1078364952.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1627] = new Element(
		1627, "assets/thumb/76CA018thumb.jpg",
		137, 74,
		"76CA018", "Bedford CA Minibus",
		"BR Crew Bus - 1:76 scale    MSRP£2.95", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd397133574.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1628] = new Element(
		1628, "assets/thumb/76mgb003thumb.jpg",
		137, 91,
		"76MGTB003", "MGB",
		"British Racing Green - 1:76 scale    MSRP £2.95", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd-2050120846.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1629] = new Element(
		1629, "assets/thumb/76we006thumb.jpg",
		137, 91,
		"76WE006", "W &amp; E Standard Van",
		"BOAC - 1:76 scale    MSRP £2.95", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd-203428625.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1630] = new Element(
		1630, "assets/thumb/76mh004thumb.jpg",
		137, 89,
		"76MH004", "Mechanical Horse Van Trailer",
		"LNER - 1:76 scale  MSRP £6.95", "Oxford Diecast",
		"6.25", "0",
		"1", 1,
		"model", "21",
		"", "pd-1191258670.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1631] = new Element(
		1631, "assets/thumb/76mh006thumb.jpg",
		137, 75,
		"76MH006", "Mechanical Horse Rigid Flatbed ",
		"British Rail - 1:76 scale  MSRP £6.85", "Oxford Diecast",
		"6.25", "0",
		"1", 1,
		"model", "21",
		"", "pd-1410156464.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1632] = new Element(
		1632, "assets/thumb/76at001thumb.jpg",
		137, 101,
		"76AT001", "Austin Taxi",
		"Black - 1:76 scale    MSRP £2.95", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd-1085895332.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1633] = new Element(
		1633, "assets/thumb/76lan188006thumb.jpg",
		137, 92,
		"76LAN188006", "Land Rover Series 1 88&quot; Hard Top ",
		"Post Office Telephones - 1:76 scale  MSRP £2.90", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd1507732264.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1634] = new Element(
		1634, "assets/thumb/76jag7003thumb.jpg",
		137, 70,
		"76JAG7003", "Jaguar MkVIIM",
		"Black - Worcestershire Constabulary - 1:76 scale    MSRP£2.90", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd-1931827818.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1635] = new Element(
		1635, "assets/thumb/76we005thumb.jpg",
		137, 82,
		"76WE005", "W &amp; E Milk Float",
		"Express Dairies - 1:76 scale    MSRP £2.95", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd-317977854.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1636] = new Element(
		1636, "assets/thumb/76we004thumb.jpg",
		137, 92,
		"76WE004", "W &amp; E Bread Van",
		"Co-op Bread Service - 1:76 scale    MSRP £2.90", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd1809953024.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1637] = new Element(
		1637, "assets/thumb/esu_lokprogrammer.jpg",
		137, 137,
		"LS53451", "ESU LokProgrammer",
		"LS53451  ESU LokProgrammer", "ESU",
		"133", "0",
		"1", 1,
		"item", "94",
		"", "pd617839917.htm",
		"", 1,
		"ESUSPEAK", "0",
		 0)
	
		Entry[1638] = new Element(
		1638, "assets/thumb/esu_switchpilot.jpg",
		137, 137,
		"LS51800", "ESU Switchpilot",
		"LS51800  ESU SwitchPilot V1.0, accessory decoder for 4 twin coils magnetic, 2 x Servo, DCC/MM, 1A  MSRP £32.64", "ESU",
		"30", "0",
		"1", 1,
		"item", "94",
		"", "pd656456483.htm",
		"", 1,
		"ESUSPEAK", "0",
		 0)
	
		Entry[1639] = new Element(
		1639, "assets/thumb/esu_switchpilot_extension.jpg",
		137, 50,
		"LS51801", "ESU Switchpilot Extension",
		"LS51801  ESU SwitchPilot Extension, 4 twin-relays (DPDT) output, 2A each, extension for Switch Pilot V1.0  MSRP £26.88", "ESU",
		"24.5", "0",
		"1", 1,
		"item", "94",
		"", "pd1926709769.htm",
		"", 1,
		"ESUSPEAK", "0",
		 0)
	
		Entry[1640] = new Element(
		1640, "assets/thumb/esu_switchpilot_servo_thumb.jpg",
		137, 119,
		"LS51802", "ESU Switchpilot Servo",
		"LS51802  ESU SwitchPilot Servo V1.0, 4-fach Servodecoder, DCC/MM, RailCom  MSRP £26.88", "ESU",
		"24.5", "0",
		"1", 1,
		"item", "94",
		"", "pd-942802081.htm",
		"", 1,
		"ESUSPEAK", "0",
		 0)
	
		Entry[1641] = new Element(
		1641, "assets/thumb/btod52.jpg",
		137, 74,
		"BTOD52", "Albion Cx7 Flatbed   Cat. No. BTOD52",
		"James Spencer  MSRP £5.99", "Base Toys",
		"5.75", "0",
		"1", 1,
		"model", "4",
		"", "pd1246942331.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1642] = new Element(
		1642, "assets/thumb/btod53.jpg",
		137, 75,
		"BTOD53", "Leyland Steer Flatbed    Cat. No. BTOD53",
		"BRS - West Lothian Group  MSRP £5.99", "Base Toys",
		"5.75", "0",
		"1", 1,
		"model", "4",
		"", "pd1808358177.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1643] = new Element(
		1643, "assets/thumb/btod55.jpg",
		137, 47,
		"BTOD55", "Commer Low Loader     Cat. No. BTOD55",
		"Wynns Heavy Haulage  MSRP £5.99", "Base Toys",
		"5.75", "0",
		"1", 1,
		"model", "4",
		"", "pd-1354294729.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1644] = new Element(
		1644, "assets/thumb/btod57.jpg",
		137, 90,
		"BTOD57", "Leyland FG Van     Cat. No. BTOD57",
		"Sunblest Bakeries   MSRP £5.99", "Base Toys",
		"5.75", "0",
		"1", 1,
		"model", "4",
		"", "pd-734194765.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1645] = new Element(
		1645, "assets/thumb/r2509.jpg",
		137, 26,
		"R2771", "Class 121 BR Green",
		"R2771 BR Class 121 BR Green    MSRP £70.95", "Hornby",
		"64.5", "0",
		"1", 1,
		"loco", "151",
		"", "pd1231848874.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[1646] = new Element(
		1646, "assets/thumb/r2767.jpg",
		137, 55,
		"R2767", "Class 73 BR InterCity",
		"R2767 BR InterCity Bo-Bo Electro-Diesel &rsquo;Stewarts Lane&rsquo; Class 73    DCC Ready  MSRP £70.95", "Hornby",
		"64.5", "0",
		"1", 1,
		"loco", "151",
		"", "pd-2143041591.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[1647] = new Element(
		1647, "assets/thumb/r8579thumb.jpg",
		119, 125,
		"R8579", "Pillar Box x 2",
		"R8579 Skaledale Pillar Box Pack of 2  MSRP £2.85", "Hornby",
		"2.6", "0",
		"1", 1,
		"pack", "154",
		"", "pd-768540269.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1648] = new Element(
		1648, "assets/thumb/r8683.jpg",
		137, 55,
		"R8683", "Signal Box",
		"R8683 Signal Box  MSRP £16.80", "Hornby",
		"15", "0",
		"1", 1,
		"model", "154",
		"", "pd-1846073341.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1649] = new Element(
		1649, "assets/thumb/BTO D42.jpg",
		137, 66,
		"BTOD42", "Dodge PN Dropside  Cat. No. BTOD42",
		"BRS - Rother Valley   MSRP £5.99", "Base Toys",
		"5.75", "0",
		"1", 1,
		"model", "4",
		"", "pd1531606885.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1650] = new Element(
		1650, "assets/thumb/BTO D45.jpg",
		137, 63,
		"BTOD45", "Thorneycroft Dropside  Cat. No. BTOD45",
		"Wynn&rsquo;s   MSRP £5.99", "Base Toys",
		"5.75", "0",
		"1", 1,
		"model", "4",
		"", "pd1118445595.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1651] = new Element(
		1651, "assets/thumb/AN40306_Burlingham Seagull.jpg",
		137, 91,
		"AN40306", "Burlingham Seagull  Cat. No. AN40306",
		"Ulsterbus - 50th Anniversary Model", "Corgi",
		"25.5", "0",
		"1", 1,
		"model", "11",
		"", "pd-1295050834.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[1652] = new Element(
		1652, "assets/thumb/R8671.jpg",
		137, 127,
		"R8671", "Victorian Street Lamps (pk 4)",
		"R8671 Victorian Street Lamps (pk 4)  MSRP £5.80", "Hornby",
		"5.4", "0",
		"1", 1,
		"pack", "154",
		"", "pd1155354915.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1653] = new Element(
		1653, "assets/thumb/kd103.jpg",
		137, 51,
		"KD103", "Truss Log Car Kit",
		"KD103  Truss Log Car Kit", "Kadee",
		"34.5", "0",
		"1", 1,
		"kit", "67",
		"", "pd-1513118330.htm",
		"", 1,
		"KADEERS", "0",
		 0)
	
		Entry[1654] = new Element(
		1654, "assets/thumb/kd101.jpg",
		137, 57,
		"KD101", "Disconnect Log Car Kit",
		"KD101   Disconnect Log Car Kit", "Kadee",
		"23", "0",
		"1", 1,
		"kit", "67",
		"", "pd398221092.htm",
		"", 1,
		"KADEERS", "0",
		 0)
	
		Entry[1655] = new Element(
		1655, "assets/thumb/kd205.jpg",
		281, 146,
		"KD205", "Coupler Height and Multi-Purpose Gauge",
		"KD205  Coupler Height and Multi-Purpose Gauge", "Kadee",
		"4.6", "0",
		"1", 1,
		"item", "65",
		"", "pd2124081520.htm",
		"", 1,
		"KADEEACC", "0",
		 0)
	
		Entry[1656] = new Element(
		1656, "assets/thumb/kd206a.jpg",
		137, 78,
		"KD206", "Insulated Multi-Purpose Coupler Height Gauge",
		"KD206   Insulated Multi-Purpose Coupler Height Gauge", "Kadee",
		"4.75", "0",
		"1", 1,
		"item", "65",
		"", "pd1778232606.htm",
		"", 1,
		"KADEEACC", "0",
		 0)
	
		Entry[1657] = new Element(
		1657, "assets/thumb/kd308.jpg",
		137, 82,
		"KD308", "Delayed &quot;under-the-track&quot; Uncoupler",
		"KD308  Delayed &quot;under-the-track&quot; Uncoupler", "Kadee",
		"3.75", "0",
		"1", 1,
		"item", "68",
		"", "pd-1354952580.htm",
		"", 1,
		"KADEEUNC", "0",
		 0)
	
		Entry[1658] = new Element(
		1658, "assets/thumb/kd309.jpg",
		137, 126,
		"KD309", "OO/HO-Scale Electric Under-The-Track Uncoupler Kit",
		"KD309 HO-Scale Electric Under-The-Track Uncoupler Kit", "Kadee",
		"15", "0",
		"1", 1,
		"item", "68",
		"", "pd-878519542.htm",
		"", 1,
		"KADEEUNC", "0",
		 0)
	
		Entry[1659] = new Element(
		1659, "assets/thumb/kd312.jpg",
		137, 95,
		"KD312", "Non-Delayed Uncoupler",
		"KD312 Non-Delayed Uncoupler", "Kadee",
		"4", "0",
		"1", 1,
		"item", "68",
		"", "pd423370824.htm",
		"", 1,
		"KADEEUNC", "0",
		 0)
	
		Entry[1660] = new Element(
		1660, "assets/thumb/kd321.jpg",
		137, 108,
		"KD321", "Delayed &quot;between-the-rails&quot; Uncoupler",
		"KD321  Delayed &quot;between-the-rails&quot; Uncoupler", "Kadee",
		"4.75", "0",
		"1", 1,
		"item", "68",
		"", "pd2084183990.htm",
		"", 1,
		"KADEEUNC", "0",
		 0)
	
		Entry[1661] = new Element(
		1661, "assets/thumb/kd322.jpg",
		137, 108,
		"KD322", "Delayed &quot;between-the-rails&quot; Uncoupler",
		"KD322   Delayed &quot;between-the-rails&quot; Uncoupler", "Kadee",
		"4.5", "0",
		"1", 1,
		"item", "68",
		"", "pd-1765923628.htm",
		"", 1,
		"KADEEUNC", "0",
		 0)
	
		Entry[1662] = new Element(
		1662, "assets/thumb/kd334.jpg",
		137, 155,
		"KD334", "Uncoupler Gluing Jig",
		"KD334    Uncoupler Gluing Jig", "Kadee",
		"2.75", "0",
		"1", 1,
		"item", "68",
		"", "pd889743138.htm",
		"", 1,
		"KADEEUNC", "0",
		 0)
	
		Entry[1663] = new Element(
		1663, "assets/thumb/kd256.jpg",
		137, 130,
		"KD256", "2-56 x 1/2&quot; Acetal Screw",
		"KD256   2-56 x 1/2&quot; Acetal Screw", "Kadee",
		"1.4", "0",
		"1", 1,
		"pack", "66",
		"", "pd-725489120.htm",
		"", 1,
		"KADEECOUP", "0",
		 0)
	
		Entry[1664] = new Element(
		1664, "assets/thumb/efe34205thumb.jpg",
		137, 86,
		"34205", "AEC RLH  Cat. No. 34205",
		"London Transport", "EFE",
		"20", "0",
		"1", 1,
		"model", "18",
		"", "pd1234263894.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1665] = new Element(
		1665, "assets/thumb/efe17703thumb.jpg",
		137, 48,
		"17703", "Leyland National MkII Long   Cat. No. 17703",
		"North Western", "EFE",
		"20", "0",
		"1", 1,
		"model", "18",
		"", "pd-2136601212.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1666] = new Element(
		1666, "assets/thumb/efe18010thumb.jpg",
		137, 72,
		"18010", "MCW Daimler Fleetline    Cat. No. 18010",
		"Huddersfield Corporation", "EFE",
		"20", "0",
		"1", 1,
		"model", "18",
		"", "pd-1313892226.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1667] = new Element(
		1667, "assets/thumb/efe20642thumb.jpg",
		137, 55,
		"20642", "Plaxton Pointer Dart    Cat. No. 20642",
		"Arriva North London", "EFE",
		"20", "0",
		"1", 1,
		"model", "18",
		"", "pd1009729362.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1668] = new Element(
		1668, "assets/thumb/efe34301thumb.jpg",
		137, 91,
		"34301", "AEC RT2    Cat. No. 34301",
		"London Transport", "EFE",
		"20", "0",
		"1", 1,
		"model", "18",
		"", "pd1234355430.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1669] = new Element(
		1669, "assets/thumb/emd567-1.jpg",
		137, 100,
		"STX828040", "EMD 567 Diesel Engines (1st Generation)",
		"TSU-AT1000 for EMD 567 Diesel Engines (1st Generation)", "Soundtraxx",
		"68", "0",
		"1", 1,
		"decoder", "112",
		"", "pd1234438016.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[1670] = new Element(
		1670, "assets/thumb/emd645-1.jpg",
		137, 124,
		"STX828041", "EMD 645 Diesel Engines (2nd Generation)",
		"TSU-AT1000 for EMD 645 Diesel Engines (2nd Generation)", "Soundtraxx",
		"68", "0",
		"1", 1,
		"decoder", "112",
		"", "pd-610125394.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[1671] = new Element(
		1671, "assets/thumb/alco244-1.jpg",
		137, 113,
		"STX828043", "ALCO 244 Diesel Engines",
		"TSU-AT1000 for ALCO 244 Diesel Engines", "Soundtraxx",
		"66.5", "0",
		"1", 1,
		"decoder", "112",
		"", "pd1743040396.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[1672] = new Element(
		1672, "assets/thumb/dg148023thumb.jpg",
		137, 69,
		"DG148023", "Scammell Scarab Sheeted Flatbed    Cat. No. DG148023",
		"Railfreight    MSRP £10.99", "Corgi",
		"9.5", "0",
		"1", 1,
		"model", "13",
		"", "pd1232970538.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[1673] = new Element(
		1673, "assets/thumb/dg201012thumb.jpg",
		137, 77,
		"DG201012", "Morris LD Van  Cat. No. DG201012",
		"Whitbread   MSRP £3.50", "Corgi",
		"3", "0",
		"1", 1,
		"model", "13",
		"", "pd-1286560408.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[1674] = new Element(
		1674, "assets/thumb/dg202012thumb.jpg",
		137, 74,
		"DG202012", "Morris J2 Van  Cat. No. DG202012",
		"Newcastle Brown   MSRP £3.50", "Corgi",
		"3", "0",
		"1", 1,
		"model", "13",
		"", "pd-1653429802.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[1675] = new Element(
		1675, "assets/thumb/dg211006thumb.jpg",
		137, 77,
		"DG211006", "Morris 1000 Van  Cat. No. DG211006",
		"Mac Fisheries   MSRP £3.50", "Corgi",
		"3", "0",
		"1", 1,
		"model", "13",
		"", "pd-332514316.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[1676] = new Element(
		1676, "assets/thumb/dg207006thumb.jpg",
		137, 73,
		"DG207006", "Ford Anglia Van  Cat. No. DG207006",
		"Watneys   MSRP £3.50", "Corgi",
		"3", "0",
		"1", 1,
		"model", "13",
		"", "pd923718466.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[1677] = new Element(
		1677, "assets/thumb/dg203011thumb.jpg",
		137, 68,
		"DG203011", "Bedford CA Van  Cat. No. DG203011",
		"Dickinson &amp; Morris Melton Pork Pies   MSRP £3.50", "Corgi",
		"3", "0",
		"1", 1,
		"model", "13",
		"", "pd-1124420800.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[1678] = new Element(
		1678, "assets/thumb/r8236thumb.jpg",
		137, 55,
		"R8236", "RJ12 Leads",
		"R8236 RJ12 Leads   MSRP £6.50", "Hornby",
		"4.5", "0",
		"1", 1,
		"pack", "147",
		"", "pd1233054545.htm",
		"", 1,
		"DCC", "0",
		 0)
	
		Entry[1679] = new Element(
		1679, "assets/thumb/r8237thumb.jpg",
		137, 55,
		"R8237", "RJ12 Connection Socket",
		"R8237 RJ12 Connection Socket  MSRP £2.60", "Hornby",
		"2", "0",
		"1", 1,
		"item", "147",
		"", "pd1579279847.htm",
		"", 1,
		"DCC", "0",
		 0)
	
		Entry[1680] = new Element(
		1680, "assets/thumb/76tx4004thumb.jpg",
		137, 75,
		"76TX4004", "TX4 Taxi Silver",
		"Dial A Cab - 1:76 scale    MSRP £2.99", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd-1197278611.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1681] = new Element(
		1681, "assets/thumb/76rabo1tthumb.jpg",
		137, 82,
		"76RAB01T", "Pack of 2 x Box Trailers",
		"British Rail - 1:76 scale  MSRP £6.99", "Oxford Diecast",
		"6", "0",
		"1", 1,
		"model", "21",
		"", "pd738818659.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1682] = new Element(
		1682, "assets/thumb/76mh03ttthumb.jpg",
		137, 55,
		"76MH03T", "Pack of 2 x Flat Trailers",
		"GWR - 1:76 scale  MSRP £6.99", "Oxford Diecast",
		"6", "0",
		"1", 1,
		"model", "21",
		"", "pd-1253895351.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1683] = new Element(
		1683, "assets/thumb/76mh04tthumb.jpg",
		137, 95,
		"76MH04T", "Pack of 2 x Box Trailers",
		"LNER - 1:76 scale  MSRP £6.99", "Oxford Diecast",
		"6", "0",
		"1", 1,
		"model", "21",
		"", "pd1736126111.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1684] = new Element(
		1684, "assets/thumb/r8988.jpg",
		137, 156,
		"R8988", "Wooden Summer House",
		"R8988 Wooden Summer House  MSRP £5.30", "Hornby",
		"4.5", "0",
		"1", 1,
		"item", "154",
		"", "pd-444040101.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1685] = new Element(
		1685, "assets/thumb/r8992thumb.jpg",
		137, 82,
		"R8992", "Chlorine Tanks",
		"R8992 Chlorine Tanks  MSRP £7.99", "Hornby",
		"6.5", "0",
		"1", 1,
		"item", "154",
		"", "pd1820721175.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1686] = new Element(
		1686, "assets/thumb/r8993thumb.jpg",
		137, 71,
		"R8993", "Water Cleansing Tank",
		"R8993 Water Cleansing Tank  MSRP £10.75", "Hornby",
		"9.5", "0",
		"1", 1,
		"item", "154",
		"", "pd45572125.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1687] = new Element(
		1687, "assets/thumb/r8995.jpg",
		137, 41,
		"R8995", "Scrap Load",
		"R8995 Scrap Load  MSRP £5.40", "Hornby",
		"4.5", "0",
		"1", 1,
		"item", "154",
		"", "pd-333960445.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1688] = new Element(
		1688, "assets/thumb/r8998thumb.jpg",
		137, 40,
		"R8998", "Girder Load",
		"R8998 Girder Load  MSRP £5.05", "Hornby",
		"4.5", "0",
		"1", 1,
		"item", "154",
		"", "pd423344369.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1689] = new Element(
		1689, "assets/thumb/r8999thumb.jpg",
		137, 42,
		"R8999", "Ore Load",
		"R8999  Ore Load  MSRP £5.60", "Hornby",
		"4.5", "0",
		"1", 1,
		"item", "154",
		"", "pd1908389097.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1690] = new Element(
		1690, "assets/thumb/r9508thumb.jpg",
		137, 128,
		"R9508", "Murco Fuel Storage Tank",
		"R9508 Murco Fuel Storage Tank  MSRP £25.80", "Hornby",
		"23", "0",
		"1", 1,
		"item", "154",
		"", "pd-763029613.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1691] = new Element(
		1691, "assets/thumb/r9509thumb.jpg",
		137, 80,
		"R9509", "Track Boards",
		"R9509 Track Boards  MSRP £7.60", "Hornby",
		"6.5", "0",
		"1", 1,
		"item", "154",
		"", "pd-405934969.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1692] = new Element(
		1692, "assets/thumb/r9512thumb.jpg",
		137, 92,
		"R9512", "Concrete Plate Layers Hut",
		"R9512 Concrete Plate Layers Hut  MSRP £5.99", "Hornby",
		"5.5", "0",
		"1", 1,
		"item", "154",
		"", "pd-1790529077.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1693] = new Element(
		1693, "assets/thumb/r9520thumb.jpg",
		137, 79,
		"R9520", "Fuel Pump",
		"R9520  Fuel Pump  MSRP £2.99", "Hornby",
		"2.5", "0",
		"1", 1,
		"item", "154",
		"", "pd-1079738673.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1694] = new Element(
		1694, "assets/thumb/r9521thumb.jpg",
		137, 61,
		"R9521", "Fuel Unloading Terminal",
		"R9521 Fuel Unloading Terminal  MSRP £18.25", "Hornby",
		"15.5", "0",
		"1", 1,
		"item", "154",
		"", "pd1194712469.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1695] = new Element(
		1695, "assets/thumb/r6477thumb.jpg",
		137, 55,
		"R6477", "GWR Macaw Bogie Bolster Wagon",
		"R6477 GWR Macaw Bogie Bolster Wagon  MSRP £8.80", "Hornby",
		"7.5", "0",
		"1", 1,
		"wagon", "149",
		"", "pd841123195.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[1696] = new Element(
		1696, "assets/thumb/r6466thumb.jpg",
		137, 55,
		"R6469", "OTA Timber Carrier 4",
		"R6469 OTA Timber Carrier 4  MSRP £15.00", "Hornby",
		"12", "0",
		"1", 1,
		"wagon", "149",
		"", "pd823687725.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[1697] = new Element(
		1697, "assets/thumb/r6466thumb.jpg",
		137, 55,
		"R6468", "OTA Timber Carrier 3",
		"R6468 OTA Timber Carrier 3  MSRP £15.00", "Hornby",
		"12", "0",
		"1", 1,
		"wagon", "149",
		"", "pd-2006501947.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[1698] = new Element(
		1698, "assets/thumb/r6466thumb.jpg",
		137, 55,
		"R6467", "OTA Timber Carrier 2",
		"R6467 OTA Timber Carrier 2  MSRP £15.00", "Hornby",
		"12", "0",
		"1", 1,
		"wagon", "149",
		"", "pd1362290559.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[1699] = new Element(
		1699, "assets/thumb/r6466thumb.jpg",
		137, 55,
		"R6466", "OTA Timber Carrier 1",
		"R6466 OTA Timber Carrier 1  MSRP £15.00", "Hornby",
		"12", "0",
		"1", 1,
		"wagon", "149",
		"", "pd572643625.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[1700] = new Element(
		1700, "assets/thumb/r6465thumb.jpg",
		137, 55,
		"R6465", "ZCA (Sea Horse) 3",
		"R6465 ZCA (Sea Horse) 3  MSRP £15.00", "Hornby",
		"12.5", "0",
		"1", 1,
		"wagon", "149",
		"", "pd-789426265.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[1701] = new Element(
		1701, "assets/thumb/r6465thumb.jpg",
		137, 55,
		"R6464", "ZCA (Sea Horse) 2",
		"R6464 ZCA (Sea Horse) 2  MSRP £15.00", "Hornby",
		"12.5", "0",
		"1", 1,
		"wagon", "149",
		"", "pd-1361924335.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[1702] = new Element(
		1702, "assets/thumb/r6465thumb.jpg",
		137, 55,
		"R6463", "ZCA (Sea Horse) 1",
		"R6463 ZCA (Sea Horse) 1  MSRP £15.00", "Hornby",
		"12.5", "0",
		"1", 1,
		"wagon", "149",
		"", "pd-1419853077.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[1703] = new Element(
		1703, "assets/thumb/r6457thumb.jpg",
		137, 55,
		"R6457", "Loadhaul Shark Ballast Brake Van Weathered",
		"R6457 Loadhaul Shark Ballast Brake Van Weathered  MSRP £17.50", "Hornby",
		"15.5", "0",
		"1", 1,
		"wagon", "149",
		"", "pd-1726560743.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[1704] = new Element(
		1704, "assets/thumb/r6456thumb.jpg",
		137, 55,
		"R6456", "BR (grey) Shark Ballast Brake Van Weathered",
		"R6456 BR (grey) Shark Ballast Brake Van Weathered  MSRP £17.50", "Hornby",
		"15.5", "0",
		"1", 1,
		"item", "149",
		"", "pd516416691.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[1705] = new Element(
		1705, "assets/thumb/r6455thumb.jpg",
		137, 55,
		"R6455", "BR (green) Shark Ballast Brake Van Weathered",
		"R6455 BR (green) Shark Ballast Brake Van Weathered  MSRP £17.50", "Hornby",
		"15.5", "0",
		"1", 1,
		"item", "149",
		"", "pd1959342141.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[1706] = new Element(
		1706, "assets/thumb/r6454thumb.jpg",
		137, 55,
		"R6454", "6 Wheel Tank Wagon Satlink ",
		"R6454 Satlink 6 Wheel Tank Wagon MSRP £11.60", "Hornby",
		"10.5", "0",
		"1", 1,
		"wagon", "149",
		"", "pd-1879319753.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[1707] = new Element(
		1707, "assets/thumb/r6453THUMB.jpg",
		137, 55,
		"R6453", "6 wheel Milk Tank Wagon United Dairies ",
		"R6453 United Dairies 6 wheel Milk Tank Wagon  MSRP £11.60", "Hornby",
		"10.5", "0",
		"1", 1,
		"wagon", "149",
		"", "pd570184117.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[1708] = new Element(
		1708, "assets/thumb/r6448thumb.jpg",
		137, 55,
		"R6448", "Caib PGA Hopper Wagon Weathered",
		"R6448 Caib PGA Hopper Wagon Weathered  MSRP £14.49", "Hornby",
		"12.5", "0",
		"1", 1,
		"wagon", "149",
		"", "pd-976980959.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[1709] = new Element(
		1709, "assets/thumb/r6404aTHUMB.jpg",
		137, 55,
		"R6404A", "6 wheel Milk Tank Wagon LMS Express Dairy ",
		"R6404A LMS Express Dairy 6 wheel Milk Tank Wagon  MSRP £11.00", "Hornby",
		"10", "0",
		"1", 1,
		"wagon", "149",
		"", "pd-252224017.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[1710] = new Element(
		1710, "assets/thumb/r4368.jpg",
		137, 55,
		"R4368", "BR Mk3 (blue) Intercity TGS",
		"R4368 BR Mk3 (blue) Intercity TGS  MSRP £24.75", "Hornby",
		"22", "0",
		"1", 1,
		"carriage", "148",
		"", "pd1062192451.htm",
		"", 1,
		"HornbyCarr", "0",
		 0)
	
		Entry[1711] = new Element(
		1711, "assets/thumb/r2876thumb.jpg",
		137, 55,
		"R2876", "GWR Diesel Railcar Express Parcels",
		"R2876  GWR Diesel Railcar Express Parcels  DCC Ready  MSRP £75.50", "Hornby",
		"67", "0",
		"1", 1,
		"loco", "151",
		"", "pd-1058225141.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[1712] = new Element(
		1712, "assets/thumb/r2872thumb.jpg",
		137, 55,
		"R2872", "Class 09 BR (green) 0-6-0 Diesel Electric Shunter",
		"R2872  BR (green) 0-6-0 09 Class Diesel Electric Shunter  DCC Ready  MSRP £75.50", "Hornby",
		"65.5", "0",
		"1", 1,
		"loco", "151",
		"", "pd1652766165.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[1713] = new Element(
		1713, "assets/thumb/r2869thumb.jpg",
		137, 55,
		"R2869", "BR (c/c) Diesel Railcar Express",
		"R2869  BR (c/c) Diesel Railcar Express  DCC Ready  MSRP £75.50", "Hornby",
		"67", "0",
		"1", 1,
		"loco", "151",
		"", "pd-619689927.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[1714] = new Element(
		1714, "assets/thumb/r2821thumb.jpg",
		137, 55,
		"R2821", "Class 395 Hitachi EMU",
		"R2821 Hitachi Class 395 EMU  DCC Ready  MSRP £139.99", "Hornby",
		"117", "0",
		"1", 1,
		"pack", "151",
		"", "pd-1093492269.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[1715] = new Element(
		1715, "assets/thumb/r2809.jpg",
		137, 55,
		"R2809", "Class 142 First Great Western Train Pack",
		"R2809  First Great Western Class 142  DCC Ready MSRP £75.49", "Hornby",
		"68", "0",
		"1", 1,
		"pack", "151",
		"", "pd622686301.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[1716] = new Element(
		1716, "assets/thumb/r2850thumb.jpg",
		137, 55,
		"R2850", "BR Late Castle Class &quot;Ince Castle&quot;",
		"R2850 BR Late Castle Class &quot;Ince Castle&quot;  DCC Ready  MSRP £119.99", "Hornby",
		"99.99", "0",
		"1", 1,
		"loco", "150",
		"", "pd-4615615.htm",
		"", 1,
		"HornbyStea", "0",
		 0)
	
		Entry[1717] = new Element(
		1717, "assets/thumb/r2849thumb.jpg",
		137, 55,
		"R2849", "BR Early Castle Class &quot;Beverston Castle&quot;",
		"R2849 BR Early Castle Class &quot;Beverston Castle&quot;  DCC Ready  MSRP £119.99", "Hornby",
		"99.99", "0",
		"1", 1,
		"loco", "150",
		"", "pd714505883.htm",
		"", 1,
		"HornbyStea", "0",
		 0)
	
		Entry[1718] = new Element(
		1718, "assets/thumb/r2845thumb.jpg",
		137, 55,
		"R2845", "BR Late  Schools Class &quot;Winchester&quot;",
		"R2845 BR Late  Schools Class &quot;Winchester&quot;  DCC Ready  MSRP £119.49", "Hornby",
		"101", "0",
		"1", 1,
		"loco", "150",
		"", "pd-2118037019.htm",
		"", 1,
		"HornbyStea", "0",
		 0)
	
		Entry[1719] = new Element(
		1719, "assets/thumb/r8574.jpg",
		137, 101,
		"R8574", "Gravestones",
		"R8574 Gravestones  MSRP £7.00", "Hornby",
		"6.5", "0",
		"1", 1,
		"pack", "154",
		"", "pd1141218021.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1720] = new Element(
		1720, "assets/thumb/R8613thumb.jpg",
		137, 71,
		"R8613", "Refuse Skips x 2",
		"R8613 Skaledale Refuse Skips  Pack of 2  MSRP £6.15", "Hornby",
		"5.6", "0",
		"1", 1,
		"pack", "154",
		"", "pd1369452265.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1721] = new Element(
		1721, "assets/thumb/dg213003thumb.jpg",
		137, 72,
		"DG213003", "Harrington Horsebox   DG213003",
		"British Rail  MSRP £7.45", "Corgi",
		"7", "0",
		"1", 1,
		"model", "13",
		"", "pd1233144094.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[1722] = new Element(
		1722, "assets/thumb/s11.jpg",
		137, 72,
		"S11", "No.11 smoke generator unit",
		"No.11 smoke generator unit with 10ml smoke oil", "Seuthe",
		"25", "0",
		"1", 1,
		"pack", "75",
		"", "pd1233256599.htm",
		"", 1,
		"Seuthe", "0",
		 0)
	
		Entry[1723] = new Element(
		1723, "assets/thumb/r8679.jpg",
		137, 94,
		"R8679", "Two Bicycles",
		"R8679 Two Bicycles  MSRP £8.75", "Hornby",
		"7.8", "0",
		"1", 1,
		"pack", "154",
		"", "pd356690067.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1724] = new Element(
		1724, "assets/thumb/r8575.jpg",
		137, 162,
		"R8575", "War Memorial",
		"R8575 War Memorial  MSRP £6.40", "Hornby",
		"5.8", "0",
		"1", 1,
		"item", "154",
		"", "pd-1686638693.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1725] = new Element(
		1725, "assets/thumb/r8669.jpg",
		23, 100,
		"R8669", "Belecia Beacons Pre 60s (pk 4)",
		"R8669 Belecia Beacons Pre 60s (pk 4)  MSRP £5.65", "Hornby",
		"4.2", "0",
		"1", 1,
		"pack", "154",
		"", "pd-528768211.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1726] = new Element(
		1726, "assets/thumb/R8580thumb.jpg",
		102, 144,
		"R8580", "Telephone Kiosk",
		"R8580 Skaledale Telephone Kiosk  MSRP £4.35", "Hornby",
		"4", "0",
		"1", 1,
		"model", "154",
		"", "pd-841175559.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1727] = new Element(
		1727, "assets/thumb/r8673thumb.jpg",
		137, 134,
		"R8673", "Station Lamps (pk 4)",
		"R8673  Station Lamps (pk 4) MSRP £6.15", "Hornby",
		"5.5", "0",
		"1", 1,
		"pack", "154",
		"", "pd-382733985.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1728] = new Element(
		1728, "assets/thumb/r8576.jpg",
		115, 122,
		"R8576", "Garden Shed",
		"R8576 Skaledale Garden Shed  MSRP £4.05", "Hornby",
		"3.75", "0",
		"1", 1,
		"model", "154",
		"", "pd362250241.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1729] = new Element(
		1729, "assets/thumb/hj8601thumb.jpg",
		137, 46,
		"HJ8601", "Class 86 86214 “Sans Pareil” in INTERCITY swallow livery",
		"HJ8601 86214 “Sans Pareil” in INTERCITY swallow livery  DCC ready MSRP £134.95", "Heljan",
		"95", "0",
		"1", 1,
		"loco", "143",
		"", "pd-2120346990.htm",
		"", 1,
		"HJLOCOS", "0",
		 0)
	
		Entry[1730] = new Element(
		1730, "assets/thumb/hj8602thumb.jpg",
		137, 43,
		"HJ8602", "Class 86 86215 “The Round Tabler” in Anglia livery",
		"HJ8602 86215 “The Round Tabler” in Anglia livery  DCC ready MSRP £134.95", "Heljan",
		"95", "0",
		"1", 1,
		"loco", "143",
		"", "pd1052721936.htm",
		"", 1,
		"HJLOCOS", "0",
		 0)
	
		Entry[1731] = new Element(
		1731, "assets/thumb/hj8603thumb.jpg",
		137, 53,
		"HJ8603", "Class 86  86233/E3172 “Alstrom Heritage” in heritage Electric Blue livery",
		"HJ8603 86233/E3172 “Alstrom Heritage” in heritage Electric Blue livery   DCC ready MSRP £134.95", "Heljan",
		"95", "0",
		"1", 1,
		"loco", "143",
		"", "pd51126206.htm",
		"", 1,
		"HJLOCOS", "0",
		 0)
	
		Entry[1732] = new Element(
		1732, "assets/thumb/hj8604thumb.jpg",
		137, 40,
		"HJ8604", "Class 86  86605 in Freightliner green livery",
		"HJ8604 86605 in Freightliner green livery  DCC ready MSRP £134.95", "Heljan",
		"95", "0",
		"1", 1,
		"loco", "143",
		"", "pd-1652079588.htm",
		"", 1,
		"HJLOCOS", "0",
		 0)
	
		Entry[1733] = new Element(
		1733, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HJ2650", "Class 26 26015 BR blue with full yellow ends  Cat. No. 2650",
		"HJ2650 26015 BR blue with full yellow ends  DCC Ready  MSRP £99.00", "Heljan",
		"90", "0",
		"1", 1,
		"loco", "143",
		"", "pd-1116555350.htm",
		"", 1,
		"HJLOCOS", "0",
		 0)
	
		Entry[1734] = new Element(
		1734, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HJ2651", "Class 26 26006 Railfreight “red-stripe” livery Cat. No. 2651",
		"HJ2651 26006 Railfreight “red-stripe” livery  DCC Ready  MSRP £99.00", "Heljan",
		"90", "0",
		"1", 1,
		"loco", "143",
		"", "pd1485688296.htm",
		"", 1,
		"HJLOCOS", "0",
		 0)
	
		Entry[1735] = new Element(
		1735, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HJ2652", "Class 26 26003 in engineers “Dutch” livery Cat. No. 2652",
		"HJ2652 26003 in engineers “Dutch” livery  DCC Ready  MSRP £99.00", "Heljan",
		"90", "0",
		"1", 1,
		"loco", "143",
		"", "pd386270806.htm",
		"", 1,
		"HJLOCOS", "0",
		 0)
	
		Entry[1736] = new Element(
		1736, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HJ2653", "Class 26 26004 in Railfreight Coal sector livery Cat. No. 2653",
		"HJ2653 26004 in Railfreight Coal sector livery  DCC Ready  MSRP £99.00", "Heljan",
		"90", "0",
		"1", 1,
		"loco", "143",
		"", "pd-1470960524.htm",
		"", 1,
		"HJLOCOS", "0",
		 0)
	
		Entry[1737] = new Element(
		1737, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HJ2654", "Class 26 D5301/26001 “Eastfield” in heritage BR green livery Cat. No. 2654",
		"HJ2654 D5301/26001 “Eastfield” in heritage BR green livery  DCC Ready  MSRP £99.00", "Heljan",
		"79", "0",
		"1", 1,
		"loco", "143",
		"", "pd1995765698.htm",
		"", 1,
		"HJLOCOS", "0",
		 0)
	
		Entry[1738] = new Element(
		1738, "assets/thumb/hj3510.jpg",
		137, 40,
		"HJ3510", "Class 35  D7051 in all-over early blue with small yellow panels (weathered)  Cat. No. 3510",
		"HJ3510  D7051 in all-over early blue with small yellow panels (weathered)  DCC Ready  MSRP £99.00", "Heljan",
		"82", "0",
		"1", 1,
		"loco", "143",
		"", "pd1620391918.htm",
		"", 1,
		"HJLOCOS", "0",
		 0)
	
		Entry[1739] = new Element(
		1739, "assets/thumb/nob002thumb.jpg",
		137, 82,
		"148NOB002", "Bedford OB",
		"Southdown - 1:148 scale    MSRP£3.95", "Oxford Diecast",
		"3.6", "0",
		"1", 1,
		"model", "22",
		"", "pd-112250150.htm",
		"", 1,
		"OXN", "0",
		 0)
	
		Entry[1740] = new Element(
		1740, "assets/thumb/efe99601.jpg",
		137, 96,
		"99601-1", "Large crates",
		"Set of 3 large crates", "EFE",
		"1.4", "0",
		"1", 1,
		"pack", "19",
		"", "pd1235310687.htm",
		"", 1,
		"Gilbow", "0",
		 0)
	
		Entry[1741] = new Element(
		1741, "assets/thumb/efe99602.jpg",
		137, 98,
		"99602-1", "Small crates",
		"Set of 3 small crates", "EFE",
		"1.4", "0",
		"1", 1,
		"pack", "19",
		"", "pd1484951973.htm",
		"", 1,
		"Gilbow", "0",
		 0)
	
		Entry[1742] = new Element(
		1742, "assets/thumb/BarrelsBig.jpg",
		137, 55,
		"99605-1", "Large Barrels ",
		"Set of 3 large barrels", "EFE",
		"1.4", "0",
		"1", 1,
		"pack", "19",
		"", "pd520143963.htm",
		"", 1,
		"Gilbow", "0",
		 0)
	
		Entry[1743] = new Element(
		1743, "assets/thumb/BarrelsSmall.jpg",
		137, 64,
		"99606-1", "Small Barrels ",
		"Set of 3 small barrels", "EFE",
		"1.4", "0",
		"1", 1,
		"pack", "19",
		"", "pd-1957933567.htm",
		"", 1,
		"Gilbow", "0",
		 0)
	
		Entry[1744] = new Element(
		1744, "assets/thumb/MetalKegBig.jpg",
		137, 50,
		"99607-1", "Aluminium Kegs ",
		"Set of 3 aluminium kegs", "EFE",
		"1.4", "0",
		"1", 1,
		"pack", "19",
		"", "pd676513815.htm",
		"", 1,
		"Gilbow", "0",
		 0)
	
		Entry[1745] = new Element(
		1745, "assets/thumb/efe99608.jpg",
		137, 72,
		"99608-1", "Oil Drums ",
		"Set of 3 oil drums", "EFE",
		"1.5", "0",
		"1", 1,
		"pack", "19",
		"", "pd628189213.htm",
		"", 1,
		"Gilbow", "0",
		 0)
	
		Entry[1746] = new Element(
		1746, "assets/images/nopicturegreen.jpg",
		133, 46,
		"99609-1", "Small Oil Drums ",
		"Set of 3 small oil drums", "EFE",
		"1.4", "0",
		"1", 1,
		"pack", "19",
		"", "pd49176467.htm",
		"", 1,
		"Gilbow", "0",
		 0)
	
		Entry[1747] = new Element(
		1747, "assets/thumb/efe99610.jpg",
		137, 106,
		"99610-1", "Bottles in Crates ",
		"Set of 3 crates with bottles", "EFE",
		"1.4", "0",
		"1", 1,
		"pack", "19",
		"", "pd-1399768071.htm",
		"", 1,
		"Gilbow", "0",
		 0)
	
		Entry[1748] = new Element(
		1748, "assets/images/nopicturegreen.jpg",
		133, 46,
		"2924", "AEC Regent III London Transport RT7  Cat. No. 2924",
		"1946 London Transport RT7  MSRP £189.99", "Sunstar",
		"171", "0",
		"1", 1,
		"model", "26",
		"", "pd1235397669.htm",
		"", 1,
		"SSRT", "0",
		 0)
	
		Entry[1749] = new Element(
		1749, "assets/images/nopicturegreen.jpg",
		133, 46,
		"5010", "Bedford OB Coach in Bridlington livery  Cat. No. 5010",
		"1949 Bedford OB Coach in Bridlington livery  MSRP £124.99", "Sunstar",
		"112", "0",
		"1", 1,
		"model", "24",
		"", "pd-1900518693.htm",
		"", 1,
		"ssbEDFORD", "0",
		 0)
	
		Entry[1750] = new Element(
		1750, "assets/thumb/efe27625thumb.jpg",
		137, 45,
		"27625", "Wright Volvo Renown  Cat. No. 27625",
		"The Lancashire Way", "EFE",
		"21", "0",
		"1", 1,
		"model", "18",
		"", "pd-1390514495.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1751] = new Element(
		1751, "assets/thumb/efe28818thumb.jpg",
		137, 74,
		"28818", "Leyland Titan 2 Door  Cat. No. 28818",
		"Oxford City Line", "EFE",
		"21", "0",
		"1", 1,
		"model", "18",
		"", "pd1520228055.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1752] = new Element(
		1752, "assets/thumb/efe29411thumb.jpg",
		137, 52,
		"29411", "Bristol RELH Dual Purpose  Cat. No. 29411",
		"Jones of Aberbeeg", "EFE",
		"20", "0",
		"1", 1,
		"model", "18",
		"", "pd-137939783.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1753] = new Element(
		1753, "assets/thumb/dg201013thumb.jpg",
		137, 76,
		"DG201013", "Morris LD Van  Cat. No. DG201013",
		"Walls Sausages   MSRP £3.50", "Corgi",
		"3", "0",
		"1", 1,
		"model", "13",
		"", "pd1236680687.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[1754] = new Element(
		1754, "assets/thumb/dg218003thumb.jpg",
		137, 62,
		"DG218003", "Ford Escort Mk 1   DG218003",
		"Police   MSRP £3.50", "Corgi",
		"3", "0",
		"1", 1,
		"model", "13",
		"", "pd-1843526731.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[1755] = new Element(
		1755, "assets/thumb/dg207005thumb.jpg",
		137, 98,
		"DG207005", "Ford Anglia Van  Cat. No. DG207005",
		"AA   MSRP £3.50", "Corgi",
		"3", "0",
		"1", 1,
		"model", "13",
		"", "pd1121961195.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[1756] = new Element(
		1756, "assets/thumb/r920thumb.jpg",
		137, 55,
		"R920", "Insulated fishplates",
		"R920   Insulated fishplates   MSRP 1.25", "Hornby",
		"1.15", "0",
		"1", 1,
		"pack", "152",
		"", "pd-536641263.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[1757] = new Element(
		1757, "assets/thumb/hb27.jpg",
		137, 101,
		"HB27", "High Base Speaker 27mm (1.06&quot;) 8 ohm",
		"", "Tony's Train Exchange",
		"4.75", "0",
		"1", 1,
		"speaker", "132",
		"", "pd1236796224.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[1758] = new Element(
		1758, "assets/thumb/hb277e.jpg",
		137, 126,
		"HB27E", "High Base Speaker Enclosure 27mm (1.06&quot;) 8 ohm",
		"Enclosure for 27mm High Base Speaker ", "Tony's Train Exchange",
		"7", "0",
		"1", 1,
		"item", "132",
		"", "pd933075822.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[1759] = new Element(
		1759, "assets/thumb/pickupspringsthumb.jpg",
		137, 87,
		"H-DCF-PSN", "48 pack, pickup spring",
		"48 pack, pickup spring - available for N and OO/HO/EM/P4 gauges", "DCC Concepts",
		"13", "0",
		"1", 1,
		"pack", "30",
		"Scale;N gauge@", "pd1237640256.htm",
		"", 1,
		"Switches", "0",
		 0)
	
		Entry[1760] = new Element(
		1760, "assets/thumb/em76837thumb.jpg",
		137, 75,
		"EM76837", "Morris Minor Traveller  Cat. No. EM76837",
		"Police Panda", "Classix",
		"3.5", "0",
		"1", 1,
		"model", "6",
		"", "pd-266250107.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1761] = new Element(
		1761, "assets/thumb/em76831thumb.jpg",
		137, 73,
		"EM76831", "Austin FL1 Hire Car  Cat. No. EM76831",
		"Black/Cream", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "6",
		"", "pd-230354967.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1762] = new Element(
		1762, "assets/thumb/em76829thumb.jpg",
		137, 73,
		"EM76829", "Austin FX3 Taxi  Cat. No. EM76829",
		"Black/Dark Blue", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "6",
		"", "pd1262538243.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1763] = new Element(
		1763, "assets/thumb/em76671thumb.jpg",
		137, 84,
		"EM76671", "NCB Bakers Van  Cat. No. EM76671",
		"Co-op Golden Crust     MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "6",
		"", "pd-1398698739.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1764] = new Element(
		1764, "assets/thumb/em76669thumb.jpg",
		137, 95,
		"EM76669", "NCB Milk Float  Cat. No. EM76669",
		"Express Dairies     MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "6",
		"", "pd-2143199353.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1765] = new Element(
		1765, "assets/thumb/em76644thumb.jpg",
		137, 94,
		"EM76644", "Morris J Van  Cat. No. EM76644",
		"Royal Mail     MSRP £3.99", "Classix",
		"3.5", "0",
		"1", 1,
		"model", "6",
		"", "pd-980765711.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1766] = new Element(
		1766, "assets/thumb/em76508thumb.jpg",
		137, 87,
		"EM76508", "JenTug Artic Parcels Van  Cat. No. EM76508",
		"British Railways", "Classix",
		"7.25", "0",
		"1", 1,
		"model", "6",
		"", "pd-2012744501.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1767] = new Element(
		1767, "assets/thumb/em76502thumb.jpg",
		137, 57,
		"EM76502", "Jen Helec Artic with Dropside trailer",
		"British Railways", "Classix",
		"6.25", "0",
		"1", 1,
		"model", "6",
		"", "pd1238509717.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1768] = new Element(
		1768, "assets/thumb/sfx0416.jpg",
		137, 218,
		"DXSFX0416", "SFX0416 SoundFX+Function Decoder",
		"16 megabit capacity for more complex projects. 4 functions", "Digitrax",
		"43", "0",
		"1", 1,
		"decoder", "85",
		"", "pd1238609047.htm",
		"", 1,
		"DXSOUND", "0",
		 0)
	
		Entry[1769] = new Element(
		1769, "assets/thumb/hj1707.jpg",
		137, 77,
		"HJ1708", "Class 17  D8507 BR blue, full yellow panels  Cat. No. 1708",
		"HJ1708 Class 17 D8507 BR blue, full yellow panels   DCC Ready   MSRP £99.00", "Heljan",
		"89", "0",
		"1", 1,
		"loco", "143",
		"", "pd129742770.htm",
		"", 1,
		"HJLOCOS", "0",
		 0)
	
		Entry[1770] = new Element(
		1770, "assets/thumb/cp-rdthumb.jpg",
		137, 91,
		"HLED-CP-RD", "Chrome Panel LED pack",
		"Pack of 5 x chrome panel LEDs wired with resistors - available in 4 colours", "DCC Co