	// 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/EFE29604.jpg",
		137, 69,
		"29604", "Leyland Olympian Type B  Cat. No. 29604",
		"Preston Bus", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "18",
		"", "pd-1676141924.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/EFE24903thumb.jpg",
		137, 79,
		"24903", "Mercedes Beaver  Cat. No. 24903",
		"Metrobus (Minimetro)", "EFE",
		"16.35", "0",
		"1", 1,
		"", "18",
		"", "pd1314985202.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/EFE29301.jpg",
		137, 64,
		"29301", "Leyland Olympian Type A  Cat. No. 29301",
		"Wilts &amp; Dorset", "EFE",
		"17.35", "0",
		"1", 1,
		"item", "18",
		"", "pd-58703642.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/ooc41909.JPG",
		137, 86,
		"41909", "Leyland PD3 Queen Mary  Cat. No.41909",
		"Southdown", "Corgi",
		"20.4", "0",
		"1", 1,
		"model", "12",
		"", "pd-467972569.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/EFE26314thumb.jpg",
		137, 78,
		"26314", "Guy Arab II Utility  Cat. No. 26314",
		"Stockport", "EFE",
		"16.85", "0",
		"1", 1,
		"model", "18",
		"", "pd-1168731834.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/cbthumb.jpg",
		137, 93,
		"CB", "8-pin NMRA plug circuit board",
		"NEM 652 board", "TCS",
		"2.3", "0",
		"1", 1,
		"item", "104",
		"", "pd-1684894873.htm",
		"", 1,
		"TCS Harn", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/EFE29101thumb.jpg",
		137, 74,
		"29101", "Daimler DMS 2 Door  Cat. No. 29101",
		"Metrobus", "EFE",
		"17.85", "0",
		"1", 1,
		"item", "18",
		"", "pd1277659039.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/EFE27614thumb.jpg",
		137, 46,
		"27614", "Wright Volvo Endurance  Cat. No. 27614",
		"The Delaine", "EFE",
		"16.35", "0",
		"1", 1,
		"", "18",
		"", "pd-1156638128.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/EFE28809thumb.jpg",
		137, 69,
		"28809", "Leyland Titan 2 Door  Cat. No. 28809",
		"Blackburn Transport", "EFE",
		"17.35", "0",
		"1", 1,
		"", "18",
		"", "pd-1711468708.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/EFE29504thumb.jpg",
		137, 46,
		"29504", "Plaxton Panorama Type B  Cat. No. 29504",
		"Royal Blue", "EFE",
		"16.35", "0",
		"1", 1,
		"", "18",
		"", "pd-786728681.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/DG175007.jpg",
		137, 50,
		"DG175007", "Scammell Handyman Flatbed Trailer &amp; Steel Load  Cat. No. DG175007",
		"BRS", "Corgi",
		"11.2", "0",
		"1", 1,
		"", "13",
		"", "pd-2001138525.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/DG175006_Scammell Handyman.jpg",
		137, 54,
		"DG175006", "Scammell Handyman Tanker  Cat. No. DG175006",
		"BP", "Corgi",
		"11.2", "0",
		"1", 1,
		"", "13",
		"", "pd910021293.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/DG175004_Scammell Handyman.jpg",
		137, 55,
		"DG175004", "Scammell Handyman Flatbed Trailer &amp; Brick Load  Cat. No. DG175004",
		"Redland", "Corgi",
		"11.2", "0",
		"1", 1,
		"", "13",
		"", "pd245235601.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/EFE16525.jpg",
		137, 71,
		"16525", "MCW Leyland Atlantean  Cat. No. 16525",
		"Great Yarmouth Corporation", "EFE",
		"17.85", "0",
		"1", 1,
		"", "18",
		"", "pd1856161977.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/dT-1_pkg_reduced.jpg",
		137, 224,
		"DT-1", "Infra-red detector/timer",
		"", "ITTC",
		"14.3", "0",
		"1", 1,
		"item", "143",
		"", "pd930791347.htm",
		"", 1,
		"Detectors", "0",
		 0)
	
		Entry[15] = new Element(
		15, "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",
		"5.1", "0",
		"1", 1,
		"item", "104",
		"", "pd82451437.htm",
		"", 1,
		"TCS Harn", "0",
		 0)
	
		Entry[16] = new Element(
		16, "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",
		"2.3", "0",
		"1", 1,
		"item", "104",
		"", "pd490954501.htm",
		"", 1,
		"TCS Harn", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ100", "US Steam Whistle",
		"HQ100", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd-1374350954.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ105", "Track Sounds",
		"HQ105", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd-107361115.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ110", "US Steam Loco Bell",
		"HQ110", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd2075217184.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ115", "US Standing Loco",
		"HQ115", "ITTC",
		"16.35", "0",
		"1", 1,
		"item", "144",
		"", "pd-645695410.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ120", "US Water Fill Loco",
		"HQ120", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd1961791276.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ125", "Steam Donkey (with whistle)",
		"HQ125", "ITTC",
		"16.35", "0",
		"1", 1,
		"item", "144",
		"", "pd1317614671.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ126", "Steam Donkey (without whistle)",
		"HQ126", "ITTC",
		"16.35", "0",
		"1", 1,
		"item", "144",
		"", "pd-531656939.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ130", "Steam Winch",
		"HQ130", "ITTC",
		"16.35", "0",
		"1", 1,
		"item", "144",
		"", "pd-1542602933.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ210", "US Diesel Bell",
		"HQ210", "ITTC",
		"16.35", "0",
		"1", 1,
		"item", "144",
		"", "pd1946997255.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ215", "Diesel Engine",
		"HQ215", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd1498694541.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ280", "Trolley Bell (2 dings)",
		"HQ280", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd599550083.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ300", "US Level Crossing Bell",
		"HQ300", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd381955689.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ320-1", "Turntable 1",
		"HQ320-1", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd1267351231.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ400", "Cow",
		"HQ400", "ITTC",
		"16.35", "0",
		"1", 1,
		"item", "144",
		"", "pd-1849578537.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ405", "Sheep",
		"HQ405", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd-497946147.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ410", "Chickens/Cockerel",
		"HQ410", "ITTC",
		"16.35", "0",
		"1", 1,
		"item", "144",
		"", "pd-1334771885.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ415", "Pigs",
		"HQ415", "ITTC",
		"16.35", "0",
		"1", 1,
		"item", "144",
		"", "pd253485497.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ420", "Farmyard",
		"HQ420", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd1201431183.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ425", "Puppies",
		"HQ425", "ITTC",
		"16.35", "0",
		"1", 1,
		"item", "144",
		"", "pd1237804885.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ430", "Horse trotting",
		"HQ430", "ITTC",
		"16.35", "0",
		"1", 1,
		"item", "144",
		"", "pd-1545449077.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ500", "Thunder",
		"HQ500", "ITTC",
		"18.4", "0",
		"1", 1,
		"item", "144",
		"", "pd109534897.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ505", "Brook/birds",
		"HQ505", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd1352730695.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ506", "Brook only",
		"HQ506", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd-581671987.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ510", "Night sounds",
		"HQ510", "ITTC",
		"16.35", "0",
		"1", 1,
		"item", "144",
		"", "pd-1049460029.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ515", "Waterfall",
		"HQ515", "ITTC",
		"16.35", "0",
		"1", 1,
		"item", "144",
		"", "pd-1077357911.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ520", "Ocean Seagulls/Foghorn",
		"HQ520", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd1802009855.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ600", "Machine shop",
		"HQ600", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd616351557.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ601", "Conveyor",
		"HQ601", "ITTC",
		"16.35", "0",
		"1", 1,
		"item", "144",
		"", "pd-905415941.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ610", "Saw mill",
		"HQ610", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd94510497.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ615", "City Traffic",
		"HQ615", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd-676349807.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ642", "Calliope",
		"HQ642", "ITTC",
		"16.35", "0",
		"1", 1,
		"item", "144",
		"", "pd-812878553.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ644", "Amusement Park",
		"HQ644", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd413473709.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ660", "Children playing",
		"HQ660", "ITTC",
		"16.35", "0",
		"1", 1,
		"item", "144",
		"", "pd1114996131.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ700", "Track Crew  (Arc welder, Jack Hammer, Sledge Hammer) - Played individually",
		"HQ700", "ITTC",
		"16.35", "0",
		"1", 1,
		"item", "144",
		"", "pd494127241.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ701", "Track Crew  (Arc welder, Jack Hammer, Sledge Hammer) Mixed together",
		"HQ701", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd1300751839.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ702", "Track Crew  (Gas welder, Jack Hammer, Sledge Hammer) Played individually",
		"HQ702", "ITTC",
		"16.35", "0",
		"1", 1,
		"item", "144",
		"", "pd-221127899.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ703", "Track Crew  (Gas welder, Jack Hammer, Sledge Hammer) Mixed together",
		"HQ703", "ITTC",
		"16.35", "0",
		"1", 1,
		"item", "144",
		"", "pd-1386796581.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ900", "US Station steam sounds",
		"HQ900", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd-403461093.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ910", "US Station/Diesel passing",
		"HQ910", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd383810497.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[56] = new Element(
		56, "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",
		"5.1", "0",
		"1", 1,
		"item", "104",
		"", "pd-1396723359.htm",
		"", 1,
		"TCS Harn", "0",
		 0)
	
		Entry[57] = new Element(
		57, "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",
		"5.1", "0",
		"1", 1,
		"", "104",
		"", "pd1351199244.htm",
		"", 1,
		"TCS Harn", "0",
		 0)
	
		Entry[58] = new Element(
		58, "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",
		"5.1", "0",
		"1", 1,
		"", "104",
		"", "pd-130592722.htm",
		"", 1,
		"TCS Harn", "0",
		 0)
	
		Entry[59] = new Element(
		59, "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",
		"5.1", "0",
		"1", 1,
		"item", "104",
		"", "pd-616545389.htm",
		"", 1,
		"TCS Harn", "0",
		 0)
	
		Entry[60] = new Element(
		60, "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",
		"5.1", "0",
		"1", 1,
		"item", "104",
		"", "pd2084945913.htm",
		"", 1,
		"TCS Harn", "0",
		 0)
	
		Entry[61] = new Element(
		61, "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",
		"5.1", "0",
		"1", 1,
		"", "104",
		"", "pd936012495.htm",
		"", 1,
		"TCS Harn", "0",
		 0)
	
		Entry[62] = new Element(
		62, "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,
		"", "104",
		"", "pd838707605.htm",
		"", 1,
		"TCS Harn", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/sw4.jpg",
		51, 120,
		"SW4", "DPDT Toggle Switch",
		"", "ITTC",
		"0.7", "0",
		"1", 1,
		"item", "26",
		"", "pd1095500616.htm",
		"", 1,
		"Switches", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/sw1.jpg",
		50, 112,
		"SW1-B", "Push switch - black button",
		"", "ITTC",
		"0.35", "0",
		"1", 1,
		"item", "26",
		"Colours available;Black@", "pd-453461322.htm",
		"", 1,
		"Switches", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/sw2.jpg",
		51, 120,
		"SW2", "SPDT Toggle Switch",
		"", "ITTC",
		"0.5", "0",
		"1", 1,
		"item", "26",
		"", "pd732575700.htm",
		"", 1,
		"Switches", "0",
		 0)
	
		Entry[66] = new Element(
		66, "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",
		"5.1", "0",
		"1", 1,
		"pack", "25",
		"", "pd1217100496.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[67] = new Element(
		67, "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", "25",
		"", "pd-2040914562.htm",
		"", 2,
		"LED", "0",
		 0)
	
		Entry[68] = new Element(
		68, "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",
		"1.2", "0",
		"1", 1,
		"item", "25",
		"", "pd-2105247780.htm",
		"", 2,
		"LED", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/1mmleds.jpg",
		137, 146,
		"HLED-PW1-L", "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.15", "0",
		"1", 1,
		"pack", "25",
		"Colours available;Lunar white@", "pd1100952140.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/15mmheatshrinkthumb.jpg",
		137, 137,
		"TW15-GN", "1.5mm heat shrink sleeving - 1 metre length - various colours",
		"1.5mm heat shrink sleeving - green", "Printasleeve",
		"1", "0",
		"1", 1,
		"metre", "24",
		"Color;Green@", "pd1119252074.htm",
		"", 1,
		"Shrink", "0",
		 0)
	
		Entry[71] = new Element(
		71, "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", "24",
		"Colours available;Black@", "pd1534996699.htm",
		"", 1,
		"Shrink", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/EFE20435thumb.jpg",
		137, 72,
		"20435", "Bristol VRIII  Cat. No. 20435",
		"First Eastern National", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "18",
		"", "pd1964349492.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/EFE16606.jpg",
		137, 58,
		"16606", "Leyland National Mk1 Short 2 Door  Cat. No. 16606",
		"London Transport", "EFE",
		"15.8", "0",
		"1", 1,
		"item", "18",
		"", "pd-1626288856.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/EFE27613.jpg",
		137, 51,
		"27613", "Wright Volvo Renown  Cat. No. 27613",
		"Brighton &amp; Hove", "EFE",
		"16.35", "0",
		"1", 1,
		"", "18",
		"", "pd-448822718.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/EFE29006thumb.jpg",
		137, 69,
		"29006", "GM Standard Fleetline  Cat. No. 29006",
		"Yorkshire Rider Halifax", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "18",
		"", "pd1792188550.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/EFE29402.jpg",
		137, 46,
		"29402", "Bristol RELH Coach  Cat. No. 29402",
		"United", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "18",
		"", "pd876994254.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/EFE29801.jpg",
		137, 52,
		"29801", "Wright Dennis Lance  Cat. No. 29801",
		"London Country", "EFE",
		"17.35", "0",
		"1", 1,
		"item", "18",
		"", "pd-1551634277.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/DG176015thumb.jpg",
		130, 82,
		"DG176015", "Leyland 8 Wheel Dropside Lorry   Cat. No. DG176015",
		"Glasso Paints", "Corgi",
		"8.15", "0",
		"1", 1,
		"model", "13",
		"", "pd-462226274.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/DG187004.jpg",
		137, 59,
		"DG187004", "Guy Big J Tipper   Cat. No. DG187004 ",
		"Pointer   MSRP £11.99", "Corgi",
		"9.95", "0",
		"1", 1,
		"model", "13",
		"", "pd1805409835.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[80] = new Element(
		80, "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", "25",
		"", "pd1104415850.htm",
		"", 2,
		"LED", "0",
		 0)
	
		Entry[81] = new Element(
		81, "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", "25",
		"", "pd-901107544.htm",
		"", 2,
		"LED", "0",
		 0)
	
		Entry[82] = new Element(
		82, "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", "25",
		"", "pd-1509153002.htm",
		"", 2,
		"LED", "0",
		 0)
	
		Entry[83] = new Element(
		83, "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", "25",
		"", "pd1525742388.htm",
		"", 2,
		"LED", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/efe26315thumb.jpg",
		137, 84,
		"26315", "Guy Arab II Utility  Cat. No. 26315",
		"Southdown", "EFE",
		"16.85", "0",
		"1", 1,
		"model", "18",
		"", "pd-51496247.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/efe27901thumb.jpg",
		137, 69,
		"27901", "Daimler DMS Open Top  Cat. No. 27901",
		"Big Bus Company", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "18",
		"", "pd1143599461.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/efe29404thumb.jpg",
		137, 49,
		"29404", "Bristol RELH D/P Coach  Cat. No. 29404",
		"East Midland", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "18",
		"", "pd-867655137.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/efe29803thumb.jpg",
		137, 39,
		"29803", "Wright Dennis Lance  Cat. No. 29803",
		"Badgerline", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "18",
		"", "pd1105552574.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/EFE24322.jpg",
		137, 75,
		"24322", "BET Leyland Tiger Club  Cat. No. 24322",
		"Stratford Blue", "EFE",
		"16.35", "0",
		"1", 1,
		"", "18",
		"", "pd-962634984.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/EFE24813.jpg",
		137, 67,
		"24813", "Mercedes Minibus  Cat. No. 24813",
		"Northumbria", "EFE",
		"16.35", "0",
		"1", 1,
		"model", "18",
		"", "pd-1450134978.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/EFE25403thumb.jpg",
		121, 118,
		"25403", "MCW Daimler Fleetline  Cat. No. 25403",
		"City of Cardiff", "EFE",
		"16.35", "0",
		"1", 1,
		"model", "18",
		"", "pd-2085154060.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/efe24814thumb.jpg",
		137, 64,
		"24814", "Mercedes Minibus  Cat. No. 24814",
		"First Eastern Counties", "EFE",
		"16.35", "0",
		"1", 1,
		"item", "18",
		"", "pd-882338959.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/OM41109thumb.jpg",
		137, 87,
		"OM41109", "Daimler CVG6/East Lancs  Cat. No. OM41109",
		"Bradford City Transport", "Corgi",
		"17.6", "0",
		"1", 1,
		"model", "12",
		"", "pd-974228901.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/OM43312thumb.jpg",
		137, 65,
		"OM43312", "Plaxton Premiere   Cat. No. OM43312",
		"Wilts &amp; Dorset Bus Co.", "Corgi",
		"18.9", "0",
		"1", 1,
		"model", "12",
		"", "pd-1039115783.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/OM44704thumb.jpg",
		137, 62,
		"OM44704", "Dennis Dart SLF/Plaxton   Cat. No. OM44704",
		"Arriva Kent &amp; Sussex (Transweald)", "Corgi",
		"16.35", "0",
		"1", 1,
		"model", "12",
		"", "pd-998906987.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/DG176017thumb.jpg",
		137, 57,
		"DG176017", "Leyland 8 wheel Dropside Lorry   Cat. No. DG176017",
		"Entress Transport Ltd", "Corgi",
		"8.15", "0",
		"1", 1,
		"model", "13",
		"", "pd1592415709.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/DG186007thumb.jpg",
		137, 69,
		"DG186007", "ERF LV Tanker   Cat. No. DG186007",
		"NAFTA   MSRP £12.99", "Corgi",
		"10.2", "0",
		"1", 1,
		"model", "13",
		"", "pd-1175928577.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/DG187006thumb.jpg",
		137, 75,
		"DG187006", "Guy Big J Tipper &amp; Load   Cat. No. DG187006",
		"BRS   MSRP £12.99", "Corgi",
		"10.2", "0",
		"1", 1,
		"model", "13",
		"", "pd-1186329918.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[98] = new Element(
		98, "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.35", "0",
		"1", 1,
		"model", "13",
		"", "pd-1633662123.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/efe29302thumb.jpg",
		137, 64,
		"29302", "Leyland Olympian  Cat. No. 29302",
		"Wilts &amp; Dorset", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "18",
		"", "pd1314324144.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/thumb/EFE16124thumb.jpg",
		137, 72,
		"16124", "Leyland PD2 Highbridge  Cat. No. 16124",
		"Bradford City Transport", "EFE",
		"15.8", "0",
		"1", 1,
		"item", "18",
		"", "pd1692298675.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/EFE28808.jpg",
		137, 88,
		"28808", "Leyland Titan 2 Door  Cat. No. 28808",
		"Metroline", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "18",
		"", "pd554837764.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[102] = new Element(
		102, "assets/thumb/EFE29005.jpg",
		137, 67,
		"29005", "GM Standard Fleetline  Cat. No. 29005",
		"Swindon Thamesdown", "EFE",
		"17.35", "0",
		"1", 1,
		"", "18",
		"", "pd1656838572.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[103] = new Element(
		103, "assets/thumb/DG148009.jpg",
		137, 93,
		"DG148009", "Scammell Scarab Van Trailer  Cat. No. DG148009",
		"Railfrieght", "Corgi",
		"8.15", "0",
		"1", 1,
		"", "13",
		"", "pd1953277089.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/OM41909.jpg",
		130, 82,
		"OM41909", "Leyland PD3/Queen Mary   Cat. No. OM41909",
		"Southdown", "Corgi",
		"17.6", "0",
		"1", 1,
		"model", "12",
		"", "pd-82455191.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/DG148011.jpg",
		137, 61,
		"DG148011", "Scammell Scarab Flatbed Trailer &amp; Parcel Load  Cat. No. DG148011",
		"United Glass", "Corgi",
		"8.15", "0",
		"1", 1,
		"", "13",
		"", "pd-556961044.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/thumb/DG176011.jpg",
		137, 93,
		"DG176011", "Leyland 8 Wheel Dropside Lorry  Cat. No. DG176011",
		"Jack Richards", "Corgi",
		"8.15", "0",
		"1", 1,
		"", "13",
		"", "pd1583236115.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/DG186003.jpg",
		137, 69,
		"DG186003", "ERF LV Sheeted Flatbed Trailer   Cat. No. DG186003",
		"Pollock   MSRP £12.99", "Corgi",
		"10.7", "0",
		"1", 1,
		"model", "13",
		"", "pd-1750800430.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/OM43402_Plaxton Beaver.jpg",
		137, 70,
		"OM43402", "Plaxton Beaver Cat. No. OM43402  - reduced price - damaged case",
		"East Yorkshire Motor Services", "Corgi",
		"14.3", "0",
		"1", 1,
		"model", "12",
		"", "pd-166505900.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/OM44702.jpg",
		130, 82,
		"OM44702", "Dennis Dart   Cat. No. OM44702",
		"Metroline", "Corgi",
		"16.35", "0",
		"1", 1,
		"", "12",
		"", "pd-1372275225.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/thumb/uk1018thumb.jpg",
		137, 79,
		"UK1018", "Dennis Trident Alexander ALX400  Cat. No. UKBUS1018 ",
		"First London", "Creative Master Northcord Ltd",
		"23", "0",
		"1", 1,
		"", "15",
		"", "pd1106572143.htm",
		"", 1,
		"CMNL", "0",
		 0)
	
		Entry[111] = new Element(
		111, "assets/thumb/ukbus2012thumb.jpg",
		137, 89,
		"UK2012", "Dennis Trident Plaxton President  Cat. No. UKBUS2012 ",
		"Stagecoach Oxford Brookes Bus", "Creative Master Northcord Ltd",
		"23", "0",
		"1", 1,
		"model", "15",
		"", "pd800708478.htm",
		"", 1,
		"CMNL", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/uk3009thumb.jpg",
		137, 62,
		"UK3009", "Dennis Dart MPD/Plaxton  Cat. No. UKBUS3009",
		"Southern Vectis", "Creative Master Northcord Ltd",
		"17.85", "0",
		"1", 1,
		"model", "15",
		"", "pd1114205034.htm",
		"", 1,
		"CMNL", "0",
		 0)
	
		Entry[113] = new Element(
		113, "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.55", "0",
		"1", 1,
		"decoder", "102",
		"", "pd-1470295885.htm",
		"1::10::2.5;", 1,
		"TCSDCC", "0",
		 0)
	
		Entry[114] = new Element(
		114, "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.5", "0",
		"1", 1,
		"decoder", "102",
		"Harness;Wires only@", "pd-1310896009.htm",
		"", 1,
		"TCSDCC", "0",
		 0)
	
		Entry[115] = new Element(
		115, "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",
		"23.5", "0",
		"1", 1,
		"decoder", "102",
		"Harness;Wires only@", "pd-1930456539.htm",
		"", 1,
		"TCSDCC", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/thumb/MC6.jpg",
		137, 88,
		"MC6", "MC6 - 6 function decoder",
		"MC6 - Six Function Micro Decoder ", "TCS",
		"24.5", "0",
		"1", 1,
		"decoder", "102",
		"", "pd-2090536275.htm",
		"", 1,
		"TCSDCC", "0",
		 0)
	
		Entry[117] = new Element(
		117, "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.25", "0",
		"1", 1,
		"decoder", "102",
		"Harness;Wires only@", "pd-154663332.htm",
		"", 1,
		"TCSDCC", "0",
		 0)
	
		Entry[118] = new Element(
		118, "assets/thumb/tcs-t4xthumb.jpg",
		137, 301,
		"T4X", "T4X - 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",
		"18.5", "0",
		"1", 1,
		"decoder", "102",
		"Harness;Wires only@", "pd1103758117.htm",
		"", 1,
		"TCSDCC", "0",
		 0)
	
		Entry[119] = new Element(
		119, "assets/thumb/tcs-t6xthumb.jpg",
		137, 312,
		"T6X", "T6X 6 function wires only decoder with BEMF",
		"A powerful decoder for OO/HO scale with 9-pin connector and 6 x 100mA outputs", "TCS",
		"20.5", "0",
		"1", 1,
		"decoder", "102",
		"Harness;Wires only@", "pd1097496954.htm",
		"", 1,
		"TCSDCC", "0",
		 0)
	
		Entry[120] = new Element(
		120, "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",
		"26.5", "0",
		"1", 1,
		"decoder", "102",
		"Harness;Wires only@", "pd749876340.htm",
		"", 1,
		"TCSDCC", "0",
		 0)
	
		Entry[121] = new Element(
		121, "assets/thumb/efe12307thumb.jpg",
		137, 59,
		"12307", "Harrington Grenadier  Cat. No. 12307",
		"North Western", "EFE",
		"16.35", "0",
		"1", 1,
		"model", "18",
		"", "pd383310456.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[122] = new Element(
		122, "assets/thumb/efe13916thumb.jpg",
		137, 74,
		"13916", "Bristol Lodekka FLF  Cat. No. 13916",
		"Stagecoach", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "18",
		"", "pd918037862.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[123] = new Element(
		123, "assets/thumb/efe18007thumb.jpg",
		137, 74,
		"18007", "MCW Daimler Fleetline  Cat. No. 18007",
		"Belfast Corporation", "EFE",
		"16.35", "0",
		"1", 1,
		"model", "18",
		"", "pd-271430450.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[124] = new Element(
		124, "assets/thumb/efe20633thumb.jpg",
		137, 46,
		"20633", "Plaxton Pointer Dart  Cat. No. 20633",
		"Western National", "EFE",
		"15.3", "0",
		"1", 1,
		"model", "18",
		"", "pd-1739696710.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[125] = new Element(
		125, "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",
		"85", "0",
		"1", 1,
		"pack", "102",
		"Harness;Wires only@", "pd1107853332.htm",
		"", 1,
		"TCSDCC", "0",
		 0)
	
		Entry[126] = new Element(
		126, "assets/thumb/EFE17701.jpg",
		137, 43,
		"17701", "Leyland National MkII Long  Cat. No. 17701",
		"Colchester Transport", "EFE",
		"15.8", "0",
		"1", 1,
		"item", "18",
		"", "pd-2113001896.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[127] = new Element(
		127, "assets/thumb/efe17702thumb.jpg",
		137, 53,
		"17702", "Leyland National MkII Long  Cat. No. 17702",
		"Go Northern", "EFE",
		"15.8", "0",
		"1", 1,
		"model", "18",
		"", "pd-1543191458.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[128] = new Element(
		128, "assets/thumb/EFE18609.jpg",
		137, 84,
		"18609", "Bristol VRIII Open Top  Cat. No. 18609",
		"Village Bus Co.", "EFE",
		"16.35", "0",
		"1", 1,
		"item", "18",
		"", "pd-813877906.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[129] = new Element(
		129, "assets/thumb/EFE20431.jpg",
		137, 76,
		"20431", "Bristol VRIII  Cat. No. 20431",
		"Brighton &amp; Hove", "EFE",
		"17.35", "0",
		"1", 1,
		"item", "18",
		"", "pd-239999667.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[130] = new Element(
		130, "assets/thumb/EFE25806DLthumb.jpg",
		137, 75,
		"25806DL", "Daimler DMS 1 Door  Cat. No. 25806DL",
		"Midland Fox De-Luxe", "EFE",
		"17.35", "0",
		"1", 1,
		"", "18",
		"", "pd-657747534.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[131] = new Element(
		131, "assets/thumb/EFE26804.jpg",
		137, 87,
		"26804", "Leyland Duple  Cat. No. 26804",
		"Wallace Arnold", "EFE",
		"17.35", "0",
		"1", 1,
		"item", "18",
		"", "pd1619967057.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[132] = new Element(
		132, "assets/thumb/EFE29603thumb.jpg",
		137, 130,
		"29603", "Leyland Olympian Type B  Cat. No. 29603",
		"Solent Blueline", "EFE",
		"17.35", "0",
		"1", 1,
		"", "18",
		"", "pd-1099498944.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[133] = new Element(
		133, "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.15", "0",
		"1", 1,
		"item", "11",
		"", "pd827507660.htm",
		"", 1,
		"Collectors", "0",
		 0)
	
		Entry[134] = new Element(
		134, "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.7", "0",
		"1", 1,
		"", "13",
		"", "pd-686461641.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[135] = new Element(
		135, "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",
		"73", "0",
		"1", 1,
		"loco", "136",
		"", "pd1931217456.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[136] = new Element(
		136, "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",
		"50", "0",
		"1", 1,
		"loco", "136",
		"", "pd-1616867416.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[137] = new Element(
		137, "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",
		"50", "0",
		"1", 1,
		"loco", "136",
		"", "pd1944428054.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[138] = new Element(
		138, "assets/thumb/r2477a.jpg",
		137, 29,
		"R2477A", "Class 56 Transrail No.56113",
		"R2477A Transrail Class 56 No.56113   MSRP £55.99", "Hornby",
		"50", "0",
		"1", 1,
		"loco", "136",
		"", "pd1986218548.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[139] = new Element(
		139, "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.95", "0",
		"1", 1,
		"loco", "136",
		"", "pd1107004290.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[140] = new Element(
		140, "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.95", "0",
		"1", 1,
		"loco", "136",
		"", "pd-758176384.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[141] = new Element(
		141, "assets/images/nopicturegreen.jpg",
		133, 46,
		"41902", "Leyland PD3 Queen Mary  Cat. No. 41902",
		"Southdown", "Corgi",
		"20.4", "0",
		"1", 1,
		"model", "12",
		"", "pd1482810445.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[142] = new Element(
		142, "assets/thumb/efe16318.jpg",
		137, 61,
		"16318DL", "Bristol LS  Cat. No. 16318DL",
		"Midland General", "EFE",
		"12.75", "0",
		"1", 1,
		"model", "18",
		"", "pd-314605326.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[143] = new Element(
		143, "assets/thumb/efe24811.jpg",
		137, 65,
		"24811", "Mercedes Minibus  Cat. No. 24811",
		"London &amp; Country", "EFE",
		"16.35", "0",
		"1", 1,
		"model", "18",
		"", "pd-901886842.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[144] = new Element(
		144, "assets/thumb/efe25604.jpg",
		137, 81,
		"25604", "RCL RM Original  Cat. No. 25604",
		"London Sightseeing", "EFE",
		"16.35", "0",
		"1", 1,
		"model", "18",
		"", "pd176643620.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[145] = new Element(
		145, "assets/thumb/efe28902.jpg",
		137, 67,
		"28902", "GM Standard Atlantean  Cat. No. 28902",
		"East Kent", "EFE",
		"16.35", "0",
		"1", 1,
		"model", "18",
		"", "pd-769265848.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[146] = new Element(
		146, "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",
		"442", "0",
		"1", 1,
		"set", "87",
		"", "pd1613030287.htm",
		"", 1,
		"Starter", "0",
		 0)
	
		Entry[147] = new Element(
		147, "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",
		"372", "0",
		"1", 1,
		"set", "87",
		"", "pd1109976794.htm",
		"", 1,
		"Starter", "0",
		 0)
	
		Entry[148] = new Element(
		148, "assets/thumb/pb105-thumb.jpg",
		137, 51,
		"N-PB105", "PB105 Power Booster",
		"5 Amp Power Booster (requires separate 5 Amp transformer)", "NCE",
		"107", "0",
		"1", 1,
		"item", "88",
		"", "pd-1732218850.htm",
		"", 1,
		"Comps", "0",
		 0)
	
		Entry[149] = new Element(
		149, "assets/thumb/phboxthumb.jpg",
		137, 95,
		"N-PH-Box", "PowerPro System box for 5 amp system",
		"PowerPro System Box with booster and cables", "NCE",
		"237", "0",
		"1", 1,
		"item", "88",
		"", "pd687661707.htm",
		"", 1,
		"Comps", "0",
		 0)
	
		Entry[150] = new Element(
		150, "assets/thumb/procabthumb.jpg",
		113, 246,
		"N-ProCab", "Deluxe Cab",
		"Deluxe Cab, Backlit LCD with digital encoder, extra features", "NCE",
		"107.5", "0",
		"1", 1,
		"item", "89",
		"", "pd1644117503.htm",
		"", 1,
		"Throttles", "0",
		 0)
	
		Entry[151] = new Element(
		151, "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",
		"84.8", "0",
		"1", 1,
		"item", "89",
		"", "pd-2086760060.htm",
		"", 1,
		"Throttles", "0",
		 0)
	
		Entry[152] = new Element(
		152, "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",
		"17.85", "0",
		"1", 1,
		"decoder", "90",
		"", "pd-1735071615.htm",
		"", 1,
		"HODec", "0",
		 0)
	
		Entry[153] = new Element(
		153, "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.45", "0",
		"1", 1,
		"decoder", "90",
		"Harness;Wires only@", "pd-355685731.htm",
		"", 1,
		"HODec", "0",
		 0)
	
		Entry[154] = new Element(
		154, "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",
		"17.5", "0",
		"1", 1,
		"item", "96",
		"", "pd1122956855.htm",
		"", 1,
		"Access", "0",
		 0)
	
		Entry[155] = new Element(
		155, "assets/thumb/dasr-thumb.jpg",
		137, 39,
		"N-DA-SR", "DA-SR Replacement 5 function decoder",
		"DASR 5 function Silent Running decoder, replaces circuit board in locos with Kato drive mechanisms", "NCE",
		"16.75", "0",
		"1", 1,
		"decoder", "90",
		"", "pd1110102622.htm",
		"", 1,
		"HODec", "0",
		 0)
	
		Entry[156] = new Element(
		156, "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", "0",
		"1", 1,
		"decoder", "90",
		"", "pd1110321635.htm",
		"", 1,
		"HODec", "0",
		 0)
	
		Entry[157] = new Element(
		157, "assets/thumb/efe20436thumb.jpg",
		137, 69,
		"20436", "Bristol VRIII  Cat. No. 20436",
		"Yorkshire Rider Bradford", "EFE",
		"17.35", "0",
		"1", 1,
		"item", "18",
		"", "pd1931179948.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[158] = new Element(
		158, "assets/thumb/EFE22513thumb.jpg",
		137, 46,
		"22513", "Alexander Y Type  Cat. No. 22513",
		"SELNEC Cheshire", "EFE",
		"16.35", "0",
		"1", 1,
		"item", "18",
		"", "pd-666558827.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[159] = new Element(
		159, "assets/thumb/efe28901.jpg",
		137, 73,
		"28901", "GM Atlantean  Cat. No. 28901",
		"Maidstone &amp; District", "EFE",
		"16.35", "0",
		"1", 1,
		"model", "18",
		"", "pd638046730.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[160] = new Element(
		160, "assets/thumb/efe29605thumb.jpg",
		137, 68,
		"29605", "Leyland Olympian  Cat. No. 29605",
		"Go North East", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "18",
		"", "pd-1168207851.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[161] = new Element(
		161, "assets/thumb/efe29606thumb.jpg",
		137, 64,
		"29606", "Leyland Olympian  Cat. No. 29606",
		"Maidstone &amp; District", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "18",
		"", "pd307165628.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[162] = new Element(
		162, "assets/thumb/DG176006.jpg",
		137, 67,
		"DG176006", "Leyland 8 Wheel Dropside Lorry  Cat. No. DG176006",
		"Eddie Stobart Ltd", "Corgi",
		"6.35", "0",
		"1", 1,
		"", "13",
		"", "pd2005375195.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[163] = new Element(
		163, "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.95", "0",
		"1", 1,
		"", "13",
		"", "pd-364301220.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[164] = new Element(
		164, "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,
		"model", "12",
		"", "pd-1081897232.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[165] = new Element(
		165, "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.9", "0",
		"1", 1,
		"loco", "136",
		"", "pd1282511161.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[166] = new Element(
		166, "assets/thumb/efe29607thumb.jpg",
		137, 95,
		"29607", "Leyland Olympian  Cat. No. 29607",
		"London United", "EFE",
		"18.4", "0",
		"1", 1,
		"model", "18",
		"", "pd1113494968.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[167] = new Element(
		167, "assets/thumb/efe24904.jpg",
		137, 61,
		"24904", "Mercedes Minibus  Cat. No. 24904",
		"South Wales Transport", "EFE",
		"16.35", "0",
		"1", 1,
		"model", "18",
		"", "pd1113830837.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[168] = new Element(
		168, "assets/thumb/efe15002thumb.jpg",
		137, 52,
		"15002", "Leyland National MkI Long  Cat. No. 15002",
		"Brighton &amp; Hove", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "18",
		"", "pd1341004112.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[169] = new Element(
		169, "assets/thumb/EFE15634thumb.jpg",
		137, 72,
		"15634", "RM Routemaster  Cat. No. 15634",
		"Stagecoach Magicbus", "EFE",
		"17.35", "0",
		"1", 1,
		"item", "18",
		"", "pd-975250992.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[170] = new Element(
		170, "assets/thumb/efe15636thumb.jpg",
		137, 80,
		"15636", "RM Routemaster  Cat. No. 15636",
		"Stagecoach", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "18",
		"", "pd189341064.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[171] = new Element(
		171, "assets/thumb/efe15712.jpg",
		137, 47,
		"15712", "Plaxton Panorama Elite III  Cat. No. 15712",
		"South Wales", "EFE",
		"17.85", "0",
		"1", 1,
		"model", "18",
		"", "pd-418431454.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[172] = new Element(
		172, "assets/thumb/EFE20433.jpg",
		137, 74,
		"20433", "Bristol VRIII  Cat. No. 20433",
		"Alder Valley", "EFE",
		"17.35", "0",
		"1", 1,
		"", "18",
		"", "pd665907104.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[173] = new Element(
		173, "assets/thumb/efe20631thumb.jpg",
		137, 79,
		"20631", "Plaxton Pointer Dart  Cat. No. 20631",
		"Brighton &amp; Hove", "EFE",
		"15.3", "0",
		"1", 1,
		"item", "18",
		"", "pd-600974282.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[174] = new Element(
		174, "assets/thumb/efe29403thumb.jpg",
		137, 51,
		"29403", "Bristol RELH Coach  Cat. No. 29403",
		"Badgerline", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "18",
		"", "pd-577198005.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[175] = new Element(
		175, "assets/thumb/CC07713.jpg",
		137, 69,
		"CC07713", "Land Rover Defender - Collectors Club Model 2004  Cat. No. CC07713",
		"Yorkshire Rider", "Corgi",
		"10.2", "0",
		"1", 1,
		"item", "11",
		"", "pd1501263843.htm",
		"", 1,
		"Collectors", "0",
		 0)
	
		Entry[176] = new Element(
		176, "assets/thumb/CC60304.jpg",
		137, 86,
		"CC60304", "Bedford QLD",
		"Army Fire Service", "Corgi",
		"16.35", "0",
		"1", 1,
		"item", "10",
		"", "pd1591050923.htm",
		"", 1,
		"999", "0",
		 0)
	
		Entry[177] = new Element(
		177, "assets/thumb/DG150009.jpg",
		137, 55,
		"DG150009", "Foden S21 Tanker  Cat. No. DG150009",
		"Albion Sugar Co", "Corgi",
		"10.7", "0",
		"1", 1,
		"", "13",
		"", "pd1275569678.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[178] = new Element(
		178, "assets/thumb/DG150010thumb.jpg",
		130, 82,
		"DG150010", "Foden S21 Tanker  Cat. No. DG150010",
		"Tunnel Glucose Refineries", "Corgi",
		"10.7", "0",
		"1", 1,
		"model", "13",
		"", "pd-1869942511.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[179] = new Element(
		179, "assets/thumb/DG176009_Leyland Dropside.jpg",
		137, 52,
		"DG176009", "Leyland 8 Wheel Dropside Lorry  Cat. No. DG176009",
		"Hoveringham Gravels", "Corgi",
		"8.15", "0",
		"1", 1,
		"", "13",
		"", "pd-1055660905.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[180] = new Element(
		180, "assets/thumb/DG186000.jpg",
		118, 80,
		"DG186000", "ERF LV Sheeted Flatbed Trailer   Cat. No. DG186000",
		"Smith of Maddiston   MSRP £12.99", "Corgi",
		"10.7", "0",
		"1", 1,
		"", "13",
		"", "pd-1288239984.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[181] = new Element(
		181, "assets/thumb/DG187007thumb.jpg",
		137, 69,
		"DG187007", "Guy Big J Tipper &amp; Load   Cat. No. DG187007 ",
		"Blue Circle Cement   MSRP £12.99", "Corgi",
		"10.2", "0",
		"1", 1,
		"model", "13",
		"", "pd373982915.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[182] = new Element(
		182, "assets/thumb/OM42510_East Lancs Vyking.jpg",
		137, 75,
		"OM42510", "East Lancs Vyking   Cat. No. OM42510",
		"Delaine Buses", "Corgi",
		"17.6", "0",
		"1", 1,
		"", "12",
		"", "pd-1230178872.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[183] = new Element(
		183, "assets/thumb/bd20-thumb.jpg",
		134, 81,
		"N-BD20", "Block detector",
		"Block detector for DCC, .01 to 20 Amps, recently enhanced", "NCE",
		"16.5", "0",
		"1", 1,
		"item", "94",
		"", "pd1115048950.htm",
		"", 1,
		"SigDec", "0",
		 0)
	
		Entry[184] = new Element(
		184, "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.85", "0",
		"1", 1,
		"decoder", "91",
		"Harness;Wires only@", "pd1350686562.htm",
		"", 1,
		"NDec", "0",
		 0)
	
		Entry[185] = new Element(
		185, "assets/thumb/ncez14sr.jpg",
		137, 127,
		"N-Z14SR", "4 function Z/N scale decoder",
		"Generic 4 function, 1 Amp, .34x.56x.12&quot;", "NCE",
		"25", "0",
		"1", 1,
		"decoder", "91",
		"Harness;Wires only@", "pd285138173.htm",
		"", 1,
		"NDec", "0",
		 0)
	
		Entry[186] = new Element(
		186, "assets/thumb/utp-thumb.jpg",
		134, 100,
		"N-UTP", "Cab Bus UTP fascia panel",
		"Cab Bus UTP fascia panel with RJ12 connectors", "NCE",
		"13", "0",
		"1", 1,
		"item", "95",
		"", "pd1115237108.htm",
		"", 1,
		"CabsW", "0",
		 0)
	
		Entry[187] = new Element(
		187, "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", "95",
		"", "pd2133809730.htm",
		"", 1,
		"CabsW", "0",
		 0)
	
		Entry[188] = new Element(
		188, "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.8", "0",
		"1", 1,
		"item", "95",
		"", "pd1716163136.htm",
		"", 1,
		"CabsW", "0",
		 0)
	
		Entry[189] = new Element(
		189, "assets/thumb/spkr2r.jpg",
		90, 89,
		"SPKR2", "2.5&quot; 8 ohm speaker",
		"", "ITTC",
		"4", "0",
		"1", 1,
		"item", "144",
		"", "pd-1257509576.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[190] = new Element(
		190, "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", "93",
		"", "pd1119032279.htm",
		"", 1,
		"TurDec", "0",
		 0)
	
		Entry[191] = new Element(
		191, "assets/thumb/efe16126thumb.jpg",
		137, 92,
		"16126", "Leyland PD2 Highbridge  Cat. No. 16126",
		"CIE Dublin", "EFE",
		"15.8", "0",
		"1", 1,
		"model", "18",
		"", "pd-1161172853.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[192] = new Element(
		192, "assets/thumb/efe20433dlthumb.jpg",
		137, 69,
		"20433DL", "Bristol VRIII  Cat. No. 20433DL",
		"Alder Valley", "EFE",
		"17.85", "0",
		"1", 1,
		"model", "18",
		"", "pd-1506488911.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[193] = new Element(
		193, "assets/thumb/efe29608thumb.jpg",
		137, 69,
		"29608", "Leyland Olympian  Cat. No. 29608",
		"Riverside", "EFE",
		"18.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-955545201.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[194] = new Element(
		194, "assets/thumb/EFE12117thumb.jpg",
		137, 54,
		"12117", "Harrington Cavalier  Cat. No. 12117",
		"Thomas Brothers", "EFE",
		"16.35", "0",
		"1", 1,
		"item", "18",
		"", "pd-2132281914.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[195] = new Element(
		195, "assets/thumb/9923set.jpg",
		137, 72,
		"99923", "Maidstone &amp; District Gift Set  Cat. No. 99923",
		"Maidstone &amp; District", "EFE",
		"42.9", "0",
		"1", 1,
		"model", "18",
		"", "pd559604692.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[196] = new Element(
		196, "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",
		"49", "0",
		"1", 1,
		"decoder", "92",
		"", "pd1119869661.htm",
		"", 1,
		"ODec", "0",
		 0)
	
		Entry[197] = new Element(
		197, "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",
		"76.6", "0",
		"1", 1,
		"decoder", "92",
		"", "pd2115309651.htm",
		"", 1,
		"ODec", "0",
		 0)
	
		Entry[198] = new Element(
		198, "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", "25",
		"Colours available;Green@", "pd-842373603.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[199] = new Element(
		199, "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", "25",
		"Colours available;Green@", "pd1026002323.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[200] = new Element(
		200, "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", "25",
		"", "pd-1429771263.htm",
		"", 2,
		"LED", "0",
		 0)
	
		Entry[201] = new Element(
		201, "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.1", "0",
		"1", 1,
		"pack", "25",
		"", "pd1120648706.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[202] = new Element(
		202, "assets/thumb/mp185thumb.jpg",
		137, 128,
		"HP-MP185", "Track Cutter",
		"High quality precision track cutter", "DCC Concepts",
		"14", "0",
		"1", 1,
		"item", "27",
		"", "pd-58335503.htm",
		"", 1,
		"Tools", "0",
		 0)
	
		Entry[203] = new Element(
		203, "assets/thumb/mp250thumb.jpg",
		137, 151,
		"HP-MP250", "Flush Cutter",
		"Flush Cutter, small, orange RV", "DCC Concepts",
		"10.2", "0",
		"1", 1,
		"item", "27",
		"", "pd-1476564979.htm",
		"", 1,
		"Tools", "0",
		 0)
	
		Entry[204] = new Element(
		204, "assets/thumb/OM44108_Optare Solo.jpg",
		137, 85,
		"OM44108", "Optare Solo   Cat. No. OM44108",
		"Burton&rsquo;s - Addenbrooks Hospital Shuttle", "Corgi",
		"16.35", "0",
		"1", 1,
		"model", "12",
		"", "pd-38032519.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[205] = new Element(
		205, "assets/thumb/OM45310_Bova Futura.jpg",
		137, 85,
		"OM45310", "Bova Futura   Cat. No. OM45310",
		"Kings Coaches, Colchester", "Corgi",
		"17.6", "0",
		"1", 1,
		"model", "12",
		"", "pd1247617811.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[206] = new Element(
		206, "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",
		"6", "0",
		"1", 1,
		"pack", "25",
		"Colour combination;Red-Green@", "pd-1151197173.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[207] = new Element(
		207, "assets/thumb/efe25808thumb.jpg",
		137, 73,
		"25808", "Daimler DMS  Cat. No. 25808",
		"OK Motor Services", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "18",
		"", "pd476220436.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[208] = new Element(
		208, "assets/thumb/efe28810.jpg",
		137, 74,
		"28810", "Leyland Titan 2 Door  Cat. No. 28810",
		"Go Whippet", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "18",
		"", "pd-1884410806.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[209] = new Element(
		209, "assets/thumb/efe29804.jpg",
		137, 45,
		"29804", "Wright Dennis Lance  Cat. No. 29804",
		"Tyne &amp; Wear Coastline", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "18",
		"", "pd563401608.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[210] = new Element(
		210, "assets/thumb/efe30003thumb.jpg",
		137, 64,
		"30003", "AEC Regal 10T10  Cat. No. 30003",
		"Neath &amp; Cardiff", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "18",
		"", "pd-1259928330.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[211] = new Element(
		211, "assets/thumb/aiu-thumb.jpg",
		121, 127,
		"N-AIU01", "Auxiliary Input Unit",
		"Auxiliary Input Unit", "NCE",
		"34", "0",
		"1", 1,
		"item", "94",
		"", "pd1127317089.htm",
		"", 1,
		"SigDec", "0",
		 0)
	
		Entry[212] = new Element(
		212, "assets/thumb/DG198004_Scammell Contract.jpg",
		137, 84,
		"DG198004", "Scammell Contractor   Cat. No. DG198004",
		"Pointer", "Corgi",
		"10.2", "0",
		"1", 1,
		"model", "13",
		"", "pd-993769689.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[213] = new Element(
		213, "assets/thumb/efe16322thumb.jpg",
		137, 58,
		"16322", "Bristol LS  Cat. No. 16322",
		"Bath Services", "EFE",
		"15.8", "0",
		"1", 1,
		"model", "18",
		"", "pd1128376019.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[214] = new Element(
		214, "assets/thumb/efe29702thumb.jpg",
		137, 64,
		"29702", "Leyland Olympian  Cat. No. 29702",
		"London &amp; Country", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "18",
		"", "pd428528953.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[215] = new Element(
		215, "assets/thumb/efe29702sbthumb.jpg",
		137, 69,
		"29702SB", "Leyland Olympian  Cat. No. 29702SB",
		"London &amp; Country - EFE Show Bus 2005", "EFE",
		"19.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-25001457.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[216] = new Element(
		216, "assets/thumb/efe30702thumb.jpg",
		137, 73,
		"30702", "AEC Renown  Cat. No. 30702",
		"North Western", "EFE",
		"17.85", "0",
		"1", 1,
		"model", "18",
		"", "pd-1792503083.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[217] = new Element(
		217, "assets/thumb/efe26616thumb.jpg",
		137, 46,
		"26616", "Plaxton Paramount 3500  Cat. No. 26616",
		"Green Line (Southend)", "EFE",
		"16.85", "0",
		"1", 1,
		"model", "18",
		"", "pd705431712.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[218] = new Element(
		218, "assets/thumb/efe27310thumb.jpg",
		137, 80,
		"27310", "Leyland TD1 Closed Rear  Cat. No. 27310",
		"Hants &amp; Dorset", "EFE",
		"16.35", "0",
		"1", 1,
		"model", "18",
		"", "pd-1234540560.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[219] = new Element(
		219, "assets/thumb/efe27616thumb.jpg",
		137, 45,
		"27616", "Wright Volvo Renown  Cat. No. 27616",
		"Strathtay", "EFE",
		"16.35", "0",
		"1", 1,
		"model", "18",
		"", "pd1129145458.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[220] = new Element(
		220, "assets/thumb/efe28811thumb.jpg",
		137, 70,
		"28811", "Leyland Titan  Cat. No. 28811",
		"Reading Buses", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "18",
		"", "pd461106888.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[221] = new Element(
		221, "assets/thumb/efe30601thumb.jpg",
		137, 70,
		"30601", "AEC Renown  Cat. No. 30601",
		"King Alfred", "EFE",
		"17.85", "0",
		"1", 1,
		"model", "18",
		"", "pd-394955012.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[222] = new Element(
		222, "assets/thumb/efe30602thumb.jpg",
		137, 71,
		"30602", "AEC Renown  Cat. No. 30602",
		"King Alfred", "EFE",
		"17.85", "0",
		"1", 1,
		"model", "18",
		"", "pd-723802742.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[223] = new Element(
		223, "assets/thumb/efe30701thumb.jpg",
		137, 74,
		"30701", "AEC Renown  Cat. No. 30701",
		"Burwell &amp; District", "EFE",
		"17.85", "0",
		"1", 1,
		"model", "18",
		"", "pd778605110.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[224] = new Element(
		224, "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", "104",
		"", "pd-1801368316.htm",
		"", 1,
		"TCS Harn", "0",
		 0)
	
		Entry[225] = new Element(
		225, "assets/thumb/OM42512_Volvo B7TL - Cork.jpg",
		137, 83,
		"OM42512", "East Lancs Vyking   Cat. No. OM42512",
		"Bus Eireann - Cork Park &amp; Ride", "Corgi",
		"17.6", "0",
		"1", 1,
		"item", "12",
		"", "pd-1726222273.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[226] = new Element(
		226, "assets/thumb/DG150011_Foden S21 LLoader.jpg",
		137, 87,
		"DG150011", "Foden S21 Low Loader  Cat. No. DG150011",
		"Muntons", "Corgi",
		"12.25", "0",
		"1", 1,
		"model", "13",
		"", "pd-717067131.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[227] = new Element(
		227, "assets/thumb/DG186010_ERF LV Sheeted.jpg",
		137, 92,
		"DG186010", "ERF LV Sheeted   Cat. No .DG186010",
		"Craigs of Denny   MSRP £12.99", "Corgi",
		"10.7", "0",
		"1", 1,
		"model", "13",
		"", "pd-1775003077.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[228] = new Element(
		228, "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",
		"4.75", "0",
		"1", 1,
		"item", "95",
		"", "pd-1055371657.htm",
		"", 1,
		"CabsW", "0",
		 0)
	
		Entry[229] = new Element(
		229, "assets/thumb/VA07102_Morris Minor 1000.jpg",
		137, 91,
		"VA07102", "Morris Minor 1000 Convertible",
		"Grey", "Corgi",
		"10.2", "0",
		"1", 1,
		"model", "14",
		"", "pd414615416.htm",
		"", 1,
		"VANG", "0",
		 0)
	
		Entry[230] = new Element(
		230, "assets/thumb/VA07103_Morris Minor Conv.jpg",
		137, 80,
		"VA07103", "Morris Minor Convertible",
		"Blue", "Corgi",
		"10.2", "0",
		"1", 1,
		"model", "14",
		"", "pd-572417434.htm",
		"", 1,
		"VANG", "0",
		 0)
	
		Entry[231] = new Element(
		231, "assets/thumb/efe25106thumb.jpg",
		137, 47,
		"25106", "Bristol RELL  Cat. No. 25106",
		"West Yorkshire", "EFE",
		"16.35", "0",
		"1", 1,
		"model", "18",
		"", "pd-799310277.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[232] = new Element(
		232, "assets/thumb/efe30004thumb.jpg",
		137, 59,
		"30004", "AEC Regal 10T10  Cat. No. 30004",
		"London Transport", "EFE",
		"17.85", "0",
		"1", 1,
		"model", "18",
		"", "pd-382685051.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[233] = new Element(
		233, "assets/thumb/efe31301thumb.jpg",
		137, 72,
		"31301", "B20 DM Fleetline  Cat. No. 31301",
		"Shillibeer Omnibus", "EFE",
		"16.85", "0",
		"1", 1,
		"model", "18",
		"", "pd-558112777.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[234] = new Element(
		234, "assets/thumb/uk3017thumb.jpg",
		137, 65,
		"UK3017", "Dennis Dart  Cat. No. UKBUS3017",
		"Brighton &amp; Hove", "Creative Master Northcord Ltd",
		"17.85", "0",
		"1", 1,
		"model", "15",
		"", "pd68207448.htm",
		"", 1,
		"CMNL", "0",
		 0)
	
		Entry[235] = new Element(
		235, "assets/thumb/DG199004_Scammell MechHorse.jpg",
		137, 80,
		"DG199004", "Scammell Mechanical Horse &amp; Dropside Trailer   Cat. No. DG199004",
		"LNER", "Corgi",
		"9.2", "0",
		"1", 1,
		"model", "13",
		"", "pd-886335260.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[236] = new Element(
		236, "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.2", "0",
		"1", 1,
		"model", "13",
		"", "pd1132762584.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[237] = new Element(
		237, "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", "12",
		"", "pd346474500.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[238] = new Element(
		238, "assets/thumb/OM42514_Blackpool Transport.jpg",
		137, 74,
		"OM42514A", "Dennis Trident/East Lancs Myllenium   Cat. No. OM42514",
		"Blackpool Transport - Route 14 to Blackpool", "Corgi",
		"23", "0",
		"1", 1,
		"model", "12",
		"", "pd-424228118.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[239] = new Element(
		239, "assets/thumb/OM43313_McKindless Express.jpg",
		137, 64,
		"OM43313", "Plaxton Premiere   Cat. No. OM43313",
		"McKindless Bus Group", "Corgi",
		"18.9", "0",
		"1", 1,
		"model", "12",
		"", "pd-1741128238.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[240] = new Element(
		240, "assets/thumb/OM44111_Trent Barton Solo.jpg",
		137, 75,
		"OM44111A", "Optare Solo   Cat. No. OM44111A",
		"Trent Barton - Route 1A to Ripley", "Corgi",
		"16.85", "0",
		"1", 1,
		"model", "12",
		"", "pd-320408228.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[241] = new Element(
		241, "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.6", "0",
		"1", 1,
		"model", "12",
		"", "pd-734150914.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[242] = new Element(
		242, "assets/thumb/OM45903_Fraser Eagle.jpg",
		137, 59,
		"OM45903", "Van Hool T9   Cat. No. OM45903",
		"Fraser Eagle", "Corgi",
		"20.4", "0",
		"1", 1,
		"model", "12",
		"", "pd-535979162.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[243] = new Element(
		243, "assets/thumb/DG146014_Guy Pantechnicon.jpg",
		137, 91,
		"DG146014", "Guy Pantechnicon  Cat. No. DG146014",
		"Luckings", "Corgi",
		"6.35", "0",
		"1", 1,
		"model", "13",
		"", "pd2050018295.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[244] = new Element(
		244, "assets/thumb/DG148016_Scammell Scarab.jpg",
		137, 72,
		"DG148016", "Scammell Scarab Dropside/ Sheeted Load  Cat. No. DG148016",
		"Firth Brown  MSRP £9.99", "Corgi",
		"8.7", "0",
		"1", 1,
		"model", "13",
		"", "pd-1576045591.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[245] = new Element(
		245, "assets/thumb/DG148017_Scammell Scarab.jpg",
		137, 89,
		"DG148017", "Scammell Scarab Van Trailer  Cat. No. DG148017",
		"Eskimo Foods  MSRP £9.99", "Corgi",
		"8.7", "0",
		"1", 1,
		"model", "13",
		"", "pd-411922691.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[246] = new Element(
		246, "assets/thumb/DG176021_Leyland Octopus.jpg",
		137, 72,
		"DG176021", "Leyland Octopus Tanker   Cat. No. DG176021",
		"Tunnel Cement   MSRP £11.99", "Corgi",
		"10.7", "0",
		"1", 1,
		"model", "13",
		"", "pd-655138445.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[247] = new Element(
		247, "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.2", "0",
		"1", 1,
		"model", "13",
		"", "pd1618607237.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[248] = new Element(
		248, "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.2", "0",
		"1", 1,
		"model", "13",
		"", "pd1632211161.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[249] = new Element(
		249, "assets/thumb/DG198005_Scammell Contract.jpg",
		137, 101,
		"DG198005", "Scammell Contractor   Cat. No. DG198005",
		"Austen Brothers", "Corgi",
		"10.2", "0",
		"1", 1,
		"model", "13",
		"", "pd1750917444.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[250] = new Element(
		250, "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", "0",
		"1", 1,
		"decoder", "90",
		"", "pd27964751.htm",
		"", 1,
		"HODec", "0",
		 0)
	
		Entry[251] = new Element(
		251, "assets/thumb/efe20905thumb.jpg",
		137, 57,
		"20905", "Leyland PS2 Windover  Cat. No. 20905",
		"North Western", "EFE",
		"15.8", "0",
		"1", 1,
		"item", "18",
		"", "pd1322261575.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[252] = new Element(
		252, "assets/thumb/efe28503thumb.jpg",
		137, 80,
		"28503", "Leyland TD1 Closed Rear  Cat. No. 28503",
		"Western", "EFE",
		"17.35", "0",
		"1", 1,
		"item", "18",
		"", "pd-1520773437.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[253] = new Element(
		253, "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",
		"83.75", "0",
		"1", 1,
		"model", "135",
		"", "pd1136150301.htm",
		"", 1,
		"HornbyStea", "0",
		 0)
	
		Entry[254] = new Element(
		254, "assets/thumb/efe14603thumb.jpg",
		137, 51,
		"14603", "Leyland National MkI  Cat.No. 14603",
		"Pennine", "EFE",
		"16.35", "0",
		"1", 1,
		"model", "18",
		"", "pd1137530008.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[255] = new Element(
		255, "assets/thumb/efe29007thumb.jpg",
		137, 75,
		"29007", "GM Fleetline  Cat.No. 29007",
		"Northumbria", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "18",
		"", "pd1346868254.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[256] = new Element(
		256, "assets/thumb/efe30703thumb.jpg",
		137, 73,
		"30703", "AEC Renown  Cat. No. 30703",
		"South Wales", "EFE",
		"17.85", "0",
		"1", 1,
		"model", "18",
		"", "pd-1563936656.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[257] = new Element(
		257, "assets/thumb/ukbus4006.jpg",
		137, 83,
		"UK4006", "Alexander Royale  Cat. No. UKBUS4006",
		"London United Airbus  Heathrow - Central London", "Creative Master Northcord Ltd",
		"23", "0",
		"1", 1,
		"model", "15",
		"", "pd324883189.htm",
		"", 1,
		"CMNL", "0",
		 0)
	
		Entry[258] = new Element(
		258, "assets/thumb/sic24adTHUMB.jpg",
		137, 85,
		"TD-SIC24AD", "Signal and Indicator Controller",
		"SIC24AD", "Team Digital",
		"37.8", "0",
		"1", 1,
		"item", "101",
		"", "pd467050507.htm",
		"", 1,
		"TD", "0",
		 0)
	
		Entry[259] = new Element(
		259, "assets/thumb/dbd22thumb.jpg",
		137, 119,
		"TD-DBD22", "DCC Block Detector",
		"DBD22 - Two block detectors with LEDs on one board", "Team Digital",
		"15", "0",
		"1", 1,
		"item", "101",
		"", "pd-411152079.htm",
		"", 1,
		"TD", "0",
		 0)
	
		Entry[260] = new Element(
		260, "assets/thumb/tsathumb.jpg",
		137, 71,
		"TD-TSA", "Terminal Strip Adapter",
		"TSA - Pack of 2 x Terminal Strip Adapters", "Team Digital",
		"12.25", "0",
		"1", 1,
		"item", "101",
		"", "pd1818967751.htm",
		"", 1,
		"TD", "0",
		 0)
	
		Entry[261] = new Element(
		261, "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", "95",
		"", "pd1139421037.htm",
		"", 1,
		"CabsW", "0",
		 0)
	
		Entry[262] = new Element(
		262, "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",
		"12.5", "0",
		"1", 1,
		"item", "95",
		"", "pd400013155.htm",
		"", 1,
		"CabsW", "0",
		 0)
	
		Entry[263] = new Element(
		263, "assets/thumb/powercabthumb.jpg",
		137, 138,
		"N-PWRCAB", "NCE PowerCab",
		"DCC starter set with cab, cables, UK power supply and manual", "NCE",
		"135", "0",
		"1", 1,
		"set", "87",
		"", "pd-670066615.htm",
		"", 1,
		"Starter", "0",
		 0)
	
		Entry[264] = new Element(
		264, "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.15", "0",
		"1", 1,
		"item", "102",
		"", "pd1139516205.htm",
		"", 1,
		"TCSDCC", "0",
		 0)
	
		Entry[265] = new Element(
		265, "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.6", "0",
		"1", 1,
		"model", "12",
		"", "pd1139577718.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[266] = new Element(
		266, "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.55", "0",
		"1", 1,
		"model", "15",
		"", "pd1204600468.htm",
		"", 1,
		"CMNL", "0",
		 0)
	
		Entry[267] = new Element(
		267, "assets/thumb/mchthumb.jpg",
		137, 81,
		"MCH-UK", "MC UK Harness",
		"MC UK harness with 8 pin NMRA plug", "TCS",
		"4.75", "0",
		"1", 1,
		"item", "104",
		"Harness;UK@", "pd1139997979.htm",
		"", 1,
		"TCS Harn", "0",
		 0)
	
		Entry[268] = new Element(
		268, "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",
		"50", "0",
		"1", 1,
		"loco", "136",
		"", "pd871892780.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[269] = new Element(
		269, "assets/thumb/r8087.jpg",
		137, 156,
		"R8087", "Track Rubber",
		"R8087 Track Rubber  MSRP £1.99", "Hornby",
		"1.8", "0",
		"1", 1,
		"item", "137",
		"", "pd-26487233.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[270] = new Element(
		270, "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", "137",
		"", "pd140659937.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[271] = new Element(
		271, "assets/thumb/r8099.jpg",
		137, 67,
		"R8099", "Coupling Assemblies Pk10",
		"R8099 Coupling Assemblies Pk10   MSRP £4.30", "Hornby",
		"4", "0",
		"1", 1,
		"pack", "137",
		"", "pd-1613209097.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[272] = new Element(
		272, "assets/thumb/r8219.jpg",
		137, 69,
		"R8219", "Nem Coupling",
		"R8219 Nem Coupling Pack 10 MSRP £4.30", "Hornby",
		"4", "0",
		"1", 1,
		"pack", "137",
		"", "pd-1359980685.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[273] = new Element(
		273, "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", "137",
		"", "pd-358123815.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[274] = new Element(
		274, "assets/thumb/efe29407thumb.jpg",
		137, 52,
		"29407", "Bristol RELH D/P Coach  Cat. No. 29407",
		"Oxford South Midland NBC", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "18",
		"", "pd1800337168.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[275] = new Element(
		275, "assets/thumb/efe18610thumb.jpg",
		137, 66,
		"18610", "Bristol VRIII Open Top  Cat. No.18610",
		"Solent Blue Line New Forest Tour", "EFE",
		"16.35", "0",
		"1", 1,
		"model", "18",
		"", "pd-1905069122.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[276] = new Element(
		276, "assets/thumb/efe18204thumb.jpg",
		137, 72,
		"18204", "Fleetline Park Royal  Cat. No. 18204",
		"London Transport", "EFE",
		"16.35", "0",
		"1", 1,
		"model", "18",
		"", "pd1140553766.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[277] = new Element(
		277, "assets/thumb/efe18008thumb.jpg",
		137, 79,
		"18008", "Daimler Fleetline  Cat.No. 18008",
		"West Yorkshire Metrobus", "EFE",
		"16.35", "0",
		"1", 1,
		"model", "18",
		"", "pd-1139132388.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[278] = new Element(
		278, "assets/thumb/60156thumb.jpg",
		137, 180,
		"60156", "N scale Brass Roller",
		"Spare brass roller for N scale cleaner types D10-D12", "Centerline",
		"6.1", "0",
		"1", 1,
		"item", "37",
		"", "pd-818650180.htm",
		"", 1,
		"Centerline", "0",
		 0)
	
		Entry[279] = new Element(
		279, "assets/thumb/efe20439thumb.jpg",
		137, 74,
		"20439", "Bristol VRIII  Cat.No. 20439",
		"Yorkshire Rider Leeds", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "18",
		"", "pd-602727373.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[280] = new Element(
		280, "assets/thumb/efe26318thumb.jpg",
		137, 90,
		"26318", "Guy Arab II Utility  Cat. No. 26318",
		"Bamber Bridge Motor Services", "EFE",
		"16.85", "0",
		"1", 1,
		"model", "18",
		"", "pd276072353.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[281] = new Element(
		281, "assets/thumb/efe26617thumb.jpg",
		137, 54,
		"26617", "Plaxton Paramount 3500  Cat. No. 26617",
		"Strathtay", "EFE",
		"16.85", "0",
		"1", 1,
		"model", "18",
		"", "pd1142377723.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[282] = new Element(
		282, "assets/thumb/efe29610thumb.jpg",
		137, 73,
		"29610", "Leyland Olympian  Cat. No. 29610",
		"Metrobus", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "18",
		"", "pd1874688957.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[283] = new Element(
		283, "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,
		"", "25",
		"Resistor value;1000 ohms@", "pd-419467489.htm",
		"", 5,
		"LED", "0",
		 0)
	
		Entry[284] = new Element(
		284, "assets/thumb/OM43314_Red & White Coaches.jpg",
		137, 63,
		"OM43314", "Plaxton Premiere  Cat. No. OM43314",
		"Red &amp; White", "Corgi",
		"18.4", "0",
		"1", 1,
		"model", "12",
		"", "pd-756528454.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[285] = new Element(
		285, "assets/thumb/OM44112_GOWER Explorer.jpg",
		137, 77,
		"OM44112A", "Optare Solo  Cat. No. OM44112",
		"Gower Explorer - route 115 Llangenith", "Corgi",
		"18.4", "0",
		"1", 1,
		"model", "12",
		"", "pd2038655590.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[286] = new Element(
		286, "assets/thumb/OM44708_UNO Dennis Dart.jpg",
		137, 63,
		"OM44708", "Dart SLF  Cat. No. OM44708",
		"Uno", "Corgi",
		"16.35", "0",
		"1", 1,
		"model", "12",
		"", "pd57487108.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[287] = new Element(
		287, "assets/thumb/OM45117_LONDON EXPRESS Bus.jpg",
		137, 80,
		"OM45117A", "Metrobus  Cat. No. OM45117",
		"Reading Buses - destination Reading", "Corgi",
		"22.5", "0",
		"1", 1,
		"model", "12",
		"", "pd-2078196526.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[288] = new Element(
		288, "assets/thumb/OM45906_GO GOODWINS.jpg",
		137, 64,
		"OM45906", "Van Hool T9  Cat. No. OM45906",
		"Goodwins (England Cricket)", "Corgi",
		"22", "0",
		"1", 1,
		"model", "12",
		"", "pd-1147701424.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[289] = new Element(
		289, "assets/thumb/OM46002_WHITELAWS Coaches.jpg",
		137, 64,
		"OM46002A", "Wright single deck  Cat. No. OM46002",
		"Whitelaws - route 254 Stonehouse", "Corgi",
		"22", "0",
		"1", 1,
		"model", "12",
		"", "pd1948412394.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[290] = new Element(
		290, "assets/thumb/DG148018_Calico Printers.jpg",
		137, 94,
		"DG148018", "Scammell Scarab Flatbed with Load  Cat. No. DG148018",
		"Calico  MSRP £11.99", "Corgi",
		"10.2", "0",
		"1", 1,
		"model", "13",
		"", "pd358952116.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[291] = new Element(
		291, "assets/thumb/DG148019_CIE Scammell.jpg",
		137, 75,
		"DG148019", "Scammell Scarab Step Frame  Cat. No. DG148019",
		"CIE  MSRP £11.99", "Corgi",
		"10.2", "0",
		"1", 1,
		"model", "13",
		"", "pd-930467326.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[292] = new Element(
		292, "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.2", "0",
		"1", 1,
		"model", "13",
		"", "pd279115034.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[293] = new Element(
		293, "assets/thumb/DG187009_R E MASON Tipper.jpg",
		137, 77,
		"DG187009", "Guy Tipper  Cat. No. DG187009",
		"R E Mason   MSRP £12.99", "Corgi",
		"11.2", "0",
		"1", 1,
		"model", "13",
		"", "pd1496349382.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[294] = new Element(
		294, "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.2", "0",
		"1", 1,
		"model", "13",
		"", "pd-1475909026.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[295] = new Element(
		295, "assets/thumb/DG206000_RAIL FREIGHT.jpg",
		137, 88,
		"DG206000", "Scammell Townsman Box Trailer  Cat. No. DG206000",
		"Railfreight", "Corgi",
		"10.2", "0",
		"1", 1,
		"model", "13",
		"", "pd-951095868.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[296] = new Element(
		296, "assets/thumb/DG206001_BRS Scammell.jpg",
		137, 77,
		"DG206001", "Scammell Townsman Dropside Trailer with Load  Cat. No. DG206001",
		"BRS", "Corgi",
		"10.2", "0",
		"1", 1,
		"model", "13",
		"", "pd431004050.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[297] = new Element(
		297, "assets/thumb/ukbus1014.jpg",
		137, 78,
		"UK1014", "Dennis Trident Alexander ALX400 Cat. No. UKBUS1014",
		"Oxford Park &amp; Ride", "Creative Master Northcord Ltd",
		"24.5", "0",
		"1", 1,
		"model", "15",
		"", "pd14919451.htm",
		"", 1,
		"CMNL", "0",
		 0)
	
		Entry[298] = new Element(
		298, "assets/thumb/ukbus5003.jpg",
		137, 59,
		"UK5003", "Mercedes Citaro Rigid Cat. No. UKBUS5003",
		"First BAA Heathrow", "Creative Master Northcord Ltd",
		"23", "0",
		"1", 1,
		"model", "15",
		"", "pd1356656321.htm",
		"", 1,
		"CMNL", "0",
		 0)
	
		Entry[299] = new Element(
		299, "assets/thumb/as105.jpg",
		137, 65,
		"AS1-05", "AEC Short Swift  Cat. No. AS1-05",
		"London Transport", "Britbus",
		"25.5", "0",
		"1", 1,
		"model", "7",
		"", "pd1316968151.htm",
		"", 1,
		"BRITBUS", "0",
		 0)
	
		Entry[300] = new Element(
		300, "assets/thumb/es201.jpg",
		137, 91,
		"ES2-01", "Scania Omnidekka/East Lancs  Cat. No. ES2-01",
		"Metrobus - Go Ahead", "Britbus",
		"29.6", "0",
		"1", 1,
		"model", "7",
		"", "pd1435735261.htm",
		"", 1,
		"BRITBUS", "0",
		 0)
	
		Entry[301] = new Element(
		301, "assets/thumb/r804.jpg",
		137, 90,
		"R804", "Scania 113/Alexander  Cat. No. R804",
		"BTS", "Britbus",
		"29.6", "0",
		"1", 1,
		"model", "7",
		"", "pd-1497933229.htm",
		"", 1,
		"BRITBUS", "0",
		 0)
	
		Entry[302] = new Element(
		302, "assets/thumb/OM44112_GOWER Explorer.jpg",
		137, 77,
		"OM44112B", "Optare Solo  Cat. No. OM44112",
		"Gower Explorer - route 117 Horton", "Corgi",
		"18.4", "0",
		"1", 1,
		"model", "12",
		"", "pd1591016680.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[303] = new Element(
		303, "assets/thumb/OM45117_LONDON EXPRESS Bus.jpg",
		137, 80,
		"OM45117B", "Metrobus  Cat. No. OM45117",
		"Reading Buses - destination Heathrow", "Corgi",
		"22.5", "0",
		"1", 1,
		"model", "12",
		"", "pd947703126.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[304] = new Element(
		304, "assets/thumb/OM46002_WHITELAWS Coaches.jpg",
		137, 64,
		"OM46002B", "Wright single deck  Cat. No. OM46002",
		"Whitelaws - route 254 Hamilton Bus Station", "Corgi",
		"22", "0",
		"1", 1,
		"model", "12",
		"", "pd-1679619212.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[305] = new Element(
		305, "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", "90",
		"", "pd1146923301.htm",
		"", 1,
		"HODec", "0",
		 0)
	
		Entry[306] = new Element(
		306, "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", "90",
		"", "pd1364633563.htm",
		"", 1,
		"HODec", "0",
		 0)
	
		Entry[307] = new Element(
		307, "assets/thumb/switch8.jpg",
		137, 108,
		"N-Switch8", "Switch8 point motor decoder",
		"For Tortoise point motors", "NCE",
		"40", "0",
		"1", 1,
		"decoder", "93",
		"", "pd439541121.htm",
		"", 1,
		"TurDec", "0",
		 0)
	
		Entry[308] = new Element(
		308, "assets/thumb/efe17305thumb.jpg",
		137, 51,
		"17305", "Leyland National Mk 1 Long  Cat. No. 17305",
		"Widnes Corporation", "EFE",
		"15.8", "0",
		"1", 1,
		"model", "18",
		"", "pd-1100082511.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[309] = new Element(
		309, "assets/thumb/efe16219thumb.jpg",
		137, 56,
		"16219", "Bristol LS  Cat. No. 16219",
		"Cumberland", "EFE",
		"15.3", "0",
		"1", 1,
		"model", "18",
		"", "pd1147696426.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[310] = new Element(
		310, "assets/thumb/mx621rthumb.jpg",
		137, 108,
		"MX621R", "N-Decoder 2 Function with 8 pin NMRA 52 board",
		"MX621R N scale decoder with 2 Functions and 8 pin NMRA 52 board", "Zimo",
		"30", "0",
		"1", 1,
		"decoder", "115",
		"", "pd1491107225.htm",
		"", 1,
		"ZIMODEC", "0",
		 0)
	
		Entry[311] = new Element(
		311, "assets/thumb/efe30704thumb.jpg",
		137, 76,
		"30704", "AEC Renown  Cat. No. 30704",
		"Crosville", "EFE",
		"18.9", "0",
		"1", 1,
		"model", "18",
		"", "pd-14027651.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[312] = new Element(
		312, "assets/thumb/efe29408thumb.jpg",
		137, 49,
		"29408", "Bristol RELH D/P Coach  Cat. No. 29408",
		"Bristol Omnibus Co Ltd", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "18",
		"", "pd2067338615.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[313] = new Element(
		313, "assets/thumb/efe18009thumb.jpg",
		137, 75,
		"18009", "MCW Fleetline  Cat. No. 18009",
		"Rochdale Corporation", "EFE",
		"15.3", "0",
		"1", 1,
		"model", "18",
		"", "pd967564219.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[314] = new Element(
		314, "assets/thumb/efe17217thumb.jpg",
		137, 52,
		"17217", "Leyland National Mk 1 Long  Cat. No. 17217",
		"Northern Tyne &amp; Wear", "EFE",
		"15.8", "0",
		"1", 1,
		"model", "18",
		"", "pd1262957061.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[315] = new Element(
		315, "assets/thumb/efe16220thumb.jpg",
		137, 56,
		"16220", "Bristol MW  Cat. No. 16220",
		"Bristol Omnibus Co Ltd", "EFE",
		"15.3", "0",
		"1", 1,
		"model", "18",
		"", "pd1149934015.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[316] = new Element(
		316, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ200-1", "US Diesel Horn 1",
		"HQ200-1", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd1150470003.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[317] = new Element(
		317, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ200-2", "US Diesel Horn 2",
		"HQ200-2", "ITTC",
		"16.35", "0",
		"1", 1,
		"item", "144",
		"", "pd-456169767.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[318] = new Element(
		318, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ200-3", "US Diesel Horn 3",
		"HQ200-3", "ITTC",
		"16.35", "0",
		"1", 1,
		"item", "144",
		"", "pd-1450447697.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[319] = new Element(
		319, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ200-4", "US Diesel Horn 4",
		"HQ200-4", "ITTC",
		"16.35", "0",
		"1", 1,
		"item", "144",
		"", "pd-892961163.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[320] = new Element(
		320, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ200-5", "US Diesel Horn 5",
		"HQ200-5", "ITTC",
		"16.35", "0",
		"1", 1,
		"item", "144",
		"", "pd403684779.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[321] = new Element(
		321, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ200-6", "US Diesel Horn 6",
		"HQ200-6", "ITTC",
		"16.35", "0",
		"1", 1,
		"item", "144",
		"", "pd1765746641.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[322] = new Element(
		322, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ200-7", "US Diesel Horn 7",
		"HQ200-7", "ITTC",
		"16.35", "0",
		"1", 1,
		"item", "144",
		"", "pd-1547798937.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[323] = new Element(
		323, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ200-8", "US Diesel Horn 8",
		"HQ200-8", "ITTC",
		"16.35", "0",
		"1", 1,
		"item", "144",
		"", "pd-498860307.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[324] = new Element(
		324, "assets/thumb/ukbus5002.jpg",
		137, 62,
		"UK5002", "Mercedes Citaro Rigid  Cat. No. UKBUS5002",
		"Oxford Park &amp; Ride", "Creative Master Northcord Ltd",
		"23", "0",
		"1", 1,
		"model", "15",
		"", "pd-639016282.htm",
		"", 1,
		"CMNL", "0",
		 0)
	
		Entry[325] = new Element(
		325, "assets/thumb/sb3athumb.jpg",
		137, 67,
		"N-SB3A", "Smart Booster for PowerCab Starter System",
		"N-SB3a 5 Amp Smart Booster for PowerCab", "NCE",
		"107.5", "0",
		"1", 1,
		"item", "88",
		"", "pd1159299849.htm",
		"", 1,
		"Comps", "0",
		 0)
	
		Entry[326] = new Element(
		326, "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",
		"85.8", "0",
		"1", 1,
		"item", "88",
		"", "pd1505633375.htm",
		"", 1,
		"Comps", "0",
		 0)
	
		Entry[327] = new Element(
		327, "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",
		"17", "0",
		"1", 1,
		"item", "88",
		"", "pd-73646683.htm",
		"", 1,
		"Comps", "0",
		 0)
	
		Entry[328] = new Element(
		328, "assets/thumb/efe14013thumb.jpg",
		137, 74,
		"14013", "Bristol Lodekka FLF  Cat. No. 14013",
		"Northern Scottish", "EFE",
		"18.9", "0",
		"1", 1,
		"model", "18",
		"", "pd1160741913.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[329] = new Element(
		329, "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", "0",
		"1", 1,
		"item", "88",
		"", "pd1161010904.htm",
		"", 1,
		"Comps", "0",
		 0)
	
		Entry[330] = new Element(
		330, "assets/thumb/2mmsunnywhite.jpg",
		137, 108,
		"HLED-TWSW", "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", "25",
		"", "pd1152031873.htm",
		"", 2,
		"LED", "0",
		 0)
	
		Entry[331] = new Element(
		331, "assets/thumb/efe17218thumb.jpg",
		137, 50,
		"17218", "Leyland National Mk 1 Long  Cat. No. 17218",
		"Eastern National", "EFE",
		"15.3", "0",
		"1", 1,
		"model", "18",
		"", "pd-2011273968.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[332] = new Element(
		332, "assets/thumb/efe20010thumb.jpg",
		137, 86,
		"20010", "Leyland PD2/12 Orion  Cat. No. 20010",
		"Greater Manchester Transport", "EFE",
		"15.3", "0",
		"1", 1,
		"model", "18",
		"", "pd-2122481468.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[333] = new Element(
		333, "assets/thumb/efe28809dlthumb.jpg",
		137, 80,
		"28809DL", "Leyland Titan 2 Door  Cat. No. 28809DL",
		"Blackburn Transport deLuxe", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "18",
		"", "pd-1916268098.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[334] = new Element(
		334, "assets/thumb/CC13403.jpg",
		130, 82,
		"CC13403-1", "MAN TGA XXL Curtainside  Cat. No. CC13403",
		"Ken Thomas Ltd", "Corgi",
		"57.45", "0",
		"1", 1,
		"", "1",
		"", "pd-1953953205.htm",
		"", 1,
		"CLEAR", "40",
		 0)
	
		Entry[335] = new Element(
		335, "assets/thumb/efe32101thumb.jpg",
		137, 77,
		"32101", "RMF Front Entrance Routemaster  Cat. No. 32101",
		"London Transport", "EFE",
		"19.4", "0",
		"1", 1,
		"model", "18",
		"", "pd1359503567.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[336] = new Element(
		336, "assets/thumb/efe31801.jpg",
		137, 86,
		"31801", "RMA Airport Coach  Cat. No. 31801",
		"London Transport", "EFE",
		"19.4", "0",
		"1", 1,
		"model", "18",
		"", "pd559796765.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[337] = new Element(
		337, "assets/thumb/efe31701thumb.jpg",
		137, 92,
		"31701", "RMC Routemaster Coach  Cat. No. 31701",
		"Greenline", "EFE",
		"19.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-647477767.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[338] = new Element(
		338, "assets/thumb/efe31501thumb.jpg",
		137, 83,
		"31501", "RM Routemaster  Cat. No. 31501",
		"London Transport", "EFE",
		"19.4", "0",
		"1", 1,
		"model", "18",
		"", "pd1154988965.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[339] = new Element(
		339, "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",
		"7", "0",
		"1", 1,
		"item", "95",
		"", "pd1156246011.htm",
		"", 1,
		"CabsW", "0",
		 0)
	
		Entry[340] = new Element(
		340, "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.3", "0",
		"1", 1,
		"decoder", "90",
		"", "pd1156592529.htm",
		"", 1,
		"HODec", "0",
		 0)
	
		Entry[341] = new Element(
		341, "assets/thumb/mx68.jpg",
		137, 102,
		"MX68", "MX68 8 Function only decoder",
		"", "Zimo",
		"26", "0",
		"1", 1,
		"decoder", "114",
		"", "pd748331913.htm",
		"", 1,
		"ZimoAc", "0",
		 0)
	
		Entry[342] = new Element(
		342, "assets/thumb/trafo24.gif",
		137, 127,
		"TRAFO", "24V Transformer",
		"24V  8Amp Transformer", "Zimo",
		"67.4", "0",
		"1", 1,
		"item", "113",
		"", "pd-495460088.htm",
		"", 1,
		"Accessorie", "0",
		 0)
	
		Entry[343] = new Element(
		343, "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",
		"28", "0",
		"1", 1,
		"decoder", "114",
		"", "pd1156765104.htm",
		"", 1,
		"ZimoAc", "0",
		 0)
	
		Entry[344] = new Element(
		344, "assets/thumb/mx82v.jpg",
		137, 105,
		"MX82V", "MX82V 2 turnout/4 lamp accessory decoder",
		"", "Zimo",
		"36", "0",
		"1", 1,
		"decoder", "114",
		"", "pd-1283427490.htm",
		"", 1,
		"ZimoAc", "0",
		 0)
	
		Entry[345] = new Element(
		345, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ651", "Church Bell 1",
		"HQ651", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd1156946329.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[346] = new Element(
		346, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ652", "Church Bell 2",
		"HQ652", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd-1534370507.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[347] = new Element(
		347, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ653", "Church Bell 3",
		"HQ653", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd214088299.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[348] = new Element(
		348, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ654", "Church Bell 4",
		"HQ654", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd-1656393071.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[349] = new Element(
		349, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ655", "Church Bell 5",
		"HQ655", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd-1329545433.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[350] = new Element(
		350, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ656", "Church Bell 6",
		"HQ656", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd-153455187.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[351] = new Element(
		351, "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",
		"25", "0",
		"1", 1,
		"decoder", "114",
		"", "pd1158059739.htm",
		"", 1,
		"ZimoAc", "0",
		 0)
	
		Entry[352] = new Element(
		352, "assets/thumb/efe28814sbthumb.jpg",
		137, 72,
		"28814SB", "Leyland Titan  Cat. No. 28814SB",
		"Stagecoach East London EFE Showbus 2006", "EFE",
		"19.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-1080691539.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[353] = new Element(
		353, "assets/thumb/efe28813thumb.jpg",
		137, 71,
		"28813", "Leyland Titan  Cat. No. 28813",
		"Stagecoach East London", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "18",
		"", "pd130803239.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[354] = new Element(
		354, "assets/thumb/EFE26704.jpg",
		137, 80,
		"26704", "Plaxton Paramount 3500 Cat. No. 26704",
		"National Express Rapide", "EFE",
		"16.35", "0",
		"1", 1,
		"model", "18",
		"", "pd564265361.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[355] = new Element(
		355, "assets/thumb/efe24324.jpg",
		137, 58,
		"24324", "BET Weymann Cat. No. 24324",
		"Fishwick &amp; Sons", "EFE",
		"16.35", "0",
		"1", 1,
		"item", "18",
		"", "pd1158443371.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[356] = new Element(
		356, "assets/thumb/throttle_pocket_thumb.jpg",
		137, 137,
		"NRM40020", "Universal Throttle Pocket™",
		"", "New Rail Models",
		"8", "0",
		"1", 1,
		"item", "152",
		"", "pd-1337361786.htm",
		"", 1,
		"NRMACC", "0",
		 0)
	
		Entry[357] = new Element(
		357, "assets/thumb/nrm12007.jpg",
		137, 80,
		"NRM12007", "N Scale Loading Warehouse",
		"", "New Rail Models",
		"26.55", "0",
		"1", 1,
		"kit", "155",
		"", "pd750699496.htm",
		"", 1,
		"NRMSTRUC", "0",
		 0)
	
		Entry[358] = new Element(
		358, "assets/thumb/nrm13007.jpg",
		137, 73,
		"NRM13007", "HO Scale Loading Warehouse",
		"", "New Rail Models",
		"41.9", "0",
		"1", 1,
		"kit", "155",
		"", "pd431483990.htm",
		"", 1,
		"NRMSTRUC", "0",
		 0)
	
		Entry[359] = new Element(
		359, "assets/thumb/nrm32001.jpg",
		137, 103,
		"NRM32001", "N Scale Picnic Table (4 per kit)",
		"", "New Rail Models",
		"4", "0",
		"1", 1,
		"kit", "154",
		"", "pd321864308.htm",
		"", 1,
		"NRMDETAIL", "0",
		 0)
	
		Entry[360] = new Element(
		360, "assets/images/nopicturegreen.jpg",
		133, 46,
		"NRM32005", "N Shake Ultra Shingles™ (4 sheets)",
		"", "New Rail Models",
		"4", "0",
		"1", 1,
		"pack", "154",
		"", "pd297876930.htm",
		"", 1,
		"NRMDETAIL", "0",
		 0)
	
		Entry[361] = new Element(
		361, "assets/thumb/nrm32008.jpg",
		137, 98,
		"NRM32008", "N Scale Plywood Loads (20 per kit)",
		"", "New Rail Models",
		"7.15", "0",
		"1", 1,
		"kit", "154",
		"", "pd-1077075520.htm",
		"", 1,
		"NRMDETAIL", "0",
		 0)
	
		Entry[362] = new Element(
		362, "assets/thumb/nrm33005.jpg",
		137, 98,
		"NRM33005", "HO Shake Ultra Shingles™ (2 sheets)",
		"", "New Rail Models",
		"4", "0",
		"1", 1,
		"pack", "154",
		"", "pd108391884.htm",
		"", 1,
		"NRMDETAIL", "0",
		 0)
	
		Entry[363] = new Element(
		363, "assets/thumb/nrm33008.jpg",
		137, 98,
		"NRM33008", "HO Scale Plywood Loads (16 per kit)",
		"", "New Rail Models",
		"12.25", "0",
		"1", 1,
		"kit", "154",
		"", "pd-756926246.htm",
		"", 1,
		"NRMDETAIL", "0",
		 0)
	
		Entry[364] = new Element(
		364, "assets/thumb/nrm33001.jpg",
		137, 103,
		"NRM35001", "O Scale Picnic Table (2 per kit)",
		"", "New Rail Models",
		"4.25", "0",
		"1", 1,
		"kit", "154",
		"", "pd-732433768.htm",
		"", 1,
		"NRMDETAIL", "0",
		 0)
	
		Entry[365] = new Element(
		365, "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", "0",
		"1", 1,
		"item", "95",
		"", "pd1155682395.htm",
		"", 1,
		"CabsW", "0",
		 0)
	
		Entry[366] = new Element(
		366, "assets/thumb/efe32202thumb.jpg",
		137, 48,
		"32202", "Bristol RELH Coach  Cat. No. 32202",
		"Crosville NBC", "EFE",
		"18.9", "0",
		"1", 1,
		"model", "18",
		"", "pd1159529252.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[367] = new Element(
		367, "assets/thumb/efe20635thumb.jpg",
		137, 48,
		"20635", "Plaxton Pointer Dart  Cat. No. 20635",
		"Stagecoach East London", "EFE",
		"15.3", "0",
		"1", 1,
		"model", "18",
		"", "pd802863010.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[368] = new Element(
		368, "assets/thumb/DG213000.jpg",
		137, 105,
		"DG213001", "Harrington Horsebox  Cat. No. DG213001",
		"Southern Railways  MSRP £7.99", "Corgi",
		"7.15", "0",
		"1", 1,
		"model", "13",
		"", "pd-755583154.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[369] = new Element(
		369, "assets/thumb/dg21300.jpg",
		137, 83,
		"DG213000", "Harrington Horsebox  Cat. No. DG213000",
		"LNER  MSRP £7.99", "Corgi",
		"7.15", "0",
		"1", 1,
		"model", "13",
		"", "pd1183798538.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[370] = new Element(
		370, "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[371] = new Element(
		371, "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[372] = new Element(
		372, "assets/thumb/DG206004.jpg",
		137, 107,
		"DG206004", "Scammell Townsman Box Trailer  Cat. No. DG206004",
		"Royal Mail  MSRP £12.99", "Corgi",
		"10.2", "0",
		"1", 1,
		"model", "13",
		"", "pd-1413742912.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[373] = new Element(
		373, "assets/thumb/DG206003.jpg",
		137, 93,
		"DG206003", "Scammell Townsman Box Trailer  Cat. No. DG206003",
		"NCL", "Corgi",
		"10.2", "0",
		"1", 1,
		"model", "13",
		"", "pd1386545384.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[374] = new Element(
		374, "assets/thumb/DG206002.jpg",
		137, 71,
		"DG206002", "Scammell Townsman Flatbed/Load  Cat. No. DG206002",
		"Isle of Man Steam Packet Co Ltd", "Corgi",
		"10.2", "0",
		"1", 1,
		"model", "13",
		"", "pd-1980741860.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[375] = new Element(
		375, "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[376] = new Element(
		376, "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[377] = new Element(
		377, "assets/thumb/DG199012.jpg",
		137, 72,
		"DG199012", "Scammell Mechanical Horse Flatbed Trailer/Load   Cat. No. DG199012",
		"Railfreight", "Corgi",
		"10.2", "0",
		"1", 1,
		"model", "13",
		"", "pd1054872258.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[378] = new Element(
		378, "assets/thumb/DG199011.jpg",
		137, 88,
		"DG199011", "Scammell Mechanical Horse Flatbed/Load   Cat. No. DG199011",
		"TNT Inter County Express  MSRP £12.99", "Corgi",
		"10.2", "0",
		"1", 1,
		"model", "13",
		"", "pd1683779926.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[379] = new Element(
		379, "assets/thumb/DG199010.jpg",
		137, 91,
		"DG199010", "Scammell Mechanical Horse Flatbed/Container   Cat. No. DG199010",
		"GWR   MSRP £12.99", "Corgi",
		"10.2", "0",
		"1", 1,
		"model", "13",
		"", "pd1655665322.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[380] = new Element(
		380, "assets/thumb/DG187011.jpg",
		137, 88,
		"DG187011", "Guy Big J Tipper    Cat. No. DG187011",
		"NCB   MSRP £13.99", "Corgi",
		"11.75", "0",
		"1", 1,
		"model", "13",
		"", "pd-862225796.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[381] = new Element(
		381, "assets/thumb/DG186015.jpg",
		137, 76,
		"DG186015", "ERF LV Flatbed Trailer/Load    Cat. No. DG186015",
		"Moreton C Cullimore   MSRP £13.99", "Corgi",
		"11.75", "0",
		"1", 1,
		"model", "13",
		"", "pd-118187316.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[382] = new Element(
		382, "assets/thumb/DG176025.jpg",
		137, 65,
		"DG176025", "Leyland Octopus Tanker    Cat. No. DG176025",
		"Fina   MSRP £13.99", "Corgi",
		"12.25", "0",
		"1", 1,
		"model", "13",
		"", "pd-1073340126.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[383] = new Element(
		383, "assets/thumb/DG176023.jpg",
		137, 68,
		"DG176023", "Leyland Octopus Tanker    Cat. No. DG176023",
		"Alfred Manchester   MSRP £13.99", "Corgi",
		"10.7", "0",
		"1", 1,
		"model", "13",
		"", "pd1066708442.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[384] = new Element(
		384, "assets/thumb/DG175016.jpg",
		137, 73,
		"DG175016", "Scammell Handyman Sheeted Trailer    Cat. No. DG175016",
		"Freeway Haulage", "Corgi",
		"11.5", "0",
		"1", 1,
		"model", "13",
		"", "pd75722648.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[385] = new Element(
		385, "assets/thumb/DG174012.jpg",
		137, 95,
		"DG174012", "Noddy Van    Cat. No. DG174012",
		"Lucas", "Corgi",
		"5.6", "0",
		"1", 1,
		"model", "13",
		"", "pd1698924836.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[386] = new Element(
		386, "assets/thumb/DG148021.jpg",
		137, 69,
		"DG148021", "Scammell Scarab Dropside/Load    Cat. No. DG148021",
		"Roadline", "Corgi",
		"10.7", "0",
		"1", 1,
		"model", "13",
		"", "pd685461364.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[387] = new Element(
		387, "assets/thumb/DG148020.jpg",
		137, 101,
		"DG148020", "Scammell Scarab Box Trailer    Cat. No. DG148020",
		"Sharps Toffee", "Corgi",
		"10.7", "0",
		"1", 1,
		"model", "13",
		"", "pd1744448190.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[388] = new Element(
		388, "assets/thumb/cr3003.jpg",
		137, 51,
		"CR3003", "Car Set 3    Cat. No. CR3003",
		"MSRP £10.99", "Corgi",
		"8.7", "0",
		"1", 1,
		"set", "13",
		"", "pd-1089661424.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[389] = new Element(
		389, "assets/thumb/cr2003.jpg",
		137, 32,
		"CR2003", "Car Set 2    Cat. No. CR2003",
		"MSRP £10.99", "Corgi",
		"8.7", "0",
		"1", 1,
		"set", "13",
		"", "pd2119724434.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[390] = new Element(
		390, "assets/thumb/om46103.jpg",
		137, 59,
		"OM46103", "Plaxton Paragon  Cat. No. OM46103",
		"First Eastern Counties", "Corgi",
		"23", "0",
		"1", 1,
		"model", "12",
		"", "pd1598747758.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[391] = new Element(
		391, "assets/thumb/om46101.jpg",
		137, 56,
		"OM46101", "Plaxton Paragon  Cat. No. OM46101",
		"Felix Coaches", "Corgi",
		"23", "0",
		"1", 1,
		"model", "12",
		"", "pd-1035571980.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[392] = new Element(
		392, "assets/thumb/OM46008thumb.jpg",
		137, 61,
		"OM46008", "Wright Solar  Cat. No. OM46008",
		"Reading Transport", "Corgi",
		"23", "0",
		"1", 1,
		"model", "12",
		"", "pd1733893162.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[393] = new Element(
		393, "assets/thumb/om46007thumb.jpg",
		137, 50,
		"OM46007", "Wright Eclipse Urban  Cat. No. OM46007",
		"Rossendale Transport 50th Anniversary", "Corgi",
		"23", "0",
		"1", 1,
		"model", "12",
		"", "pd-123195680.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[394] = new Element(
		394, "assets/thumb/om46004.jpg",
		137, 52,
		"OM46004", "Wright Eclipse Urban  Cat. No. OM46004",
		"Fastrack/Kent Thameside", "Corgi",
		"23", "0",
		"1", 1,
		"model", "12",
		"", "pd-1890496546.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[395] = new Element(
		395, "assets/thumb/OM45911.jpg",
		137, 71,
		"OM45911", "Van Hool T9  Cat. No. OM45911",
		"Bibby&rsquo;s of Ingleton", "Corgi",
		"23", "0",
		"1", 1,
		"model", "12",
		"", "pd-981470144.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[396] = new Element(
		396, "assets/thumb/om45910thumb.jpg",
		137, 69,
		"OM45910", "Van Hool T9 Cat. No. OM45910",
		"Bartons Transport   MSRP £25.99", "Corgi",
		"23", "0",
		"1", 1,
		"model", "12",
		"", "pd1119859414.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[397] = new Element(
		397, "assets/thumb/om45119.jpg",
		137, 82,
		"OM45119", "MCW Metrobus MkII SD  Cat. No. OM45119",
		"Dublin Bus", "Corgi",
		"23", "0",
		"1", 1,
		"model", "12",
		"", "pd767643106.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[398] = new Element(
		398, "assets/thumb/om45118thumb.jpg",
		137, 98,
		"OM45118", "MCW Metrobus MkI DD Cat. No. OM45118",
		"London Transport  MSRP £25.99", "Corgi",
		"23", "0",
		"1", 1,
		"model", "12",
		"", "pd-2095751822.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[399] = new Element(
		399, "assets/thumb/OM44710thumb.jpg",
		137, 37,
		"OM44710", "Dart SLF/Pointer 1  Cat. No. OM44710",
		"Trent Barton &rsquo;The Villager&rsquo;   MSRP £25.99", "Corgi",
		"23", "0",
		"1", 1,
		"model", "12",
		"", "pd1348257384.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[400] = new Element(
		400, "assets/thumb/OM44709.jpg",
		137, 78,
		"OM44709", "Dart SLF/Pointer 2  Cat. No. OM44709",
		"Arriva London", "Corgi",
		"23", "0",
		"1", 1,
		"model", "12",
		"", "pd-382269200.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[401] = new Element(
		401, "assets/thumb/OM41408.jpg",
		137, 98,
		"OM41408", "AEC Regent V/Roe  Cat. No. OM41408",
		"Samuel Ledguard  MSRP £25.99", "Corgi",
		"23", "0",
		"1", 1,
		"model", "12",
		"", "pd-1766149978.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[402] = new Element(
		402, "assets/thumb/p114thumb.jpg",
		137, 96,
		"N-P114", "PowerCab power supply",
		"P114 14 volt DC 2 Amp (peak) power supply for PowerCab", "NCE",
		"25.5", "0",
		"1", 1,
		"item", "88",
		"", "pd-17432378.htm",
		"", 1,
		"Comps", "0",
		 0)
	
		Entry[403] = new Element(
		403, "assets/thumb/efe29613thumb.jpg",
		137, 78,
		"29613", "Leyland Olympian  Cat. No. 29613",
		"Eastern Counties", "EFE",
		"18.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-1740283397.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[404] = new Element(
		404, "assets/thumb/efe28605thumb.jpg",
		137, 79,
		"28605", "GM Standard Atlantean  Cat. No. 28605",
		"North Birmingham Busways", "EFE",
		"18.9", "0",
		"1", 1,
		"model", "18",
		"", "pd1161788415.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[405] = new Element(
		405, "assets/thumb/efe27618thumb.jpg",
		137, 46,
		"27618", "Wright Volvo Renown  Cat. No. 27618",
		"Blackburn Transport", "EFE",
		"18.9", "0",
		"1", 1,
		"model", "18",
		"", "pd251962529.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[406] = new Element(
		406, "assets/thumb/efe27103thumb.jpg",
		137, 63,
		"27103", "BET Weymann  Cat. No. 27103",
		"Aldershot &amp; District", "EFE",
		"18.9", "0",
		"1", 1,
		"model", "18",
		"", "pd-1418630979.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[407] = new Element(
		407, "assets/thumb/efe16528thumb.jpg",
		137, 80,
		"16528", "MCW Atlantean  Cat. No. 16528",
		"Portsmouth Transport", "EFE",
		"18.9", "0",
		"1", 1,
		"model", "18",
		"", "pd-1603698761.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[408] = new Element(
		408, "assets/thumb/cab04p-thumb.jpg",
		102, 205,
		"N-CAB04p", "Intermediate Cab 04p",
		"Intermediate Cab, with potentiometer speed knob", "NCE",
		"60", "0",
		"1", 1,
		"item", "89",
		"", "pd1163026793.htm",
		"", 1,
		"Throttles", "0",
		 0)
	
		Entry[409] = new Element(
		409, "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",
		"157.3", "0",
		"1", 1,
		"item", "88",
		"", "pd-567301697.htm",
		"", 1,
		"Comps", "0",
		 0)
	
		Entry[410] = new Element(
		410, "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.8", "0",
		"1", 1,
		"decoder", "93",
		"", "pd-1078803963.htm",
		"", 1,
		"TurDec", "0",
		 0)
	
		Entry[411] = new Element(
		411, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ150-1", "Coal drop",
		"HQ150-1", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd-986996555.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[412] = new Element(
		412, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ150-2", "Shovel coal",
		"HQ150-2", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd-260396565.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[413] = new Element(
		413, "assets/thumb/rramp1.jpg",
		137, 62,
		"RRAMP1", "RRampmeter Version 1",
		"RRampmeter Version 1 with no enclosure", "Tony's Train Exchange",
		"45", "0",
		"1", 1,
		"item", "117",
		"", "pd986414163.htm",
		"", 1,
		"POWERTEST", "0",
		 0)
	
		Entry[414] = new Element(
		414, "assets/thumb/rrampv2thumb.jpg",
		137, 51,
		"RRAMP2", "RRampmeter Version 2",
		"RRampmeter Version 2 with enclosure and clip leads", "Tony's Train Exchange",
		"70", "0",
		"1", 1,
		"item", "117",
		"", "pd886932614.htm",
		"", 1,
		"POWERTEST", "0",
		 0)
	
		Entry[415] = new Element(
		415, "assets/thumb/tds16.jpg",
		137, 106,
		"TT16", "Speaker 16mm (0.62&quot;) 8 ohm",
		"", "Tony's Train Exchange",
		"5.85", "0",
		"1", 1,
		"speaker", "120",
		"", "pd1893235797.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[416] = new Element(
		416, "assets/thumb/tds16.jpg",
		137, 106,
		"TT25", "Speaker 25mm (1.0&quot;) 8 ohm",
		"", "Tony's Train Exchange",
		"4", "0",
		"1", 1,
		"speaker", "120",
		"", "pd-603099509.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[417] = new Element(
		417, "assets/images/nopicturegreen.jpg",
		133, 46,
		"STX826120", "Tsunami Geared &amp; Logging",
		"TSU-1000 Tsunami for Light Logging Engines", "Soundtraxx",
		"77", "0",
		"1", 1,
		"decoder", "99",
		"", "pd-1233091258.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[418] = new Element(
		418, "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[419] = new Element(
		419, "assets/thumb/ogar.jpg",
		137, 89,
		"OG-AR", "DCC Auto Reverser and Circuit Breaker",
		"OnGuard DCC Auto Reverser and Circuit Breaker", "DCC Specialties",
		"28.6", "0",
		"1", 1,
		"item", "118",
		"", "pd287246726.htm",
		"", 1,
		"ONGUARD", "0",
		 0)
	
		Entry[420] = new Element(
		420, "assets/thumb/efe27311thumb.jpg",
		137, 92,
		"27311", "Leyland TD1 Closed Rear  Cat. No. 27311",
		"Cork City Services", "EFE",
		"18.4", "0",
		"1", 1,
		"model", "18",
		"", "pd886341252.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[421] = new Element(
		421, "assets/thumb/efe29614thumb.jpg",
		137, 75,
		"29614", "Leyland Olympian  Cat. No. 29614",
		"East Yorkshire", "EFE",
		"18.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-1101337171.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[422] = new Element(
		422, "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", "120",
		"", "pd1374995941.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[423] = new Element(
		423, "assets/thumb/tortoise.jpg",
		137, 139,
		"TORT6", "Tortoise™ Point Motor 6-pack",
		"", "Circuitron",
		"74", "0",
		"1", 1,
		"pack", "44",
		"", "pd-1582545343.htm",
		"", 1,
		"CIRCUITRON", "0",
		 0)
	
		Entry[424] = new Element(
		424, "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.65", "0",
		"1", 1,
		"pack", "26",
		"Multi-pack;2-pack@", "pd-966755525.htm",
		"", 1,
		"Switches", "0",
		 0)
	
		Entry[425] = new Element(
		425, "assets/thumb/r564.jpg",
		137, 55,
		"R564", "Farm People",
		"R564 Farm People  MSRP £4.00", "Hornby",
		"3.75", "0",
		"1", 1,
		"pack", "137",
		"", "pd-515298559.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[426] = new Element(
		426, "assets/thumb/r565.jpg",
		137, 55,
		"R565", "Farm Animals",
		"R565 Farm Animals  MSRP £4.00", "Hornby",
		"3.75", "0",
		"1", 1,
		"pack", "137",
		"", "pd-949031657.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[427] = new Element(
		427, "assets/thumb/r767.jpg",
		137, 55,
		"R767", "Sheep",
		"R767 Sheep  MSRP £4.99", "Hornby",
		"4.5", "0",
		"1", 1,
		"pack", "137",
		"", "pd-1361177315.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[428] = new Element(
		428, "assets/thumb/r768.jpg",
		137, 55,
		"R768", "Cows",
		"R768 Cows  MSRP £4.99", "Hornby",
		"4.5", "0",
		"1", 1,
		"pack", "137",
		"", "pd-666970989.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[429] = new Element(
		429, "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",
		"80.7", "0",
		"1", 1,
		"loco", "135",
		"", "pd1938062239.htm",
		"", 1,
		"HornbyStea", "0",
		 0)
	
		Entry[430] = new Element(
		430, "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",
		"65.9", "0",
		"1", 1,
		"loco", "136",
		"", "pd2026338125.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[431] = new Element(
		431, "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",
		"51", "0",
		"1", 1,
		"loco", "136",
		"", "pd495788667.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[432] = new Element(
		432, "assets/thumb/r2655.jpg",
		137, 29,
		"R2655", "Class 73 73 235 SW Trains",
		"R2655  Class 73 73 235 SW Trains  DCC Ready", "Hornby",
		"52", "0",
		"1", 1,
		"loco", "136",
		"", "pd-1892530121.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[433] = new Element(
		433, "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.75", "Hornby",
		"4.2", "0",
		"1", 1,
		"pack", "137",
		"", "pd1499242149.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[434] = new Element(
		434, "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", "104",
		"Harness;MH@", "pd1170975367.htm",
		"", 1,
		"TCS Harn", "0",
		 0)
	
		Entry[435] = new Element(
		435, "assets/thumb/efe11904thumb.jpg",
		137, 62,
		"11904", "Harrington Cavalier  Cat. No. 11904",
		"Southend Transport", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "18",
		"", "pd-1270375335.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[436] = new Element(
		436, "assets/thumb/26320thumb.jpg",
		137, 88,
		"26320", "Guy Arab II Utility  Cat. No. 26320",
		"Southdown", "EFE",
		"18.4", "0",
		"1", 1,
		"model", "18",
		"", "pd1171284605.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[437] = new Element(
		437, "assets/thumb/50-003-L.jpg",
		137, 33,
		"MIN50003", "Mini 3-pin connector",
		"Mini 3-pin connector - 1 pair", "Miniatronics",
		"6.1", "0",
		"1", 1,
		"pack", "119",
		"", "pd-544742558.htm",
		"", 1,
		"MINIATRONI", "0",
		 0)
	
		Entry[438] = new Element(
		438, "assets/thumb/50-004-L.jpg",
		137, 32,
		"MIN50004", "Mini 4-pin connector",
		"Mini 4-pin connector - 1 pair", "Miniatronics",
		"8.15", "0",
		"1", 1,
		"pack", "119",
		"", "pd452378720.htm",
		"", 1,
		"MINIATRONI", "0",
		 0)
	
		Entry[439] = new Element(
		439, "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",
		"27", "0",
		"1", 1,
		"item", "118",
		"", "pd1171738208.htm",
		"", 1,
		"ONGUARD", "0",
		 0)
	
		Entry[440] = new Element(
		440, "assets/thumb/efe32203thumb.jpg",
		137, 58,
		"32203", "Bristol RELH Coach  Cat. No.32203",
		"Crosville", "EFE",
		"19.9", "0",
		"1", 1,
		"model", "18",
		"", "pd-728360021.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[441] = new Element(
		441, "assets/thumb/hare_front_thumb.jpg",
		137, 142,
		"HARE1", "Hare Version 1",
		"HARE PnP stationary decoder for the Tortoise™ Switch Machine ", "DCC Specialties",
		"24", "0",
		"1", 1,
		"item", "118",
		"", "pd1172088649.htm",
		"", 1,
		"ONGUARD", "0",
		 0)
	
		Entry[442] = new Element(
		442, "assets/thumb/wire.jpg",
		137, 152,
		"T-AWG30BK", "30 AWG wire (0.26&quot;) - 3 metres",
		"", "TCS",
		"1.4", "0",
		"1", 1,
		"pack", "26",
		"Color;Black@", "pd-110233310.htm",
		"", 1,
		"Switches", "0",
		 0)
	
		Entry[443] = new Element(
		443, "assets/thumb/r6328abc.jpg",
		137, 44,
		"R6328C", "YGB Sealion Olive Green (Weathered)",
		"R6328C YGB Sealion Olive Green (Weathered) MSRP £17.00", "Hornby",
		"15.3", "0",
		"1", 1,
		"wagon", "134",
		"", "pd266841540.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[444] = new Element(
		444, "assets/thumb/r6330abc.jpg",
		137, 43,
		"R6330B", "YGB Sealion Transrail (Weathered)",
		"R6330B YGB Sealion Transrail (Weathered)  MSRP £17.00", "Hornby",
		"15.3", "0",
		"1", 1,
		"wagon", "134",
		"", "pd-41724226.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[445] = new Element(
		445, "assets/thumb/r6330abc.jpg",
		137, 43,
		"R6330C", "YGB Sealion Transrail (Weathered)",
		"R6330C YGB Sealion Transrail (Weathered)  MSRP £17.00", "Hornby",
		"15.3", "0",
		"1", 1,
		"wagon", "134",
		"", "pd902648604.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[446] = new Element(
		446, "assets/thumb/r6332.jpg",
		137, 21,
		"R6332", "Procor Hopper Wagons - pack of 3",
		"R6332 Procor Hopper Wagons  MSRP £33.00", "Hornby",
		"28.1", "0",
		"1", 1,
		"pack", "134",
		"", "pd315280616.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[447] = new Element(
		447, "assets/thumb/efe15639thumb.jpg",
		137, 85,
		"15639", "RM Routemaster  Cat. No. 15639",
		"Transport for London Arriva Route 38", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "18",
		"", "pd25696951.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[448] = new Element(
		448, "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",
		"59.2", "0",
		"1", 1,
		"decoder", "110",
		"", "pd-533813155.htm",
		"", 1,
		"UMELEC", "0",
		 0)
	
		Entry[449] = new Element(
		449, "assets/thumb/trackbedthumb.jpg",
		137, 49,
		"H-DCM-RB100", "MASTERscene Roadbed",
		"50 x 60cm strip of UV stable foam roadbed", "DCC Concepts",
		"48.5", "0",
		"1", 1,
		"pack", "35",
		"", "pd1174333140.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[450] = new Element(
		450, "assets/thumb/sap145.jpg",
		137, 175,
		"H-DCS145", "Sapphire 145 solder",
		"Sapphire 145 solder 4m pack", "DCC Concepts",
		"6", "0",
		"1", 1,
		"pack", "24",
		"", "pd1175101214.htm",
		"", 1,
		"Shrink", "0",
		 0)
	
		Entry[451] = new Element(
		451, "assets/thumb/sap179.jpg",
		137, 174,
		"H-DCS179", "Sapphire 179 solder",
		"Sapphire 179 solder 4m pack", "DCC Concepts",
		"6", "0",
		"1", 1,
		"pack", "24",
		"", "pd429609596.htm",
		"", 1,
		"Shrink", "0",
		 0)
	
		Entry[452] = new Element(
		452, "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",
		"4.25", "0",
		"1", 1,
		"pack", "25",
		"", "pd1177676734.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[453] = new Element(
		453, "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", "25",
		"", "pd-744465171.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[454] = new Element(
		454, "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", "25",
		"", "pd-1929404189.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[455] = new Element(
		455, "assets/thumb/s23.jpg",
		137, 137,
		"S23", "No.23 smoke generator unit",
		"No.23 smoke generator unit with 10ml smoke oil", "Seuthe",
		"24.5", "0",
		"1", 1,
		"pack", "159",
		"", "pd728735177.htm",
		"", 1,
		"Seuthe", "0",
		 0)
	
		Entry[456] = new Element(
		456, "assets/thumb/s22.jpg",
		137, 219,
		"S22", "No.22 smoke generator unit",
		"No.22 smoke generator unit with 10ml smoke oil", "Seuthe",
		"24.5", "0",
		"1", 1,
		"pack", "159",
		"", "pd839850100.htm",
		"", 1,
		"Seuthe", "0",
		 0)
	
		Entry[457] = new Element(
		457, "assets/thumb/efe20705thumb.jpg",
		137, 58,
		"20705", "AEC Regal Coach  Cat. No. 20705",
		"Surrey Motors", "EFE",
		"18.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-1053608711.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[458] = new Element(
		458, "assets/thumb/efe23206thumb.jpg",
		137, 55,
		"23206", "AEC RF MkII Bus  Cat. No. 23206",
		"Greenline", "EFE",
		"18.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-2035750961.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[459] = new Element(
		459, "assets/thumb/CC13211.jpg",
		130, 82,
		"CC13211-1", "DAF XF Space Cab Curtainside  Cat. No. CC13211",
		"C M Downton Ltd", "Corgi",
		"57.45", "0",
		"1", 1,
		"", "1",
		"", "pd-1386101053.htm",
		"", 1,
		"CLEAR", "40",
		 0)
	
		Entry[460] = new Element(
		460, "assets/thumb/efe20636thumb.jpg",
		137, 55,
		"20636", "Plaxton Pointer Dart  Cat. No. 20636",
		"Southern Vectis", "EFE",
		"18.4", "0",
		"1", 1,
		"model", "18",
		"", "pd1179913939.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[461] = new Element(
		461, "assets/thumb/efe29008thumb.jpg",
		137, 79,
		"29008", "GM Fleetline  Cat. No. 29008",
		"Grey Green", "EFE",
		"18.4", "0",
		"1", 1,
		"model", "18",
		"", "pd1094433493.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[462] = new Element(
		462, "assets/thumb/efe31702thumb.jpg",
		137, 85,
		"31702", "RMC Routemaster Coach  Cat. No. 31702",
		"London Country NBC", "EFE",
		"19.4", "0",
		"1", 1,
		"model", "18",
		"", "pd1489817867.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[463] = new Element(
		463, "assets/thumb/efe32002thumb.jpg",
		137, 81,
		"32002", "RCL Routemaster Coach  Cat. No. 32002",
		"London Country", "EFE",
		"19.4", "0",
		"1", 1,
		"model", "18",
		"", "pd46885391.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[464] = new Element(
		464, "assets/thumb/efe16529thumb.jpg",
		137, 76,
		"16529", "MCW Leyland Atlantean  Cat. No. 16529",
		"Great Yarmouth", "EFE",
		"18.4", "0",
		"1", 1,
		"model", "18",
		"", "pd1176309937.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[465] = new Element(
		465, "assets/thumb/efe29201thumb.jpg",
		137, 72,
		"29201", "Leyland Titan 1 Door  Cat. No. 29201",
		"Glendale Transport Ltd", "EFE",
		"18.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-1800009145.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[466] = new Element(
		466, "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.5", "0",
		"1", 1,
		"pack", "25",
		"", "pd102198831.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[467] = new Element(
		467, "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",
		"6.5", "0",
		"1", 1,
		"pack", "27",
		"", "pd1185106120.htm",
		"", 1,
		"Tools", "0",
		 0)
	
		Entry[468] = new Element(
		468, "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",
		"6.5", "0",
		"1", 1,
		"pack", "27",
		"", "pd570915894.htm",
		"", 1,
		"Tools", "0",
		 0)
	
		Entry[469] = new Element(
		469, "assets/thumb/hpsc3.jpg",
		137, 193,
		"H-DCF-MS-BOL", "Mixed pack of Micro machine screws and bolts",
		"48 of each assorted", "DCC Concepts",
		"10", "0",
		"1", 1,
		"pack", "27",
		"", "pd28104020.htm",
		"", 1,
		"Tools", "0",
		 0)
	
		Entry[470] = new Element(
		470, "assets/thumb/dp2xbottom.jpg",
		137, 185,
		"DP2X", "DP2X - 2 function decoder",
		"DP2X - HO/OO Scale Plug and Play 1 amp 2 function decoder", "TCS",
		"19.5", "0",
		"1", 1,
		"decoder", "102",
		"", "pd1189171154.htm",
		"", 1,
		"TCSDCC", "0",
		 0)
	
		Entry[471] = new Element(
		471, "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",
		"22.25", "0",
		"1", 1,
		"decoder", "102",
		"Harness;Wires only@", "pd421726225.htm",
		"", 1,
		"TCSDCC", "0",
		 0)
	
		Entry[472] = new Element(
		472, "assets/thumb/Detailremover.jpg",
		137, 183,
		"JT100", "Detail and Decal Remover",
		"", "Joe's Trains",
		"8.7", "0",
		"1", 1,
		"bottle", "35",
		"", "pd1465736543.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[473] = new Element(
		473, "assets/thumb/joes4paintcolors.jpg",
		137, 85,
		"JT103", "Rusty Rails Acrylic Paint",
		"Brown Rust 2oz bottle", "Joe's Trains",
		"5", "0",
		"1", 1,
		"bottle", "35",
		"", "pd-1414588069.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[474] = new Element(
		474, "assets/thumb/joes4paintcolors.jpg",
		137, 85,
		"JT104", "Rusty Rails Acrylic Paint",
		"Weathered Black  2oz bottle", "Joe's Trains",
		"5", "0",
		"1", 1,
		"bottle", "35",
		"", "pd1690539293.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[475] = new Element(
		475, "assets/thumb/BarrelsBig.jpg",
		137, 55,
		"99605", "Large Barrels ",
		"Set of 3 large barrels  1:76 OO Scale", "EFE",
		"1.5", "0",
		"1", 1,
		"pack", "32",
		"", "pd1105272052.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[476] = new Element(
		476, "assets/thumb/BarrelsSmall.jpg",
		137, 64,
		"99606", "Small Barrels ",
		"Set of 3 small barrels  1:76 OO Scale", "EFE",
		"1.5", "0",
		"1", 1,
		"pack", "32",
		"", "pd-933192638.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[477] = new Element(
		477, "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", "32",
		"", "pd-1599593362.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[478] = new Element(
		478, "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", "32",
		"", "pd-1737516980.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[479] = new Element(
		479, "assets/thumb/efe99610.jpg",
		137, 106,
		"99610", "Bottles in Crates ",
		"Set of 3 crates with bottles  1:76 OO Scale", "EFE",
		"1.5", "0",
		"1", 1,
		"pack", "32",
		"", "pd-749869222.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[480] = new Element(
		480, "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.6", "0",
		"1", 1,
		"pack", "25",
		"", "pd1193136616.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[481] = new Element(
		481, "assets/thumb/EFE30604.jpg",
		137, 102,
		"30604", "AEC Renown  Cat. No.30604",
		"Northern NBC", "EFE",
		"18.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-1790719596.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[482] = new Element(
		482, "assets/thumb/efe16323.jpg",
		137, 61,
		"16323", "Bristol LS Bus  Cat. No. 16323",
		"London Transport", "EFE",
		"18.4", "0",
		"1", 1,
		"model", "18",
		"", "pd2062682865.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[483] = new Element(
		483, "assets/thumb/efe19709.jpg",
		137, 84,
		"19709", "AEC Regent V Orion  Cat. No. 19709",
		"Merseyside PTE", "EFE",
		"18.4", "0",
		"1", 1,
		"model", "18",
		"", "pd1193515826.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[484] = new Element(
		484, "assets/thumb/efe29203.jpg",
		137, 80,
		"29203", "Leyland Titan 1 Door  Cat. No. 29203",
		"Merseybus", "EFE",
		"18.4", "0",
		"1", 1,
		"model", "18",
		"", "pd131071877.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[485] = new Element(
		485, "assets/thumb/efe29616.jpg",
		137, 69,
		"29616", "Leyland Olympian  Cat. No. 29616",
		"Chester City Transport", "EFE",
		"18.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-622570483.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[486] = new Element(
		486, "assets/thumb/dxds44.jpg",
		137, 39,
		"DXDS44", "DS44",
		"Digitrax DS44 basic stationary decoder for 4 slow-motion point motors", "Digitrax",
		"28.6", "0",
		"1", 1,
		"decoder", "74",
		"", "pd149306530.htm",
		"", 1,
		"DXTURN", "0",
		 0)
	
		Entry[487] = new Element(
		487, "assets/thumb/dxds64.jpg",
		137, 93,
		"DXDS64", "DS64",
		"Digitrax DS64 Stationary decoder to operate 4 turnout motors", "Digitrax",
		"40", "0",
		"1", 1,
		"decoder", "74",
		"", "pd-941132870.htm",
		"", 1,
		"DXTURN", "0",
		 0)
	
		Entry[488] = new Element(
		488, "assets/thumb/ds51k1.jpg",
		137, 53,
		"DXDS51K1", "DS51K1 for Kato Unitrak",
		"", "Digitrax",
		"11.2", "0",
		"1", 1,
		"decoder", "74",
		"", "pd-1678132320.htm",
		"", 1,
		"DXTURN", "0",
		 0)
	
		Entry[489] = new Element(
		489, "assets/thumb/efe99602.jpg",
		137, 98,
		"99602", "Small crates",
		"Set of 3 small crates  1:76 OO Scale", "EFE",
		"1.5", "0",
		"1", 1,
		"pack", "32",
		"", "pd1193846397.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[490] = new Element(
		490, "assets/thumb/efe99601thumb.jpg",
		137, 75,
		"99601", "Large crates",
		"Set of 3 large crates  1:76 OO Scale", "EFE",
		"1.5", "0",
		"1", 1,
		"pack", "32",
		"", "pd-1836759821.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[491] = new Element(
		491, "assets/thumb/50-003-L.jpg",
		137, 33,
		"MIN50003-1", "Mini 3-pin connector",
		"Mini 3-pin connector - 1 pair", "Miniatronics",
		"6.1", "0",
		"1", 1,
		"pack", "26",
		"", "pd1979640010.htm",
		"", 1,
		"Switches", "0",
		 0)
	
		Entry[492] = new Element(
		492, "assets/thumb/50-004-L.jpg",
		137, 32,
		"MIN50004-1", "Mini 4-pin connector",
		"Mini 4-pin connector - 1 pair", "Miniatronics",
		"8.15", "0",
		"1", 1,
		"pack", "26",
		"", "pd1110828040.htm",
		"", 1,
		"Switches", "0",
		 0)
	
		Entry[493] = new Element(
		493, "assets/images/nopicturegreen.jpg",
		133, 46,
		"Q-ATLTMSTRNM", "QSI Quantum Chip Upgrade",
		"Atlas Trainmaster (No Mars)", "QSI",
		"14.3", "0",
		"1", 1,
		"item", "97",
		"", "pd1194424598.htm",
		"", 1,
		"QSI", "0",
		 0)
	
		Entry[494] = new Element(
		494, "assets/thumb/efe22514.jpg",
		137, 51,
		"22514", "Alexander Y Type  Cat. No. 22514",
		"Hants &amp; Dorset NBC", "EFE",
		"19.9", "0",
		"1", 1,
		"model", "18",
		"", "pd395776344.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[495] = new Element(
		495, "assets/thumb/efe33801.jpg",
		137, 51,
		"33801", "Bristol RELH Coach  Cat. No. 33801",
		"Eastern National", "EFE",
		"19.9", "0",
		"1", 1,
		"model", "18",
		"", "pd1344727450.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[496] = new Element(
		496, "assets/images/nopicturegreen.jpg",
		133, 46,
		"TR180", "Modern style 4 track width gantry",
		"MSRP £32.50", "Traintronics",
		"30.1", "0",
		"1", 1,
		"item", "34",
		"", "pd423567837.htm",
		"", 1,
		"SIGNALS", "0",
		 0)
	
		Entry[497] = new Element(
		497, "assets/thumb/tr115.jpg",
		137, 324,
		"TR115", "4 aspect feather right",
		"MSRP £28.99", "Traintronics",
		"26.55", "0",
		"1", 1,
		"item", "34",
		"", "pd83319767.htm",
		"", 1,
		"SIGNALS", "0",
		 0)
	
		Entry[498] = new Element(
		498, "assets/thumb/tr114.jpg",
		137, 324,
		"TR114", "4 aspect feather left",
		"MSRP £28.99", "Traintronics",
		"26.55", "0",
		"1", 1,
		"item", "34",
		"", "pd-1320506431.htm",
		"", 1,
		"SIGNALS", "0",
		 0)
	
		Entry[499] = new Element(
		499, "assets/images/nopicturegreen.jpg",
		133, 46,
		"TR113", "3 aspect red/green with feather right",
		"MSRP £26.99", "Traintronics",
		"25.5", "0",
		"1", 1,
		"item", "34",
		"", "pd-2053219301.htm",
		"", 1,
		"SIGNALS", "0",
		 0)
	
		Entry[500] = new Element(
		500, "assets/images/nopicturegreen.jpg",
		133, 46,
		"TR112", "3 aspect red/green with feather left",
		"MSRP £26.99", "Traintronics",
		"25.5", "0",
		"1", 1,
		"item", "34",
		"", "pd-1163701403.htm",
		"", 1,
		"SIGNALS", "0",
		 0)
	
		Entry[501] = new Element(
		501, "assets/thumb/tr111.jpg",
		137, 277,
		"TR111", "2 aspect red/green with feather right",
		"MSRP £24.99", "Traintronics",
		"23", "0",
		"1", 1,
		"pack", "34",
		"", "pd-1371294689.htm",
		"", 1,
		"SIGNALS", "0",
		 0)
	
		Entry[502] = new Element(
		502, "assets/thumb/tr110.jpg",
		137, 277,
		"TR110", "2 aspect red/green with feather left",
		"MSRP £24.99", "Traintronics",
		"23", "0",
		"1", 1,
		"pack", "34",
		"", "pd2076146889.htm",
		"", 1,
		"SIGNALS", "0",
		 0)
	
		Entry[503] = new Element(
		503, "assets/thumb/tr107.jpg",
		137, 248,
		"TR107", "4 aspect red/yellow/green/yellow",
		"MSRP £18.50", "Traintronics",
		"16.85", "0",
		"1", 1,
		"item", "34",
		"", "pd-467654685.htm",
		"", 1,
		"SIGNALS", "0",
		 0)
	
		Entry[504] = new Element(
		504, "assets/thumb/tr105.jpg",
		137, 188,
		"TR105", "3 aspect yellow/green/yellow",
		"MSRP £16.50", "Traintronics",
		"15.5", "0",
		"1", 1,
		"item", "34",
		"", "pd1626033133.htm",
		"", 1,
		"SIGNALS", "0",
		 0)
	
		Entry[505] = new Element(
		505, "assets/images/nopicturegreen.jpg",
		133, 46,
		"TR104", "3 aspect red/yellow/green",
		"MSRP £16.50", "Traintronics",
		"15.5", "0",
		"1", 1,
		"item", "34",
		"", "pd-1027851417.htm",
		"", 1,
		"SIGNALS", "0",
		 0)
	
		Entry[506] = new Element(
		506, "assets/images/nopicturegreen.jpg",
		133, 46,
		"TR103", "2 aspect yellow/green",
		"MSRP £14.50", "Traintronics",
		"13.5", "0",
		"1", 1,
		"item", "34",
		"", "pd-282286895.htm",
		"", 1,
		"SIGNALS", "0",
		 0)
	
		Entry[507] = new Element(
		507, "assets/thumb/tr102.jpg",
		137, 208,
		"TR102", "2 aspect red/green",
		"MSRP £14.50", "Traintronics",
		"13.5", "0",
		"1", 1,
		"item", "34",
		"", "pd569229714.htm",
		"", 1,
		"SIGNALS", "0",
		 0)
	
		Entry[508] = new Element(
		508, "assets/thumb/dxtl1.jpg",
		137, 127,
		"DXTL1", "Digitrax TL1",
		"TL1 Single DCC Function only decoder with integrated transponder", "Digitrax",
		"11.2", "0",
		"1", 1,
		"decoder", "70",
		"", "pd194472832.htm",
		"", 1,
		"DXHODEC", "0",
		 0)
	
		Entry[509] = new Element(
		509, "assets/thumb/dxpm42.jpg",
		137, 93,
		"DXDPM42", "PM42 Power Manager",
		"Digitrax Power Management System-PM42", "Digitrax",
		"56", "0",
		"1", 1,
		"item", "75",
		"", "pd147054186.htm",
		"", 1,
		"DXSIG", "0",
		 0)
	
		Entry[510] = new Element(
		510, "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.8", "0",
		"1", 1,
		"decoder", "90",
		"", "pd924582428.htm",
		"", 1,
		"HODec", "0",
		 0)
	
		Entry[511] = new Element(
		511, "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", "25",
		"LED size;2mm tower pack@", "pd1195765754.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[512] = new Element(
		512, "assets/thumb/dxup5.jpg",
		137, 97,
		"DXUP5", "UP5",
		"LocoNet Universal Interconnect Panel UP-5", "Digitrax",
		"12.25", "0",
		"1", 1,
		"item", "76",
		"", "pd-1033618002.htm",
		"", 1,
		"DXSPARE", "0",
		 0)
	
		Entry[513] = new Element(
		513, "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",
		"28.1", "0",
		"1", 1,
		"item", "118",
		"", "pd1180532453.htm",
		"", 1,
		"ONGUARD", "0",
		 0)
	
		Entry[514] = new Element(
		514, "assets/thumb/joes4paintcolors.jpg",
		137, 85,
		"JT106", "Rusty Rails Acrylic Paint",
		"Shale 2oz bottle", "Joe's Trains",
		"5", "0",
		"1", 1,
		"bottle", "35",
		"", "pd1245211927.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[515] = new Element(
		515, "assets/thumb/jt103.jpg",
		137, 103,
		"JT107", "Rusty Rails Acrylic Paint",
		"Dark Brown  2oz bottle", "Joe's Trains",
		"5", "0",
		"1", 1,
		"bottle", "35",
		"", "pd-1353274623.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[516] = new Element(
		516, "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", "119",
		"", "pd-56462437.htm",
		"", 1,
		"MINIATRONI", "0",
		 0)
	
		Entry[517] = new Element(
		517, "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",
		"4.25", "0",
		"1", 1,
		"pack", "119",
		"", "pd-891646143.htm",
		"", 1,
		"MINIATRONI", "0",
		 0)
	
		Entry[518] = new Element(
		518, "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", "119",
		"", "pd1973939031.htm",
		"", 1,
		"MINIATRONI", "0",
		 0)
	
		Entry[519] = new Element(
		519, "assets/images/nopicturegreen.jpg",
		133, 46,
		"OM41910", "Leyland PD3/Queen Mary  Cat. No. OM41910",
		"Southdown Motors  MSRP £19.99", "Corgi",
		"18.9", "0",
		"1", 1,
		"model", "12",
		"", "pd1180962328.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[520] = new Element(
		520, "assets/thumb/tds075dia_1456-02lg.jpg",
		137, 122,
		"TT75", "Speaker 20mm (0.75&quot;) 8 ohm",
		"", "Tony's Train Exchange",
		"4", "0",
		"1", 1,
		"speaker", "120",
		"", "pd1181060543.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[521] = new Element(
		521, "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", "38",
		"", "pd-948532873.htm",
		"", 1,
		"CMX", "0",
		 0)
	
		Entry[522] = new Element(
		522, "assets/thumb/efe26620.jpg",
		137, 55,
		"26620", "Plaxton Paramount 3500  Cat. No. 26620",
		"Fishwick &amp; Sons", "EFE",
		"18.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-1540284963.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[523] = new Element(
		523, "assets/thumb/efe27506.jpg",
		137, 51,
		"27506", "Wright Scania  Cat. No. 27506",
		"First Eastern Counties", "EFE",
		"18.4", "0",
		"1", 1,
		"model", "18",
		"", "pd1697125205.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[524] = new Element(
		524, "assets/thumb/efe27702.jpg",
		137, 85,
		"27702", "AEC STL (no roof box)  Cat. No. 27702",
		"London Transport", "EFE",
		"18.4", "0",
		"1", 1,
		"model", "18",
		"", "pd445118423.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[525] = new Element(
		525, "assets/thumb/efe29406.jpg",
		137, 48,
		"29406", "Bristol RELH D/P Coach  Cat. No. 29406",
		"Lincolnshire NBC White", "EFE",
		"18.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-124515501.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[526] = new Element(
		526, "assets/thumb/efe32102sb.jpg",
		137, 78,
		"32102SB", "RMF Routemaster  Cat. No. 32102SB",
		"Northern General Showbus", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd610807439.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[527] = new Element(
		527, "assets/thumb/efe32304.jpg",
		137, 54,
		"32304", "Bristol RELH Coach  Cat. No. 32304",
		"Southern National", "EFE",
		"19.9", "0",
		"1", 1,
		"model", "18",
		"", "pd929226123.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[528] = new Element(
		528, "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",
		"41", "0",
		"1", 1,
		"item", "118",
		"", "pd1183385619.htm",
		"", 1,
		"ONGUARD", "0",
		 0)
	
		Entry[529] = new Element(
		529, "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",
		"8.5", "0",
		"1", 1,
		"pack", "26",
		"Multi-pack;2-pack@", "pd1184936179.htm",
		"", 1,
		"Switches", "0",
		 0)
	
		Entry[530] = new Element(
		530, "assets/thumb/CC19903_ H E Payne Trailer.jpg",
		137, 91,
		"CC19903-1", "Curtainside Trailer  Cat. No. CC19903",
		"H E Payne", "Corgi",
		"35.75", "0",
		"1", 1,
		"model", "1",
		"", "pd-1284311003.htm",
		"", 1,
		"CLEAR", "40",
		 0)
	
		Entry[531] = new Element(
		531, "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.5", "0",
		"1", 1,
		"pack", "35",
		"", "pd2104942065.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[532] = new Element(
		532, "assets/thumb/jtLG.jpg",
		137, 327,
		"JT122", "Real Rocks Ballast",
		"Light Grey  8oz bottle", "Joe's Trains",
		"6.1", "0",
		"1", 1,
		"bottle", "35",
		"", "pd-1193964593.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[533] = new Element(
		533, "assets/thumb/jtEB.jpg",
		137, 344,
		"JT124", "Real Rocks Ballast",
		"Earth Blend  8oz bottle", "Joe's Trains",
		"6.1", "0",
		"1", 1,
		"bottle", "35",
		"", "pd-821391669.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[534] = new Element(
		534, "assets/thumb/efe16128thumb.jpg",
		137, 85,
		"16128", "Leyland PD2 Highbridge  Cat. No. 16128",
		"Southdown", "EFE",
		"20.4", "0",
		"1", 1,
		"model", "18",
		"", "pd2089881218.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[535] = new Element(
		535, "assets/thumb/efe31504thumb.jpg",
		137, 82,
		"31504", "RM Routemaster  Cat. No. 31504",
		"London Transport", "EFE",
		"20.4", "0",
		"1", 1,
		"model", "18",
		"", "pd773208750.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[536] = new Element(
		536, "assets/thumb/efe34904thumb.jpg",
		137, 70,
		"34904", "Leyland Olympian Coach  Cat. No. 34904",
		"Southern Vectis", "EFE",
		"20.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-1000564596.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[537] = new Element(
		537, "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",
		"75.6", "0",
		"1", 1,
		"loco", "42",
		"", "pd-945811534.htm",
		"", 1,
		"ATGP38", "0",
		 0)
	
		Entry[538] = new Element(
		538, "assets/thumb/r8239thumb.jpg",
		137, 55,
		"R8239-1", "Power and Signal Booster",
		"R8239 Power and Signal Booster  MSRP £35.99", "Hornby",
		"62.3", "0",
		"1", 1,
		"decoder", "83",
		"", "pd739690874.htm",
		"", 1,
		"HORNBYDCC", "0",
		 0)
	
		Entry[539] = new Element(
		539, "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.7", "0",
		"1", 1,
		"item", "85",
		"", "pd-1428416572.htm",
		"", 1,
		"MRCCONT", "0",
		 0)
	
		Entry[540] = new Element(
		540, "assets/thumb/r8239thumb.jpg",
		137, 55,
		"R8239", "Power and Signal Booster",
		"R8239 Power and Signal Booster  MSRP £35.99", "Hornby",
		"62.3", "0",
		"1", 1,
		"decoder", "132",
		"", "pd1255342406.htm",
		"", 1,
		"DCC", "0",
		 0)
	
		Entry[541] = new Element(
		541, "assets/thumb/smbk.jpg",
		92, 141,
		"DXSMBK", "SMBK",
		"Signal Mast Base Kit", "Digitrax",
		"10.2", "0",
		"1", 1,
		"kit", "75",
		"", "pd1255688855.htm",
		"", 1,
		"DXSIG", "0",
		 0)
	
		Entry[542] = new Element(
		542, "assets/thumb/smhk.jpg",
		137, 82,
		"DXSMHK", "SMHK",
		"Signal Mounting Hardware Kit", "Digitrax",
		"7.15", "0",
		"1", 1,
		"kit", "75",
		"", "pd-1783845219.htm",
		"", 1,
		"DXSIG", "0",
		 0)
	
		Entry[543] = new Element(
		543, "assets/thumb/tsmk.jpg",
		137, 57,
		"DXTSMK", "TSMK",
		"Signal Terminal Strip Mounting Kit", "Digitrax",
		"10.2", "0",
		"1", 1,
		"kit", "75",
		"", "pd711264787.htm",
		"", 1,
		"DXSIG", "0",
		 0)
	
		Entry[544] = new Element(
		544, "assets/thumb/emd645nt.jpg",
		137, 109,
		"STX828048", "EMD 645 Non-Turbo Diesel Engines ",
		"TSU-AT1000 for EMD 645 Non-Turbo Diesel Engines ", "Soundtraxx",
		"64", "0",
		"1", 1,
		"decoder", "99",
		"", "pd-1832785287.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[545] = new Element(
		545, "assets/thumb/locolamps.jpg",
		137, 36,
		"H-DML-LLBWH", "Loco lamp White",
		"Pack of 6 x White loco lamps", "DCC Concepts",
		"32.7", "0",
		"1", 1,
		"pack", "25",
		"", "pd1256207743.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[546] = new Element(
		546, "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",
		"39", "0",
		"1", 1,
		"pack", "25",
		"", "pd-884132923.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[547] = new Element(
		547, "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",
		"13.5", "0",
		"1", 1,
		"set", "35",
		"Color;Brown Rust@", "pd-889483748.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[548] = new Element(
		548, "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", "8",
		"", "pd1256913937.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[549] = new Element(
		549, "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", "8",
		"", "pd1398236327.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[550] = new Element(
		550, "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", "8",
		"", "pd79140653.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[551] = new Element(
		551, "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", "8",
		"", "pd-120953565.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[552] = new Element(
		552, "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", "8",
		"", "pd-1073677303.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[553] = new Element(
		553, "assets/thumb/efe23320thumb.jpg",
		137, 55,
		"23320", "AEC RF MkI Bus  Cat. No. 23320",
		"London Transport", "EFE",
		"20.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-299283591.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[554] = new Element(
		554, "assets/thumb/efe35701thumb.jpg",
		137, 47,
		"35701", "36&rsquo; BET 4 bay  Cat. No. 35701",
		"Greenline", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd1089724091.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[555] = new Element(
		555, "assets/thumb/efe35202thumb.jpg",
		137, 47,
		"35202", "36&rsquo; BET Leyland Leopard  Cat. No. 35202",
		"Yorkshire Traction", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd2133374595.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[556] = new Element(
		556, "assets/thumb/efe16223thumb.jpg",
		137, 57,
		"16223", "Bristol LS/MW  Cat. No. 16223",
		"Crosville NBC", "EFE",
		"20.4", "0",
		"1", 1,
		"model", "18",
		"", "pd734154059.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[557] = new Element(
		557, "assets/thumb/efe32206thumb.jpg",
		137, 46,
		"32206", "Bristol RELH Coach  Cat. No. 32206",
		"Hants &amp; Dorset", "EFE",
		"20.4", "0",
		"1", 1,
		"model", "18",
		"", "pd717712575.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[558] = new Element(
		558, "assets/thumb/efe29622thumb.jpg",
		137, 73,
		"29622", "Leyland Olympian  Cat. No. 29622",
		"Isle of Man Transport", "EFE",
		"20.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-694796281.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[559] = new Element(
		559, "assets/thumb/efe27314thumb.jpg",
		137, 83,
		"27314", "Leyland TD1 Closed Rear  Cat. No. 27314",
		"Scout Motor Services", "EFE",
		"20.4", "0",
		"1", 1,
		"model", "18",
		"", "pd1519837775.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[560] = new Element(
		560, "assets/thumb/efe36703thumb.jpg",
		137, 43,
		"36703", "Plaxton SLF Dart MkII  Cat. No. 36703",
		"Aldershot &amp; District", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd1673280773.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[561] = new Element(
		561, "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[562] = new Element(
		562, "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[563] = new Element(
		563, "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[564] = new Element(
		564, "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[565] = new Element(
		565, "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[566] = new Element(
		566, "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", "0",
		"1", 1,
		"speaker", "120",
		"", "pd1258111687.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[567] = new Element(
		567, "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", "0",
		"1", 1,
		"speaker", "120",
		"", "pd-1768409718.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[568] = new Element(
		568, "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", "0",
		"1", 1,
		"speaker", "120",
		"", "pd-473235768.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[569] = new Element(
		569, "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", "0",
		"1", 1,
		"speaker", "120",
		"", "pd-644996554.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[570] = new Element(
		570, "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", "120",
		"Multi-pack;Single item@", "pd-1469322412.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[571] = new Element(
		571, "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", "0",
		"1", 1,
		"speaker", "120",
		"", "pd-717909598.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[572] = new Element(
		572, "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[573] = new Element(
		573, "assets/thumb/sap145.jpg",
		137, 175,
		"H-DCS100", "Sapphire 100 solder",
		"Sapphire 100 low melt point solder pack", "DCC Concepts",
		"8.15", "0",
		"1", 1,
		"pack", "24",
		"", "pd1258624685.htm",
		"", 1,
		"Shrink", "0",
		 0)
	
		Entry[574] = new Element(
		574, "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",
		"12.5", "0",
		"1", 1,
		"pack", "25",
		"", "pd2735784.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[575] = new Element(
		575, "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",
		"12.5", "0",
		"1", 1,
		"pack", "25",
		"", "pd1097753878.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[576] = new Element(
		576, "assets/thumb/nlrdthumb.jpg",
		137, 164,
		"HLED-NLRD", "NANO lights Red",
		"Pack of 6 x pre-wired Red NANO LEDs with resistors", "DCC Concepts",
		"12.75", "0",
		"1", 1,
		"pack", "25",
		"", "pd-61511372.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[577] = new Element(
		577, "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.8", "0",
		"1", 1,
		"pack", "25",
		"", "pd-388578686.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[578] = new Element(
		578, "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.3", "0",
		"1", 1,
		"pack", "25",
		"", "pd1259341378.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[579] = new Element(
		579, "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.3", "0",
		"1", 1,
		"pack", "25",
		"", "pd508239424.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[580] = new Element(
		580, "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.3", "0",
		"1", 1,
		"pack", "25",
		"", "pd1584541294.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[581] = new Element(
		581, "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.75", "0",
		"1", 1,
		"pack", "25",
		"", "pd70300236.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[582] = new Element(
		582, "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.75", "0",
		"1", 1,
		"pack", "25",
		"", "pd-400780966.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[583] = new Element(
		583, "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.75", "0",
		"1", 1,
		"pack", "25",
		"", "pd2095841048.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[584] = new Element(
		584, "assets/thumb/dt402.jpg",
		137, 404,
		"DXDT402", "DT402 Loconet Super Throttle",
		"DT402 Loconet Super Walkaround/IR Throttle", "Digitrax",
		"124.6", "0",
		"1", 1,
		"item", "69",
		"", "pd487531366.htm",
		"", 1,
		"DXCONTROL", "0",
		 0)
	
		Entry[585] = new Element(
		585, "assets/thumb/dxdz125PS.jpg",
		137, 157,
		"DXDZ125PS", "DZ125PS",
		"DZ125PS Z Scale Mobile Decoder", "Digitrax",
		"17.5", "0",
		"1", 1,
		"decoder", "71",
		"", "pd-879212802.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[586] = new Element(
		586, "assets/thumb/hj1740.jpg",
		137, 98,
		"HJ01740", "Beer depot",
		"Kit of plastic parts to create a beer depot", "Heljan",
		"10.2", "0",
		"1", 1,
		"kit", "130",
		"", "pd1190748004.htm",
		"", 1,
		"HJACC", "0",
		 0)
	
		Entry[587] = new Element(
		587, "assets/thumb/EFE29615.jpg",
		137, 79,
		"29615", "Leyland Olympian  Cat. No. 29615",
		"First Hampshire", "EFE",
		"18.4", "0",
		"1", 1,
		"model", "18",
		"", "pd231852815.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[588] = new Element(
		588, "assets/thumb/EFE28006.jpg",
		137, 79,
		"28006", "Daimler DMS 1 Door  Cat. No. 28006",
		"Trent Buses", "EFE",
		"18.4", "0",
		"1", 1,
		"model", "18",
		"", "pd412714071.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[589] = new Element(
		589, "assets/thumb/EFE27621.jpg",
		137, 48,
		"27621", "Wright Volvo Renown  Cat. No. 27621",
		"First Portsmouth", "EFE",
		"18.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-1027907629.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[590] = new Element(
		590, "assets/thumb/EFE25305.jpg",
		137, 85,
		"25305", "AEC Duple Coach  Cat. No. 25305",
		"Wilts &amp; Dorset", "EFE",
		"18.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-1168326591.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[591] = new Element(
		591, "assets/thumb/EFE17219.jpg",
		137, 70,
		"17219", "Leyland National Mk1 Long   Cat. No. 17219",
		"Damory Coaches", "EFE",
		"18.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-497076679.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[592] = new Element(
		592, "assets/thumb/dxbd4.jpg",
		137, 269,
		"DXBD4", "BD4-Block Detector",
		"BD4 Quad Occupancy Detector", "Digitrax",
		"21.45", "0",
		"1", 1,
		"item", "75",
		"", "pd1542367594.htm",
		"", 1,
		"DXSIG", "0",
		 0)
	
		Entry[593] = new Element(
		593, "assets/thumb/dxse8c2.jpg",
		137, 168,
		"DXSE8C", "SE8C Signal Decoder",
		"Digitrax SE8C Plug &rsquo;N Play Signal Decoder", "Digitrax",
		"81.7", "0",
		"1", 1,
		"item", "75",
		"", "pd-643256530.htm",
		"", 1,
		"DXSIG", "0",
		 0)
	
		Entry[594] = new Element(
		594, "assets/thumb/dxdz143.gif",
		84, 110,
		"DXDZ143", "DZ143",
		"DZ143 Z Scale Mobile Decoder", "Digitrax",
		"23.5", "0",
		"1", 1,
		"decoder", "71",
		"", "pd-186335908.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[595] = new Element(
		595, "assets/thumb/dxdz143.gif",
		84, 110,
		"DXDZ143PS", "DZ143PS",
		"DZ143PS Z Scale Mobile Decoder", "Digitrax",
		"25.5", "0",
		"1", 1,
		"decoder", "71",
		"", "pd-720776470.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[596] = new Element(
		596, "assets/thumb/dxdn143ip.jpg",
		137, 91,
		"DXDN143IP", "DN143IP",
		"DN143IP N Scale Mobile Decoder	", "Digitrax",
		"20.9", "0",
		"1", 1,
		"decoder", "71",
		"", "pd-1455919550.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[597] = new Element(
		597, "assets/thumb/dn163A0.jpg",
		137, 22,
		"DXDN163A0", "DN163A0",
		"DN163A0 N Scale Decoder For Atlas GP40-2, U25B, TM Etc", "Digitrax",
		"24.5", "0",
		"1", 1,
		"decoder", "71",
		"", "pd1261508206.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[598] = new Element(
		598, "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.5", "0",
		"1", 1,
		"decoder", "71",
		"", "pd-441853364.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[599] = new Element(
		599, "assets/thumb/dxdn163A2thumb.jpg",
		137, 47,
		"DXDN163A2", "DN163A2",
		"DN163A2 N Scale Decoder For Atlas GP30, GP35 Etc", "Digitrax",
		"24.5", "0",
		"1", 1,
		"decoder", "71",
		"", "pd-1378223782.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[600] = new Element(
		600, "assets/thumb/dxdn163A3thumb.jpg",
		137, 52,
		"DXDN163A3", "DN163A3",
		"DN163A3 N Scale Mobile Decoder fro Atlas MP15", "Digitrax",
		"24.5", "0",
		"1", 1,
		"decoder", "71",
		"", "pd-1987598568.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[601] = new Element(
		601, "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.5", "0",
		"1", 1,
		"decoder", "71",
		"", "pd1143201650.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[602] = new Element(
		602, "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.5", "0",
		"1", 1,
		"decoder", "71",
		"", "pd1689344752.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[603] = new Element(
		603, "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",
		"26", "0",
		"1", 1,
		"decoder", "71",
		"", "pd-1458603362.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[604] = new Element(
		604, "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.5", "0",
		"1", 1,
		"decoder", "71",
		"", "pd2108267004.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[605] = new Element(
		605, "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",
		"26", "0",
		"1", 1,
		"decoder", "71",
		"", "pd-1202159478.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[606] = new Element(
		606, "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.5", "0",
		"1", 1,
		"decoder", "71",
		"", "pd-12509898.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[607] = new Element(
		607, "assets/thumb/dxdh123d.jpg",
		137, 90,
		"DXDH123D", "Digitrax DH123D",
		"Digitrax DH123D 2 function HO decoder with Digitrax Easy Connect 9 pin plug harness", "Digitrax",
		"14.5", "0",
		"1", 1,
		"decoder", "70",
		"", "pd1046847240.htm",
		"", 1,
		"DXHODEC", "0",
		 0)
	
		Entry[608] = new Element(
		608, "assets/thumb/dxdh123p.jpg",
		137, 137,
		"DXDH123P", "Digitrax DH123P",
		"Digitrax DH123P 2 function HO decoder with Digitrax Easy Connect 9 pin plug harness and 8-pin plug", "Digitrax",
		"16.85", "0",
		"1", 1,
		"decoder", "70",
		"", "pd-916276106.htm",
		"", 1,
		"DXHODEC", "0",
		 0)
	
		Entry[609] = new Element(
		609, "assets/thumb/dh163d.jpg",
		137, 91,
		"DXDH163AT", "Digitrax DH163AT",
		"Series 3 6 function HO No Solder Decoder Installation for Athearn Standard Locomotives", "Digitrax",
		"24.5", "0",
		"1", 1,
		"decoder", "70",
		"", "pd-361692960.htm",
		"", 1,
		"DXHODEC", "0",
		 0)
	
		Entry[610] = new Element(
		610, "assets/thumb/dxdh163d.jpg",
		137, 90,
		"DXDH163D", "Digitrax DH163D",
		"Series 3  HO/OO Wired 6 function Decoder", "Digitrax",
		"20.9", "0",
		"1", 1,
		"decoder", "70",
		"", "pd1432441358.htm",
		"", 1,
		"DXHODEC", "0",
		 0)
	
		Entry[611] = new Element(
		611, "assets/thumb/dxdh165ip.jpg",
		137, 131,
		"DXDH165IP", "Digitrax DH165IP  HO Scale 6 function Mobile Decoder",
		"DH165IP 6 function decoder fits Kato HO-Scale EMD SD70MAC Locomotives &amp; Others", "Digitrax",
		"19.9", "0",
		"1", 1,
		"decoder", "70",
		"", "pd-722534676.htm",
		"", 1,
		"DXHODEC", "0",
		 0)
	
		Entry[612] = new Element(
		612, "assets/thumb/dh163p.jpg",
		137, 137,
		"DXDH163P", "Digitrax DH163P",
		"Series 3 HO/OO Plug ‘N Play6 function Decoder with medium harness (3&quot;)", "Digitrax",
		"23", "0",
		"1", 1,
		"decoder", "70",
		"", "pd1386615462.htm",
		"", 1,
		"DXHODEC", "0",
		 0)
	
		Entry[613] = new Element(
		613, "assets/thumb/dh163ps.jpg",
		137, 137,
		"DXDH163PS", "Digitrax DH163PS",
		"DH163PS HO/OO Scale 6 function Decoder with short harness (1&quot;)", "Digitrax",
		"24", "0",
		"1", 1,
		"decoder", "70",
		"", "pd1546195268.htm",
		"", 1,
		"DXHODEC", "0",
		 0)
	
		Entry[614] = new Element(
		614, "assets/thumb/dxsdck.jpg",
		137, 98,
		"DXSDCK", "SDCK",
		"Signal Driver Cable Kit", "Digitrax",
		"13.8", "0",
		"1", 1,
		"kit", "75",
		"", "pd2052645120.htm",
		"", 1,
		"DXSIG", "0",
		 0)
	
		Entry[615] = new Element(
		615, "assets/thumb/dxdg583s.jpg",
		137, 117,
		"DXDG583S", "DG583S",
		"DG583S Large Scale, High Current Draw Mobile Decoder", "Digitrax",
		"44.95", "0",
		"1", 1,
		"decoder", "72",
		"", "pd-1730288836.htm",
		"", 1,
		"DXLARGE", "0",
		 0)
	
		Entry[616] = new Element(
		616, "assets/thumb/dxdg583ar.jpg",
		137, 103,
		"DXDG583AR", "DG583AR",
		"DG583AR Large Scale, High Current Draw Mobile Decoder", "Digitrax",
		"43.9", "0",
		"1", 1,
		"decoder", "72",
		"", "pd-1131810338.htm",
		"", 1,
		"DXLARGE", "0",
		 0)
	
		Entry[617] = new Element(
		617, "assets/thumb/dxdg383ar.jpg",
		137, 102,
		"DXDG383AR", "DG383AR",
		"DG383AR Large Scale, High Current Draw Mobile Decoder", "Digitrax",
		"41.9", "0",
		"1", 1,
		"decoder", "72",
		"", "pd118083632.htm",
		"", 1,
		"DXLARGE", "0",
		 0)
	
		Entry[618] = new Element(
		618, "assets/thumb/dxut4.jpg",
		137, 137,
		"DXUT4", "UT4",
		"UT4 Utility Throttle", "Digitrax",
		"56", "0",
		"1", 1,
		"item", "69",
		"", "pd-920112040.htm",
		"", 1,
		"DXCONTROL", "0",
		 0)
	
		Entry[619] = new Element(
		619, "assets/images/nopicturegreen.jpg",
		133, 46,
		"DXRD2", "RD2",
		"RD2 Remote Sensing Diodes", "Digitrax",
		"6.1", "0",
		"1", 1,
		"item", "75",
		"", "pd1482804660.htm",
		"", 1,
		"DXSIG", "0",
		 0)
	
		Entry[620] = new Element(
		620, "assets/images/nopicturegreen.jpg",
		133, 46,
		"DXDHAT", "DHAT Athearn Harness",
		"DHAT 9 pin harness for Athearn Standard Loco", "Digitrax",
		"5.1", "0",
		"1", 1,
		"item", "76",
		"", "pd633399570.htm",
		"", 1,
		"DXSPARE", "0",
		 0)
	
		Entry[621] = new Element(
		621, "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", "76",
		"", "pd985966236.htm",
		"", 1,
		"DXSPARE", "0",
		 0)
	
		Entry[622] = new Element(
		622, "assets/images/nopicturegreen.jpg",
		133, 46,
		"DXDHWHPS", "DHWHPS Short Harness w/ Plug",
		"DHWHP Digitrax 9 pin to DCC plug short harness (1&quot;)", "Digitrax",
		"3.5", "0",
		"1", 1,
		"item", "76",
		"", "pd1789451818.htm",
		"", 1,
		"DXSPARE", "0",
		 0)
	
		Entry[623] = new Element(
		623, "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.8", "0",
		"1", 1,
		"decoder", "70",
		"", "pd158589314.htm",
		"", 1,
		"DXHODEC", "0",
		 0)
	
		Entry[624] = new Element(
		624, "assets/thumb/cr4003thumb.jpg",
		137, 41,
		"CR4003", "Mini Set    Cat. No. CR4003",
		"MSRP £8.99", "Corgi",
		"7.65", "0",
		"1", 1,
		"set", "13",
		"", "pd1053261612.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[625] = new Element(
		625, "assets/thumb/DG176026 Trackside BRS Flat.jpg",
		137, 90,
		"DG176026", "Leyland 8 Wheel Platform    Cat. No. DG176026",
		"BRS", "Corgi",
		"8.15", "0",
		"1", 1,
		"model", "13",
		"", "pd1133308754.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[626] = new Element(
		626, "assets/thumb/DG199013 Bouts Van.jpg",
		137, 107,
		"DG199013", "Scammell Mechanical Horse    Cat. No. DG199013",
		"Bouts Tillotson", "Corgi",
		"8.75", "0",
		"1", 1,
		"model", "13",
		"", "pd1753721146.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[627] = new Element(
		627, "assets/thumb/DG199014 Trackside_Gt West.jpg",
		137, 80,
		"DG199014", "Scammell Mechanical Horse    Cat. No. DG199014",
		"GW &amp; GC Central Railway", "Corgi",
		"8.75", "0",
		"1", 1,
		"model", "13",
		"", "pd1459140316.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[628] = new Element(
		628, "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[629] = new Element(
		629, "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[630] = new Element(
		630, "assets/thumb/DG206005 Trackside E H Ste.jpg",
		137, 109,
		"DG206005", "Scammell Townsman    Cat. No. DG206005",
		"E H Steele", "Corgi",
		"8.75", "0",
		"1", 1,
		"model", "13",
		"", "pd39111120.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[631] = new Element(
		631, "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[632] = new Element(
		632, "assets/thumb/DG213002 Express Horse Box.jpg",
		137, 90,
		"DG213002", "Harrington Horsebox   DG213002",
		"Great Western Railways  MSRP £7.99", "Corgi",
		"7.15", "0",
		"1", 1,
		"model", "13",
		"", "pd-972006920.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[633] = new Element(
		633, "assets/thumb/DG214001 Trackside BR Flat.jpg",
		137, 94,
		"DG214001", "Thornycroft Nippy   DG214001",
		"British Rail Flatbed", "Corgi",
		"8.75", "0",
		"1", 1,
		"model", "13",
		"", "pd-341834626.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[634] = new Element(
		634, "assets/thumb/om41219thumb.jpg",
		137, 80,
		"OM41219", "Wright Eclipse Gemini Cat. No. OM41219",
		"Lincolnshire Road Car", "Corgi",
		"22", "0",
		"1", 1,
		"model", "12",
		"", "pd-1404062782.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[635] = new Element(
		635, "assets/thumb/OM42519 Southdown.jpg",
		137, 85,
		"OM42519", "East Lancs Myllennium  Cat. No. OM42519",
		"Southdown PSV", "Corgi",
		"22.5", "0",
		"1", 1,
		"model", "12",
		"", "pd-1896998760.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[636] = new Element(
		636, "assets/thumb/OM45912 Van Hool T9.jpg",
		137, 63,
		"OM45912", "Van Hool T9  Cat. No. OM45912",
		"Golden Boy Coaches", "Corgi",
		"22", "0",
		"1", 1,
		"model", "12",
		"", "pd-1642146948.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[637] = new Element(
		637, "assets/thumb/OM46106 Plaxton Panther.jpg",
		137, 70,
		"OM46106", "Plaxton Panther  Cat. No. OM46106",
		"Parks of Hamilton", "Corgi",
		"23", "0",
		"1", 1,
		"model", "12",
		"", "pd-1219606412.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[638] = new Element(
		638, "assets/thumb/CC13515_McKay Ltd - Volvo.jpg",
		137, 76,
		"CC13515-1", "Volvo FM Fridge Lorry  Cat. No. CC13515",
		"The Real McKay Ltd ", "Corgi",
		"50", "0",
		"1", 1,
		"model", "1",
		"", "pd1259148677.htm",
		"", 1,
		"CLEAR", "40",
		 0)
	
		Entry[639] = new Element(
		639, "assets/thumb/CC13516_Countrywide - Volvo.jpg",
		137, 78,
		"CC13516-1", "Volvo FM Curtainside Lorry  Cat. No. CC13516",
		"Countrywide Farmers", "Corgi",
		"50", "0",
		"1", 1,
		"model", "1",
		"", "pd327314235.htm",
		"", 1,
		"CLEAR", "40",
		 0)
	
		Entry[640] = new Element(
		640, "assets/thumb/CC13520_D R MACLEOD.jpg",
		137, 68,
		"CC13520-1", "Volvo FM Box  Cat. No. CC13520",
		"Macleod of Stornaway", "Corgi",
		"50", "0",
		"1", 1,
		"model", "1",
		"", "pd-1131176713.htm",
		"", 1,
		"CLEAR", "40",
		 0)
	
		Entry[641] = new Element(
		641, "assets/thumb/CC13903_Stan Robinson Ltd.jpg",
		137, 78,
		"CC13903-2", "Foden Alpha Curtainside Lorry  Cat. No. CC13903",
		"Stan Robinson Ltd ", "Corgi",
		"43.9", "0",
		"1", 1,
		"model", "1",
		"", "pd-1890543445.htm",
		"", 1,
		"CLEAR", "40",
		 0)
	
		Entry[642] = new Element(
		642, "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", "78",
		"", "pd1195911962.htm",
		"", 1,
		"ESUSPEAK", "0",
		 0)
	
		Entry[643] = new Element(
		643, "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", "78",
		"", "pd-1531586865.htm",
		"", 1,
		"ESUSPEAK", "0",
		 0)
	
		Entry[644] = new Element(
		644, "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", "120",
		"", "pd-1736486380.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[645] = new Element(
		645, "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", "120",
		"", "pd1509578338.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[646] = new Element(
		646, "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", "120",
		"", "pd622488416.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[647] = new Element(
		647, "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.9", "0",
		"1", 1,
		"decoder", "70",
		"", "pd-736347531.htm",
		"", 1,
		"DXHODEC", "0",
		 0)
	
		Entry[648] = new Element(
		648, "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.9", "0",
		"1", 1,
		"decoder", "70",
		"", "pd-859055701.htm",
		"", 1,
		"DXHODEC", "0",
		 0)
	
		Entry[649] = new Element(
		649, "assets/thumb/dxdh165k1a.jpg",
		105, 464,
		"DXDH165K1A", "DH165K1A HO Scale 6 function Mobile Decoder",
		"DH165K1A fits many Kato HO Diesel Locomotives", "Digitrax",
		"19.4", "0",
		"1", 1,
		"decoder", "70",
		"", "pd-1588309401.htm",
		"", 1,
		"DXHODEC", "0",
		 0)
	
		Entry[650] = new Element(
		650, "assets/thumb/cab05.jpg",
		137, 266,
		"N-CAB05", "Intermediate Cab 05",
		"Intermediate Cab, with pushbutton speed control", "NCE",
		"57.45", "0",
		"1", 1,
		"item", "89",
		"", "pd1196070477.htm",
		"", 1,
		"Throttles", "0",
		 0)
	
		Entry[651] = new Element(
		651, "assets/thumb/efe17220.jpg",
		137, 53,
		"17220", "Leyland National Mk 1 Long  Cat. No. 17220",
		"Barrow in Furness", "EFE",
		"18.4", "0",
		"1", 1,
		"model", "18",
		"", "pd1196193886.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[652] = new Element(
		652, "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", "25",
		"", "pd1196278578.htm",
		"", 2,
		"LED", "0",
		 0)
	
		Entry[653] = new Element(
		653, "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.65", "0",
		"1", 1,
		"pack", "153",
		"", "pd1197115199.htm",
		"", 1,
		"BluePoints", "0",
		 0)
	
		Entry[654] = new Element(
		654, "assets/images/nopicturegreen.jpg",
		133, 46,
		"NRM40024", "Flex Link™ Tubing",
		"Flex Link™ Tubing contains 5 x 3ft flexible tubes", "New Rail Models",
		"6.65", "0",
		"1", 1,
		"pack", "153",
		"", "pd674024850.htm",
		"", 1,
		"BluePoints", "0",
		 0)
	
		Entry[655] = new Element(
		655, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ602", "Industry",
		"HQ602", "ITTC",
		"18.4", "0",
		"1", 1,
		"item", "144",
		"", "pd1197203942.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[656] = new Element(
		656, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ603", "Bascule Bridge",
		"HQ603", "ITTC",
		"18.4", "0",
		"1", 1,
		"item", "144",
		"", "pd-177704316.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[657] = new Element(
		657, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ605", "Water Wheel",
		"HQ605", "ITTC",
		"18.4", "0",
		"1", 1,
		"item", "144",
		"", "pd-1532220334.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[658] = new Element(
		658, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ622-1", "Construction background sounds",
		"HQ622-1", "ITTC",
		"18.4", "0",
		"1", 1,
		"item", "144",
		"", "pd-1838550320.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[659] = new Element(
		659, "assets/thumb/CC19904_Stobart Trailer.jpg",
		137, 91,
		"CC19904-1", "Curtainside Trailer Cat. No. CC19904",
		"Eddie Stobart", "Corgi",
		"35.75", "0",
		"1", 1,
		"model", "1",
		"", "pd1308015306.htm",
		"", 1,
		"CLEAR", "40",
		 0)
	
		Entry[660] = new Element(
		660, "assets/thumb/CC13808_YUILL & DODDS.jpg",
		137, 105,
		"CC13808-1", "Mercedes Actros  Cat. No. CC13808",
		"Yuill &amp; Dodds", "Corgi",
		"47", "0",
		"1", 1,
		"model", "1",
		"", "pd128909987.htm",
		"", 1,
		"CLEAR", "40",
		 0)
	
		Entry[661] = new Element(
		661, "assets/thumb/CC13802_Jack Richards.jpg",
		137, 94,
		"CC13802-1", "Mercedes Benz Actros  Cat. No. CC13802",
		"Jack Richards &amp; Son", "Corgi",
		"36.75", "0",
		"1", 1,
		"model", "1",
		"", "pd-474163831.htm",
		"", 1,
		"CLEAR", "40",
		 0)
	
		Entry[662] = new Element(
		662, "assets/thumb/efe30605.jpg",
		137, 73,
		"30605", "AEC Renown  Cat. No. 30605",
		"Hants &amp; Dorset NBC", "EFE",
		"19.4", "0",
		"1", 1,
		"model", "18",
		"", "pd1108479036.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[663] = new Element(
		663, "assets/thumb/efe29505thumb.jpg",
		137, 49,
		"29505", "Plaxton Panorama  Cat.No. 29505",
		"Eastern Counties", "EFE",
		"19.4", "0",
		"1", 1,
		"model", "18",
		"", "pd818598834.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[664] = new Element(
		664, "assets/thumb/efe28905thumb.jpg",
		137, 76,
		"28905", "GM Standard Atlantean  Cat.No. 28905",
		"London Country", "EFE",
		"19.4", "0",
		"1", 1,
		"model", "18",
		"", "pd896545502.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[665] = new Element(
		665, "assets/thumb/efe28815.jpg",
		137, 75,
		"28815", "Leyland Titan 2 Door  Cat.No. 28815",
		"Bexleybus", "EFE",
		"19.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-1717951772.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[666] = new Element(
		666, "assets/thumb/efe14604thumb.jpg",
		137, 53,
		"14604", "Leyland National Short  Cat.No. 14604",
		"West Yorkshire NBC", "EFE",
		"19.4", "0",
		"1", 1,
		"model", "18",
		"", "pd1198502726.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[667] = new Element(
		667, "assets/thumb/CC13417_Ian Wright - ERF.jpg",
		137, 83,
		"CC13417-1", "ERF ECT  Cat. No. CC13417",
		"Ian Wright Transport ", "Corgi",
		"36.75", "0",
		"1", 1,
		"model", "1",
		"", "pd162192513.htm",
		"", 1,
		"CLEAR", "40",
		 0)
	
		Entry[668] = new Element(
		668, "assets/thumb/smc4.jpg",
		137, 103,
		"TD-SMC4", "Servo and Motor Controller",
		"SMC4", "Team Digital",
		"34.7", "0",
		"1", 1,
		"item", "101",
		"", "pd1200055847.htm",
		"", 1,
		"TD", "0",
		 0)
	
		Entry[669] = new Element(
		669, "assets/thumb/CC13612_James Hislop - DAF.jpg",
		137, 54,
		"CC13612-1", "DAF CF Curtainside  Cat. No. CC13612",
		"James S Hislop/Bedmax", "Corgi",
		"59.75", "0",
		"1", 1,
		"model", "1",
		"", "pd-369092102.htm",
		"", 1,
		"CLEAR", "40",
		 0)
	
		Entry[670] = new Element(
		670, "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", "25",
		"LED size;2mm tower@", "pd1202654564.htm",
		"", 2,
		"LED", "0",
		 0)
	
		Entry[671] = new Element(
		671, "assets/thumb/dxdz125.jpg",
		137, 223,
		"DXDZ125", "DZ125",
		"DZ125 Z Scale Loco decoder with BEMF 1 Amp/1.25 Amp Peak, 2 FX3 Functions@0.5 Amp ", "Digitrax",
		"17", "0",
		"1", 1,
		"decoder", "71",
		"", "pd1203033706.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[672] = new Element(
		672, "assets/thumb/efe18611thumb.jpg",
		137, 70,
		"18611", "Bristol VRIII Open Top  Cat. No. 18611",
		"York Pullman", "EFE",
		"19.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-1098381274.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[673] = new Element(
		673, "assets/thumb/efe20443thumb.jpg",
		137, 80,
		"20443", "Bristol VRIII  Cat. No. 20443",
		"Trent Buses", "EFE",
		"19.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-670671958.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[674] = new Element(
		674, "assets/thumb/efe16221thumb.jpg",
		137, 62,
		"16221", "Bristol LS  Cat. No. 16221",
		"Southern Vectis", "EFE",
		"18.4", "0",
		"1", 1,
		"model", "18",
		"", "pd1203581859.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[675] = new Element(
		675, "assets/images/nopicturegreen.jpg",
		133, 46,
		"OM41112", "Leyland PD3/East Lancs  Cat. No. OM41112",
		"Burnley  MSRP £25.99", "Corgi",
		"22.5", "0",
		"1", 1,
		"model", "12",
		"", "pd1203700849.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[676] = new Element(
		676, "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.65", "0",
		"1", 1,
		"pack", "139",
		"", "pd-238986571.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[677] = new Element(
		677, "assets/thumb/r8585.jpg",
		123, 106,
		"R8585", "Lamp Hut",
		"R8585 Skaledale Lamp Hut MSRP £6.20", "Hornby",
		"5.8", "0",
		"1", 1,
		"item", "139",
		"", "pd1833755816.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[678] = new Element(
		678, "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.65", "0",
		"1", 1,
		"pack", "139",
		"", "pd-1867582485.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[679] = new Element(
		679, "assets/thumb/r8586.jpg",
		137, 125,
		"R8586", "Platelayers Hut",
		"R8586 Skaledale Series Platelayers Hut MSRP £7.00", "Hornby",
		"6.5", "0",
		"1", 1,
		"item", "139",
		"", "pd-115475690.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[680] = new Element(
		680, "assets/thumb/stx750thumb.jpg",
		137, 84,
		"STX826001", "Micro Tsunami Light Steam",
		"TSU-750 Light Steam", "Soundtraxx",
		"94", "0",
		"1", 1,
		"decoder", "99",
		"", "pd1204799735.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[681] = new Element(
		681, "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", "120",
		"", "pd1204834941.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[682] = new Element(
		682, "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", "137",
		"", "pd328519827.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[683] = new Element(
		683, "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",
		"89.9", "0",
		"1", 1,
		"loco", "135",
		"", "pd-2003029333.htm",
		"", 1,
		"HornbyStea", "0",
		 0)
	
		Entry[684] = new Element(
		684, "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",
		"90.9", "0",
		"1", 1,
		"loco", "135",
		"", "pd1758766289.htm",
		"", 1,
		"HornbyStea", "0",
		 0)
	
		Entry[685] = new Element(
		685, "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",
		"90.9", "0",
		"1", 1,
		"loco", "135",
		"", "pd1956920167.htm",
		"", 1,
		"HornbyStea", "0",
		 0)
	
		Entry[686] = new Element(
		686, "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",
		"82.7", "0",
		"1", 1,
		"loco", "135",
		"", "pd-1523862497.htm",
		"", 1,
		"HornbyStea", "0",
		 0)
	
		Entry[687] = new Element(
		687, "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",
		"90", "0",
		"1", 1,
		"loco", "135",
		"", "pd-83469285.htm",
		"", 1,
		"HornbyStea", "0",
		 0)
	
		Entry[688] = new Element(
		688, "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",
		"55.15", "0",
		"1", 1,
		"loco", "136",
		"", "pd-1690238581.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[689] = new Element(
		689, "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", "133",
		"", "pd-2009247561.htm",
		"", 1,
		"HornbyCarr", "0",
		 0)
	
		Entry[690] = new Element(
		690, "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", "133",
		"", "pd831365565.htm",
		"", 1,
		"HornbyCarr", "0",
		 0)
	
		Entry[691] = new Element(
		691, "assets/thumb/r562.jpg",
		137, 55,
		"R562", "Town People",
		"R562 Town People  MSRP £4.75", "Hornby",
		"4.5", "0",
		"1", 1,
		"pack", "137",
		"", "pd687662159.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[692] = new Element(
		692, "assets/thumb/r8755.jpg",
		137, 55,
		"R8755", "Large Big Bin",
		"R8755 Large Big Bin  MSRP £4.50", "Hornby",
		"3.5", "0",
		"1", 1,
		"pack", "139",
		"", "pd-1131341693.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[693] = new Element(
		693, "assets/thumb/r8757.jpg",
		137, 55,
		"R8757", "Container/Builders Office",
		"R8757 Container/Builders Office  MSRP £5.00", "Hornby",
		"4.25", "0",
		"1", 1,
		"model", "139",
		"", "pd277475007.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[694] = new Element(
		694, "assets/thumb/r8761.jpg",
		137, 55,
		"R8761", "Modern Telephone Box",
		"R8761 Modern Telephone Box  MSRP £2.75", "Hornby",
		"2.5", "0",
		"1", 1,
		"item", "139",
		"", "pd-1175289669.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[695] = new Element(
		695, "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", "139",
		"", "pd1834748535.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[696] = new Element(
		696, "assets/thumb/r8765.jpg",
		137, 55,
		"R8765", "Car Sales Portacabin",
		"R8765 Car Sales Portacabin MSRP £5.25", "Hornby",
		"4.5", "0",
		"1", 1,
		"item", "139",
		"", "pd1489209331.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[697] = new Element(
		697, "assets/thumb/r8781.jpg",
		137, 55,
		"R8781", "Public Drinking Fountain",
		"R8781 Public Drinking Fountain  MSRP £10.00", "Hornby",
		"8.7", "0",
		"1", 1,
		"model", "139",
		"", "pd-1418757387.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[698] = new Element(
		698, "assets/images/nopicturegreen.jpg",
		133, 46,
		"R8799", "Farm Animals",
		"R8799 Farm Animals  MSRP £6.00", "Hornby",
		"5.1", "0",
		"1", 1,
		"pack", "139",
		"", "pd-686459377.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[699] = new Element(
		699, "assets/images/nopicturegreen.jpg",
		133, 46,
		"R8801", "Civilians",
		"R8801 Civilians  MSRP £6.00", "Hornby",
		"5.1", "0",
		"1", 1,
		"pack", "139",
		"", "pd-1857771819.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[700] = new Element(
		700, "assets/images/nopicturegreen.jpg",
		133, 46,
		"CMX-NP", "Cleaning Pads for CMX-N Track Cleaning Wagon",
		"", "Tony's Train Exchange",
		"3.5", "0",
		"1", 1,
		"pack", "38",
		"", "pd1257659839.htm",
		"", 1,
		"CMX", "0",
		 0)
	
		Entry[701] = new Element(
		701, "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.9", "0",
		"1", 1,
		"item", "120",
		"", "pd-928722701.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[702] = new Element(
		702, "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.1", "0",
		"1", 1,
		"speaker", "120",
		"", "pd-442069927.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[703] = new Element(
		703, "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",
		"6.9", "0",
		"1", 1,
		"item", "120",
		"", "pd-1315074513.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[704] = new Element(
		704, "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", "102",
		"", "pd-1422004026.htm",
		"", 1,
		"TCSDCC", "0",
		 0)
	
		Entry[705] = new Element(
		705, "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", "139",
		"", "pd845396509.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[706] = new Element(
		706, "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.1", "0",
		"1", 1,
		"pack", "139",
		"", "pd2138991958.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[707] = new Element(
		707, "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", "139",
		"", "pd-395512020.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[708] = new Element(
		708, "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", "139",
		"", "pd-376839878.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[709] = new Element(
		709, "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", "139",
		"", "pd-2000858632.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[710] = new Element(
		710, "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", "139",
		"", "pd463431910.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[711] = new Element(
		711, "assets/thumb/r8642.jpg",
		137, 55,
		"R8642", "Curved Platform 1st Rad.",
		"R8642 Curved Platform 1st Rad.", "Hornby",
		"7.15", "0",
		"1", 1,
		"pack", "139",
		"", "pd-850912889.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[712] = new Element(
		712, "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.7", "0",
		"1", 1,
		"pack", "139",
		"", "pd-1270724591.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[713] = new Element(
		713, "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", "139",
		"", "pd204443815.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[714] = new Element(
		714, "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", "139",
		"", "pd-1266825207.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[715] = new Element(
		715, "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.7", "0",
		"1", 1,
		"model", "139",
		"", "pd1081273691.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[716] = new Element(
		716, "assets/thumb/r8686.jpg",
		91, 80,
		"R8686", "Builders Yard Accessories",
		"R8686 Builders Yard Accessories  ", "Hornby",
		"6.9", "0",
		"1", 1,
		"pack", "139",
		"", "pd-938804759.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[717] = new Element(
		717, "assets/thumb/R8689.jpg",
		137, 59,
		"R8689", "Bay Terrace Garden Walls",
		"R8689  Bay Terrace Garden Walls  MSRP £6.00", "Hornby",
		"5.35", "0",
		"1", 1,
		"model", "139",
		"", "pd499122235.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[718] = new Element(
		718, "assets/thumb/r8691.jpg",
		137, 112,
		"R8691", "Rear Extension Building",
		"R8691 Rear Extension Building  MSRP £7.00", "Hornby",
		"6.1", "0",
		"1", 1,
		"model", "139",
		"", "pd-1921220105.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[719] = new Element(
		719, "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.1", "0",
		"1", 1,
		"model", "139",
		"", "pd297612541.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[720] = new Element(
		720, "assets/thumb/r8711.jpg",
		137, 220,
		"R8711", "Cement Hopper",
		"R8711 Cement Hopper  MSRP £21.00", "Hornby",
		"18.4", "0",
		"1", 1,
		"model", "139",
		"", "pd-1305766299.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[721] = new Element(
		721, "assets/thumb/r8712.jpg",
		137, 65,
		"R8712", "Coal Hopper",
		"R8712  Coal Hopper  MSRP £16.75", "Hornby",
		"14.55", "0",
		"1", 1,
		"model", "139",
		"", "pd808731.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[722] = new Element(
		722, "assets/thumb/r8947.jpg",
		137, 119,
		"R8947", "Power Strip",
		"R8947 Power Strip  MSRP £6.50", "Hornby",
		"5.9", "0",
		"1", 1,
		"item", "141",
		"", "pd-1639901959.htm",
		"", 1,
		"SKALELIGHT", "0",
		 0)
	
		Entry[723] = new Element(
		723, "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", "141",
		"", "pd-2048276529.htm",
		"", 1,
		"SKALELIGHT", "0",
		 0)
	
		Entry[724] = new Element(
		724, "assets/thumb/r8949.jpg",
		137, 117,
		"R8949", "Double Socket",
		"R8949 Double Socket  MSRP £3.00", "Hornby",
		"2", "0",
		"1", 1,
		"pack", "141",
		"", "pd1073761941.htm",
		"", 1,
		"SKALELIGHT", "0",
		 0)
	
		Entry[725] = new Element(
		725, "assets/thumb/r8950.jpg",
		137, 51,
		"R8950", "Fuses (Pk 4)",
		"R8950 Fuses (Pk 4)  MSRP £1.75", "Hornby",
		"1.25", "0",
		"1", 1,
		"pack", "141",
		"", "pd-1145402677.htm",
		"", 1,
		"SKALELIGHT", "0",
		 0)
	
		Entry[726] = new Element(
		726, "assets/thumb/r8951.jpg",
		137, 94,
		"R8951", "Wire",
		"R8951 Wire  MSRP £4.75", "Hornby",
		"3.25", "0",
		"1", 1,
		"pack", "141",
		"", "pd639056369.htm",
		"", 1,
		"SKALELIGHT", "0",
		 0)
	
		Entry[727] = new Element(
		727, "assets/thumb/r8952.jpg",
		137, 71,
		"R8952", "Bulbs (Pk 4)",
		"R8952 Bulbs (Pk 4)  MSRP £4.75", "Hornby",
		"4.25", "0",
		"1", 1,
		"pack", "141",
		"", "pd-1292282489.htm",
		"", 1,
		"SKALELIGHT", "0",
		 0)
	
		Entry[728] = new Element(
		728, "assets/thumb/r7016.jpg",
		137, 86,
		"R7016", "Fine Foods Supermarket - Advertising Lorry",
		"R7016 Fine Foods Supermarket - Advertising Lorry  MSRP £5.95", "Hornby",
		"5.6", "0",
		"1", 1,
		"model", "140",
		"", "pd-98952213.htm",
		"", 1,
		"SKALAUT", "0",
		 0)
	
		Entry[729] = new Element(
		729, "assets/thumb/blma4100thumb.jpg",
		62, 120,
		"BLMA4100", "Cell Phone Antenna Tower Kit",
		"", "BLMA",
		"13.25", "0",
		"1", 1,
		"item", "32",
		"", "pd751818090.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[730] = new Element(
		730, "assets/thumb/blma4210b.jpg",
		137, 81,
		"BLMA4210", "Chain Link Fence - 6&rsquo; Tall (110 Scale Feet)",
		"", "BLMA",
		"13.25", "0",
		"1", 1,
		"kit", "32",
		"", "pd60402651.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[731] = new Element(
		731, "assets/thumb/efe20637thumb.jpg",
		137, 56,
		"20637", "Plaxton Pointer Dart  Cat. No. 20637",
		"West Coast Motors", "EFE",
		"18.9", "0",
		"1", 1,
		"model", "18",
		"", "pd1205931431.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[732] = new Element(
		732, "assets/thumb/hj2636thumb.jpg",
		137, 53,
		"HJ2636", "Class 26 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",
		"65.3", "0",
		"1", 1,
		"loco", "128",
		"", "pd-1195536719.htm",
		"", 1,
		"HJLOCOS", "0",
		 0)
	
		Entry[733] = new Element(
		733, "assets/thumb/hj2633thumb.jpg",
		137, 56,
		"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",
		"65.3", "0",
		"1", 1,
		"item", "128",
		"", "pd-963112305.htm",
		"", 1,
		"HJLOCOS", "0",
		 0)
	
		Entry[734] = new Element(
		734, "assets/thumb/hj2612thumb.jpg",
		137, 56,
		"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",
		"65.3", "0",
		"1", 1,
		"loco", "128",
		"", "pd-840258623.htm",
		"", 1,
		"HJLOCOS", "0",
		 0)
	
		Entry[735] = new Element(
		735, "assets/thumb/hj2610thumb.jpg",
		137, 53,
		"HJ2610", "Class 26 26028 in BR blue with full yellow ends  Cat. No. 2610",
		"HJ2610 Class 26 26028 in BR blue with full yellow ends  MSRP £67.25", "Heljan",
		"65.3", "0",
		"1", 1,
		"item", "128",
		"", "pd1833128805.htm",
		"", 1,
		"HJLOCOS", "0",
		 0)
	
		Entry[736] = new Element(
		736, "assets/thumb/efe14405thumb.jpg",
		137, 58,
		"14405", "Leyland National MkI  Cat.No. 14405",
		"Grey Green", "EFE",
		"18.9", "0",
		"1", 1,
		"model", "18",
		"", "pd1206792763.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[737] = new Element(
		737, "assets/thumb/BTOD18.jpg",
		137, 72,
		"BTOD18", "Commer Dropside  Cat. No. BTOD18",
		"BRS Brentford", "Base Toys",
		"6.1", "0",
		"1", 1,
		"model", "6",
		"", "pd-1125466590.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[738] = new Element(
		738, "assets/thumb/BTOD16.jpg",
		137, 73,
		"BTOD16", "Thorneycroft Articulated Van  Cat. No. BTOD16",
		"BRS London Parcels", "Base Toys",
		"6.1", "0",
		"1", 1,
		"model", "6",
		"", "pd1345849014.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[739] = new Element(
		739, "assets/thumb/EM76308.jpg",
		137, 87,
		"EM76308", "Austin K2 Dropside with Crates Cat. No. EM76308",
		"British Railways", "Classix",
		"6.35", "0",
		"1", 1,
		"model", "8",
		"", "pd-1486375906.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[740] = new Element(
		740, "assets/thumb/EM76612.jpg",
		137, 83,
		"EM76612", "Morris J Van Cat. No. EM76612",
		"Royal Mail", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd804549784.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[741] = new Element(
		741, "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", "8",
		"", "pd342012187.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[742] = new Element(
		742, "assets/thumb/EM76618.jpg",
		137, 83,
		"EM76618", "Morris J Van Cat. No. EM76618",
		"British Railways", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd-1056846714.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[743] = new Element(
		743, "assets/thumb/EM76619.jpg",
		137, 75,
		"EM76619", "Ford E38 Van Cat. No. EM76619",
		"Mothers Pride", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd821915464.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[744] = new Element(
		744, "assets/thumb/EM76624.jpg",
		137, 88,
		"EM76624", "Ford E38W Van Cat. No. EM76624",
		"British Railways", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd-50930140.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[745] = new Element(
		745, "assets/thumb/EM76626.jpg",
		137, 80,
		"EM76626", "Morris Minor Van Cat. No. EM76626",
		"Royal Mail", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd1933246706.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[746] = new Element(
		746, "assets/thumb/EM76627thumb.jpg",
		137, 89,
		"EM76627", "Morris Minor Van Cat. No. EM76627",
		"Telephone Engineer", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd-1105334290.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[747] = new Element(
		747, "assets/thumb/EM76628thumb.jpg",
		137, 95,
		"EM76628", "Morris Minor Van Cat. No. EM76628",
		"RAC Road Service", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd-1843900468.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[748] = new Element(
		748, "assets/thumb/em76818thumb.jpg",
		137, 92,
		"EM76818", "Morris Minor 2 Door Saloon Cat. No. EM76818",
		"Blue/Green", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd-990744708.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[749] = new Element(
		749, "assets/thumb/EM76821.jpg",
		137, 86,
		"EM76821", "Morris Minor 4-Door Saloon Cat. No. EM76821",
		"Biege", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd1318283994.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[750] = new Element(
		750, "assets/thumb/efe26621thumb.jpg",
		137, 57,
		"26621", "Plaxton Paramount 3500  Cat. No. 26621",
		"First Southern National", "EFE",
		"18.9", "0",
		"1", 1,
		"model", "18",
		"", "pd1207991373.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[751] = new Element(
		751, "assets/thumb/CC13806_NORFOLKLINE.jpg",
		137, 53,
		"CC13806-1", "Mercedes Actros Curtainside  Cat. No. CC13806",
		"Norfolkline ", "Corgi",
		"78.65", "0",
		"1", 1,
		"model", "1",
		"", "pd-912129596.htm",
		"", 1,
		"CLEAR", "40",
		 0)
	
		Entry[752] = new Element(
		752, "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", "133",
		"", "pd1208125409.htm",
		"", 1,
		"HornbyCarr", "0",
		 0)
	
		Entry[753] = new Element(
		753, "assets/thumb/r6433.jpg",
		137, 61,
		"R6433", "Departmental Shark Ballast Brake Van",
		"R6433 Departmental Shark Ballast Brake Van  MSRP £14.75", "Hornby",
		"13", "0",
		"1", 1,
		"wagon", "134",
		"", "pd1452913183.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[754] = new Element(
		754, "assets/thumb/CC13232_BEAMISH Transport.jpg",
		137, 102,
		"CC13232-1", "DAF XF  Cat. No. CC13232",
		"Beamish", "Corgi",
		"31.65", "0",
		"1", 1,
		"model", "1",
		"", "pd1766664759.htm",
		"", 1,
		"CLEAR", "40",
		 0)
	
		Entry[755] = new Element(
		755, "assets/thumb/efe16801thumb.jpg",
		137, 80,
		"16801", "Alexander Fleetline  Cat. No. 16801",
		"Travel Decourcey", "EFE",
		"18.9", "0",
		"1", 1,
		"model", "18",
		"", "pd-328743697.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[756] = new Element(
		756, "assets/thumb/efe27623thumb.jpg",
		137, 48,
		"27623", "Wright Volvo Renown  Cat. No. 27623",
		"Brighton &amp; Hove Metro", "EFE",
		"18.9", "0",
		"1", 1,
		"model", "18",
		"", "pd1642257331.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[757] = new Element(
		757, "assets/thumb/nceusbthumb.jpg",
		137, 138,
		"N-USB", "USB Interface for NCE DCC Systems",
		"", "NCE",
		"33", "0",
		"1", 1,
		"item", "88",
		"", "pd1210458309.htm",
		"", 1,
		"Comps", "0",
		 0)
	
		Entry[758] = new Element(
		758, "assets/thumb/n_cp175thumb.jpg",
		137, 104,
		"N-CP175", "Pack of 6 x 1.75 Amp bulbs for CP6",
		"", "NCE",
		"6.9", "0",
		"1", 1,
		"pack", "96",
		"", "pd2101831803.htm",
		"", 1,
		"Access", "0",
		 0)
	
		Entry[759] = new Element(
		759, "assets/thumb/bt-d23.jpg",
		137, 70,
		"BTOD23", "Leyland Beaver Flatbed  Cat. No. BTOD23",
		"British Railways (yellow)", "Base Toys",
		"5.85", "0",
		"1", 1,
		"model", "6",
		"", "pd997495723.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[760] = new Element(
		760, "assets/thumb/jt113thumb.jpg",
		100, 258,
		"JT113", "Joe&rsquo;s Weathering Dyes",
		"Black Grime - 40gm bottle", "Joe's Trains",
		"5.5", "0",
		"1", 1,
		"bottle", "35",
		"", "pd1210676275.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[761] = new Element(
		761, "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", "35",
		"", "pd1260446105.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[762] = new Element(
		762, "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", "35",
		"", "pd-393419409.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[763] = new Element(
		763, "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", "35",
		"", "pd-163896011.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[764] = new Element(
		764, "assets/thumb/jt117thumb.jpg",
		106, 264,
		"JT117", "Joe&rsquo;s Weathering Dyes",
		"Rust - 40gm bottle", "Joe's Trains",
		"5.5", "0",
		"1", 1,
		"bottle", "35",
		"", "pd-468204949.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[765] = new Element(
		765, "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", "35",
		"", "pd-1614693743.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[766] = new Element(
		766, "assets/thumb/EM76503.jpg",
		137, 56,
		"EM76503", "Jen-Tug Artic &amp; Flatbed Trailer   Cat. No. EM76503",
		"British Railways", "Classix",
		"6.35", "0",
		"1", 1,
		"model", "8",
		"", "pd1212270380.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[767] = new Element(
		767, "assets/thumb/EM76504.jpg",
		137, 93,
		"EM76504", "Jen-Tug Artic &amp; Parcels Van Trailer   Cat. No. EM76504",
		"British Railways", "Classix",
		"7.15", "0",
		"1", 1,
		"model", "8",
		"", "pd380318010.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[768] = new Element(
		768, "assets/thumb/EM76506.jpg",
		137, 59,
		"EM76506", "Jen-Tug Artic Dropside Trailer    Cat. No. EM76506",
		"National Coal Board", "Classix",
		"6.35", "0",
		"1", 1,
		"model", "8",
		"", "pd1711219192.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[769] = new Element(
		769, "assets/thumb/EM76810.jpg",
		137, 75,
		"EM76810", "Ford Zephyr Six MkI   Cat. No. EM76810",
		"Winchester Blue", "Classix",
		"3.5", "0",
		"1", 1,
		"model", "8",
		"", "pd401979622.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[770] = new Element(
		770, "assets/thumb/EM76809.jpg",
		137, 80,
		"EM76809", "Ford Consul MkI Taxi  Cat. No. EM76809",
		"Black/Yellow", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd-1491983996.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[771] = new Element(
		771, "assets/thumb/em76825thumb.jpg",
		137, 92,
		"EM76825", "Morris Minor Traveller     Cat. No. EM76825",
		"Old English White", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd-2089481090.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[772] = new Element(
		772, "assets/thumb/efe31502thumb.jpg",
		137, 83,
		"31502", "RM Routemaster  Cat. No. 31502",
		"Kelvin Scottish", "EFE",
		"18.9", "0",
		"1", 1,
		"model", "18",
		"", "pd1212336977.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[773] = new Element(
		773, "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",
		"20", "0",
		"1", 1,
		"item", "94",
		"", "pd1213346381.htm",
		"", 1,
		"SigDec", "0",
		 0)
	
		Entry[774] = new Element(
		774, "assets/thumb/efe32103thumb.jpg",
		137, 79,
		"32103", "RMF Routemaster  Cat. No. 32103",
		"Stevensons", "EFE",
		"18.9", "0",
		"1", 1,
		"model", "18",
		"", "pd1213390283.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[775] = new Element(
		775, "assets/thumb/dz125in.jpg",
		137, 140,
		"DXDZ125IN", "DZ125IN",
		"DZ125IN Z Scale Loco 6-pin direct plug-in NEM 651 decoder with BEMF 1 Amp/1.25 Amp Peak, 2 FX3 Functions@0.5 Amp ", "Digitrax",
		"18.5", "0",
		"1", 1,
		"decoder", "71",
		"", "pd1161889371.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[776] = new Element(
		776, "assets/thumb/efe15714thumb.jpg",
		137, 52,
		"15714", "Plaxton Panorama Elite III  Cat. No. 15714",
		"Wallace Arnold", "EFE",
		"19.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-1296256980.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[777] = new Element(
		777, "assets/thumb/efe17506thumb.jpg",
		137, 51,
		"17506", "Leyland National Mk II Long  Cat. No. 17506",
		"Kelvin Scottish", "EFE",
		"19.4", "0",
		"1", 1,
		"model", "18",
		"", "pd1262955140.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[778] = new Element(
		778, "assets/thumb/efe20640thumb.jpg",
		137, 51,
		"20640", "Plaxton Pointer Dart  Cat. No. 20640",
		"London Busways", "EFE",
		"19.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-619529438.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[779] = new Element(
		779, "assets/thumb/efe26206thumb.jpg",
		137, 89,
		"26206", "Guy Arab I Utility Bus  Cat. No. 26206",
		"Wolverhampton Corporation", "EFE",
		"19.4", "0",
		"1", 1,
		"model", "18",
		"", "pd69556436.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[780] = new Element(
		780, "assets/thumb/em76501thumb.jpg",
		137, 61,
		"EM76501", "Jen-Tug Artic &amp; Flatbed Trailer   Cat. No. EM76501",
		"British Railways", "Classix",
		"6.35", "0",
		"1", 1,
		"model", "8",
		"", "pd1215449209.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[781] = new Element(
		781, "assets/thumb/em76507thumb.jpg",
		137, 81,
		"EM76507", "Jen-Tug Artic &amp; Parcels Van Trailer   Cat. No. EM76507",
		"BRS", "Classix",
		"7.15", "0",
		"1", 1,
		"model", "8",
		"", "pd-480499889.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[782] = new Element(
		782, "assets/thumb/em76615thumb.jpg",
		137, 103,
		"EM76615", "Morris J Van Cat. No. EM76615",
		"Telephone Engineer", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd2110241301.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[783] = new Element(
		783, "assets/thumb/CC13803_Summers - Detail1.jpg",
		137, 69,
		"CC13803-1", "Mercedes Benz Actros Curtainside  Cat. No. CC13803",
		"Robert Summers Transport Ltd", "Corgi",
		"78.65", "0",
		"1", 1,
		"model", "1",
		"", "pd1215519179.htm",
		"", 1,
		"CLEAR", "40",
		 0)
	
		Entry[784] = new Element(
		784, "assets/thumb/CC13906_RITCHIE Transport.jpg",
		137, 57,
		"CC13906-1", "Foden Alpha Curtainside  Cat. No. CC13906",
		"E &amp; N Ritchie", "Corgi",
		"83.75", "0",
		"1", 1,
		"model", "1",
		"", "pd-2021528842.htm",
		"", 1,
		"CLEAR", "40",
		 0)
	
		Entry[785] = new Element(
		785, "assets/thumb/efe26622thumb.jpg",
		137, 49,
		"26622", "Plaxton Paramount 3500  Cat. No. 26622",
		"National Holidays", "EFE",
		"19.4", "0",
		"1", 1,
		"model", "18",
		"", "pd1909747635.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[786] = new Element(
		786, "assets/thumb/efe36001thumb.jpg",
		137, 94,
		"36001", "Leyland RTL  Cat. No. 36001",
		"Chieftan", "EFE",
		"19.9", "0",
		"1", 1,
		"model", "18",
		"", "pd1254246681.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[787] = new Element(
		787, "assets/thumb/dxpr3.jpg",
		137, 101,
		"DXPR3-1", "PR3",
		"PR3 SoundFX Decoder Programmer", "Digitrax",
		"59.2", "0",
		"1", 1,
		"item", "73",
		"", "pd1006173345.htm",
		"", 1,
		"DXSOUND", "0",
		 0)
	
		Entry[788] = new Element(
		788, "assets/thumb/dxpr2.jpg",
		137, 123,
		"DXPR2", "PR2",
		"PR2 SoundFX Decoder Programmer", "Digitrax",
		"50", "0",
		"1", 1,
		"item", "76",
		"", "pd349542327.htm",
		"", 1,
		"DXSPARE", "0",
		 0)
	
		Entry[789] = new Element(
		789, "assets/thumb/dxpr2.jpg",
		137, 123,
		"DXPR2-1", "PR2",
		"PR2 SoundFX Decoder Programmer", "Digitrax",
		"54.1", "0",
		"1", 1,
		"item", "73",
		"", "pd1528512701.htm",
		"", 1,
		"DXSOUND", "0",
		 0)
	
		Entry[790] = new Element(
		790, "assets/thumb/msaccdpdt.jpg",
		137, 86,
		"H-DCM-MS", "MASTERswitch DPDT Switch Kit",
		"MASTERswitch DPDT Switch Kit", "DCC Concepts",
		"6.1", "0",
		"1", 1,
		"pack", "26",
		"", "pd1412961767.htm",
		"", 1,
		"Switches", "0",
		 0)
	
		Entry[791] = new Element(
		791, "assets/thumb/mp251thumb.jpg",
		137, 152,
		"HP-MP251A", "Long Fine Taper Jaw Pliers",
		"Fine parallel pliers. 3mm RV", "DCC Concepts",
		"10.2", "0",
		"1", 1,
		"item", "27",
		"", "pd526690925.htm",
		"", 1,
		"Tools", "0",
		 0)
	
		Entry[792] = new Element(
		792, "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.1", "0",
		"1", 1,
		"pack", "25",
		"", "pd1423144876.htm",
		"1::20::5;", 2,
		"LED", "0",
		 0)
	
		Entry[793] = new Element(
		793, "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",
		"73", "0",
		"1", 1,
		"model", "1",
		"", "pd1624122979.htm",
		"", 1,
		"CLEAR", "40",
		 0)
	
		Entry[794] = new Element(
		794, "assets/thumb/efe17507thumb.jpg",
		137, 50,
		"17507", "Leyland National Mk II  Cat. No. 17507",
		"Merseybus", "EFE",
		"19.4", "0",
		"1", 1,
		"model", "18",
		"", "pd1921437832.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[795] = new Element(
		795, "assets/thumb/efe20444thumb.jpg",
		137, 73,
		"20444", "Bristol VRIII  Cat. No. 20444",
		"Mansfield &amp; District", "EFE",
		"19.4", "0",
		"1", 1,
		"model", "18",
		"", "pd1264787786.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[796] = new Element(
		796, "assets/thumb/efe31303sbthumb.jpg",
		137, 73,
		"31303SB", "Daimler Fleetline B20  Cat. No. 31303SB",
		"London Transport - Showbus", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd548228958.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[797] = new Element(
		797, "assets/thumb/efe34901thumb.jpg",
		137, 69,
		"34901", "Leyland Olympian Coach  Cat. No. 34901",
		"Wilts &amp; Dorset", "EFE",
		"19.9", "0",
		"1", 1,
		"model", "18",
		"", "pd-151618372.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[798] = new Element(
		798, "assets/thumb/emd645-1.jpg",
		137, 124,
		"STX827102", "EMD 645 Diesel Engines (2nd Generation)",
		"TSU-1000 for EMD 645 Diesel Engines (2nd Generation)", "Soundtraxx",
		"77", "0",
		"1", 1,
		"decoder", "99",
		"", "pd358436965.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[799] = new Element(
		799, "assets/thumb/emd710-1.jpg",
		137, 116,
		"STX827103", "EMD 710 Diesel Engines (3rd Generation)",
		"TSU-1000 for EMD 710 Diesel Engines (3rd Generation)", "Soundtraxx",
		"77", "0",
		"1", 1,
		"decoder", "99",
		"", "pd-1472421605.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[800] = new Element(
		800, "assets/thumb/alco244-1.jpg",
		137, 113,
		"STX827104", "ALCO 244 Diesel Engines",
		"TSU-1000 for ALCO 244 Diesel Engines", "Soundtraxx",
		"77", "0",
		"1", 1,
		"decoder", "99",
		"", "pd-830048063.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[801] = new Element(
		801, "assets/thumb/stxalco251.jpg",
		137, 102,
		"STX827105", "ALCO 251 Diesel Engines",
		"TSU-1000 for ALCO 251 V12 Diesel Engines", "Soundtraxx",
		"77", "0",
		"1", 1,
		"decoder", "99",
		"", "pd-1960054569.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[802] = new Element(
		802, "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[803] = new Element(
		803, "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[804] = new Element(
		804, "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[805] = new Element(
		805, "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[806] = new Element(
		806, "assets/thumb/76tk008thumb.jpg",
		137, 72,
		"76TK008", "Bedford TK Barrel Truck",
		"Watneys - 1:76 scale    MSRP £8.95", "Oxford Diecast",
		"8.1", "0",
		"1", 1,
		"model", "21",
		"", "pd-850864476.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[807] = new Element(
		807, "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[808] = new Element(
		808, "assets/thumb/hdccrelay3thumb.jpg",
		137, 174,
		"H-DCC-RELAY3", "Micro Relay",
		"Micro relay 3-pack", "DCC Concepts",
		"7.65", "0",
		"1", 1,
		"pack", "26",
		"", "pd1264978614.htm",
		"", 1,
		"Switches", "0",
		 0)
	
		Entry[809] = new Element(
		809, "assets/thumb/jt204.JPG",
		137, 272,
		"JT204", "Rusty Rails Painter Tool",
		"For use with O scale", "Joe's Trains",
		"10.7", "0",
		"1", 1,
		"item", "35",
		"", "pd1265711230.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[810] = new Element(
		810, "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.5", "0",
		"1", 1,
		"pack", "35",
		"", "pd-1652749604.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[811] = new Element(
		811, "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[812] = new Element(
		812, "assets/thumb/efe16119thumb.jpg",
		137, 78,
		"16119", "Leyland PD2 Highbridge  Cat. No. 16119",
		"Oldham Corporation", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd-114428253.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[813] = new Element(
		813, "assets/thumb/efe17508thumb.jpg",
		137, 51,
		"17508", "Leyland National Mk II  Cat. No. 17508",
		"Western Scottish", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd-540332883.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[814] = new Element(
		814, "assets/thumb/efe20643thumb.jpg",
		137, 48,
		"20643", "Plaxton Pointer Dart  Cat. No. 20643",
		"Clydeside", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd1179370203.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[815] = new Element(
		815, "assets/thumb/efe25809thumb.jpg",
		137, 70,
		"25809", "Daimler DMS 1 Door  Cat. No. 25809",
		"Bournemouth Yellow Buses", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd-1149112609.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[816] = new Element(
		816, "assets/thumb/efe35801thumb.jpg",
		137, 42,
		"35801", "Plaxton SLF Dart Mk1 1 Door  Cat. No. 35801",
		"Arriva Medway Towns", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd-715191259.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[817] = new Element(
		817, "assets/thumb/hfj.jpg",
		137, 99,
		"TV-HFJ-001", "Hex Frog Juicer",
		"", "Tam Valley Depot",
		"54.5", "0",
		"1", 1,
		"item", "100",
		"", "pd1266338738.htm",
		"", 1,
		"TAMVALLEY", "0",
		 0)
	
		Entry[818] = new Element(
		818, "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[819] = new Element(
		819, "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[820] = new Element(
		820, "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[821] = new Element(
		821, "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[822] = new Element(
		822, "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[823] = new Element(
		823, "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[824] = new Element(
		824, "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[825] = new Element(
		825, "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[826] = new Element(
		826, "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[827] = new Element(
		827, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ618-2", "Maintenance Crew",
		"HQ618-2", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd-1036130952.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[828] = new Element(
		828, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ646", "Hobo Campfire",
		"HQ646", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd-898619290.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[829] = new Element(
		829, "assets/thumb/efe19812thumb.jpg",
		137, 81,
		"19812", "Daimler CVG6 Orion  Cat. No. 19812",
		"Aberdeen Corporation", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd70460456.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[830] = new Element(
		830, "assets/thumb/efe30510thumb.jpg",
		137, 64,
		"30510", "Guy GS Special  Cat. No. 30510",
		"London Country", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd-1855183180.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[831] = new Element(
		831, "assets/thumb/efe34104thumb.jpg",
		137, 88,
		"34104", "AEC RT3 Bus  Cat. No. 34104",
		"Greenline", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd-1057208682.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[832] = new Element(
		832, "assets/thumb/r8237thumb.jpg",
		137, 55,
		"R8237-1", "RJ12 Connection Socket",
		"R8237 RJ12 Connection Socket  MSRP £2.60", "Hornby",
		"2", "0",
		"1", 1,
		"item", "83",
		"", "pd-823145480.htm",
		"", 1,
		"HORNBYDCC", "0",
		 0)
	
		Entry[833] = new Element(
		833, "assets/thumb/r8236thumb.jpg",
		137, 55,
		"R8236-1", "RJ12 Leads",
		"R8236 RJ12 Leads   MSRP £6.50", "Hornby",
		"5.6", "0",
		"1", 1,
		"pack", "83",
		"", "pd163476198.htm",
		"", 1,
		"HORNBYDCC", "0",
		 0)
	
		Entry[834] = new Element(
		834, "assets/thumb/src16thumb.jpg",
		137, 86,
		"TD-SRC16", "Switch and Route Controller",
		"SRC16 - DCC Compatible accessory decoder", "Team Digital",
		"39", "0",
		"1", 1,
		"item", "101",
		"", "pd-1275103844.htm",
		"", 1,
		"TD", "0",
		 0)
	
		Entry[835] = new Element(
		835, "assets/thumb/motodthumb.jpg",
		137, 90,
		"TD-MOTOD", "Satellite Motor Driver",
		"MOTOD - Satellite Stall Motor Driver - pack of 2", "Team Digital",
		"16", "0",
		"1", 1,
		"item", "101",
		"", "pd-1296284374.htm",
		"", 1,
		"TD", "0",
		 0)
	
		Entry[836] = new Element(
		836, "assets/thumb/r083thumb.jpg",
		137, 84,
		"R083", "Buffer stop",
		"R083 Buffer Stop  MSRP 1.50", "Hornby",
		"1.25", "0",
		"1", 1,
		"pack", "137",
		"", "pd1000463348.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[837] = new Element(
		837, "assets/thumb/efe34102thumb.jpg",
		137, 83,
		"34102", "AEC RT3  Cat.No. 34102",
		"London Country", "EFE",
		"19.9", "0",
		"1", 1,
		"model", "18",
		"", "pd1474455692.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[838] = new Element(
		838, "assets/thumb/efe29010thumb.jpg",
		137, 74,
		"29010", "GM Standard Fleetline  Cat.No. 29010",
		"Badgerline", "EFE",
		"19.4", "0",
		"1", 1,
		"model", "18",
		"", "pd1222347438.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[839] = new Element(
		839, "assets/thumb/efe28007thumb.jpg",
		137, 72,
		"28007", "Daimler DMS 1 Door  Cat.No. 28007",
		"Bexleybus", "EFE",
		"19.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-25808486.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[840] = new Element(
		840, "assets/thumb/efe23708thumb.jpg",
		137, 78,
		"23708", "Alexander Fleetline  Cat.No. 23708",
		"Maidstone &amp; District", "EFE",
		"19.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-267092154.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[841] = new Element(
		841, "assets/thumb/efe14605thumb.jpg",
		137, 51,
		"14605", "Leyland National Mk I  Cat.No. 14605",
		"London Country North West", "EFE",
		"19.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-1468281116.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[842] = new Element(
		842, "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[843] = new Element(
		843, "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[844] = new Element(
		844, "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[845] = new Element(
		845, "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[846] = new Element(
		846, "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[847] = new Element(
		847, "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[848] = new Element(
		848, "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[849] = new Element(
		849, "assets/thumb/twpw4l.jpg",
		137, 166,
		"HLED-TWSW6", "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.5", "0",
		"1", 1,
		"pack", "25",
		"", "pd1019255725.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[850] = new Element(
		850, "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", "8",
		"", "pd-1625749592.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[851] = new Element(
		851, "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", "8",
		"", "pd720557590.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[852] = new Element(
		852, "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", "8",
		"", "pd690920832.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[853] = new Element(
		853, "assets/thumb/src8thumb.jpg",
		137, 74,
		"TD-SRC8", "Switch and Route Controller",
		"Requires a Loconet compatible DCC system", "Team Digital",
		"33.5", "0",
		"1", 1,
		"item", "63",
		"", "pd-1597984299.htm",
		"", 1,
		"OTHRDCCDIS", "10",
		 0)
	
		Entry[854] = new Element(
		854, "assets/thumb/CC19902_Gibbs Trailer.jpg",
		137, 91,
		"CC19902-1", "Fridge Trailer  Cat. No. CC19902",
		"Gibbs of Fraserburgh", "Corgi",
		"35.75", "0",
		"1", 1,
		"model", "1",
		"", "pd1657590888.htm",
		"", 1,
		"CLEAR", "40",
		 0)
	
		Entry[855] = new Element(
		855, "assets/thumb/dxsfx064d.jpg",
		137, 239,
		"DXSFX064D", "SFX064D Sound module ",
		"SFX064D Sound module for HO and large scale locos with 6 function outputs", "Digitrax",
		"47", "0",
		"1", 1,
		"decoder", "73",
		"", "pd-1773653876.htm",
		"", 1,
		"DXSOUND", "0",
		 0)
	
		Entry[856] = new Element(
		856, "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", "8",
		"", "pd1229598025.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[857] = new Element(
		857, "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", "8",
		"", "pd905959583.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[858] = new Element(
		858, "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",
		"26", "0",
		"1", 1,
		"decoder", "102",
		"Harness;Wires only@", "pd-1438825386.htm",
		"", 1,
		"TCSDCC", "0",
		 0)
	
		Entry[859] = new Element(
		859, "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.25", "0",
		"1", 1,
		"pack", "25",
		"Colours available;Red@", "pd135009730.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[860] = new Element(
		860, "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[861] = new Element(
		861, "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[862] = new Element(
		862, "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[863] = new Element(
		863, "assets/thumb/76sca03csthumb.jpg",
		137, 68,
		"76SCA03CS", "Scania R420 Curtainside",
		"Tinnelly - 1:76 scale  MSRP £17.99", "Oxford Diecast",
		"16.3", "0",
		"1", 1,
		"model", "21",
		"", "pd-1554377153.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[864] = new Element(
		864, "assets/thumb/esu_decoder_tester.jpg",
		137, 137,
		"LS51900", "ESU Decoder Tester",
		"LS51900  ESU Decoder Tester with a variety of interfaces for testing loco decoders ", "ESU",
		"35", "0",
		"1", 1,
		"item", "78",
		"", "pd1222898725.htm",
		"", 1,
		"ESUSPEAK", "0",
		 0)
	
		Entry[865] = new Element(
		865, "assets/thumb/dcc218.jpg",
		137, 135,
		"HP-DCC218", "21 pin to 8 pin DCC adapter",
		"Available singly or in 5-packs", "DCC Concepts",
		"4", "0",
		"1", 1,
		"item", "121",
		"Multi-pack;Single item@", "pd1224773591.htm",
		"", 1,
		"RJCABLE", "0",
		 0)
	
		Entry[866] = new Element(
		866, "assets/thumb/efe20641thumb.jpg",
		137, 50,
		"20641", "Plaxton Pointer Dart  Cat. No. 20641",
		"MTL London", "EFE",
		"19.9", "0",
		"1", 1,
		"model", "18",
		"", "pd1273424086.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[867] = new Element(
		867, "assets/thumb/efe23319thumb.jpg",
		137, 56,
		"23319", "AEC RF  Mk1 Bus  Cat. No. 23319",
		"London Transport", "EFE",
		"19.9", "0",
		"1", 1,
		"model", "18",
		"", "pd1028059690.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[868] = new Element(
		868, "assets/thumb/atl9475.jpg",
		137, 54,
		"ATL9475", "HO RTR MP15DC, CSX  #1143",
		"ATL9470 HO RTR MP15DC CSX (Hood with Square Air Filter) #1143 Atlas Master® Series Gold (With Decoder &amp; QSI Sound) ", "Atlas",
		"180", "0",
		"1", 1,
		"loco", "43",
		"", "pd1116324674.htm",
		"", 1,
		"MP15DC", "0",
		 0)
	
		Entry[869] = new Element(
		869, "assets/images/nopicturegreen.jpg",
		133, 46,
		"DXFN04K1", "SDH series function only FN04K1 decoder",
		"", "Digitrax",
		"17.35", "0",
		"1", 1,
		"decoder", "73",
		"", "pd1225732322.htm",
		"", 1,
		"DXSOUND", "0",
		 0)
	
		Entry[870] = new Element(
		870, "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", "8",
		"", "pd591268837.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[871] = new Element(
		871, "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", "8",
		"", "pd433492055.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[872] = new Element(
		872, "assets/thumb/nce_mini_panel.jpg",
		137, 107,
		"N-MINI", "Mini Panel",
		"MiniPanel, Accessory and Macro Decoder", "NCE",
		"34", "0",
		"1", 1,
		"item", "96",
		"", "pd-348390906.htm",
		"", 1,
		"Access", "0",
		 0)
	
		Entry[873] = new Element(
		873, "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", "139",
		"", "pd1226491780.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[874] = new Element(
		874, "assets/thumb/CC13408thumb.jpg",
		137, 54,
		"CC13408-1", "ERF ECT Olympic Curtainside  Cat. No. CC13408",
		"Richard Read (Transport) Ltd", "Corgi",
		"62.8", "0",
		"1", 1,
		"model", "1",
		"", "pd36725980.htm",
		"", 1,
		"CLEAR", "40",
		 0)
	
		Entry[875] = new Element(
		875, "assets/thumb/wabbitthumb.jpg",
		137, 151,
		"WABBIT", "Wabbit",
		"Wabbit dual output stall motor type stationary decoder", "DCC Specialties",
		"22", "0",
		"1", 1,
		"item", "118",
		"", "pd1226589701.htm",
		"", 1,
		"ONGUARD", "0",
		 0)
	
		Entry[876] = new Element(
		876, "assets/thumb/wabbitthumb.jpg",
		137, 151,
		"WABBITFB", "Wabbit with feedback",
		"Wabbit dual output stall motor type stationary decoder with feedback", "DCC Specialties",
		"29.6", "0",
		"1", 1,
		"item", "118",
		"", "pd1096224699.htm",
		"", 1,
		"ONGUARD", "0",
		 0)
	
		Entry[877] = new Element(
		877, "assets/thumb/dcc218.jpg",
		137, 135,
		"HP-DCC218", "21 pin to 8 pin DCC adapter",
		"Available singly or in 5-packs", "DCC Concepts",
		"4", "0",
		"1", 1,
		"item", "26",
		"Multi-pack;Single item@", "pd1892610686.htm",
		"", 1,
		"Switches", "0",
		 0)
	
		Entry[878] = new Element(
		878, "assets/thumb/efe22716thumb.jpg",
		137, 50,
		"22716", "Alexander Y Type  Cat. No. 22716",
		"West Coast Motors", "EFE",
		"20.4", "0",
		"1", 1,
		"model", "18",
		"", "pd278069886.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[879] = new Element(
		879, "assets/thumb/efe29205thumb.jpg",
		137, 74,
		"29205", "Leyland Titan 1 Door  Cat. No. 29205",
		"Stagecoach East London", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd-2024020772.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[880] = new Element(
		880, "assets/thumb/efe29621thumb.jpg",
		137, 70,
		"29621", "Leyland Olympian  Cat. No. 29621",
		"Arriva Serving the Shires", "EFE",
		"19.9", "0",
		"1", 1,
		"model", "18",
		"", "pd830686826.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[881] = new Element(
		881, "assets/thumb/efe31503thumb.jpg",
		137, 85,
		"31503", "RM Routemaster  Cat. No. 31503",
		"London Transport", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd-1724646744.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[882] = new Element(
		882, "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",
		"5.1", "0",
		"1", 1,
		"item", "104",
		"", "pd1227619595.htm",
		"", 1,
		"TCS Harn", "0",
		 0)
	
		Entry[883] = new Element(
		883, "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[884] = new Element(
		884, "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[885] = new Element(
		885, "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[886] = new Element(
		886, "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[887] = new Element(
		887, "assets/thumb/76mh004thumb.jpg",
		137, 89,
		"76MH004", "Mechanical Horse Van Trailer",
		"LNER - 1:76 scale  MSRP £6.95", "Oxford Diecast",
		"6.35", "0",
		"1", 1,
		"model", "21",
		"", "pd-1191258670.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[888] = new Element(
		888, "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[889] = new Element(
		889, "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[890] = new Element(
		890, "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[891] = new Element(
		891, "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[892] = new Element(
		892, "assets/thumb/esu_lokprogrammer.jpg",
		137, 137,
		"LS53451", "ESU LokProgrammer",
		"LS53451  ESU LokProgrammer", "ESU",
		"139", "0",
		"1", 1,
		"item", "78",
		"", "pd617839917.htm",
		"", 1,
		"ESUSPEAK", "0",
		 0)
	
		Entry[893] = new Element(
		893, "assets/thumb/btod53.jpg",
		137, 75,
		"BTOD53", "Leyland Steer Flatbed    Cat. No. BTOD53",
		"BRS - West Lothian Group  MSRP £5.99", "Base Toys",
		"5.85", "0",
		"1", 1,
		"model", "6",
		"", "pd1808358177.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[894] = new Element(
		894, "assets/thumb/btod57.jpg",
		137, 90,
		"BTOD57", "Leyland FG Van     Cat. No. BTOD57",
		"Sunblest Bakeries   MSRP £5.99", "Base Toys",
		"5.85", "0",
		"1", 1,
		"model", "6",
		"", "pd-734194765.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[895] = new Element(
		895, "assets/thumb/r2509.jpg",
		137, 26,
		"R2771", "Class 121 BR Green",
		"R2771 BR Class 121 BR Green    MSRP £70.95", "Hornby",
		"65.9", "0",
		"1", 1,
		"loco", "136",
		"", "pd1231848874.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[896] = new Element(
		896, "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",
		"65.9", "0",
		"1", 1,
		"loco", "136",
		"", "pd-2143041591.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[897] = new Element(
		897, "assets/thumb/r8683.jpg",
		137, 55,
		"R8683", "Signal Box",
		"R8683 Signal Box  MSRP £16.80", "Hornby",
		"15.3", "0",
		"1", 1,
		"model", "139",
		"", "pd-1846073341.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[898] = new Element(
		898, "assets/thumb/BTO D45.jpg",
		137, 63,
		"BTOD45", "Thorneycroft Dropside  Cat. No. BTOD45",
		"Wynn&rsquo;s   MSRP £5.99", "Base Toys",
		"5.85", "0",
		"1", 1,
		"model", "6",
		"", "pd1118445595.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[899] = new Element(
		899, "assets/thumb/AN40306_Burlingham Seagull.jpg",
		137, 91,
		"AN40306", "Burlingham Seagull  Cat. No. AN40306",
		"Ulsterbus - 50th Anniversary Model", "Corgi",
		"26", "0",
		"1", 1,
		"model", "12",
		"", "pd-1295050834.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[900] = new Element(
		900, "assets/thumb/R8671.jpg",
		137, 127,
		"R8671", "Victorian Street Lamps (pk 4)",
		"R8671 Victorian Street Lamps (pk 4)  MSRP £5.80", "Hornby",
		"5.5", "0",
		"1", 1,
		"pack", "139",
		"", "pd1155354915.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[901] = new Element(
		901, "assets/thumb/kd103.jpg",
		137, 51,
		"KD103", "Truss Log Car Kit",
		"KD103  Truss Log Car Kit", "Kadee",
		"35.2", "0",
		"1", 1,
		"kit", "148",
		"", "pd-1513118330.htm",
		"", 1,
		"KADEERS", "0",
		 0)
	
		Entry[902] = new Element(
		902, "assets/thumb/kd205.jpg",
		281, 146,
		"KD205", "Coupler Height and Multi-Purpose Gauge",
		"KD205  Coupler Height and Multi-Purpose Gauge", "Kadee",
		"4.75", "0",
		"1", 1,
		"item", "146",
		"", "pd2124081520.htm",
		"", 1,
		"KADEEACC", "0",
		 0)
	
		Entry[903] = new Element(
		903, "assets/thumb/kd206a.jpg",
		137, 78,
		"KD206", "Insulated Multi-Purpose Coupler Height Gauge",
		"KD206   Insulated Multi-Purpose Coupler Height Gauge", "Kadee",
		"5.4", "0",
		"1", 1,
		"item", "146",
		"", "pd1778232606.htm",
		"", 1,
		"KADEEACC", "0",
		 0)
	
		Entry[904] = new Element(
		904, "assets/thumb/kd308.jpg",
		137, 82,
		"KD308", "Delayed &quot;under-the-track&quot; Uncoupler",
		"KD308 Delayed &quot;under-the-track&quot; Uncoupler", "Kadee",
		"3.5", "0",
		"1", 1,
		"item", "149",
		"", "pd-1354952580.htm",
		"", 1,
		"KADEEUNC", "0",
		 0)
	
		Entry[905] = new Element(
		905, "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.3", "0",
		"1", 1,
		"item", "149",
		"", "pd-878519542.htm",
		"", 1,
		"KADEEUNC", "0",
		 0)
	
		Entry[906] = new Element(
		906, "assets/thumb/kd312.jpg",
		137, 95,
		"KD312", "Non-Delayed Uncoupler",
		"KD312 Non-Delayed Uncoupler", "Kadee",
		"4", "0",
		"1", 1,
		"item", "149",
		"", "pd423370824.htm",
		"", 1,
		"KADEEUNC", "0",
		 0)
	
		Entry[907] = new Element(
		907, "assets/thumb/kd321.jpg",
		137, 108,
		"KD321", "Delayed &quot;between-the-rails&quot; Uncoupler",
		"KD321 Delayed &quot;between-the-rails&quot; Uncoupler", "Kadee",
		"4", "0",
		"1", 1,
		"item", "149",
		"", "pd2084183990.htm",
		"", 1,
		"KADEEUNC", "0",
		 0)
	
		Entry[908] = new Element(
		908, "assets/thumb/kd322.jpg",
		137, 108,
		"KD322", "Delayed &quot;between-the-rails&quot; Uncoupler",
		"KD322 Delayed &quot;between-the-rails&quot; Uncoupler", "Kadee",
		"4.75", "0",
		"1", 1,
		"item", "149",
		"", "pd-1765923628.htm",
		"", 1,
		"KADEEUNC", "0",
		 0)
	
		Entry[909] = new Element(
		909, "assets/thumb/kd334.jpg",
		137, 155,
		"KD334", "Uncoupler Gluing Jig",
		"KD334 Uncoupler Gluing Jig", "Kadee",
		"2.75", "0",
		"1", 1,
		"item", "149",
		"", "pd889743138.htm",
		"", 1,
		"KADEEUNC", "0",
		 0)
	
		Entry[910] = new Element(
		910, "assets/thumb/efe17703thumb.jpg",
		137, 48,
		"17703", "Leyland National MkII Long  Cat. No. 17703",
		"North Western", "EFE",
		"20.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-2136601212.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[911] = new Element(
		911, "assets/thumb/efe20642thumb.jpg",
		137, 55,
		"20642", "Plaxton Pointer Dart  Cat. No. 20642",
		"Arriva North London", "EFE",
		"20.4", "0",
		"1", 1,
		"model", "18",
		"", "pd1009729362.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[912] = new Element(
		912, "assets/thumb/efe34301thumb.jpg",
		137, 91,
		"34301", "AEC RT2  Cat. No. 34301",
		"London Transport", "EFE",
		"20.4", "0",
		"1", 1,
		"model", "18",
		"", "pd1234355430.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[913] = new Element(
		913, "assets/thumb/emd645-1.jpg",
		137, 124,
		"STX828041", "EMD 645 Diesel Engines (2nd Generation)",
		"TSU-AT1000 for EMD 645 Diesel Engines (2nd Generation)", "Soundtraxx",
		"65", "0",
		"1", 1,
		"decoder", "99",
		"", "pd-610125394.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[914] = new Element(
		914, "assets/thumb/dg148023thumb.jpg",
		137, 69,
		"DG148023", "Scammell Scarab Sheeted Flatbed    Cat. No. DG148023",
		"Railfreight    MSRP £10.99", "Corgi",
		"9.7", "0",
		"1", 1,
		"model", "13",
		"", "pd1232970538.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[915] = new Element(
		915, "assets/thumb/r8236thumb.jpg",
		137, 55,
		"R8236", "RJ12 Leads",
		"R8236 RJ12 Leads   MSRP £6.50", "Hornby",
		"5.6", "0",
		"1", 1,
		"pack", "132",
		"", "pd1233054545.htm",
		"", 1,
		"DCC", "0",
		 0)
	
		Entry[916] = new Element(
		916, "assets/thumb/r8237thumb.jpg",
		137, 55,
		"R8237", "RJ12 Connection Socket",
		"R8237 RJ12 Connection Socket  MSRP £2.60", "Hornby",
		"2", "0",
		"1", 1,
		"item", "132",
		"", "pd1579279847.htm",
		"", 1,
		"DCC", "0",
		 0)
	
		Entry[917] = new Element(
		917, "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[918] = new Element(
		918, "assets/thumb/76rabo1tthumb.jpg",
		137, 82,
		"76RAB01T", "Pack of 2 x Box Trailers",
		"British Rail - 1:76 scale  MSRP £6.99", "Oxford Diecast",
		"6.1", "0",
		"1", 1,
		"model", "21",
		"", "pd738818659.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[919] = new Element(
		919, "assets/thumb/76mh03ttthumb.jpg",
		137, 55,
		"76MH03T", "Pack of 2 x Flat Trailers",
		"GWR - 1:76 scale  MSRP £6.99", "Oxford Diecast",
		"6.1", "0",
		"1", 1,
		"model", "21",
		"", "pd-1253895351.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[920] = new Element(
		920, "assets/thumb/76mh04tthumb.jpg",
		137, 95,
		"76MH04T", "Pack of 2 x Box Trailers",
		"LNER - 1:76 scale  MSRP £6.99", "Oxford Diecast",
		"6.1", "0",
		"1", 1,
		"model", "21",
		"", "pd1736126111.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[921] = new Element(
		921, "assets/thumb/r8993thumb.jpg",
		137, 71,
		"R8993", "Water Cleansing Tank",
		"R8993 Water Cleansing Tank  MSRP £10.75", "Hornby",
		"9.7", "0",
		"1", 1,
		"item", "139",
		"", "pd45572125.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[922] = new Element(
		922, "assets/thumb/r8995.jpg",
		137, 41,
		"R8995", "Scrap Load",
		"R8995 Scrap Load  MSRP £5.40", "Hornby",
		"4.5", "0",
		"1", 1,
		"item", "139",
		"", "pd-333960445.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[923] = new Element(
		923, "assets/thumb/r8998thumb.jpg",
		137, 40,
		"R8998", "Girder Load",
		"R8998 Girder Load  MSRP £5.05", "Hornby",
		"4.5", "0",
		"1", 1,
		"item", "139",
		"", "pd423344369.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[924] = new Element(
		924, "assets/thumb/r8999thumb.jpg",
		137, 42,
		"R8999", "Ore Load",
		"R8999  Ore Load  MSRP £5.60", "Hornby",
		"4.5", "0",
		"1", 1,
		"item", "139",
		"", "pd1908389097.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[925] = new Element(
		925, "assets/thumb/r9509thumb.jpg",
		137, 80,
		"R9509", "Track Boards",
		"R9509 Track Boards  MSRP £7.60", "Hornby",
		"6.65", "0",
		"1", 1,
		"item", "139",
		"", "pd-405934969.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[926] = new Element(
		926, "assets/thumb/r9512thumb.jpg",
		137, 92,
		"R9512", "Concrete Plate Layers Hut",
		"R9512 Concrete Plate Layers Hut  MSRP £5.99", "Hornby",
		"5.6", "0",
		"1", 1,
		"item", "139",
		"", "pd-1790529077.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[927] = new Element(
		927, "assets/thumb/r9520thumb.jpg",
		137, 79,
		"R9520", "Fuel Pump",
		"R9520  Fuel Pump  MSRP £2.99", "Hornby",
		"2.5", "0",
		"1", 1,
		"item", "139",
		"", "pd-1079738673.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[928] = new Element(
		928, "assets/thumb/r6469thumb.jpg",
		137, 54,
		"R6469", "OTA Timber Carrier 4",
		"R6469 OTA Timber Carrier 4  MSRP £16.49", "Hornby",
		"12.5", "0",
		"1", 1,
		"wagon", "134",
		"", "pd823687725.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[929] = new Element(
		929, "assets/thumb/r6466thumb.jpg",
		137, 55,
		"R6468", "OTA Timber Carrier 3",
		"R6468 OTA Timber Carrier 3  MSRP £16.49", "Hornby",
		"12.5", "0",
		"1", 1,
		"wagon", "134",
		"", "pd-2006501947.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[930] = new Element(
		930, "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.8", "0",
		"1", 1,
		"wagon", "134",
		"", "pd-1726560743.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[931] = new Element(
		931, "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.8", "0",
		"1", 1,
		"item", "134",
		"", "pd516416691.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[932] = new Element(
		932, "assets/thumb/r6454thumb.jpg",
		137, 55,
		"R6454", "6 Wheel Tank Wagon Satlink ",
		"R6454 Satlink 6 Wheel Tank Wagon MSRP £11.60", "Hornby",
		"10.7", "0",
		"1", 1,
		"wagon", "134",
		"", "pd-1879319753.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[933] = new Element(
		933, "assets/thumb/r6448thumb.jpg",
		137, 55,
		"R6448", "Caib PGA Hopper Wagon Weathered",
		"R6448 Caib PGA Hopper Wagon Weathered  MSRP £14.49", "Hornby",
		"12.75", "0",
		"1", 1,
		"wagon", "134",
		"", "pd-976980959.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[934] = new Element(
		934, "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",
		"69.45", "0",
		"1", 1,
		"pack", "136",
		"", "pd622686301.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[935] = new Element(
		935, "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",
		"102.15", "0",
		"1", 1,
		"loco", "135",
		"", "pd714505883.htm",
		"", 1,
		"HornbyStea", "0",
		 0)
	
		Entry[936] = new Element(
		936, "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",
		"103.15", "0",
		"1", 1,
		"loco", "135",
		"", "pd-2118037019.htm",
		"", 1,
		"HornbyStea", "0",
		 0)
	
		Entry[937] = new Element(
		937, "assets/thumb/R8613thumb.jpg",
		137, 71,
		"R8613", "Refuse Skips x 2",
		"R8613 Skaledale Refuse Skips  Pack of 2  MSRP £6.15", "Hornby",
		"5.7", "0",
		"1", 1,
		"pack", "139",
		"", "pd1369452265.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[938] = new Element(
		938, "assets/thumb/s11.jpg",
		137, 72,
		"S11", "No.11 smoke generator unit",
		"No.11 smoke generator unit with 10ml smoke oil", "Seuthe",
		"24.5", "0",
		"1", 1,
		"pack", "159",
		"", "pd1233256599.htm",
		"", 1,
		"Seuthe", "0",
		 0)
	
		Entry[939] = new Element(
		939, "assets/thumb/r8679.jpg",
		137, 94,
		"R8679", "Two Bicycles",
		"R8679 Two Bicycles  MSRP £8.75", "Hornby",
		"8", "0",
		"1", 1,
		"pack", "139",
		"", "pd356690067.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[940] = new Element(
		940, "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", "139",
		"", "pd-528768211.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[941] = new Element(
		941, "assets/thumb/r8576.jpg",
		115, 122,
		"R8576", "Garden Shed",
		"R8576 Skaledale Garden Shed  MSRP £4.05", "Hornby",
		"3.75", "0",
		"1", 1,
		"model", "139",
		"", "pd362250241.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[942] = new Element(
		942, "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",
		"97", "0",
		"1", 1,
		"loco", "128",
		"", "pd-2120346990.htm",
		"", 1,
		"HJLOCOS", "0",
		 0)
	
		Entry[943] = new Element(
		943, "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",
		"97", "0",
		"1", 1,
		"loco", "128",
		"", "pd1052721936.htm",
		"", 1,
		"HJLOCOS", "0",
		 0)
	
		Entry[944] = new Element(
		944, "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",
		"97", "0",
		"1", 1,
		"loco", "128",
		"", "pd-1652079588.htm",
		"", 1,
		"HJLOCOS", "0",
		 0)
	
		Entry[945] = new Element(
		945, "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[946] = new Element(
		946, "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[947] = new Element(
		947, "assets/thumb/BarrelsBig.jpg",
		137, 55,
		"99605-1", "Large Barrels ",
		"Set of 3 large barrels", "EFE",
		"1.5", "0",
		"1", 1,
		"pack", "19",
		"", "pd520143963.htm",
		"", 1,
		"Gilbow", "0",
		 0)
	
		Entry[948] = new Element(
		948, "assets/thumb/BarrelsSmall.jpg",
		137, 64,
		"99606-1", "Small Barrels ",
		"Set of 3 small barrels", "EFE",
		"1.5", "0",
		"1", 1,
		"pack", "19",
		"", "pd-1957933567.htm",
		"", 1,
		"Gilbow", "0",
		 0)
	
		Entry[949] = new Element(
		949, "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[950] = new Element(
		950, "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[951] = new Element(
		951, "assets/thumb/efe99610.jpg",
		137, 106,
		"99610-1", "Bottles in Crates ",
		"Set of 3 crates with bottles", "EFE",
		"1.5", "0",
		"1", 1,
		"pack", "19",
		"", "pd-1399768071.htm",
		"", 1,
		"Gilbow", "0",
		 0)
	
		Entry[952] = new Element(
		952, "assets/thumb/efe27625thumb.jpg",
		137, 45,
		"27625", "Wright Volvo Renown  Cat. No. 27625",
		"The Lancashire Way", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd-1390514495.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[953] = new Element(
		953, "assets/thumb/efe28818thumb.jpg",
		137, 74,
		"28818", "Leyland Titan 2 Door  Cat. No. 28818",
		"Oxford City Line", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd1520228055.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[954] = new Element(
		954, "assets/thumb/efe29411thumb.jpg",
		137, 52,
		"29411", "Bristol RELH Dual Purpose  Cat. No. 29411",
		"Jones of Aberbeeg", "EFE",
		"20.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-137939783.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[955] = new Element(
		955, "assets/thumb/r920thumb.jpg",
		137, 55,
		"R920", "Insulated fishplates",
		"R920   Insulated fishplates   MSRP 1.25", "Hornby",
		"1.15", "0",
		"1", 1,
		"pack", "137",
		"", "pd-536641263.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[956] = new Element(
		956, "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", "120",
		"", "pd1236796224.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[957] = new Element(
		957, "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.15", "0",
		"1", 1,
		"item", "120",
		"", "pd933075822.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[958] = new Element(
		958, "assets/thumb/pickupspringsthumb.jpg",
		137, 87,
		"H-DCF-PSOO", "48 pack, pickup spring",
		"48 pack, pickup spring - available for N and OO/HO/EM/P4 gauges", "DCC Concepts",
		"20", "0",
		"1", 1,
		"pack", "26",
		"Scale;OO gauge@", "pd1237640256.htm",
		"", 1,
		"Switches", "0",
		 0)
	
		Entry[959] = new Element(
		959, "assets/thumb/em76837thumb.jpg",
		137, 75,
		"EM76837", "Morris Minor Traveller  Cat. No. EM76837",
		"Police Panda", "Classix",
		"3.5", "0",
		"1", 1,
		"model", "8",
		"", "pd-266250107.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[960] = new Element(
		960, "assets/thumb/em76831thumb.jpg",
		137, 73,
		"EM76831", "Austin FL1 Hire Car  Cat. No. EM76831",
		"Black/Cream", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd-230354967.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[961] = new Element(
		961, "assets/thumb/em76829thumb.jpg",
		137, 73,
		"EM76829", "Austin FX3 Taxi  Cat. No. EM76829",
		"Black/Dark Blue", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd1262538243.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[962] = new Element(
		962, "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", "8",
		"", "pd-1398698739.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[963] = new Element(
		963, "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", "8",
		"", "pd-2143199353.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[964] = new Element(
		964, "assets/thumb/em76508thumb.jpg",
		137, 87,
		"EM76508", "JenTug Artic Parcels Van  Cat. No. EM76508",
		"British Railways", "Classix",
		"7.4", "0",
		"1", 1,
		"model", "8",
		"", "pd-2012744501.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[965] = new Element(
		965, "assets/thumb/em76502thumb.jpg",
		137, 57,
		"EM76502", "Jen Helec Artic with Dropside trailer",
		"British Railways", "Classix",
		"6.35", "0",
		"1", 1,
		"model", "8",
		"", "pd1238509717.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[966] = new Element(
		966, "assets/thumb/sfx0416.jpg",
		137, 218,
		"DXSFX0416", "SFX0416 SoundFX+Function Decoder",
		"16 megabit capacity for more complex projects. 4 functions", "Digitrax",
		"43.9", "0",
		"1", 1,
		"decoder", "73",
		"", "pd1238609047.htm",
		"", 1,
		"DXSOUND", "0",
		 0)
	
		Entry[967] = new Element(
		967, "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 Concepts",
		"7.75", "0",
		"1", 1,
		"pack", "25",
		"Colours available;Red@", "pd-629684699.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[968] = new Element(
		968, "assets/thumb/dg214002thumb.jpg",
		137, 84,
		"DG214002", "Thornycroft Nippy   DG214002",
		"British Rail   MSRP £10.76", "Corgi",
		"9.7", "0",
		"1", 1,
		"model", "13",
		"", "pd1238689485.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[969] = new Element(
		969, "assets/thumb/stxalco25116.jpg",
		137, 114,
		"STX827106", "ALCO 251 Diesel Engines",
		"TSU-1000 for ALCO 251 V16 Diesel Engines", "Soundtraxx",
		"77", "0",
		"1", 1,
		"decoder", "99",
		"", "pd1239661389.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[970] = new Element(
		970, "assets/thumb/148nfx4001thumb.jpg",
		137, 75,
		"148NFX4001", "FX4 Taxi",
		"Black - 1:148 scale    MSRP£2.50", "Oxford Diecast",
		"2.25", "0",
		"1", 1,
		"model", "22",
		"", "pd1240219377.htm",
		"", 1,
		"OXN", "0",
		 0)
	
		Entry[971] = new Element(
		971, "assets/thumb/76etyp002thumb.jpg",
		137, 69,
		"76ETYP002", "Jaguar E Type Series 1 Coupe",
		"Carmen - 1:76 scale    MSRP £2.90", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd859035722.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[972] = new Element(
		972, "assets/thumb/76mh007thumb.jpg",
		137, 53,
		"76MH007", "Mechanical Horse Flatbed Trailer",
		"Pickfords - 1:76 scale  MSRP £6.85", "Oxford Diecast",
		"6.35", "0",
		"1", 1,
		"model", "21",
		"", "pd1841454984.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[973] = new Element(
		973, "assets/thumb/76jm006.jpg",
		137, 103,
		"76JM006", "Austin J2 Paralanian",
		"Brown/Cream - 1:76 scale    MSRP £3.95", "Oxford Diecast",
		"3.5", "0",
		"1", 1,
		"model", "21",
		"", "pd-578850570.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[974] = new Element(
		974, "assets/thumb/emd645-1.jpg",
		137, 124,
		"STX828051", "EMD 645 Diesel Engines (2nd Generation)",
		"TSU-GN1000 plug and play for Athearn Genesis HO EMD 645 Diesel Engines (2nd Generation)", "Soundtraxx",
		"66", "0",
		"1", 1,
		"decoder", "99",
		"", "pd1240853181.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[975] = new Element(
		975, "assets/thumb/em76842thumb.jpg",
		137, 76,
		"EM76842", "Austin FX3 London Taxi      Cat. No. EM76842",
		"Black Chrome Wheel Trim  MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd1237258908.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[976] = new Element(
		976, "assets/thumb/em76851thumb.jpg",
		137, 78,
		"EM76851", "Austin A30 2-Door Saloon     Cat. No. EM76851",
		"Off White/Red Roof  MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd173615658.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[977] = new Element(
		977, "assets/thumb/em76852thumb.jpg",
		137, 79,
		"EM76852", "Austin A35 4-Door Saloon      Cat. No. EM76852",
		"Green with overriders  MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd265520232.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[978] = new Element(
		978, "assets/thumb/em76857thumb.jpg",
		137, 81,
		"EM76857", "Austin A30 Countryman       Cat. No. EM76857",
		"Tintern Green  MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd-397631274.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[979] = new Element(
		979, "assets/thumb/em76860thumb.jpg",
		137, 90,
		"EM76860", "Austin A35 Countryman        Cat. No. EM76860",
		"Streamline Blue  MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd1049955060.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[980] = new Element(
		980, "assets/thumb/em76657thumb.jpg",
		137, 84,
		"EM76657", "Austin A30 Van      Cat. No. EM76657",
		"Grey    MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd318212507.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[981] = new Element(
		981, "assets/thumb/em76662thumb.jpg",
		137, 88,
		"EM76662", "Austin A30 Van       Cat. No. EM76662",
		"County Fire Service   MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd-1999792831.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[982] = new Element(
		982, "assets/thumb/em76663thumb.jpg",
		137, 79,
		"EM76663", "Austin A35 Van     Cat. No. EM76663",
		"RAC Radio Rescue      MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd-1909825193.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[983] = new Element(
		983, "assets/thumb/em76511thumb.jpg",
		137, 58,
		"EM76511", "Jen-Tug &amp; Flatbed Trailer  Cat. No. EM76511",
		"Sprake Coal &amp; Coke  MSRP £6.99", "Classix",
		"6.35", "0",
		"1", 1,
		"model", "8",
		"", "pd881828701.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[984] = new Element(
		984, "assets/thumb/kd17.jpg",
		137, 139,
		"KD17", "NEM 362 Short  Coupler  7.11 mm (9/32&quot;)",
		"Kadee #17 NEM 362 Short  Coupler  7.11 mm (9/32&quot;) Pack of 2 pairs", "Kadee",
		"4.25", "0",
		"1", 1,
		"pack", "147",
		"", "pd790350453.htm",
		"", 1,
		"KADEECOUP", "0",
		 0)
	
		Entry[985] = new Element(
		985, "assets/thumb/kd18.jpg",
		137, 132,
		"KD18", "NEM 362 Medium Coupler  8.63 mm (11/32&quot;)",
		"Kadee #18 NEM 362 Medium Coupler  8.63 mm (11/32&quot;) Pack of 2 pairs", "Kadee",
		"4.25", "0",
		"1", 1,
		"pack", "147",
		"", "pd2081810859.htm",
		"", 1,
		"KADEECOUP", "0",
		 0)
	
		Entry[986] = new Element(
		986, "assets/thumb/kd19.jpg",
		137, 129,
		"KD19", "NEM 362 Long Coupler 10.76 mm (27/64&quot;)",
		"Kadee #19 NEM 362 Long Coupler 10.76 mm (27/64&quot;) Pack of 2 pairs", "Kadee",
		"4.25", "0",
		"1", 1,
		"pack", "147",
		"", "pd-605998127.htm",
		"", 1,
		"KADEECOUP", "0",
		 0)
	
		Entry[987] = new Element(
		987, "assets/thumb/efe16324thumb.jpg",
		137, 56,
		"16324", "Bristol LS Bus  Cat. No. 16324",
		"Durham District Services", "EFE",
		"20.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-596702027.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[988] = new Element(
		988, "assets/thumb/efe23207thumb.jpg",
		137, 58,
		"23207", "AEC RF MkII Bus  Cat. No. 23207",
		"London Country NBC", "EFE",
		"20.4", "0",
		"1", 1,
		"model", "18",
		"", "pd1241090877.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[989] = new Element(
		989, "assets/thumb/efe24326thumb.jpg",
		137, 53,
		"24326", "BET Bus  Cat. No. 24326",
		"Hebble", "EFE",
		"20.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-103100135.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[990] = new Element(
		990, "assets/thumb/efe32205thumb.jpg",
		137, 48,
		"32205", "Bristol RELH Coach  Cat. No.32205",
		"United NBC", "EFE",
		"20.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-711199253.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[991] = new Element(
		991, "assets/thumb/r8994.jpg",
		137, 55,
		"R8994", "Tube load",
		"R8994 Tube load for use as a stand alone item or to fit into a Hornby Macaw Bogie Bolster wagon  MSRP £4.00", "Hornby",
		"3.75", "0",
		"1", 1,
		"pack", "139",
		"", "pd-1393828462.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[992] = new Element(
		992, "assets/thumb/r8996.jpg",
		137, 55,
		"R8996", "Track ballast load",
		"R8996 Track ballast load to fit into Hornby Seacow and Sealion Wagons  MSRP £4.99", "Hornby",
		"4.5", "0",
		"1", 1,
		"pack", "139",
		"", "pd-1938157116.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[993] = new Element(
		993, "assets/thumb/76daf01frthumb.jpg",
		137, 51,
		"76DAF01FR", "DAF FTGXF 105 Fridge",
		"McCulla - 1:76 scale  MSRP £17.60", "Oxford Diecast",
		"16.3", "0",
		"1", 1,
		"model", "21",
		"", "pd-498652751.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[994] = new Element(
		994, "assets/thumb/76ds002thumb.jpg",
		137, 62,
		"76DS002", "Daimler DS420 Hearse",
		"Black - 1:76 scale    MSRP £3.95", "Oxford Diecast",
		"3.5", "0",
		"1", 1,
		"model", "21",
		"", "pd1597098823.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[995] = new Element(
		995, "assets/thumb/hj5105.jpg",
		137, 28,
		"HJ5105", "IGA Cargowaggon with CORUS RAIL brand",
		"HJ5105  IGA Cargowaggon with CORUS RAIL brand MSRP £28.10", "Heljan",
		"28.1", "0",
		"1", 1,
		"wagon", "129",
		"", "pd-1352658393.htm",
		"", 1,
		"HJWAG", "0",
		 0)
	
		Entry[996] = new Element(
		996, "assets/thumb/hj5106.jpg",
		137, 29,
		"HJ5106", "4747 000 in ex-works CARGOWAGGON livery",
		"HJ5106  4747 000 in ex-works CARGOWAGGON livery  MSRP £28.10", "Heljan",
		"28.1", "0",
		"1", 1,
		"wagon", "129",
		"", "pd1241475420.htm",
		"", 1,
		"HJWAG", "0",
		 0)
	
		Entry[997] = new Element(
		997, "assets/thumb/lrbair.jpg",
		137, 171,
		"LR-BA-1-IR", "Block Animator – IR version",
		"Block Animator – IR version", "Logic Rail",
		"33.7", "0",
		"1", 1,
		"item", "150",
		"", "pd-1282103423.htm",
		"", 1,
		"LOGICRAIL", "0",
		 0)
	
		Entry[998] = new Element(
		998, "assets/thumb/gcp.jpg",
		137, 167,
		"LR-GCP-IR", "Grade Crossing Pro – IR version",
		"Grade Crossing Pro – IR version", "Logic Rail",
		"42.9", "0",
		"1", 1,
		"item", "150",
		"", "pd-465675875.htm",
		"", 1,
		"LOGICRAIL", "0",
		 0)
	
		Entry[999] = new Element(
		999, "assets/thumb/sa-1.jpg",
		137, 118,
		"LR-SA-1-IR", "Signal Animator – IR version",
		"Signal Animator – IR version ", "Logic Rail",
		"16.35", "0",
		"1", 1,
		"item", "150",
		"", "pd-814776744.htm",
		"", 1,
		"LOGICRAIL", "0",
		 0)
	
		Entry[1000] = new Element(
		1000, "assets/thumb/76MMT004thumb.jpg",
		137, 76,
		"76MMT004", "Morris Minor Traveller",
		"Wolverhampton Police - 1:76 scale    MSRP £2.95", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd1242728660.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1001] = new Element(
		1001, "assets/thumb/76as001thumb.jpg",
		137, 53,
		"76AS001", "Armstrong Siddeley Star Sapphire",
		"Black/Grey- 1:76 scale    MSRP £3.95", "Oxford Diecast",
		"3.25", "0",
		"1", 1,
		"model", "21",
		"", "pd-448492000.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1002] = new Element(
		1002, "assets/thumb/76ds001thumb.jpg",
		137, 55,
		"76DS001", "Daimler DS420 Limousine Wedding Car",
		"Old English White - 1:76 scale    MSRP £3.95", "Oxford Diecast",
		"3.4", "0",
		"1", 1,
		"model", "21",
		"", "pd121626668.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1003] = new Element(
		1003, "assets/thumb/76mms002thumb.jpg",
		137, 77,
		"76MMS002", "Morris Minor",
		"Cheshire Police - 1:76 scale    MSRP £3.50", "Oxford Diecast",
		"3.25", "0",
		"1", 1,
		"model", "21",
		"", "pd1327520388.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1004] = new Element(
		1004, "assets/thumb/76sr001thumb.jpg",
		137, 59,
		"76SR001", "Sunbeam Rapier MkIII",
		"Autumn Gold/Black - 1:76 scale    MSRP £3.50", "Oxford Diecast",
		"3.25", "0",
		"1", 1,
		"model", "21",
		"", "pd1320180432.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1005] = new Element(
		1005, "assets/thumb/76vwy002thumb.jpg",
		137, 77,
		"76VWY002", "Vauxhall Wyvern E Series",
		"Green - 1:76 scale  MSRP £3.50", "Oxford Diecast",
		"3.25", "0",
		"1", 1,
		"model", "21",
		"", "pd2075613148.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1006] = new Element(
		1006, "assets/thumb/76we007thumb.jpg",
		137, 88,
		"76WE007", "W &amp; E Milk Float",
		"Howards Dairies - 1:76 scale    MSRP £3.25", "Oxford Diecast",
		"3", "0",
		"1", 1,
		"model", "21",
		"", "pd583310760.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1007] = new Element(
		1007, "assets/thumb/76ZEP001thumb.jpg",
		137, 67,
		"76ZEP001", "Ford Zephyr",
		"Pale Green - 1:76 scale  MSRP £3.50", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd538991638.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1008] = new Element(
		1008, "assets/thumb/76ZEP006thumb.jpg",
		137, 51,
		"76ZEP006", "Ford Zephyr",
		"Ambassador Blue - 1:76 scale  MSRP £3.50", "Oxford Diecast",
		"3.25", "0",
		"1", 1,
		"model", "21",
		"", "pd1716795444.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1009] = new Element(
		1009, "assets/thumb/em76633thumb.jpg",
		137, 90,
		"EM76633", "Morris Minor Pickup  Cat. No. EM76633",
		"Green plus tonneau", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd1242997481.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1010] = new Element(
		1010, "assets/thumb/kd20.jpg",
		137, 134,
		"KD20", "NEM 362 Extra Long Coupler 11.68mm (29/64&quot;)",
		"Kadee #20 NEM 362 Extra Long Coupler 11.68mm (.460&quot;)   Pack of 2 pairs", "Kadee",
		"4.25", "0",
		"1", 1,
		"pack", "147",
		"", "pd1243276335.htm",
		"", 1,
		"KADEECOUP", "0",
		 0)
	
		Entry[1011] = new Element(
		1011, "assets/thumb/r6469thumb.jpg",
		137, 54,
		"R6470", "OTA Timber Carrier 5",
		"R6470 OTA Timber Carrier 5  MSRP £16.49", "Hornby",
		"12.5", "0",
		"1", 1,
		"wagon", "134",
		"", "pd1242480433.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[1012] = new Element(
		1012, "assets/thumb/r6469thumb.jpg",
		137, 54,
		"R6471", "OTA Timber Carrier 6",
		"R6471 OTA Timber Carrier 6  MSRP £16.49", "Hornby",
		"12.5", "0",
		"1", 1,
		"wagon", "134",
		"", "pd191454407.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[1013] = new Element(
		1013, "assets/thumb/76105003.jpg",
		137, 82,
		"76105003", "Anglia 105E",
		"Police Panda - 1:76 scale    MSRP£2.95", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd-1982591451.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1014] = new Element(
		1014, "assets/thumb/om45508thumb.jpg",
		137, 71,
		"OM45508B", "BMMO C5 Motorway Coach   Cat. No. OM45508",
		"Midland Red - Destination Birmingham   MSRP £26.99", "Corgi",
		"26", "0",
		"1", 1,
		"model", "12",
		"", "pd979935094.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[1015] = new Element(
		1015, "assets/thumb/em76643thumb.jpg",
		137, 88,
		"EM76643", "Morris J Van     Cat. No. EM76643",
		"BRS Parcels Services   MSRP £3.99", "Classix",
		"3.5", "0",
		"1", 1,
		"model", "8",
		"", "pd1243768008.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1016] = new Element(
		1016, "assets/thumb/em76668thumb.jpg",
		137, 76,
		"EM76668", "Austin A35 Van     Cat. No. EM76668",
		"Telephone Engineer     MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd-667569836.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1017] = new Element(
		1017, "assets/thumb/em76673thumb.jpg",
		137, 103,
		"EM76673", "NCB Electric High Top Van   Cat. No. EM76673",
		"Sketchley Dyers &amp; Finishers  MSRP £4.99", "Classix",
		"4.5", "0",
		"1", 1,
		"model", "8",
		"", "pd-160643166.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1018] = new Element(
		1018, "assets/thumb/em76846thumb.jpg",
		137, 74,
		"EM76846", "Austin FL1 Hackney Carriage     Cat. No. EM76846",
		"Black     MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd347029152.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1019] = new Element(
		1019, "assets/thumb/em76849thumb.jpg",
		137, 79,
		"EM76849", "Austin A30 2-Door Saloon     Cat. No. EM76849",
		"Chelsea Grey   MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd868795854.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1020] = new Element(
		1020, "assets/thumb/em76850thumb.jpg",
		137, 78,
		"EM76850", "Austin A30 4-Door Saloon     Cat. No. EM76850",
		"Black    MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd-1346725716.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1021] = new Element(
		1021, "assets/thumb/em76861thumb.jpg",
		137, 78,
		"EM76861", "Austin A35 Countryman    Cat. No. EM76861",
		"Maroon   MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd1135872888.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1022] = new Element(
		1022, "assets/thumb/efe36702thumb.jpg",
		137, 49,
		"36702", "Plaxton SLF Dart MkII 1 door  Cat. No. 36702",
		"First Western National", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd618818957.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1023] = new Element(
		1023, "assets/thumb/efe36701thumb.jpg",
		137, 46,
		"36701", "Plaxton SLF MkII Dart 1 door  Cat. No. 36701",
		"Bus Eireann", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd1246656789.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1024] = new Element(
		1024, "assets/thumb/efe23709thumb.jpg",
		137, 78,
		"23709", "Alexander Fleetline  Cat. No. 23709",
		"Glasgow Corporation", "EFE",
		"20.4", "0",
		"1", 1,
		"model", "18",
		"", "pd1449225223.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1025] = new Element(
		1025, "assets/thumb/efe22717thumb.jpg",
		137, 49,
		"22717", "Alexander Y Type  Cat. No. 22717",
		"Fife Scottish", "EFE",
		"20.4", "0",
		"1", 1,
		"model", "18",
		"", "pd781105483.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1026] = new Element(
		1026, "assets/thumb/efe99623thumb.jpg",
		69, 122,
		"99623-1", "Telephone box",
		"1:76 OO Scale", "EFE",
		"4.3", "0",
		"1", 1,
		"pack", "19",
		"", "pd1247152478.htm",
		"", 1,
		"Gilbow", "0",
		 0)
	
		Entry[1027] = new Element(
		1027, "assets/thumb/fflightboardthumb.jpg",
		137, 105,
		"H-DCM-FFSTRIP", "Flicker Free Lighting Strip",
		"Flicker Free Lighting Strip - 10 pack", "DCC Concepts",
		"16.5", "0",
		"1", 1,
		"item", "25",
		"", "pd1247648472.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[1028] = new Element(
		1028, "assets/images/nopicturegreen.jpg",
		133, 46,
		"DUH11110", "Stacked timber",
		"", "Duha",
		"8.15", "0",
		"1", 1,
		"item", "122",
		"", "pd1627497502.htm",
		"", 1,
		"DUHA", "0",
		 0)
	
		Entry[1029] = new Element(
		1029, "assets/images/nopicturegreen.jpg",
		133, 46,
		"DUH11112", "Stacked wood small",
		"", "Duha",
		"4.5", "0",
		"1", 1,
		"item", "122",
		"", "pd-237117572.htm",
		"", 1,
		"DUHA", "0",
		 0)
	
		Entry[1030] = new Element(
		1030, "assets/thumb/duha11140.jpg",
		137, 103,
		"DUH11140", "Short logs",
		"", "Duha",
		"4.5", "0",
		"1", 1,
		"item", "122",
		"", "pd-1039905244.htm",
		"", 1,
		"DUHA", "0",
		 0)
	
		Entry[1031] = new Element(
		1031, "assets/thumb/duha11143-C.jpg",
		137, 103,
		"DUH11143/C", "Tree trunks 185mm long",
		"", "Duha",
		"7.4", "0",
		"1", 1,
		"item", "122",
		"", "pd-745782774.htm",
		"", 1,
		"DUHA", "0",
		 0)
	
		Entry[1032] = new Element(
		1032, "assets/thumb/duha11174.jpg",
		137, 103,
		"DUH11174", "5 Pallets",
		"", "Duha",
		"5.6", "0",
		"1", 1,
		"item", "122",
		"", "pd435806122.htm",
		"", 1,
		"DUHA", "0",
		 0)
	
		Entry[1033] = new Element(
		1033, "assets/images/nopicturegreen.jpg",
		133, 46,
		"DUH11207", "Stacked half length metal pipes 93x400mm",
		"", "Duha",
		"5.1", "0",
		"1", 1,
		"pack", "122",
		"", "pd-1129766974.htm",
		"", 1,
		"DUHA", "0",
		 0)
	
		Entry[1034] = new Element(
		1034, "assets/thumb/duha11212.jpg",
		137, 89,
		"DUH11212", "Industrial chimney with ladder",
		"", "Duha",
		"23.5", "0",
		"1", 1,
		"pack", "122",
		"", "pd-285221048.htm",
		"", 1,
		"DUHA", "0",
		 0)
	
		Entry[1035] = new Element(
		1035, "assets/thumb/duha11218.jpg",
		137, 89,
		"DUH11218", "Large and small rusty pipes",
		"", "Duha",
		"11.2", "0",
		"1", 1,
		"pack", "122",
		"", "pd-2012662296.htm",
		"", 1,
		"DUHA", "0",
		 0)
	
		Entry[1036] = new Element(
		1036, "assets/images/nopicturegreen.jpg",
		133, 46,
		"DUH11221", "Coiled steel netting",
		"", "Duha",
		"9.7", "0",
		"1", 1,
		"pack", "122",
		"", "pd1379914688.htm",
		"", 1,
		"DUHA", "0",
		 0)
	
		Entry[1037] = new Element(
		1037, "assets/images/nopicturegreen.jpg",
		133, 46,
		"DUH11222", "Coiled metal sheet",
		"", "Duha",
		"8.7", "0",
		"1", 1,
		"pack", "122",
		"", "pd-1623993388.htm",
		"", 1,
		"DUHA", "0",
		 0)
	
		Entry[1038] = new Element(
		1038, "assets/images/nopicturegreen.jpg",
		133, 46,
		"DUH11223", "4 x strip steel rolls 116x29x7mm",
		"", "Duha",
		"11.2", "0",
		"1", 1,
		"pack", "122",
		"", "pd-611340714.htm",
		"", 1,
		"DUHA", "0",
		 0)
	
		Entry[1039] = new Element(
		1039, "assets/thumb/duha11224.jpg",
		137, 87,
		"DUH11224", "5 rolled metal sheets",
		"", "Duha",
		"15.8", "0",
		"1", 1,
		"pack", "122",
		"", "pd-1181428620.htm",
		"", 1,
		"DUHA", "0",
		 0)
	
		Entry[1040] = new Element(
		1040, "assets/thumb/duha11225.jpg",
		137, 81,
		"DUH11225", "4 rolled steel sheet under plastic cover",
		"", "Duha",
		"18.9", "0",
		"1", 1,
		"pack", "122",
		"", "pd-1907249630.htm",
		"", 1,
		"DUHA", "0",
		 0)
	
		Entry[1041] = new Element(
		1041, "assets/thumb/duha11226.jpg",
		137, 89,
		"DUH11226", "Steel U profile",
		"", "Duha",
		"15.3", "0",
		"1", 1,
		"pack", "122",
		"", "pd-1648899984.htm",
		"", 1,
		"DUHA", "0",
		 0)
	
		Entry[1042] = new Element(
		1042, "assets/thumb/duha11324.JPG",
		137, 103,
		"DUH11324", "Red pipes with flanges 2 stacks 68x30x17mm",
		"", "Duha",
		"11.2", "0",
		"1", 1,
		"pack", "122",
		"", "pd1662771182.htm",
		"", 1,
		"DUHA", "0",
		 0)
	
		Entry[1043] = new Element(
		1043, "assets/thumb/duha11405.JPG",
		137, 103,
		"DUH11405", "Pipes with flanges and rust 295 x 110mm",
		"", "Duha",
		"9.7", "0",
		"1", 1,
		"pack", "122",
		"", "pd-1459109940.htm",
		"", 1,
		"DUHA", "0",
		 0)
	
		Entry[1044] = new Element(
		1044, "assets/thumb/duha11438.JPG",
		137, 103,
		"DUH11438", "Cement Load on pallet",
		"", "Duha",
		"4.5", "0",
		"1", 1,
		"pack", "122",
		"", "pd1053842138.htm",
		"", 1,
		"DUHA", "0",
		 0)
	
		Entry[1045] = new Element(
		1045, "assets/images/nopicturegreen.jpg",
		133, 46,
		"DUH11472", "Pile of beams printed HSS 28x57x16",
		"", "Duha",
		"6.1", "0",
		"1", 1,
		"pack", "122",
		"", "pd1047038240.htm",
		"", 1,
		"DUHA", "0",
		 0)
	
		Entry[1046] = new Element(
		1046, "assets/images/nopicturegreen.jpg",
		133, 46,
		"DUH11473", "Pile of boards 29x34x8mm",
		"", "Duha",
		"4.5", "0",
		"1", 1,
		"pack", "122",
		"", "pd-1606753128.htm",
		"", 1,
		"DUHA", "0",
		 0)
	
		Entry[1047] = new Element(
		1047, "assets/images/nopicturegreen.jpg",
		133, 46,
		"DUH11473/A", "Pile of boards 14x34x9mm",
		"", "Duha",
		"3", "0",
		"1", 1,
		"pack", "122",
		"", "pd644725894.htm",
		"", 1,
		"DUHA", "0",
		 0)
	
		Entry[1048] = new Element(
		1048, "assets/thumb/efe16222thumb.jpg",
		137, 59,
		"16222", "Bristol LS Coach  Cat. No. 16222",
		"Eastern Counties", "EFE",
		"20.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-793262187.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1049] = new Element(
		1049, "assets/thumb/efe16323dlthumb.jpg",
		137, 59,
		"16323DL", "Bristol LS Bus  Cat. No. 16323DL",
		"Greenline", "EFE",
		"20.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-150819893.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1050] = new Element(
		1050, "assets/thumb/efe28906thumb.jpg",
		137, 74,
		"28906", "GM Standard Atlantean  Cat. No. 28906",
		"London &amp; Country", "EFE",
		"20.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-222897969.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1051] = new Element(
		1051, "assets/thumb/efe34903thumb.jpg",
		137, 72,
		"34903", "Leyland Olympian Coach  Cat. No. 34903",
		"Eastern National", "EFE",
		"20.4", "0",
		"1", 1,
		"model", "18",
		"", "pd401604089.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1052] = new Element(
		1052, "assets/thumb/efe36601thumb.jpg",
		137, 50,
		"36601", "Plaxton SLF MkII Dart 2 door  Cat. No. 36601",
		"Transdev", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd1244123539.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1053] = new Element(
		1053, "assets/thumb/efe99600thumb.jpg",
		137, 55,
		"99600", "Cable drums",
		"Set of 3 cable drums 1:76 OO Scale", "EFE",
		"1.5", "0",
		"1", 1,
		"pack", "32",
		"", "pd1424457449.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[1054] = new Element(
		1054, "assets/thumb/efe99603thumb.jpg",
		137, 58,
		"99603", "Stacks of timber",
		"Set of 3 timber stacks  1:76 OO Scale", "EFE",
		"1.5", "0",
		"1", 1,
		"pack", "32",
		"", "pd605029183.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[1055] = new Element(
		1055, "assets/thumb/efe99604thumb.jpg",
		137, 46,
		"99604", "Stacks of bricks",
		"Set of 3 brick stacks  1:76 OO Scale", "EFE",
		"1.5", "0",
		"1", 1,
		"pack", "32",
		"", "pd1447081861.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[1056] = new Element(
		1056, "assets/thumb/efe99612thumb.jpg",
		137, 56,
		"99612", "Milk churns",
		"Set of 3 rows of milk crates  1:76 OO Scale", "EFE",
		"2.5", "0",
		"1", 1,
		"pack", "32",
		"", "pd1982258491.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[1057] = new Element(
		1057, "assets/thumb/efe99613thumb.jpg",
		137, 71,
		"99613", "Large sacks",
		"Set of 4 rows of large sacks  1:76 OO Scale", "EFE",
		"2.5", "0",
		"1", 1,
		"pack", "32",
		"", "pd-1970826783.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[1058] = new Element(
		1058, "assets/thumb/efe99614thumb.jpg",
		137, 56,
		"99614", "Small sacks",
		"Set of 5 rows of small sacks  1:76 OO Scale", "EFE",
		"2.5", "0",
		"1", 1,
		"pack", "32",
		"", "pd1676881655.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[1059] = new Element(
		1059, "assets/thumb/efe99615thumb.jpg",
		137, 57,
		"99615", "Wooden pallets",
		"Set of 4 wooden pallets  1:76 OO Scale", "EFE",
		"2.5", "0",
		"1", 1,
		"pack", "32",
		"", "pd-483939843.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[1060] = new Element(
		1060, "assets/thumb/efe99616thumb.jpg",
		137, 120,
		"99616", "Cement bags",
		"Set of 4 blocks of cement bags  1:76 OO Scale", "EFE",
		"2.5", "0",
		"1", 1,
		"pack", "32",
		"", "pd-1011223437.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[1061] = new Element(
		1061, "assets/thumb/efe99617thumb.jpg",
		137, 175,
		"99617", "Layers of bricks",
		"Set of 5 brick layers  1:76 OO Scale", "EFE",
		"2.5", "0",
		"1", 1,
		"pack", "32",
		"", "pd-1067557927.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[1062] = new Element(
		1062, "assets/thumb/efe99619thumb.jpg",
		137, 147,
		"99619", "Bus Stops",
		"Set of 3 bus stops  1:76 OO Scale", "EFE",
		"4", "0",
		"1", 1,
		"pack", "32",
		"", "pd1244193487.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[1063] = new Element(
		1063, "assets/thumb/efe99620thumb.jpg",
		137, 108,
		"99620", "RSJ Girders - 2 lengths",
		"Set of 2 of each length  1:76 OO Scale", "EFE",
		"2.75", "0",
		"1", 1,
		"pack", "32",
		"", "pd241230229.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[1064] = new Element(
		1064, "assets/thumb/efe99621thumb.jpg",
		59, 134,
		"99621", "Escalator set",
		"Set of 2 escalators  1:76 OO Scale", "EFE",
		"3.5", "0",
		"1", 1,
		"pack", "32",
		"", "pd-805743157.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[1065] = new Element(
		1065, "assets/thumb/efe99622thumb.jpg",
		137, 87,
		"99622", "Station seat and decal",
		"Set of 2 seats  1:76 OO Scale", "EFE",
		"4.3", "0",
		"1", 1,
		"pack", "32",
		"", "pd1027538161.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[1066] = new Element(
		1066, "assets/thumb/efe99623thumb.jpg",
		69, 122,
		"99623", "Telephone box",
		"1:76 OO Scale", "EFE",
		"4.3", "0",
		"1", 1,
		"pack", "32",
		"", "pd1678954631.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[1067] = new Element(
		1067, "assets/thumb/btrir4.jpg",
		137, 174,
		"LR-BTR-IR4", "Between the Rails IT Components",
		"Between the Rails IT Components - 4 pairs", "Logic Rail",
		"16.35", "0",
		"1", 1,
		"item", "150",
		"", "pd-244029939.htm",
		"", 1,
		"LOGICRAIL", "0",
		 0)
	
		Entry[1068] = new Element(
		1068, "assets/thumb/btrir4.jpg",
		137, 174,
		"LR-BTR-IR1", "Between the Rails IT Components",
		"Between the Rails IT Components - 1 pair", "Logic Rail",
		"4", "0",
		"1", 1,
		"item", "150",
		"", "pd965955331.htm",
		"", 1,
		"LOGICRAIL", "0",
		 0)
	
		Entry[1069] = new Element(
		1069, "assets/thumb/BlockMaster.gif",
		137, 169,
		"LR-1000", "Blockmaster",
		"", "Logic Rail",
		"62.3", "0",
		"1", 1,
		"item", "150",
		"", "pd2009037033.htm",
		"", 1,
		"LOGICRAIL", "0",
		 0)
	
		Entry[1070] = new Element(
		1070, "assets/thumb/stx826121.jpg",
		137, 119,
		"STX826121", "Tsunami Southern Steam",
		"TSU-1000 Tsunami Southern Steam", "Soundtraxx",
		"77", "0",
		"1", 1,
		"decoder", "99",
		"", "pd1245928329.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[1071] = new Element(
		1071, "assets/thumb/148nmm030thumb.jpg",
		137, 70,
		"148NMM030", "Morris 1000 Van",
		"BR Yellow - 1:148 scale    MSRP£2.45", "Oxford Diecast",
		"2.25", "0",
		"1", 1,
		"model", "22",
		"", "pd-1043484449.htm",
		"", 1,
		"OXN", "0",
		 0)
	
		Entry[1072] = new Element(
		1072, "assets/thumb/148n105003thumb.jpg",
		137, 78,
		"148N105003", "Ford Anglia",
		"Police Panda - 1:148 scale    MSRP£2.45", "Oxford Diecast",
		"2.25", "0",
		"1", 1,
		"model", "22",
		"", "pd-1520919003.htm",
		"", 1,
		"OXN", "0",
		 0)
	
		Entry[1073] = new Element(
		1073, "assets/thumb/148nss001thumb.jpg",
		137, 49,
		"148NSS001", "Humber Super Snipe",
		"Green - 1:148 scale    MSRP£2.45", "Oxford Diecast",
		"2.25", "0",
		"1", 1,
		"model", "22",
		"", "pd82289883.htm",
		"", 1,
		"OXN", "0",
		 0)
	
		Entry[1074] = new Element(
		1074, "assets/thumb/btod58.jpg",
		137, 37,
		"BTOD58", "Commer Low Loader     Cat. No. BTOD58",
		"Pickfords   MSRP £5.99", "Base Toys",
		"5.85", "0",
		"1", 1,
		"model", "6",
		"", "pd-1115676031.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1075] = new Element(
		1075, "assets/thumb/btod59.jpg",
		137, 68,
		"BTOD59", "Leyland Beaver Flatbed     Cat. No. BTOD59",
		"BRS Parcels   MSRP £5.99", "Base Toys",
		"5.85", "0",
		"1", 1,
		"model", "6",
		"", "pd-1729318761.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1076] = new Element(
		1076, "assets/thumb/btod60.jpg",
		137, 51,
		"BTOD60", "Karrier Bantam Artic Flatbed     Cat. No. BTOD60",
		"British Railways   MSRP £5.99", "Base Toys",
		"5.85", "0",
		"1", 1,
		"model", "6",
		"", "pd-189823843.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1077] = new Element(
		1077, "assets/thumb/btod61thumb.jpg",
		137, 73,
		"BTOD61", "Albion Tanker     Cat. No. BTOD61",
		"Pickfords   MSRP £5.99", "Base Toys",
		"5.85", "0",
		"1", 1,
		"model", "6",
		"", "pd532402195.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1078] = new Element(
		1078, "assets/thumb/btod62.jpg",
		137, 78,
		"BTOD62", "Karrier Bantam Artic Van     Cat. No. BTOD62",
		"British Rail   MSRP £5.99", "Base Toys",
		"5.85", "0",
		"1", 1,
		"model", "6",
		"", "pd-2008145799.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1079] = new Element(
		1079, "assets/thumb/btod63.jpg",
		137, 51,
		"BTOD63", "Karrier Bantam Artic Dropside     Cat. No. BTOD63",
		"British Railways   MSRP £5.99", "Base Toys",
		"5.85", "0",
		"1", 1,
		"model", "6",
		"", "pd-755253425.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1080] = new Element(
		1080, "assets/thumb/btod64.jpg",
		137, 92,
		"BTOD64", "Leyland FG Van     Cat. No. BTOD64",
		"Kosset Carpets   MSRP £5.99", "Base Toys",
		"5.85", "0",
		"1", 1,
		"model", "6",
		"", "pd-103738859.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1081] = new Element(
		1081, "assets/thumb/btod65.jpg",
		137, 82,
		"BTOD65", "Albion Milk Tanker     Cat. No. BTOD65",
		"Bulwark Transport   MSRP £5.99", "Base Toys",
		"5.85", "0",
		"1", 1,
		"model", "6",
		"", "pd236386891.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1082] = new Element(
		1082, "assets/thumb/efe99622thumb.jpg",
		137, 87,
		"99622-1", "Station seat and decal",
		"Set of 2 seats  1:76 OO Scale", "EFE",
		"4.3", "0",
		"1", 1,
		"pack", "19",
		"", "pd-965359940.htm",
		"", 1,
		"Gilbow", "0",
		 0)
	
		Entry[1083] = new Element(
		1083, "assets/thumb/efe99621thumb.jpg",
		59, 134,
		"99621-1", "Escalator set",
		"Set of 2 escalators  1:76 OO Scale", "EFE",
		"3.5", "0",
		"1", 1,
		"pack", "19",
		"", "pd-1931773110.htm",
		"", 1,
		"Gilbow", "0",
		 0)
	
		Entry[1084] = new Element(
		1084, "assets/thumb/efe99620thumb.jpg",
		137, 108,
		"99620-1", "RSJ Girders - 2 lengths",
		"Set of 2 of each length  1:76 OO Scale", "EFE",
		"2.75", "0",
		"1", 1,
		"pack", "19",
		"", "pd-1998669176.htm",
		"", 1,
		"Gilbow", "0",
		 0)
	
		Entry[1085] = new Element(
		1085, "assets/thumb/efe99619thumb.jpg",
		137, 147,
		"99619-1", "Bus Stops",
		"Set of 3 bus stops  1:76 OO Scale", "EFE",
		"4", "0",
		"1", 1,
		"pack", "19",
		"", "pd-352369674.htm",
		"", 1,
		"Gilbow", "0",
		 0)
	
		Entry[1086] = new Element(
		1086, "assets/thumb/efe99617thumb.jpg",
		137, 175,
		"99617-1", "Layers of bricks",
		"Set of 5 brick layers  1:76 OO Scale", "EFE",
		"2.5", "0",
		"1", 1,
		"pack", "19",
		"", "pd1665814370.htm",
		"", 1,
		"Gilbow", "0",
		 0)
	
		Entry[1087] = new Element(
		1087, "assets/thumb/efe99616thumb.jpg",
		137, 120,
		"99616-1", "Cement bags",
		"Set of 4 blocks of cement bags  1:76 OO Scale", "EFE",
		"2.5", "0",
		"1", 1,
		"pack", "19",
		"", "pd1554975840.htm",
		"", 1,
		"Gilbow", "0",
		 0)
	
		Entry[1088] = new Element(
		1088, "assets/thumb/efe99615thumb.jpg",
		137, 57,
		"99615-1", "Wooden pallets",
		"Set of 4 wooden pallets  1:76 OO Scale", "EFE",
		"2.5", "0",
		"1", 1,
		"pack", "19",
		"", "pd168577422.htm",
		"", 1,
		"Gilbow", "0",
		 0)
	
		Entry[1089] = new Element(
		1089, "assets/thumb/efe99614thumb.jpg",
		137, 56,
		"99614-1", "Small sacks",
		"Set of 5 rows of small sacks  1:76 OO Scale", "EFE",
		"2.5", "0",
		"1", 1,
		"pack", "19",
		"", "pd-2080325012.htm",
		"", 1,
		"Gilbow", "0",
		 0)
	
		Entry[1090] = new Element(
		1090, "assets/thumb/efe99613thumb.jpg",
		137, 71,
		"99613-1", "Large sacks",
		"Set of 4 rows of large sacks  1:76 OO Scale", "EFE",
		"2.5", "0",
		"1", 1,
		"pack", "19",
		"", "pd1766301306.htm",
		"", 1,
		"Gilbow", "0",
		 0)
	
		Entry[1091] = new Element(
		1091, "assets/thumb/efe99612thumb.jpg",
		137, 56,
		"99612-1", "Milk churns",
		"Set of 3 rows of milk crates  1:76 OO Scale", "EFE",
		"2.5", "0",
		"1", 1,
		"pack", "19",
		"", "pd-1942073032.htm",
		"", 1,
		"Gilbow", "0",
		 0)
	
		Entry[1092] = new Element(
		1092, "assets/thumb/dccmsloucthumb.jpg",
		137, 360,
		"H-MSL-OU", "4mm Oil station/yard lamp",
		"Pack of 3 Undercoated station/yard oil lamps", "DCC Concepts",
		"35", "0",
		"1", 1,
		"pack", "33",
		"", "pd-994776957.htm",
		"", 1,
		"STATION", "0",
		 0)
	
		Entry[1093] = new Element(
		1093, "assets/thumb/dccmslosrbrthumb.jpg",
		137, 321,
		"H-MSL-OSRBR", "4mm Oil station/yard lamp",
		"Pack of 3 x SR/BR oil lamps for station or yard", "DCC Concepts",
		"35", "0",
		"1", 1,
		"pack", "33",
		"", "pd-227496343.htm",
		"", 1,
		"STATION", "0",
		 0)
	
		Entry[1094] = new Element(
		1094, "assets/thumb/dccmslolmsthumb.jpg",
		137, 293,
		"H-MSL-OLMS", "4mm Oil station/yard lamp",
		"Pack of 3 x LMS oil lamps for station or yard", "DCC Concepts",
		"35", "0",
		"1", 1,
		"pack", "33",
		"", "pd1627214343.htm",
		"", 1,
		"STATION", "0",
		 0)
	
		Entry[1095] = new Element(
		1095, "assets/thumb/dccmslogwrthumb.jpg",
		137, 310,
		"H-MSL-OGWR", "4mm Oil station/yard lamp",
		"Pack of 3 x GWR oil lamps for station or yard", "DCC Concepts",
		"35", "0",
		"1", 1,
		"pack", "33",
		"", "pd1102627725.htm",
		"", 1,
		"STATION", "0",
		 0)
	
		Entry[1096] = new Element(
		1096, "assets/thumb/dccmslgucthumb.jpg",
		137, 310,
		"H-MSL-GU", "4mm Gas Station lamp",
		"Pack of 3 x Undercoated gas station lamps", "DCC Concepts",
		"35", "0",
		"1", 1,
		"pack", "33",
		"", "pd-445235381.htm",
		"", 1,
		"STATION", "0",
		 0)
	
		Entry[1097] = new Element(
		1097, "assets/thumb/dccmslgsrbrthumb.jpg",
		137, 313,
		"H-MSL-GSRBR", "4mm Gas Station lamp",
		"Pack of 3 x SR/BR gas station lamps", "DCC Concepts",
		"35", "0",
		"1", 1,
		"pack", "33",
		"", "pd-587464079.htm",
		"", 1,
		"STATION", "0",
		 0)
	
		Entry[1098] = new Element(
		1098, "assets/thumb/dccmslglmsthumb.jpg",
		137, 296,
		"H-MSL-GLMS", "4mm Gas Station lamp",
		"Pack of 3 x LMS gas station lamps", "DCC Concepts",
		"35", "0",
		"1", 1,
		"pack", "33",
		"", "pd-454446001.htm",
		"", 1,
		"STATION", "0",
		 0)
	
		Entry[1099] = new Element(
		1099, "assets/thumb/dccmslggwrthumb.jpg",
		137, 311,
		"H-MSL-GGWR", "4mm Gas Station lamp",
		"Pack of 3 x GWR gas station lamps", "DCC Concepts",
		"35", "0",
		"1", 1,
		"pack", "33",
		"", "pd1336151829.htm",
		"", 1,
		"STATION", "0",
		 0)
	
		Entry[1100] = new Element(
		1100, "assets/thumb/efe20639thumb.jpg",
		137, 47,
		"20639", "Plaxton Pointer Dart  Cat. No. 20639",
		"North Western Premier", "EFE",
		"20.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-33884310.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1101] = new Element(
		1101, "assets/thumb/efe32402thumb.jpg",
		137, 48,
		"32402", "Bristol RELH Coach  Cat. No. 32402",
		"Bristol Greyhound", "EFE",
		"22", "0",
		"1", 1,
		"model", "18",
		"", "pd135730088.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1102] = new Element(
		1102, "assets/thumb/148nob005thumb.jpg",
		137, 66,
		"148NOB005", "Bedford OB",
		"Macbraynes - 1:148 scale    MSRP£3.95", "Oxford Diecast",
		"3.6", "0",
		"1", 1,
		"model", "22",
		"", "pd1250764936.htm",
		"", 1,
		"OXN", "0",
		 0)
	
		Entry[1103] = new Element(
		1103, "assets/thumb/148nfx4002thumb.jpg",
		137, 67,
		"148NFX4002", "FX4 Taxi",
		"Black - Evening News - 1:148 scale    MSRP£2.50", "Oxford Diecast",
		"2.25", "0",
		"1", 1,
		"model", "22",
		"", "pd-1236573706.htm",
		"", 1,
		"OXN", "0",
		 0)
	
		Entry[1104] = new Element(
		1104, "assets/thumb/om49801thumb.jpg",
		137, 89,
		"OM49801", "Alexander Dennis Enviro 400  Cat. No. OM49801",
		"London Olympics 2012", "Corgi",
		"27.6", "0",
		"1", 1,
		"model", "12",
		"", "pd1252936275.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[1105] = new Element(
		1105, "assets/thumb/locolampredthumb.jpg",
		116, 80,
		"H-DML-LLBRR", "Loco lamp Red",
		"Pack of 6 x BR/LMS red loco lamps", "DCC Concepts",
		"32.7", "0",
		"1", 1,
		"pack", "25",
		"", "pd674939331.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[1106] = new Element(
		1106, "assets/thumb/mx640.gif",
		137, 86,
		"MX640", "OO/HO 6 function sound decoder, wires only",
		"MX640 OO/HO 6 function sound decoder, wires only", "Zimo",
		"75.6", "0",
		"1", 1,
		"decoder", "115",
		"", "pd1761775125.htm",
		"", 1,
		"ZIMODEC", "0",
		 0)
	
		Entry[1107] = new Element(
		1107, "assets/thumb/hj3383thumb.jpg",
		137, 77,
		"HJ3383", "Class 33/0 - 33045 in BR blue with full yellow ends",
		"HJ3383 Class 33/0 - 33045 in BR blue with full yellow ends  DCC Ready  MSRP £89.00", "Heljan",
		"76.6", "0",
		"1", 1,
		"loco", "128",
		"", "pd-1822183900.htm",
		"", 1,
		"HJLOCOS", "0",
		 0)
	
		Entry[1108] = new Element(
		1108, "assets/thumb/hj2302thumb.jpg",
		137, 44,
		"HJ2302", "Class 23 - Baby Deltic D5908 green large yellow end with arrows",
		"HJ2302 Class 23 - Baby Deltic D5908 green with large yellow end with arrows  DCC Ready  MSRP £119.95", "Heljan",
		"98", "0",
		"1", 1,
		"loco", "128",
		"", "pd1666727918.htm",
		"", 1,
		"HJLOCOS", "0",
		 0)
	
		Entry[1109] = new Element(
		1109, "assets/thumb/hj2301thumb.jpg",
		137, 43,
		"HJ2301", "Class 23 - Baby Deltic D5903 green large yellow ends",
		"HJ2301 Class 23 - Baby Deltic D5903 with green large yellow ends  DCC Ready   MSRP £119.95", "Heljan",
		"98", "0",
		"1", 1,
		"loco", "128",
		"", "pd-457362496.htm",
		"", 1,
		"HJLOCOS", "0",
		 0)
	
		Entry[1110] = new Element(
		1110, "assets/thumb/dp5installed.jpg",
		137, 119,
		"DP5", "DP5 - 5 function decoder",
		"DP5 - Plug and Play, 5 function, full-featured, BEMF decoder for HO-Scale locomotives", "TCS",
		"22.75", "0",
		"1", 1,
		"decoder", "102",
		"", "pd1271150095.htm",
		"", 1,
		"TCSDCC", "0",
		 0)
	
		Entry[1111] = new Element(
		1111, "assets/thumb/hcb1thumb.jpg",
		137, 129,
		"H-DCP-CB12-1", "Cobalt Point Motor - 12-pack",
		"", "DCC Concepts",
		"205", "0",
		"1", 1,
		"pack", "35",
		"", "pd1287393000.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[1112] = new Element(
		1112, "assets/thumb/hcb1thumb.jpg",
		137, 129,
		"H-DCP-CB6-1", "Cobalt Point Motor - 6-pack",
		"", "DCC Concepts",
		"104", "0",
		"1", 1,
		"pack", "35",
		"", "pd-859689130.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[1113] = new Element(
		1113, "assets/thumb/hcmcthumb.jpg",
		137, 86,
		"H-DCP-CMC-1", "Cobalt Added Value Pack",
		"", "DCC Concepts",
		"20.75", "0",
		"1", 1,
		"pack", "35",
		"", "pd2096053620.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[1114] = new Element(
		1114, "assets/images/nopicturegreen.jpg",
		133, 46,
		"H-DCP-CMK-1", "Cobalt Key Parts Pack",
		"", "DCC Concepts",
		"8.7", "0",
		"1", 1,
		"pack", "35",
		"", "pd1225633986.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[1115] = new Element(
		1115, "assets/thumb/hcmlthumb.jpg",
		137, 38,
		"H-DCP-CML-1", "Cobalt Ballast Label Pack",
		"", "DCC Concepts",
		"13.5", "0",
		"1", 1,
		"pack", "35",
		"", "pd-94712640.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[1116] = new Element(
		1116, "assets/thumb/dcp-cmsc.jpg",
		137, 138,
		"H-DCP-CMSC-R", "Cobalt Switch Pack (Panel Mountings)",
		"Red LEDs", "DCC Concepts",
		"13.5", "0",
		"1", 1,
		"pack", "35",
		"Color;Red@", "pd577994990.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[1117] = new Element(
		1117, "assets/thumb/dcp-cmsp.jpg",
		137, 128,
		"H-DCP-CMSL-1", "Cobalt Switch Pack (LEDs)",
		"3-pack with LED assortment", "DCC Concepts",
		"13.5", "0",
		"1", 1,
		"pack", "35",
		"", "pd-823391270.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[1118] = new Element(
		1118, "assets/thumb/htmbthumb.jpg",
		137, 66,
		"H-DCP-TMB-1", "Cobalt Template Pack",
		"Template Pack with pilot drill", "DCC Concepts",
		"13.5", "0",
		"1", 1,
		"pack", "35",
		"", "pd-1956512360.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[1119] = new Element(
		1119, "assets/thumb/walllampsrthumb.jpg",
		137, 292,
		"H-MSL-WLBRSR", "4mm Station Wall Lamp",
		"Pack of 2 x SR/BR green wall lamps for station", "DCC Concepts",
		"32.7", "0",
		"1", 1,
		"pack", "33",
		"", "pd1287568879.htm",
		"", 1,
		"STATION", "0",
		 0)
	
		Entry[1120] = new Element(
		1120, "assets/thumb/dccconwallampslmsthumb.jpg",
		137, 224,
		"H-MSL-WLLMS", "4mm Station Wall Lamp",
		"Pack of 2 x LMS maroon wall lamps for station", "DCC Concepts",
		"32.7", "0",
		"1", 1,
		"pack", "33",
		"", "pd-191712843.htm",
		"", 1,
		"STATION", "0",
		 0)
	
		Entry[1121] = new Element(
		1121, "assets/thumb/dccconwallampsgwrthumb.jpg",
		137, 205,
		"H-MSL-WLGWR", "4mm Station Wall Lamp",
		"Pack of 2 x GWR wall lamps for station", "DCC Concepts",
		"32.7", "0",
		"1", 1,
		"pack", "33",
		"", "pd761012971.htm",
		"", 1,
		"STATION", "0",
		 0)
	
		Entry[1122] = new Element(
		1122, "assets/thumb/btod94thumb.jpg",
		137, 62,
		"BTOD94", "Albion HD flatbed with barrels load    Cat. No. BTOD94",
		"BRS - Ayrshire   MSRP £8.99", "Base Toys",
		"8.7", "0",
		"1", 1,
		"model", "6",
		"", "pd1287842170.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1123] = new Element(
		1123, "assets/thumb/btod95.jpg",
		137, 78,
		"BTOD95", "Karrier Bantam Dropside     Cat. No. BTOD95",
		"RAF (Blue/Grey)   MSRP £6.99", "Base Toys",
		"6.5", "0",
		"1", 1,
		"model", "6",
		"", "pd-420047816.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1124] = new Element(
		1124, "assets/images/nopicturegreen.jpg",
		133, 46,
		"BTOD96", "Leyland Super Comet Tanker     Cat. No. BTOD96",
		"National Benzole   MSRP £6.99", "Base Toys",
		"6.5", "0",
		"1", 1,
		"model", "6",
		"", "pd1752921382.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1125] = new Element(
		1125, "assets/thumb/btod97.jpg",
		137, 57,
		"BTOD97", "AEC Mercury Artic Flatbed      Cat. No. BTOD97",
		"Smith of Maddiston   MSRP £6.99", "Base Toys",
		"6.5", "0",
		"1", 1,
		"model", "6",
		"", "pd-1816709180.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1126] = new Element(
		1126, "assets/thumb/btod98.jpg",
		137, 69,
		"BTOD98", "Leyland Octopus Flatbed      Cat. No. BTOD98",
		"Smith of Maddiston   MSRP £6.99", "Base Toys",
		"6.5", "0",
		"1", 1,
		"model", "6",
		"", "pd-1270516846.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1127] = new Element(
		1127, "assets/thumb/btod98.jpg",
		137, 69,
		"BTOD99", "Karrier Bantam Dropside       Cat. No. BTOD99",
		"RAF (NATO Green)   MSRP £6.99", "Base Toys",
		"6.5", "0",
		"1", 1,
		"model", "6",
		"", "pd-1206285296.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1128] = new Element(
		1128, "assets/thumb/btoda01.jpg",
		137, 83,
		"BTODA01", "Leyland FG S&amp;T Crewbus     Cat. No. BTODA01",
		"British Rail (Yellow)   MSRP £6.99", "Base Toys",
		"6.5", "0",
		"1", 1,
		"model", "6",
		"", "pd-1728868162.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1129] = new Element(
		1129, "assets/thumb/btoda02.jpg",
		137, 82,
		"BTODA02", "Karrier Bantam Flatbed    Cat. No. BTODA02",
		"RAF - Nicosia (stone)    MSRP £6.99", "Base Toys",
		"6.5", "0",
		"1", 1,
		"model", "6",
		"", "pd2053119260.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1130] = new Element(
		1130, "assets/thumb/btoda03thumb.jpg",
		137, 64,
		"BTODA03", "D-series Flatbed With Kerbstone Load     Cat. No. BTODA03",
		"Marshalls   MSRP £8.99", "Base Toys",
		"8.7", "0",
		"1", 1,
		"model", "6",
		"", "pd1530607786.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1131] = new Element(
		1131, "assets/thumb/btoda04.jpg",
		137, 40,
		"BTODA04", "Foden DG &amp; Trailer With Cable Drum Load     Cat. No. BTODA04",
		"BR (W)    MSRP £12.99", "Base Toys",
		"12.85", "0",
		"1", 1,
		"model", "6",
		"", "pd846083816.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1132] = new Element(
		1132, "assets/thumb/hj3353thumb.jpg",
		137, 53,
		"HJ3353", "Class 33/1  33116 / D6535  Cat. No. 3353",
		"HJ3353 Class 33/1  33116 / D6535  &quot;Hertfordshire Rail Tours&quot; BR Blue with full yellow ends  DCC Ready  MSRP £79.00", "Heljan",
		"72.5", "0",
		"1", 1,
		"loco", "128",
		"", "pd1621720244.htm",
		"", 1,
		"HJLOCOS", "0",
		 0)
	
		Entry[1133] = new Element(
		1133, "assets/thumb/alco251v16.jpg",
		137, 108,
		"STX828045", "ALCO 251 (V16) Diesel Engines",
		"TSU-AT1000 for ALCO 251 (V16) Diesel Engines", "Soundtraxx",
		"66", "0",
		"1", 1,
		"decoder", "99",
		"", "pd1259921308.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[1134] = new Element(
		1134, "assets/thumb/fairbanksmorse.jpg",
		137, 105,
		"STX828047", "Fairbanks-Morse Diesel Engines",
		"TSU-AT1000 for Fairbanks-Morse Diesel Engines", "Soundtraxx",
		"64", "0",
		"1", 1,
		"decoder", "99",
		"", "pd-1412685464.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[1135] = new Element(
		1135, "assets/thumb/r560thumb.jpg",
		137, 36,
		"R560", "City People",
		"R560 City People  MSRP £4.75", "Hornby",
		"4.5", "0",
		"1", 1,
		"pack", "137",
		"", "pd-1919956186.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[1136] = new Element(
		1136, "assets/thumb/r561thumb.jpg",
		137, 38,
		"R561", "People Sitting",
		"R561 People Sitting  MSRP £4.75", "Hornby",
		"4.5", "0",
		"1", 1,
		"pack", "137",
		"", "pd1400602052.htm",
		"", 1,
		"HAccess", "0",
		 0)
	
		Entry[1137] = new Element(
		1137, "assets/thumb/r8678.jpg",
		137, 278,
		"R8678", "Milk Churns",
		"R8678 Pack of 10 x Milk Churns   MSRP £6.35", "Hornby",
		"5.85", "0",
		"1", 1,
		"pack", "139",
		"", "pd-1358771939.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1138] = new Element(
		1138, "assets/thumb/dcclightboard.jpg",
		137, 121,
		"H-MSL-CTRL", "Lamp/LED control board",
		"Pack of 2 x Lamp/LED control board", "DCC Concepts",
		"19", "0",
		"1", 1,
		"pack", "33",
		"", "pd1260268041.htm",
		"", 1,
		"STATION", "0",
		 0)
	
		Entry[1139] = new Element(
		1139, "assets/thumb/nrm40052.jpg",
		137, 100,
		"NRM40052", "Flex Link™ Clamps and screws",
		"Flex Link™ Clamps and screws (black) pack of 6", "New Rail Models",
		"5.6", "0",
		"1", 1,
		"pack", "153",
		"", "pd-1609620641.htm",
		"", 1,
		"BluePoints", "0",
		 0)
	
		Entry[1140] = new Element(
		1140, "assets/thumb/nrm40053.JPG",
		137, 99,
		"NRM40053", "Flex Link™ Wooden Knobs and Fasteners",
		"Flex Link™ Wooden Knobs and Fasteners pack of 6", "New Rail Models",
		"2", "0",
		"1", 1,
		"pack", "153",
		"", "pd1500599461.htm",
		"", 1,
		"BluePoints", "0",
		 0)
	
		Entry[1141] = new Element(
		1141, "assets/thumb/nrm40054.JPG",
		137, 86,
		"NRM40054", "Flex Link™ Cable Bracket",
		"Flex Link™ Cable Bracket pack of 3", "New Rail Models",
		"5.1", "0",
		"1", 1,
		"pack", "153",
		"", "pd188301147.htm",
		"", 1,
		"BluePoints", "0",
		 0)
	
		Entry[1142] = new Element(
		1142, "assets/thumb/nrm40057.jpg",
		137, 120,
		"NRM40057", "Flex Link™ Cable clips",
		"Flex Link™ Cable clips (blue) pack of 3", "New Rail Models",
		"2.5", "0",
		"1", 1,
		"pack", "153",
		"", "pd1539653889.htm",
		"", 1,
		"BluePoints", "0",
		 0)
	
		Entry[1143] = new Element(
		1143, "assets/thumb/nrm40056.JPG",
		137, 137,
		"NRM40056", "Flex Link™ Tension Wire Heavy Duty (0.040 dia)",
		"Flex Link™ Tension Wire Heavy Duty (0.040 dia) pack of 6", "New Rail Models",
		"2", "0",
		"1", 1,
		"pack", "153",
		"", "pd1105261335.htm",
		"", 1,
		"BluePoints", "0",
		 0)
	
		Entry[1144] = new Element(
		1144, "assets/thumb/nrm40056.JPG",
		137, 137,
		"NRM40055", "Flex Link™ Tension Wire Standard (0.032 dia)",
		"Flex Link™ Tension Wire Standard (0.032 dia) pack of 6", "New Rail Models",
		"2", "0",
		"1", 1,
		"pack", "153",
		"", "pd-201880803.htm",
		"", 1,
		"BluePoints", "0",
		 0)
	
		Entry[1145] = new Element(
		1145, "assets/thumb/nrm40050.jpg",
		137, 92,
		"NRM40050", "Flex Link™ Clevis 2-56 Thread ",
		"Flex Link™ Clevis 2-56 Thread  pack of 12", "New Rail Models",
		"5.1", "0",
		"1", 1,
		"pack", "153",
		"", "pd-938657133.htm",
		"", 1,
		"BluePoints", "0",
		 0)
	
		Entry[1146] = new Element(
		1146, "assets/thumb/nrm40051.jpg",
		137, 106,
		"NRM40051", "Flex Link™ Threaded Stud 2-56 X 1&quot; ",
		"Flex Link™ Threaded Stud 2-56 X 1&quot;   pack of 20", "New Rail Models",
		"2.5", "0",
		"1", 1,
		"pack", "153",
		"", "pd-1378382087.htm",
		"", 1,
		"BluePoints", "0",
		 0)
	
		Entry[1147] = new Element(
		1147, "assets/thumb/nrmfolding_drink.jpg",
		137, 103,
		"NRM40021", "Folding Drink and Tool Holder",
		"", "New Rail Models",
		"8", "0",
		"1", 1,
		"item", "152",
		"", "pd1812779471.htm",
		"", 1,
		"NRMACC", "0",
		 0)
	
		Entry[1148] = new Element(
		1148, "assets/thumb/nrm40057.jpg",
		137, 120,
		"NRM40010", "Flex Link™ Drill Template",
		"Flex Link™ Drill Template", "New Rail Models",
		"3", "0",
		"1", 1,
		"pack", "153",
		"", "pd1260439557.htm",
		"", 1,
		"BluePoints", "0",
		 0)
	
		Entry[1149] = new Element(
		1149, "assets/thumb/nusb.jpg",
		137, 94,
		"N-USB-1", "USB Interface for NCE DCC Systems",
		"", "NCE",
		"33", "0",
		"1", 1,
		"item", "96",
		"", "pd1260534181.htm",
		"", 1,
		"Access", "0",
		 0)
	
		Entry[1150] = new Element(
		1150, "assets/thumb/efe15715thumb.jpg",
		137, 49,
		"15715", "Plaxton Panorama  Cat. No. 15715",
		"Northern", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd1724780573.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1151] = new Element(
		1151, "assets/thumb/efe16531thumb.jpg",
		137, 75,
		"16531", "Leyland MCW Atlantean  Cat. No. 16531",
		"OK Motor Services", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd-1133087231.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1152] = new Element(
		1152, "assets/thumb/efe17223thumb.jpg",
		137, 49,
		"17223", "Leyland National Mk I Long Door  Cat. No. 17223",
		"Maidstone &amp; District NBC", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd-1538741157.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1153] = new Element(
		1153, "assets/thumb/efe20448thumb.jpg",
		137, 71,
		"20448", "Bristol VRIII  Cat. No. 20448",
		"Eastern National Citybus", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd261992143.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1154] = new Element(
		1154, "assets/thumb/gmpm4.jpg",
		137, 82,
		"GM-PM4", "Seep Point Motor with Latch and Switch",
		"PM4 Seep Point Motor with Latch and Switch  MSRP £5.25", "Gaugemaster",
		"5", "0",
		"1", 1,
		"item", "126",
		"", "pd518061445.htm",
		"", 1,
		"SEEP", "0",
		 0)
	
		Entry[1155] = new Element(
		1155, "assets/thumb/gmcdu.jpg",
		137, 82,
		"GM-CDU", "Capacitor Discharge Unit",
		"CDU Capacitor Discharge Unit  MSRP £11.95", "Gaugemaster",
		"11.2", "0",
		"1", 1,
		"item", "126",
		"", "pd882203727.htm",
		"", 1,
		"SEEP", "0",
		 0)
	
		Entry[1156] = new Element(
		1156, "assets/thumb/76mmc001thumb.jpg",
		137, 92,
		"76MMC001", "Morris Minor Convertible Closed",
		"Rose Taupe - 1:76 scale    MSRP £2.90", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd-1133746357.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1157] = new Element(
		1157, "assets/thumb/76ang003thumb.jpg",
		137, 107,
		"76ANG003", "Anglia Van - High Top",
		"Walls Ice Cream - 1:76 scale    MSRP£2.90", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "21",
		"", "pd2072314501.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1158] = new Element(
		1158, "assets/thumb/148nrtl001thumb.jpg",
		137, 94,
		"148NRTL001", "RTL Bus",
		"London Transport - 1:148 scale    MSRP £4.95", "Oxford Diecast",
		"4.5", "0",
		"1", 1,
		"model", "22",
		"", "pd-1726333986.htm",
		"", 1,
		"OXN", "0",
		 0)
	
		Entry[1159] = new Element(
		1159, "assets/thumb/148nrt001thumb.jpg",
		137, 117,
		"148NRT001", "RT Bus",
		"London Transport - 1:148 scale    MSRP £4.95", "Oxford Diecast",
		"4.5", "0",
		"1", 1,
		"model", "22",
		"", "pd-774947524.htm",
		"", 1,
		"OXN", "0",
		 0)
	
		Entry[1160] = new Element(
		1160, "assets/thumb/148nqm001thumb.jpg",
		147, 112,
		"148NQM001", "Queen Mary Bus",
		"Southdown - 1:148 scale    MSRP £4.95", "Oxford Diecast",
		"4.5", "0",
		"1", 1,
		"model", "22",
		"", "pd1734071754.htm",
		"", 1,
		"OXN", "0",
		 0)
	
		Entry[1161] = new Element(
		1161, "assets/thumb/servettethumb.jpg",
		137, 131,
		"TD-SSSC1", "Servette™ - Single Servo Controller  ",
		"SSSC1 Servette™ - Single Servo Controller", "Team Digital",
		"35.75", "0",
		"1", 1,
		"item", "101",
		"", "pd1262089437.htm",
		"", 1,
		"TD", "0",
		 0)
	
		Entry[1162] = new Element(
		1162, "assets/images/nopicturegreen.jpg",
		133, 46,
		"STX828065", "RS2 Diesel Engines",
		"TSU-KT1000 for KATO HO RS2 Diesel Engines", "Soundtraxx",
		"77", "0",
		"1", 1,
		"decoder", "99",
		"", "pd33435920.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[1163] = new Element(
		1163, "assets/thumb/efe19304thumb.jpg",
		137, 41,
		"19304", "Atkinson Artic Flatbed  Cat. No. 19304",
		"J &amp; A Smith Transport", "EFE",
		"17.85", "0",
		"1", 1,
		"model", "17",
		"", "pd1148958643.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1164] = new Element(
		1164, "assets/thumb/efe21605thumb.jpg",
		137, 52,
		"21605", "Albion Ergomatic 2 Axle Flatbed  Cat. No. 21605",
		"Harris &amp; Miners", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "17",
		"", "pd464312915.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1165] = new Element(
		1165, "assets/thumb/dcclightboard.jpg",
		137, 121,
		"H-MSL-CTRL-1", "Lamp/LED control board",
		"Pack of 2 x Lamp/LED control board", "DCC Concepts",
		"19", "0",
		"1", 1,
		"pack", "58",
		"", "pd1260783995.htm",
		"", 1,
		"STATIONLAM", "0",
		 0)
	
		Entry[1166] = new Element(
		1166, "assets/thumb/dccmslggwrthumb.jpg",
		137, 311,
		"H-MSL-GGWR-1", "4mm Gas Station lamp",
		"Pack of 3 x GWR gas station lamps", "DCC Concepts",
		"35", "0",
		"1", 1,
		"pack", "58",
		"", "pd2013501473.htm",
		"", 1,
		"STATIONLAM", "0",
		 0)
	
		Entry[1167] = new Element(
		1167, "assets/thumb/dccmslglmsthumb.jpg",
		137, 296,
		"H-MSL-GLMS-1", "4mm Gas Station lamp",
		"Pack of 3 x LMS gas station lamps", "DCC Concepts",
		"35", "0",
		"1", 1,
		"pack", "58",
		"", "pd408919863.htm",
		"", 1,
		"STATIONLAM", "0",
		 0)
	
		Entry[1168] = new Element(
		1168, "assets/thumb/dccmslgsrbrthumb.jpg",
		137, 313,
		"H-MSL-GSRBR-1", "4mm Gas Station lamp",
		"Pack of 3 x SR/BR gas station lamps", "DCC Concepts",
		"35", "0",
		"1", 1,
		"pack", "58",
		"", "pd-563964867.htm",
		"", 1,
		"STATIONLAM", "0",
		 0)
	
		Entry[1169] = new Element(
		1169, "assets/thumb/dccmslgucthumb.jpg",
		137, 310,
		"H-MSL-GU-1", "4mm Gas Station lamp",
		"Pack of 3 x Undercoated gas station lamps", "DCC Concepts",
		"35", "0",
		"1", 1,
		"pack", "58",
		"", "pd-1894782797.htm",
		"", 1,
		"STATIONLAM", "0",
		 0)
	
		Entry[1170] = new Element(
		1170, "assets/thumb/dccmslogwrthumb.jpg",
		137, 310,
		"H-MSL-OGWR-1", "4mm Oil station/yard lamp",
		"Pack of 3 x GWR oil lamps for station or yard", "DCC Concepts",
		"35", "0",
		"1", 1,
		"pack", "58",
		"", "pd1982753305.htm",
		"", 1,
		"STATIONLAM", "0",
		 0)
	
		Entry[1171] = new Element(
		1171, "assets/thumb/dccmslolmsthumb.jpg",
		137, 293,
		"H-MSL-OLMS-1", "4mm Oil station/yard lamp",
		"Pack of 3 x LMS oil lamps for station or yard", "DCC Concepts",
		"35", "0",
		"1", 1,
		"pack", "58",
		"", "pd1911005679.htm",
		"", 1,
		"STATIONLAM", "0",
		 0)
	
		Entry[1172] = new Element(
		1172, "assets/thumb/dccmslosrbrthumb.jpg",
		137, 321,
		"H-MSL-OSRBR-1", "4mm Oil station/yard lamp",
		"Pack of 3 x SR/BR oil lamps for station or yard", "DCC Concepts",
		"35", "0",
		"1", 1,
		"pack", "58",
		"", "pd1492530613.htm",
		"", 1,
		"STATIONLAM", "0",
		 0)
	
		Entry[1173] = new Element(
		1173, "assets/thumb/hled3thumb.jpg",
		137, 146,
		"HLED-3MM-1", "3mm Protowhite (Golden White) LED",
		"Single 3mm Protowhite (Golden White) LED - min order quantity = 2", "DCC Concepts",
		"1.2", "0",
		"1", 1,
		"item", "52",
		"", "pd-21667576.htm",
		"", 2,
		"LEDDCC", "0",
		 0)
	
		Entry[1174] = new Element(
		1174, "assets/thumb/3mmsunnywhite.jpg",
		137, 98,
		"HLED-3MMSW-1", "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", "52",
		"", "pd1536356756.htm",
		"", 2,
		"LEDDCC", "0",
		 0)
	
		Entry[1175] = new Element(
		1175, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HLED-3MMSW6-1", "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.1", "0",
		"1", 1,
		"pack", "52",
		"", "pd-246259525.htm",
		"1::20::5;", 2,
		"LEDDCC", "0",
		 0)
	
		Entry[1176] = new Element(
		1176, "assets/thumb/hled5thumb.jpg",
		137, 176,
		"HLED-5MM-1", "5mm Protowhite (Golden White) LED",
		"Single 5mm Protowhite (Golden White) LED - min order quantity = 2", "DCC Concepts",
		"0.8", "0",
		"1", 1,
		"item", "52",
		"", "pd-97836018.htm",
		"", 2,
		"LEDDCC", "0",
		 0)
	
		Entry[1177] = new Element(
		1177, "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 6 Red/GreenLEDs and 12 x 1K ohm resistors", "DCC Concepts",
		"6", "0",
		"1", 1,
		"pack", "52",
		"Colour combination;Red-Green@", "pd1566384378.htm",
		"", 1,
		"LEDDCC", "0",
		 0)
	
		Entry[1178] = new Element(
		1178, "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", "52",
		"LED size;2mm tower pack@", "pd-916183898.htm",
		"", 1,
		"LEDDCC", "0",
		 0)
	
		Entry[1179] = new Element(
		1179, "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,
		"item", "52",
		"LED size;2mm tower@", "pd-2001744815.htm",
		"", 2,
		"LEDDCC", "0",
		 0)
	
		Entry[1180] = new Element(
		1180, "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 Concepts",
		"7.75", "0",
		"1", 1,
		"pack", "52",
		"Colours available;Red@", "pd738400872.htm",
		"", 1,
		"LEDDCC", "0",
		 0)
	
		Entry[1181] = new Element(
		1181, "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", "52",
		"Colours available;Green@", "pd466886722.htm",
		"", 1,
		"LEDDCC", "0",
		 0)
	
		Entry[1182] = new Element(
		1182, "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", "52",
		"Colours available;Green@", "pd-2145734825.htm",
		"", 1,
		"LEDDCC", "0",
		 0)
	
		Entry[1183] = new Element(
		1183, "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.25", "0",
		"1", 1,
		"pack", "52",
		"Colours available;Red@", "pd1327294744.htm",
		"", 1,
		"LEDDCC", "0",
		 0)
	
		Entry[1184] = new Element(
		1184, "assets/thumb/nh2pwthumb.jpg",
		137, 88,
		"HLED-NH2PW-1", "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.75", "0",
		"1", 1,
		"pack", "52",
		"", "pd-237445904.htm",
		"", 1,
		"LEDDCC", "0",
		 0)
	
		Entry[1185] = new Element(
		1185, "assets/thumb/nh2rdthumb.jpg",
		137, 115,
		"HLED-NH2RD-1", "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.75", "0",
		"1", 1,
		"pack", "52",
		"", "pd306891934.htm",
		"", 1,
		"LEDDCC", "0",
		 0)
	
		Entry[1186] = new Element(
		1186, "assets/thumb/nh2swthumb.jpg",
		137, 119,
		"HLED-NH2SW-1", "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.75", "0",
		"1", 1,
		"pack", "52",
		"", "pd106773500.htm",
		"", 1,
		"LEDDCC", "0",
		 0)
	
		Entry[1187] = new Element(
		1187, "assets/thumb/nh4lthumb.jpg",
		137, 114,
		"HLED-NH4L-1", "NANO vehicle harness large",
		"3 x NANO harnesses consisting of 2 red and 2 white NANO LEDs with resistors", "DCC Concepts",
		"14.3", "0",
		"1", 1,
		"pack", "52",
		"", "pd-730008950.htm",
		"", 1,
		"LEDDCC", "0",
		 0)
	
		Entry[1188] = new Element(
		1188, "assets/thumb/nh4mthumb.jpg",
		137, 115,
		"HLED-NH4M-1", "NANO vehicle harness medium",
		"3 x NANO harnesses consisting of 2 red and 2 white NANO LEDs with resistors", "DCC Concepts",
		"14.3", "0",
		"1", 1,
		"pack", "52",
		"", "pd-1332608056.htm",
		"", 1,
		"LEDDCC", "0",
		 0)
	
		Entry[1189] = new Element(
		1189, "assets/thumb/nh4sthumb.jpg",
		137, 116,
		"HLED-NH4S-1", "NANO vehicle harness small",
		"3 x NANO harnesses consisting of 2 red and 2 white NANO LEDs with resistors", "DCC Concepts",
		"14.3", "0",
		"1", 1,
		"pack", "52",
		"", "pd-132075722.htm",
		"", 1,
		"LEDDCC", "0",
		 0)
	
		Entry[1190] = new Element(
		1190, "assets/thumb/nlpwthumb.jpg",
		137, 165,
		"HLED-NLPW-1", "NANO lights Prototype White",
		"Pack of 6 x pre-wired Prototype White (Golden White) NANO LEDs with resistors", "DCC Concepts",
		"12.5", "0",
		"1", 1,
		"pack", "52",
		"", "pd1389707348.htm",
		"", 1,
		"LEDDCC", "0",
		 0)
	
		Entry[1191] = new Element(
		1191, "assets/thumb/nlrdthumb.jpg",
		137, 164,
		"HLED-NLRD-1", "NANO lights Red",
		"Pack of 6 x pre-wired Red NANO LEDs with resistors", "DCC Concepts",
		"12.75", "0",
		"1", 1,
		"pack", "52",
		"", "pd-646779230.htm",
		"", 1,
		"LEDDCC", "0",
		 0)
	
		Entry[1192] = new Element(
		1192, "assets/thumb/nlswthumb.jpg",
		137, 151,
		"HLED-NLSW-1", "NANO lights Daylight White",
		"Pack of 6 x pre-wired Daylight White NANO LEDs with resistors", "DCC Concepts",
		"12.5", "0",
		"1", 1,
		"pack", "52",
		"", "pd-706888288.htm",
		"", 1,
		"LEDDCC", "0",
		 0)
	
		Entry[1193] = new Element(
		1193, "assets/thumb/nanolight.jpg",
		137, 100,
		"HLED-NLWR-1", "NANO lights Red/white",
		"Pack of 6 x pre-wired Red/white NANO LEDs with resistors", "DCC Concepts",
		"13.8", "0",
		"1", 1,
		"pack", "52",
		"", "pd-843621170.htm",
		"", 1,
		"LEDDCC", "0",
		 0)
	
		Entry[1194] = new Element(
		1194, "assets/thumb/1mmleds.jpg",
		137, 146,
		"HLED-PW1-L", "PW Micro 1mm 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.15", "0",
		"1", 1,
		"pack", "52",
		"Colours available;Lunar white@", "pd-976812116.htm",
		"", 1,
		"LEDDCC", "0",
		 0)
	
		Entry[1195] = new Element(
		1195, "assets/thumb/hled18gw.jpg",
		137, 174,
		"HLED-PW18-1", "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.5", "0",
		"1", 1,
		"pack", "52",
		"", "pd86635012.htm",
		"", 1,
		"LEDDCC", "0",
		 0)
	
		Entry[1196] = new Element(
		1196, "assets/thumb/3mmprotowhite.jpg",
		137, 157,
		"HLED-PW3-6-1", "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.6", "0",
		"1", 1,
		"pack", "52",
		"", "pd-707282990.htm",
		"", 1,
		"LEDDCC", "0",
		 0)
	
		Entry[1197] = new Element(
		1197, "assets/thumb/btod76thumb.jpg",
		137, 74,
		"BTOD76", "Leyland Octopus Tanker     Cat. No. BTOD76",
		"Castrol  MSRP £6.99", "Base Toys",
		"6.35", "0",
		"1", 1,
		"model", "6",
		"", "pd1268925622.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1198] = new Element(
		1198, "assets/thumb/btod877thumb.jpg",
		137, 55,
		"BTOD77", "Karrier Bantam Artic Flat with Gantry     Cat. No. BTOD77",
		"British Railways  MSRP £6.99", "Base Toys",
		"6.35", "0",
		"1", 1,
		"model", "6",
		"", "pd2035732948.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1199] = new Element(
		1199, "assets/thumb/btod78thumb.jpg",
		137, 69,
		"BTOD78", "Leyland FG Dropside     Cat. No. BTOD78",
		"British Rail  MSRP £6.99", "Base Toys",
		"6.35", "0",
		"1", 1,
		"model", "6",
		"", "pd929356834.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1200] = new Element(
		1200, "assets/thumb/btod79thumb.jpg",
		137, 69,
		"BTOD79", "Trader Artic Tanker     Cat. No. BTOD79",
		"Pickfords  MSRP £6.99", "Base Toys",
		"6.35", "0",
		"1", 1,
		"model", "6",
		"", "pd-89692384.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1201] = new Element(
		1201, "assets/thumb/btod80thumb.jpg",
		137, 72,
		"BTOD80", "Trader Flatbed with Gantry     Cat. No. BTOD80",
		"British Railways  MSRP £6.99", "Base Toys",
		"6.35", "0",
		"1", 1,
		"model", "6",
		"", "pd1754210894.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1202] = new Element(
		1202, "assets/thumb/btod81thumb.jpg",
		137, 78,
		"BTOD81", "Bristol HA artic Van     Cat. No. BTOD81",
		"British Road Ferry Services  MSRP £6.99", "Base Toys",
		"6.35", "0",
		"1", 1,
		"model", "6",
		"", "pd105531692.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1203] = new Element(
		1203, "assets/thumb/btod82thumb.jpg",
		137, 95,
		"BTOD82", "Leyland FG Crewbus     Cat. No. BTOD82",
		"British Rail  MSRP £6.99", "Base Toys",
		"6.35", "0",
		"1", 1,
		"model", "6",
		"", "pd2142208826.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1204] = new Element(
		1204, "assets/thumb/btod83thumb.jpg",
		137, 51,
		"BTOD83", "AEC Mammoth Major Flat with flat trailer     Cat. No. BTOD83",
		"BRS  MSRP £9.99", "Base Toys",
		"8.7", "0",
		"1", 1,
		"model", "6",
		"", "pd-140262408.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1205] = new Element(
		1205, "assets/thumb/btod84thumb.jpg",
		137, 48,
		"BTOD84", "AEC Monarch Flatbed with flat trailer     Cat. No. BTOD84",
		"Wynns  MSRP £9.99", "Base Toys",
		"8.7", "0",
		"1", 1,
		"model", "6",
		"", "pd175319782.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1206] = new Element(
		1206, "assets/thumb/148nmh003thumb.jpg",
		137, 78,
		"148NMH003", "Mechanical Horse",
		"GWR - 1:148 scale    MSRP£4.95", "Oxford Diecast",
		"4.5", "0",
		"1", 1,
		"model", "22",
		"", "pd1269006513.htm",
		"", 1,
		"OXN", "0",
		 0)
	
		Entry[1207] = new Element(
		1207, "assets/thumb/148nmh004thumb.jpg",
		137, 88,
		"148NMH004", "Mechanical Horse",
		"LNER- 1:148 scale    MSRP£4.95", "Oxford Diecast",
		"4.5", "0",
		"1", 1,
		"model", "22",
		"", "pd-1855849913.htm",
		"", 1,
		"OXN", "0",
		 0)
	
		Entry[1208] = new Element(
		1208, "assets/thumb/em76871thumb.jpg",
		137, 80,
		"EM76871", "Ford 100E Squire Estate   Cat. No. EM76871",
		"Blue with wood trim   MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd1079878316.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1209] = new Element(
		1209, "assets/thumb/efe35004thumb.jpg",
		137, 49,
		"35004", "AEC MkV Mandator Artic  Cat. No. 35004",
		"Pollock", "EFE",
		"19.4", "0",
		"1", 1,
		"model", "17",
		"", "pd-2058316590.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1210] = new Element(
		1210, "assets/thumb/efe26623thumb.jpg",
		137, 51,
		"26623", "Plaxton Paramount 3500  Cat. No. 26623",
		"Excelsior", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd-591575554.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1211] = new Element(
		1211, "assets/thumb/efe29001dlthumb.jpg",
		137, 74,
		"29001DL", "GM Standard Fleetline  Cat. No. 29001DL",
		"Birkenhead &amp; District", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd-1239072154.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1212] = new Element(
		1212, "assets/thumb/efe30511thumb.jpg",
		137, 61,
		"30511", "Guy GS Special  Cat. No. 30511",
		"Stevensons", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd1272704888.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1213] = new Element(
		1213, "assets/thumb/efe35203thumb.jpg",
		137, 49,
		"35203", "36&rsquo; BET 6 Bay AEC Reliance  Cat. No. 35203",
		"Northern", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd-1430876336.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1214] = new Element(
		1214, "assets/thumb/efe36202thumb.jpg",
		137, 61,
		"36202", "RMA Routemaster and Trailer  Cat. No. 36202",
		"British European Airways", "EFE",
		"22.5", "0",
		"1", 1,
		"model", "18",
		"", "pd-374483876.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1215] = new Element(
		1215, "assets/thumb/hcb1thumb.jpg",
		137, 129,
		"H-DCP-CB1", "Cobalt Point Motor - single",
		"", "DCC Concepts",
		"18", "0",
		"1", 1,
		"item", "49",
		"", "pd-1695745786.htm",
		"", 1,
		"COBALT", "0",
		 0)
	
		Entry[1216] = new Element(
		1216, "assets/thumb/hcb1thumb.jpg",
		137, 129,
		"H-DCP-CB12", "Cobalt Point Motor - 12-pack",
		"", "DCC Concepts",
		"205", "0",
		"1", 1,
		"pack", "49",
		"", "pd-1223297678.htm",
		"", 1,
		"COBALT", "0",
		 0)
	
		Entry[1217] = new Element(
		1217, "assets/thumb/hcb1thumb.jpg",
		137, 129,
		"H-DCP-CB6", "Cobalt Point Motor - 6-pack",
		"", "DCC Concepts",
		"104", "0",
		"1", 1,
		"pack", "49",
		"", "pd-2038964572.htm",
		"", 1,
		"COBALT", "0",
		 0)
	
		Entry[1218] = new Element(
		1218, "assets/thumb/hcmcthumb.jpg",
		137, 86,
		"H-DCP-CMC", "Cobalt Added Value Pack",
		"", "DCC Concepts",
		"20.75", "0",
		"1", 1,
		"pack", "49",
		"", "pd162578508.htm",
		"", 1,
		"COBALT", "0",
		 0)
	
		Entry[1219] = new Element(
		1219, "assets/images/nopicturegreen.jpg",
		133, 46,
		"H-DCP-CMK", "Cobalt Key Parts Pack",
		"", "DCC Concepts",
		"8.7", "0",
		"1", 1,
		"pack", "49",
		"", "pd-1392972520.htm",
		"", 1,
		"COBALT", "0",
		 0)
	
		Entry[1220] = new Element(
		1220, "assets/thumb/hcmlthumb.jpg",
		137, 38,
		"H-DCP-CML", "Cobalt Ballast Label Pack",
		"", "DCC Concepts",
		"13.75", "0",
		"1", 1,
		"pack", "49",
		"", "pd-837595302.htm",
		"", 1,
		"COBALT", "0",
		 0)
	
		Entry[1221] = new Element(
		1221, "assets/thumb/dcp-cmsp.jpg",
		137, 128,
		"H-DCP-CMSL", "Cobalt Switch Pack (LEDs)",
		"3-pack with LED assortment", "DCC Concepts",
		"13.5", "0",
		"1", 1,
		"pack", "49",
		"", "pd-1443951506.htm",
		"", 1,
		"COBALT", "0",
		 0)
	
		Entry[1222] = new Element(
		1222, "assets/thumb/htmbthumb.jpg",
		137, 66,
		"H-DCP-TMB", "Cobalt Template Pack",
		"Template Pack with pilot drill", "DCC Concepts",
		"13.5", "0",
		"1", 1,
		"pack", "49",
		"", "pd1273777216.htm",
		"", 1,
		"COBALT", "0",
		 0)
	
		Entry[1223] = new Element(
		1223, "assets/thumb/stx750thumb.jpg",
		137, 84,
		"STX826003", "Micro Tsunami Heavy Steam",
		"TSU-750 Heavy Steam", "Soundtraxx",
		"94", "0",
		"1", 1,
		"decoder", "99",
		"", "pd732572692.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[1224] = new Element(
		1224, "assets/thumb/stx750thumb.jpg",
		137, 84,
		"STX827001", "Micro Tsunami for EMD 567 Diesel Engines (1st Gen.)",
		"TSU-750 Micro-Tsunami for EMD 567 Diesel Engines (1st Gen.)", "Soundtraxx",
		"94", "0",
		"1", 1,
		"decoder", "99",
		"", "pd323534946.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[1225] = new Element(
		1225, "assets/thumb/stx750thumb.jpg",
		137, 84,
		"STX827004", "Micro-Tsunami for ALCO 244 Diesel Engines",
		"TSU-750 Micro-Tsunami for ALCO 244 Diesel Engines", "Soundtraxx",
		"94", "0",
		"1", 1,
		"decoder", "99",
		"", "pd1568073056.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[1226] = new Element(
		1226, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ609-1", "Lister Twin",
		"HQ609-1", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd1274349543.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[1227] = new Element(
		1227, "assets/thumb/76vw006thumb.jpg",
		137, 74,
		"76VW006", "VW Pickup",
		"Green/White   - 1:76 scale  MSRP £3.49", "Oxford Diecast",
		"3.25", "0",
		"1", 1,
		"model", "21",
		"", "pd22904106.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1228] = new Element(
		1228, "assets/thumb/DG223001thumb.jpg",
		137, 87,
		"DG223001", "Dennis F12 Fire Engine   DG223001",
		"Silver MSRP £10.99", "Corgi",
		"9.7", "0",
		"1", 1,
		"model", "13",
		"", "pd1415319400.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[1229] = new Element(
		1229, "assets/thumb/em76666_thumb.jpg",
		137, 92,
		"EM76666", "Austin A35 Van     Cat. No. EM76666",
		"Securicor Radio Patrol      MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd1275141888.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1230] = new Element(
		1230, "assets/thumb/em76667.jpg",
		137, 91,
		"EM76667", "Austin A35 Van     Cat. No. EM76667",
		"Royal Mail 75223    MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd881737484.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1231] = new Element(
		1231, "assets/thumb/em76670thumb.jpg",
		137, 86,
		"EM76670", "NCB Bakers Electric Milk Float  Cat. No. EM76670",
		"Handsworth Dairies   MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd-401609702.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1232] = new Element(
		1232, "assets/thumb/em76675_thumb.jpg",
		137, 72,
		"EM76675", "Ford Thames 300E 7-Cwt Van   Cat. No. EM76675",
		"Singer Sewing Machines  MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd-1713252392.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1233] = new Element(
		1233, "assets/thumb/em76841_thumb.jpg",
		137, 81,
		"EM76841", "Austin A40 Devon 2-door  Cat. No. EM76841",
		"Pale Green  MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd475723108.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1234] = new Element(
		1234, "assets/thumb/em76844.jpg",
		137, 92,
		"EM76844", "Austin FX3 London Taxi      Cat. No. EM76844",
		"Black  MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd250735154.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1235] = new Element(
		1235, "assets/thumb/em76847_thumb.jpg",
		137, 82,
		"EM76847", "Austin FL1      Cat. No. EM76847",
		"Surrey County Council Ambulance Service    MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd-859741264.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1236] = new Element(
		1236, "assets/thumb/em76859_thumb.jpg",
		137, 92,
		"EM76859", "Austin A35 Countryman        Cat. No. EM76859",
		"Green  MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd-831934114.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1237] = new Element(
		1237, "assets/thumb/em76655thumb.jpg",
		137, 79,
		"EM76655", "Ford E83W Thames Van  Cat. No. EM76655",
		"Heinz 57 Varieties  MSRP £3.99", "Classix",
		"3.5", "0",
		"1", 1,
		"model", "8",
		"", "pd-1974358340.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1238] = new Element(
		1238, "assets/thumb/em76305thumb.jpg",
		137, 71,
		"EM76305", "Ford Thames ET6   Cat. No. EM76305",
		"Walker &amp; Sons Fruit &amp; Veg Dropside w/ Crates &amp; Roof Rack  MSRP £6.99", "Classix",
		"6.35", "0",
		"1", 1,
		"model", "8",
		"", "pd-289823926.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1239] = new Element(
		1239, "assets/thumb/efe19305thumb.jpg",
		137, 53,
		"19305", "Atkinson Artic Flatbed  Cat. No. 19305",
		"Suttons &amp; Sons", "EFE",
		"18.4", "0",
		"1", 1,
		"model", "17",
		"", "pd245348684.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1240] = new Element(
		1240, "assets/thumb/efe24818thumb.jpg",
		137, 67,
		"24818", "Plaxton Hoppa  Cat. No. 24818",
		"First Halifax", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd106885210.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1241] = new Element(
		1241, "assets/thumb/efe27626thumb.jpg",
		137, 44,
		"27626", "Wright Volvo Endurance  Cat. No. 27626",
		"West Riding", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd-309234152.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1242] = new Element(
		1242, "assets/thumb/efe31704thumb.jpg",
		137, 80,
		"31704", "RMC Routemaster  Cat. No. 31704",
		"Greenline", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd-1153652218.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1243] = new Element(
		1243, "assets/thumb/r2917thumb.jpg",
		137, 30,
		"R2917", "BR Class 2800 &rsquo;2810&rsquo; ",
		"R2917 BR Class 2800 &rsquo;2810&rsquo; DCC Ready  MSRP £119.50", "Hornby",
		"105.2", "0",
		"1", 1,
		"loco", "135",
		"", "pd368093268.htm",
		"", 1,
		"HornbyStea", "0",
		 0)
	
		Entry[1244] = new Element(
		1244, "assets/thumb/r2919thumb.jpg",
		137, 32,
		"R2919", "BR Class 3800 BR Black",
		"R2919 BR Class 3800 &rsquo;2891&rsquo;  DCC Ready  MSRP £119.50", "Hornby",
		"105.2", "0",
		"1", 1,
		"loco", "135",
		"", "pd-627272030.htm",
		"", 1,
		"HornbyStea", "0",
		 0)
	
		Entry[1245] = new Element(
		1245, "assets/thumb/r2420athumb.jpg",
		137, 35,
		"R2420A", "Class 31 BR AIA-AIA - BR Green",
		"R2420A Class 31 BR AIA-AIA - BR Green  DCC Ready  MSRP £103.00", "Hornby",
		"81.7", "0",
		"1", 1,
		"loco", "136",
		"", "pd1828999800.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[1246] = new Element(
		1246, "assets/thumb/r2931thumb.jpg",
		137, 26,
		"R2931", "Class 153 London Midland (153 365)",
		"R2931 Class 153 London Midland (153 365)  DCC Ready  MSRP £75.00", "Hornby",
		"65.3", "0",
		"1", 1,
		"loco", "136",
		"", "pd-1884267162.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[1247] = new Element(
		1247, "assets/thumb/r2932thumb.jpg",
		137, 25,
		"R2932", "Class 153 Arriva Cross Country ",
		"R2932 Class 153 Arriva Cross Country   DCC Ready  MSRP £75.00", "Hornby",
		"65.3", "0",
		"1", 1,
		"loco", "136",
		"", "pd701454852.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[1248] = new Element(
		1248, "assets/thumb/r2946thumb.jpg",
		137, 33,
		"R2946", "Class 423 BR VEP Train Pack",
		"R2946 Class 423 BR VEP Train Pack  DCC Ready  MSRP £168.99", "Hornby",
		"110", "0",
		"1", 1,
		"pack", "136",
		"", "pd-423296348.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[1249] = new Element(
		1249, "assets/thumb/r2947.jpg",
		137, 54,
		"R2947", "Class 423 NSE VEP Train Pack",
		"R2947 Class 423 NSE VEP Train Pack  DCC Ready   MSRP £150.00", "Hornby",
		"110", "0",
		"1", 1,
		"pack", "136",
		"", "pd339196274.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[1250] = new Element(
		1250, "assets/thumb/r2963.jpg",
		137, 75,
		"R2963", "Class 31 Regional Railways DCC Ready",
		"R2963 Class 31 Regional Railways DCC Ready  MSRP £108.50", "Hornby",
		"93", "0",
		"1", 1,
		"loco", "136",
		"", "pd-1563798960.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[1251] = new Element(
		1251, "assets/thumb/r4423thumb.jpg",
		137, 29,
		"R4423", "Pullman 1st Class Kitchen",
		"R4423 Pullman 1st Class Kitchen &rsquo;Aurelia&rsquo;", "Hornby",
		"36", "0",
		"1", 1,
		"carriage", "133",
		"", "pd1338705192.htm",
		"", 1,
		"HornbyCarr", "0",
		 0)
	
		Entry[1252] = new Element(
		1252, "assets/thumb/r4424thumb.jpg",
		137, 28,
		"R4424", "Pullman 3rd Class Kitchen",
		"R4424 Pullman 3rd Class Kitchen &rsquo;Car No. 169&rsquo;", "Hornby",
		"36", "0",
		"1", 1,
		"carriage", "133",
		"", "pd784011158.htm",
		"", 1,
		"HornbyCarr", "0",
		 0)
	
		Entry[1253] = new Element(
		1253, "assets/thumb/r4429thumb.jpg",
		137, 28,
		"R4429", "Pullman 3rd Class Kitchen",
		"R4429 Pullman 3rd Class Kitchen &rsquo;Car No. 171&rsquo;   MSRP £41.75", "Hornby",
		"36", "0",
		"1", 1,
		"carriage", "133",
		"", "pd-1491659518.htm",
		"", 1,
		"HornbyCarr", "0",
		 0)
	
		Entry[1254] = new Element(
		1254, "assets/thumb/r4430thumb.jpg",
		137, 29,
		"R4430", "Pullman 3rd Class Brake",
		"R4430 Pullman 3rd Class Brake &rsquo;Car No. 27&rsquo;  MSRP  £41.75", "Hornby",
		"36", "0",
		"1", 1,
		"carriage", "133",
		"", "pd298568448.htm",
		"", 1,
		"HornbyCarr", "0",
		 0)
	
		Entry[1255] = new Element(
		1255, "assets/thumb/r4436thumb.jpg",
		137, 32,
		"R4437", "Devon Belle Observation Car",
		"R4436 Devon Belle Observation Car (Circa 1947)  MSRP £50.00", "Hornby",
		"44", "0",
		"1", 1,
		"carriage", "133",
		"", "pd-1631737554.htm",
		"", 1,
		"HornbyCarr", "0",
		 0)
	
		Entry[1256] = new Element(
		1256, "assets/thumb/r6484thumb.jpg",
		298, 80,
		"R6484", "KFA Container Wagon No 1",
		"R6484 KFA Container Wagon No 1  MSRP £32.99", "Hornby",
		"26.5", "0",
		"1", 1,
		"wagon", "134",
		"", "pd1438362380.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[1257] = new Element(
		1257, "assets/thumb/r6485thumb.jpg",
		137, 29,
		"R6485", "KFA Container Wagon No 2",
		"R6485 KFA Container Wagon No 2  MSRP £32.99", "Hornby",
		"26.5", "0",
		"1", 1,
		"wagon", "134",
		"", "pd1361786906.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[1258] = new Element(
		1258, "assets/thumb/r6499thumb.jpg",
		137, 57,
		"R6499", "6 Wheel Milk Wagon Graffiti ",
		"R6499 Graffiti 6 Wheel Milk Wagon  MSRP £10.00", "Hornby",
		"8.15", "0",
		"1", 1,
		"wagon", "134",
		"", "pd-400686120.htm",
		"", 1,
		"HornbyRoll", "0",
		 0)
	
		Entry[1259] = new Element(
		1259, "assets/thumb/r7103thumb.jpg",
		137, 71,
		"R7103", "Bedford TK Horse Box",
		"R7103 Bedford TK Horse Box", "Hornby",
		"6.1", "0",
		"1", 1,
		"model", "140",
		"", "pd551493728.htm",
		"", 1,
		"SKALAUT", "0",
		 0)
	
		Entry[1260] = new Element(
		1260, "assets/thumb/r7104thumb.jpg",
		137, 80,
		"R7104", "Austin K8 - Austin Services",
		"R7104 Austin K8 - Austin Services    MSRP £4.50", "Hornby",
		"4", "0",
		"1", 1,
		"model", "140",
		"", "pd1267367310.htm",
		"", 1,
		"SKALAUT", "0",
		 0)
	
		Entry[1261] = new Element(
		1261, "assets/thumb/r7105thumb.jpg",
		137, 75,
		"R7105", "Bedford CA - Mobile Disco",
		"R7105 Bedford CA - Mobile Disco", "Hornby",
		"5.1", "0",
		"1", 1,
		"model", "140",
		"", "pd-1745217940.htm",
		"", 1,
		"SKALAUT", "0",
		 0)
	
		Entry[1262] = new Element(
		1262, "assets/thumb/r9634thumb.jpg",
		137, 116,
		"R9634", "Platform Signal Box",
		"R9634 Platform Signal Box  MSRP £15.50", "Hornby",
		"12.25", "0",
		"1", 1,
		"model", "139",
		"", "pd-1589503300.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1263] = new Element(
		1263, "assets/thumb/efe18612thumb.jpg",
		137, 70,
		"18612", "Bristol VRIII Open Top  Cat. No. 18612",
		"Devon General NBC", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd1889746230.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1264] = new Element(
		1264, "assets/thumb/efe29305thumb.jpg",
		137, 67,
		"29305", "Leyland Olympian  Cat. No. 29305",
		"Strathclydes Buses", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd645439626.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1265] = new Element(
		1265, "assets/thumb/efe29805thumb.jpg",
		137, 43,
		"29805", "Wright Dennis Lance  Cat. No. 29805",
		"Southend Transport", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd1168792738.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1266] = new Element(
		1266, "assets/thumb/efe35302thumb.jpg",
		137, 48,
		"35302", "36&rsquo; BET 6 Bay  Cat. No. 35302",
		"Macbraynes", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd1374511560.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1267] = new Element(
		1267, "assets/thumb/atlharnthumb.jpg",
		137, 84,
		"N-ATL-HARN", "Atlas Harness for D408SR decoder",
		"Wiring harness to connect D408SR to Atlas diesels, Weaver 2-8-0 and other O scale locos with “dogbone”  lighting board", "NCE",
		"9.2", "0",
		"1", 1,
		"decoder", "92",
		"", "pd-920549272.htm",
		"", 1,
		"ODec", "0",
		 0)
	
		Entry[1268] = new Element(
		1268, "assets/thumb/em76660thumb.jpg",
		137, 83,
		"EM76660", "Austin A30 Van      Cat. No. EM76660",
		"Police Dog Van  MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd967797193.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1269] = new Element(
		1269, "assets/thumb/em76674thumb.jpg",
		137, 77,
		"EM76674", "Ford Thames 300E  Cat. No. EM76674",
		"SEGAS  MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd-1328977633.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1270] = new Element(
		1270, "assets/thumb/em76682thumb.jpg",
		137, 72,
		"EM76682", "Triumph Courier Van  Cat. No. EM76682",
		"Standard Triumph Sales Service Spares  MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd-1714155419.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1271] = new Element(
		1271, "assets/thumb/em76832thumb.jpg",
		137, 76,
		"EM76832", "Morris Minor 2-door Saloon  Cat. No. EM76832",
		"White", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd-2070847205.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1272] = new Element(
		1272, "assets/thumb/em76874thumb.jpg",
		137, 83,
		"EM76874", "Triumph Herald 1200 Saloon  Cat. No. EM76874",
		"Green  MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd-978390823.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1273] = new Element(
		1273, "assets/thumb/em76876thumb.jpg",
		137, 73,
		"EM76876", "Triumph Herald 13/60 Saloon  Cat. No. EM76876",
		"White  MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd341739183.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1274] = new Element(
		1274, "assets/thumb/em76882thumb.jpg",
		137, 67,
		"EM76882", "Triumph Vitesse Convertible  Cat. No. EM76882",
		"Racing Red  MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd1880094635.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1275] = new Element(
		1275, "assets/thumb/em76884thumb.jpg",
		137, 69,
		"EM76884", "Triumph Herald 13/60 Estate  Cat. No. EM76884",
		"Mid Blue  MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd-52301359.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1276] = new Element(
		1276, "assets/thumb/em76887thumb.jpg",
		137, 84,
		"EM76887", "Vauxhall 1937-40 H Type Ten-Four  Cat. No. EM76887",
		"Black  MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd-469348249.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1277] = new Element(
		1277, "assets/thumb/em76888thumb.jpg",
		137, 80,
		"EM76888", "Vauxhall 1937-40 H Type Ten-Four  Cat. No. EM76888",
		"Metallic silver  MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd-503879443.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1278] = new Element(
		1278, "assets/thumb/em76893thumb.jpg",
		137, 87,
		"EM76893", "Vauxhall 1947 10hp HIY Ten-Four  Cat. No. EM76893",
		"Biege  MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd970820835.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1279] = new Element(
		1279, "assets/thumb/tt11thumb.jpg",
		137, 72,
		"TT11", "Micro oval speaker 11.7 x 16.5mm (0.40&quot; x 0.58&quot;&quot;) 8 ohm",
		"", "Tony's Train Exchange",
		"5.1", "0",
		"1", 1,
		"speaker", "120",
		"", "pd1264519837.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[1280] = new Element(
		1280, "assets/thumb/tte11thumb.jpg",
		137, 67,
		"TTE11", "Enclosure for micro oval speaker 11.7 x 16.5mm (0.46&quot; x 0.65&quot;)",
		"", "Tony's Train Exchange",
		"6.9", "0",
		"1", 1,
		"speaker", "120",
		"", "pd1632552467.htm",
		"", 1,
		"MIN SPKRS", "0",
		 0)
	
		Entry[1281] = new Element(
		1281, "assets/thumb/76jen002thumb.jpg",
		137, 71,
		"76JEN002", "Jensen 541R",
		"Deep Carriage Green  - 1:76 scale    MSRP £3.49", "Oxford Diecast",
		"3.25", "0",
		"1", 1,
		"model", "21",
		"", "pd-1093124876.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1282] = new Element(
		1282, "assets/thumb/76xr001thumb.jpg",
		137, 69,
		"76XR001", "Ford Escort XR3i",
		"Strato Silver - 1:76 scale  MSRP £3.49", "Oxford Diecast",
		"3.25", "0",
		"1", 1,
		"model", "21",
		"", "pd648854594.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1283] = new Element(
		1283, "assets/images/nopicturegreen.jpg",
		133, 46,
		"STX828063", "SD-45 Diesel Engines",
		"TSU-KT1000 for KATO HO SD-45 Diesel Engines", "Soundtraxx",
		"77", "0",
		"1", 1,
		"decoder", "99",
		"", "pd-1586197308.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[1284] = new Element(
		1284, "assets/images/nopicturegreen.jpg",
		133, 46,
		"STX828062", "SD-38-2 Diesel Engines",
		"TSU-KT1000 for KATO HO SD-38-2 Diesel Engines", "Soundtraxx",
		"77", "0",
		"1", 1,
		"decoder", "99",
		"", "pd-549322202.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[1285] = new Element(
		1285, "assets/thumb/kt1000.JPG",
		137, 30,
		"STX828060", "SD-70 Diesel Engines",
		"TSU-KT1000 for KATO HO SD-70 Diesel Engines", "Soundtraxx",
		"77", "0",
		"1", 1,
		"decoder", "99",
		"", "pd1268491898.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[1286] = new Element(
		1286, "assets/thumb/v2069thumb.jpg",
		137, 43,
		"V2069", "Class 37 diesel loco 37668",
		"EWS Livery  DCC Ready  Limited Edition of 200   MSRP £79.99", "Vitrains",
		"74", "0",
		"1", 1,
		"model", "160",
		"", "pd969349206.htm",
		"", 1,
		"VITRAINS", "0",
		 0)
	
		Entry[1287] = new Element(
		1287, "assets/thumb/el0146thumb.jpg",
		137, 36,
		"EL0146", "Set of 6 containers",
		"", "Electrotren",
		"20.4", "0",
		"1", 1,
		"pack", "123",
		"", "pd1826882149.htm",
		"", 1,
		"ELECTROTEN", "0",
		 0)
	
		Entry[1288] = new Element(
		1288, "assets/thumb/r4444thumb.jpg",
		137, 55,
		"R4444", "BR (Blue) Mk3 Open First",
		"R4444 BR (Blue) Mk3 Open First  MSRP £24.75", "Hornby",
		"22", "0",
		"1", 1,
		"carriage", "133",
		"", "pd1268734367.htm",
		"", 1,
		"HornbyCarr", "0",
		 0)
	
		Entry[1289] = new Element(
		1289, "assets/thumb/r4446thumb.jpg",
		137, 55,
		"R4446", "BR (Blue) Mk3 TGS",
		"R4446 BR (Blue) Mk3 TGS  MSRP £24.75", "Hornby",
		"22", "0",
		"1", 1,
		"carriage", "133",
		"", "pd1068194203.htm",
		"", 1,
		"HornbyCarr", "0",
		 0)
	
		Entry[1290] = new Element(
		1290, "assets/thumb/dcc-bt2.jpg",
		137, 102,
		"H-DCC-BT2", "Bus Terminator",
		"Bus Terminator (RC filter)", "DCC Concepts",
		"7", "0",
		"1", 1,
		"pack", "26",
		"", "pd-370809535.htm",
		"", 1,
		"Switches", "0",
		 0)
	
		Entry[1291] = new Element(
		1291, "assets/thumb/switch-it.jpg",
		137, 87,
		"N-Switch-It", "Switch-It Accessory Decoder",
		"For use with one or two slow motion point switches", "NCE",
		"13", "0",
		"1", 1,
		"decoder", "93",
		"", "pd2028701950.htm",
		"", 1,
		"TurDec", "0",
		 0)
	
		Entry[1292] = new Element(
		1292, "assets/thumb/efe22605thumb.jpg",
		137, 51,
		"22605", "AEC Ergo Flatbed  Cat. No. 22605",
		"Western BRS", "EFE",
		"17.85", "0",
		"1", 1,
		"model", "17",
		"", "pd1268127742.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1293] = new Element(
		1293, "assets/thumb/efe22911thumb.jpg",
		137, 63,
		"22911", "Bedford TK Box Van  Cat. No. 22911",
		"United Dairies", "EFE",
		"17.85", "0",
		"1", 1,
		"model", "17",
		"", "pd-767827558.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1294] = new Element(
		1294, "assets/thumb/efe22912thumb.jpg",
		137, 67,
		"22912", "Bedford TK Box Van  Cat. No. 22912",
		"North Western BRS", "EFE",
		"17.85", "0",
		"1", 1,
		"model", "17",
		"", "pd908877351.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1295] = new Element(
		1295, "assets/thumb/efe23605thumb.jpg",
		137, 82,
		"23605", "Bedford TK Luton Body  Cat. No. 23605",
		"Woodland Transport", "EFE",
		"17.85", "0",
		"1", 1,
		"model", "17",
		"", "pd-770904811.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1296] = new Element(
		1296, "assets/thumb/efe24105thumb.jpg",
		137, 59,
		"24105", "Bedford TK Dropside  Cat. No. 24105",
		"Bus Eireann Support", "EFE",
		"16.35", "0",
		"1", 1,
		"model", "17",
		"", "pd1386156213.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1297] = new Element(
		1297, "assets/thumb/efe30103thumb.jpg",
		137, 65,
		"30103", "AEC MkIII 4 Axle Tanker  Cat. No. 30103",
		"Pickfords", "EFE",
		"17.85", "0",
		"1", 1,
		"model", "17",
		"", "pd2055371550.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1298] = new Element(
		1298, "assets/thumb/efe31002thumb.jpg",
		137, 52,
		"31002", "Foden S24 4 Axle Flatbed  Cat. No. 31002",
		"D A Macrae Ltd", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "17",
		"", "pd1225142846.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1299] = new Element(
		1299, "assets/thumb/efe31202thumb.jpg",
		137, 58,
		"31202", "ERF 4 Axle Flatbed  Cat. No. 31202",
		"British Road Services Wigan", "EFE",
		"17.85", "0",
		"1", 1,
		"model", "17",
		"", "pd1263843836.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1300] = new Element(
		1300, "assets/thumb/efe31401thumb.jpg",
		137, 53,
		"31401", "ERF Flatbed  Cat. No. 31401",
		"Sandford Potteries", "EFE",
		"16.1", "0",
		"1", 1,
		"model", "17",
		"", "pd6520308.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1301] = new Element(
		1301, "assets/thumb/efe32702thumb.jpg",
		137, 66,
		"32702", "Thames Trader 2 Axle Flatbed  Cat. No. 32702",
		"Milk Marketing Board", "EFE",
		"17.85", "0",
		"1", 1,
		"model", "17",
		"", "pd-758739332.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1302] = new Element(
		1302, "assets/thumb/efe33002thumb.jpg",
		137, 60,
		"33002", "ERF 2 axle Dropside  Cat. No. 33002",
		"Harris &amp; Miners", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "17",
		"", "pd1318010320.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1303] = new Element(
		1303, "assets/thumb/efe33401.jpg",
		137, 58,
		"33401", "Bedford TK Artic Tanker  Cat. No. 33401",
		"Texaco", "EFE",
		"15.8", "0",
		"1", 1,
		"model", "17",
		"", "pd1168022836.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1304] = new Element(
		1304, "assets/thumb/efe33501thumb.jpg",
		137, 73,
		"33501", "AEC MkIII Round Tanker  Cat. No. 33501",
		"Express Dairies", "EFE",
		"16.35", "0",
		"1", 1,
		"model", "17",
		"", "pd-891577877.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1305] = new Element(
		1305, "assets/thumb/efe33701.jpg",
		137, 76,
		"33701", "ERF 2 axle boxvan  Cat. No. 33701",
		"Gestetner", "EFE",
		"15.8", "0",
		"1", 1,
		"model", "17",
		"", "pd-1451979129.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1306] = new Element(
		1306, "assets/thumb/efe34401thumb.jpg",
		137, 44,
		"34401", "AEC MkV Flatbed &amp; Drag  Cat. No. 34401",
		"Alan Firmin", "EFE",
		"16.35", "0",
		"1", 1,
		"model", "17",
		"", "pd-98931063.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1307] = new Element(
		1307, "assets/thumb/efe34402thumb.jpg",
		137, 53,
		"34402", "AEC MkV 4 axle flatbed  Cat. No. 34402",
		"British Road Services", "EFE",
		"16.85", "0",
		"1", 1,
		"model", "17",
		"", "pd748969504.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1308] = new Element(
		1308, "assets/thumb/efe34403thumb.jpg",
		137, 56,
		"34403", "AEC MkV 4 Axle flatbed  Cat. No. 34403",
		"Spiers of Melksham", "EFE",
		"17.85", "0",
		"1", 1,
		"model", "17",
		"", "pd1237223280.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1309] = new Element(
		1309, "assets/thumb/efe34404thumb.jpg",
		137, 38,
		"34404", "AEC MkV 8W Flatbed and Drag  Cat. No. 34404",
		"Vic Hallam", "EFE",
		"17.85", "0",
		"1", 1,
		"model", "17",
		"", "pd-1600208783.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1310] = new Element(
		1310, "assets/thumb/efe34405thumb.jpg",
		137, 58,
		"34405", "AEC MkV 4 Axle Flatbed  Cat. No. 34405",
		"S H Pratt &amp; Co", "EFE",
		"17.85", "0",
		"1", 1,
		"model", "17",
		"", "pd-963474027.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1311] = new Element(
		1311, "assets/thumb/efe34601thumb.jpg",
		137, 66,
		"34601", "AEC MkIII Artic Box Van  Cat. No. 34601",
		"Monks Transport", "EFE",
		"16.85", "0",
		"1", 1,
		"model", "17",
		"", "pd-645986544.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1312] = new Element(
		1312, "assets/thumb/efe34701thumb.jpg",
		137, 65,
		"34701", "AEC MkV Elliptical Tanker  Cat. No. 34701",
		"Southdown NBC", "EFE",
		"16.85", "0",
		"1", 1,
		"model", "17",
		"", "pd-1484651836.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1313] = new Element(
		1313, "assets/thumb/efe35002thumb.jpg",
		137, 53,
		"35002", "AEC Mercury Artic Flatbed  Cat. No. 35002",
		"Barton Transport", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "17",
		"", "pd-292971876.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1314] = new Element(
		1314, "assets/thumb/efe35003thumb.jpg",
		137, 48,
		"35003", "AEC Mandator Artic  Cat. No. 35003",
		"J &amp; A Smith of Maddiston Ltd", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "17",
		"", "pd67126001.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1315] = new Element(
		1315, "assets/thumb/efe35101thumb.jpg",
		137, 64,
		"35101", "ERF KV 4 axle oval tanker  Cat. No. 35101",
		"Ashworths Products", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "17",
		"", "pd2136908419.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1316] = new Element(
		1316, "assets/thumb/efe35401thumb.jpg",
		137, 53,
		"35401", "AEC MkV 8W Long Tipper  Cat. No. 35401",
		"Metropolitan Sand &amp; Gravel", "EFE",
		"17.85", "0",
		"1", 1,
		"model", "17",
		"", "pd359821153.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1317] = new Element(
		1317, "assets/thumb/efe35501thumb.jpg",
		137, 56,
		"35501", "ERF KV 4 axle flatbed  Cat. No. 35501",
		"Chain Bridge Honey Co", "EFE",
		"17.85", "0",
		"1", 1,
		"model", "17",
		"", "pd-1384043415.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1318] = new Element(
		1318, "assets/thumb/efe35601thumb.jpg",
		137, 53,
		"35601", "Thames Trader 2 axle Dropside  Cat. No. 35601",
		"Robsons of Carlisle", "EFE",
		"17.85", "0",
		"1", 1,
		"model", "17",
		"", "pd-918861933.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1319] = new Element(
		1319, "assets/thumb/efe36101thumb.jpg",
		137, 87,
		"36101", "Thames Trader Luton Box Van  Cat. No. 36101",
		"Chaplin&rsquo;s Removals", "EFE",
		"16.85", "0",
		"1", 1,
		"model", "17",
		"", "pd1316881589.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1320] = new Element(
		1320, "assets/thumb/efe36301thumb.jpg",
		137, 60,
		"36301", "Bedford TK Short Dropside  Cat. No. 36301",
		"GM Buses", "EFE",
		"16.85", "0",
		"1", 1,
		"model", "17",
		"", "pd882193497.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1321] = new Element(
		1321, "assets/thumb/efe36302thumb.jpg",
		137, 63,
		"36302", "Bedford TK Short Tipper  Cat. No. 36302",
		"Ribble", "EFE",
		"17.85", "0",
		"1", 1,
		"model", "17",
		"", "pd-1016459724.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1322] = new Element(
		1322, "assets/thumb/efe36401thumb.jpg",
		137, 53,
		"36401", "Foden Artic Flatbed  Cat. No. 36401",
		"Robsons of Carlisle", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "17",
		"", "pd-2064837411.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1323] = new Element(
		1323, "assets/thumb/efe36801thumb.jpg",
		137, 44,
		"36801", "ERF KV Artic Flatbed  Cat. No. 36801",
		"Showerings Ltd", "EFE",
		"17.85", "0",
		"1", 1,
		"model", "17",
		"", "pd1606331830.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1324] = new Element(
		1324, "assets/thumb/efe37001thumb.jpg",
		137, 60,
		"37001", "Foden S24 Oval Tank Artic  Cat. No. 37001",
		"James Hemphill Ltd", "EFE",
		"17.85", "0",
		"1", 1,
		"model", "17",
		"", "pd1250337662.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1325] = new Element(
		1325, "assets/thumb/efe37101thumb.jpg",
		137, 51,
		"37101", "ERF KV 4 axle Dropside  Cat. No. 37101",
		"Associated Lead", "EFE",
		"17.85", "0",
		"1", 1,
		"model", "17",
		"", "pd-718905105.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1326] = new Element(
		1326, "assets/thumb/efe37201thumb.jpg",
		137, 61,
		"37201", "Foden S24 8W Oval Tanker  Cat. No. 37201",
		"Miers Transport Ltd", "EFE",
		"17.85", "0",
		"1", 1,
		"model", "17",
		"", "pd2114892778.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1327] = new Element(
		1327, "assets/thumb/tr301thumb.jpg",
		137, 218,
		"TR-TT301", "DCC Signal Decoder Board",
		"DCC Signal Decoder Board for use with Traintronics signals  MSRP £12.25", "Traintronics",
		"11.5", "0",
		"1", 1,
		"item", "34",
		"", "pd1269861188.htm",
		"", 1,
		"SIGNALS", "0",
		 0)
	
		Entry[1328] = new Element(
		1328, "assets/thumb/tr102.jpg",
		137, 208,
		"TR102-1", "2 aspect red/green",
		"MSRP £14.50", "Traintronics",
		"13.5", "0",
		"1", 1,
		"item", "109",
		"", "pd882435627.htm",
		"", 1,
		"TRAINTRONC", "0",
		 0)
	
		Entry[1329] = new Element(
		1329, "assets/images/nopicturegreen.jpg",
		133, 46,
		"TR103-1", "2 aspect yellow/green",
		"MSRP £14.50", "Traintronics",
		"13.5", "0",
		"1", 1,
		"item", "109",
		"", "pd-620854191.htm",
		"", 1,
		"TRAINTRONC", "0",
		 0)
	
		Entry[1330] = new Element(
		1330, "assets/images/nopicturegreen.jpg",
		133, 46,
		"TR104-1", "3 aspect red/yellow/green",
		"MSRP £16.50", "Traintronics",
		"15.5", "0",
		"1", 1,
		"item", "109",
		"", "pd1139746535.htm",
		"", 1,
		"TRAINTRONC", "0",
		 0)
	
		Entry[1331] = new Element(
		1331, "assets/thumb/tr105.jpg",
		137, 188,
		"TR105-1", "3 aspect yellow/green/yellow",
		"MSRP £16.50", "Traintronics",
		"15.5", "0",
		"1", 1,
		"item", "109",
		"", "pd1427514221.htm",
		"", 1,
		"TRAINTRONC", "0",
		 0)
	
		Entry[1332] = new Element(
		1332, "assets/thumb/tr107.jpg",
		137, 248,
		"TR107-1", "4 aspect red/yellow/green/yellow",
		"MSRP £18.50", "Traintronics",
		"16.85", "0",
		"1", 1,
		"item", "109",
		"", "pd1110756195.htm",
		"", 1,
		"TRAINTRONC", "0",
		 0)
	
		Entry[1333] = new Element(
		1333, "assets/thumb/tr110.jpg",
		137, 277,
		"TR110-1", "2 aspect red/green with feather left",
		"MSRP £24.99", "Traintronics",
		"23", "0",
		"1", 1,
		"pack", "109",
		"", "pd-8205239.htm",
		"", 1,
		"TRAINTRONC", "0",
		 0)
	
		Entry[1334] = new Element(
		1334, "assets/thumb/tr111.jpg",
		137, 277,
		"TR111-1", "2 aspect red/green with feather right",
		"MSRP £24.99", "Traintronics",
		"23", "0",
		"1", 1,
		"pack", "109",
		"", "pd1350930335.htm",
		"", 1,
		"TRAINTRONC", "0",
		 0)
	
		Entry[1335] = new Element(
		1335, "assets/images/nopicturegreen.jpg",
		133, 46,
		"TR112-1", "3 aspect red/green with feather left",
		"MSRP £26.99", "Traintronics",
		"25.5", "0",
		"1", 1,
		"item", "109",
		"", "pd-1003054363.htm",
		"", 1,
		"TRAINTRONC", "0",
		 0)
	
		Entry[1336] = new Element(
		1336, "assets/images/nopicturegreen.jpg",
		133, 46,
		"TR113-1", "3 aspect red/green with feather right",
		"MSRP £26.99", "Traintronics",
		"25.5", "0",
		"1", 1,
		"item", "109",
		"", "pd-1156517989.htm",
		"", 1,
		"TRAINTRONC", "0",
		 0)
	
		Entry[1337] = new Element(
		1337, "assets/thumb/tr114.jpg",
		137, 324,
		"TR114-1", "4 aspect feather left",
		"MSRP £28.99", "Traintronics",
		"26.55", "0",
		"1", 1,
		"item", "109",
		"", "pd1163750209.htm",
		"", 1,
		"TRAINTRONC", "0",
		 0)
	
		Entry[1338] = new Element(
		1338, "assets/thumb/tr115.jpg",
		137, 324,
		"TR115-1", "4 aspect feather right",
		"MSRP £28.99", "Traintronics",
		"26.55", "0",
		"1", 1,
		"item", "109",
		"", "pd-1344919721.htm",
		"", 1,
		"TRAINTRONC", "0",
		 0)
	
		Entry[1339] = new Element(
		1339, "assets/images/nopicturegreen.jpg",
		133, 46,
		"TR180-1", "Modern style 4 track width gantry",
		"MSRP £32.50", "Traintronics",
		"30.1", "0",
		"1", 1,
		"item", "109",
		"", "pd-495396515.htm",
		"", 1,
		"TRAINTRONC", "0",
		 0)
	
		Entry[1340] = new Element(
		1340, "assets/thumb/tr301thumb.jpg",
		137, 218,
		"TR-TT301-1", "DCC Signal Decoder Board",
		"DCC Signal Decoder Board for use with Traintronics signals  MSRP £11.75", "Traintronics",
		"11.5", "0",
		"1", 1,
		"item", "109",
		"", "pd-1189072173.htm",
		"", 1,
		"TRAINTRONC", "0",
		 0)
	
		Entry[1341] = new Element(
		1341, "assets/thumb/tr300thumb.jpg",
		137, 219,
		"TR-TT300", "Slow motion point motor with decoder",
		"Slow motion point motor with integrated DCC decoder   MSRP £22.50", "Traintronics",
		"21.5", "0",
		"1", 1,
		"item", "109",
		"", "pd658260281.htm",
		"", 1,
		"TRAINTRONC", "0",
		 0)
	
		Entry[1342] = new Element(
		1342, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ1013-1", "Marching Music 1",
		"HQ1013-1", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd-524762200.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[1343] = new Element(
		1343, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ1013-2", "Marching Music 2",
		"HQ1013-2", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd-1190596074.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[1344] = new Element(
		1344, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ1013-3", "Marching Music 3",
		"HQ1013-3", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd-955859404.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[1345] = new Element(
		1345, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ1013-4", "Marching Music 4",
		"HQ1013-4", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd647765890.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[1346] = new Element(
		1346, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ1013-5", "Marching Music 5",
		"HQ1013-5", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd1546770816.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[1347] = new Element(
		1347, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ320-2", "Turntable 2",
		"HQ320-2", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd-428057682.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[1348] = new Element(
		1348, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ410-1", "Ducks",
		"HQ410-1", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd479437196.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[1349] = new Element(
		1349, "assets/thumb/hcb1thumb.jpg",
		137, 129,
		"H-DCP-CB1-1", "Cobalt Point Motor - single",
		"", "DCC Concepts",
		"18", "0",
		"1", 1,
		"item", "35",
		"", "pd1276160572.htm",
		"", 1,
		"MASTERSCEN", "0",
		 0)
	
		Entry[1350] = new Element(
		1350, "assets/thumb/al19254thumb.jpg",
		137, 110,
		"AL19252", "Hobby-Tote set of four  &quot;High&quot; containers",
		"", "A-Line",
		"35", "0",
		"1", 1,
		"pack", "29",
		"", "pd-622304276.htm",
		"", 1,
		"STOR", "0",
		 0)
	
		Entry[1351] = new Element(
		1351, "assets/thumb/al19254thumb.jpg",
		137, 110,
		"AL19254", "Hobby-Tote set of five  &quot;Low&quot; containers",
		"", "A-Line",
		"40", "0",
		"1", 1,
		"pack", "29",
		"", "pd-1958121714.htm",
		"", 1,
		"STOR", "0",
		 0)
	
		Entry[1352] = new Element(
		1352, "assets/thumb/al19300.jpg",
		137, 95,
		"AL19300", "Foam Spacers for use with Hobby-Tote containers",
		"", "A-Line",
		"2.75", "0",
		"1", 1,
		"pack", "29",
		"", "pd-1915075370.htm",
		"", 1,
		"STOR", "0",
		 0)
	
		Entry[1353] = new Element(
		1353, "assets/thumb/al19301.jpg",
		137, 108,
		"AL19301", "Foam Packing for use with Hobby-Tote containers",
		"", "A-Line",
		"4.5", "0",
		"1", 1,
		"pack", "29",
		"", "pd-722776332.htm",
		"", 1,
		"STOR", "0",
		 0)
	
		Entry[1354] = new Element(
		1354, "assets/thumb/RR both R ang 2thumb.jpg",
		137, 103,
		"H-DCM-RRA6", "Rolling Road Active Set",
		"H-DCM-RRA6  Rolling Road Active Set for use on DC or DCC ", "DCC Concepts",
		"69", "0",
		"1", 1,
		"pack", "29",
		"", "pd1264938026.htm",
		"", 1,
		"STOR", "0",
		 0)
	
		Entry[1355] = new Element(
		1355, "assets/images/nopicturegreen.jpg",
		133, 46,
		"H-DCM-RRCOM", "Rolling Road Combination Set",
		"H-DCM-RRCOM 1 x Rolling Road Active Set for use on DC or DCC and 1 x Rolling Road Support Set ", "DCC Concepts",
		"111", "0",
		"1", 1,
		"pack", "29",
		"", "pd-1833893162.htm",
		"", 1,
		"STOR", "0",
		 0)
	
		Entry[1356] = new Element(
		1356, "assets/thumb/RR bare pk L ang SUPPORTthumb.jpg",
		137, 103,
		"H-DCM-RRS6", "Rolling Road Support Set",
		"H-DCM-RRS6  Rolling Road Support Set   ", "DCC Concepts",
		"48", "0",
		"1", 1,
		"pack", "29",
		"", "pd176264808.htm",
		"", 1,
		"STOR", "0",
		 0)
	
		Entry[1357] = new Element(
		1357, "assets/thumb/mpd.jpg",
		137, 75,
		"H-MPD460", "Motive Power Depot 460mm long",
		"MPD storage and maintenance cradle", "DCC Concepts",
		"38", "0",
		"1", 1,
		"item", "29",
		"Length (mm);460@", "pd613797093.htm",
		"", 1,
		"STOR", "0",
		 0)
	
		Entry[1358] = new Element(
		1358, "assets/thumb/lococradle.jpg",
		137, 92,
		"MM-80784", "Loco Maintenance Cradle",
		"", "MicroMark",
		"11", "0",
		"1", 1,
		"item", "29",
		"", "pd1438927803.htm",
		"", 1,
		"STOR", "0",
		 0)
	
		Entry[1359] = new Element(
		1359, "assets/thumb/cab06thumb.jpg",
		137, 278,
		"N-CAB06", "Intermediate Cab 06",
		"Intermediate Cab, with encoder speed knob control and digital display", "NCE",
		"67", "0",
		"1", 1,
		"item", "89",
		"", "pd514310685.htm",
		"", 1,
		"Throttles", "0",
		 0)
	
		Entry[1360] = new Element(
		1360, "assets/thumb/lab106.jpg",
		126, 182,
		"LAB000106", "Grease with PTFE",
		"MSRP £5.49", "Labelle",
		"5.25", "0",
		"1", 1,
		"bottle", "30",
		"", "pd1295700175.htm",
		"", 1,
		"LUB", "0",
		 0)
	
		Entry[1361] = new Element(
		1361, "assets/thumb/Labll107.jpg",
		137, 255,
		"LAB000107", "Medium oil for LGB/O/HO/OO locos",
		"MSRP £5.49", "Labelle",
		"5.25", "0",
		"1", 1,
		"bottle", "30",
		"", "pd-1749254251.htm",
		"", 1,
		"LUB", "0",
		 0)
	
		Entry[1362] = new Element(
		1362, "assets/thumb/Labll108.jpg",
		137, 269,
		"LAB000108", "Fine oil for Z/N/Small HO/OO locos",
		"MSRP £5.49", "Labelle",
		"5.25", "0",
		"1", 1,
		"bottle", "30",
		"", "pd-1451875381.htm",
		"", 1,
		"LUB", "0",
		 0)
	
		Entry[1363] = new Element(
		1363, "assets/thumb/FLdime.gif",
		137, 97,
		"FL2-1", "FL Lighting decoder",
		"Lighting only decoder with 2 functions", "TCS",
		"13.5", "0",
		"1", 1,
		"decoder", "106",
		"Multi-pack;Single item@", "pd-394312861.htm",
		"", 1,
		"FL", "0",
		 0)
	
		Entry[1364] = new Element(
		1364, "assets/thumb/fl4.jpg",
		137, 114,
		"FL4-5", "FL Lighting decoder with 4 functions - 5-pack",
		"FL function only decoder with 4 x 200mA function outputs", "TCS",
		"65.5", "0",
		"1", 1,
		"decoder", "106",
		"Multi-pack;5-pack@", "pd1151919811.htm",
		"", 1,
		"FL", "0",
		 0)
	
		Entry[1365] = new Element(
		1365, "assets/thumb/fl4.jpg",
		137, 114,
		"FL4P-S", "FL Lighting decoder with 4 functions and short harness",
		"FL function only decoder, with 8-pin NMRA plug, with 4 x 200mA function outputs", "TCS",
		"18", "0",
		"1", 1,
		"decoder", "106",
		"Harness;SH@", "pd1170870308.htm",
		"", 1,
		"FL", "0",
		 0)
	
		Entry[1366] = new Element(
		1366, "assets/thumb/msaccdpdt.jpg",
		137, 86,
		"H-DCM-MS-1", "MASTERswitch DPDT Switch Kit",
		"MASTERswitch DPDT Switch Kit", "DCC Concepts",
		"6.1", "0",
		"1", 1,
		"pack", "55",
		"", "pd1918632672.htm",
		"", 1,
		"MASTERSW", "0",
		 0)
	
		Entry[1367] = new Element(
		1367, "assets/thumb/locolampredthumb.jpg",
		116, 80,
		"H-DML-LLBRR-1", "Loco lamp Red",
		"Pack of 6 x BR/LMS red loco lamps", "DCC Concepts",
		"32.7", "0",
		"1", 1,
		"pack", "54",
		"", "pd1185971496.htm",
		"", 1,
		"LOCOLAMPS", "0",
		 0)
	
		Entry[1368] = new Element(
		1368, "assets/thumb/locolamps.jpg",
		137, 36,
		"H-DML-LLBWH-1", "Loco lamp White",
		"Pack of 6 x White loco lamps", "DCC Concepts",
		"32.7", "0",
		"1", 1,
		"pack", "54",
		"", "pd-1090697322.htm",
		"", 1,
		"LOCOLAMPS", "0",
		 0)
	
		Entry[1369] = new Element(
		1369, "assets/thumb/locolamps.jpg",
		137, 36,
		"H-DML-LLBWR-1", "Guards van lamp red/white",
		"Pack of 6 x guards van lamps red/white", "DCC Concepts",
		"39", "0",
		"1", 1,
		"pack", "54",
		"", "pd406392756.htm",
		"", 1,
		"LOCOLAMPS", "0",
		 0)
	
		Entry[1370] = new Element(
		1370, "assets/thumb/hlff.jpg",
		137, 104,
		"HDCM-FF", "Flicker Free 2 - single in pack with 6 springs for OO/HO",
		"Flicker Free constant lighting device - available in single, 3 or 6 packs - singles have no lighting boards or LEDs", "DCC Concepts",
		"11.5", "0",
		"1", 1,
		"pack", "51",
		"Multi-pack;Single item@", "pd1396048305.htm",
		"", 1,
		"FLICKER", "0",
		 0)
	
		Entry[1371] = new Element(
		1371, "assets/thumb/fflightboardthumb.jpg",
		137, 105,
		"H-DCM-FFSTRIP-1", "Flicker Free Lighting Strip",
		"Flicker Free Lighting Strip - 10 pack", "DCC Concepts",
		"16.5", "0",
		"1", 1,
		"item", "51",
		"", "pd-1904258512.htm",
		"", 1,
		"FLICKER", "0",
		 0)
	
		Entry[1372] = new Element(
		1372, "assets/thumb/RR both R ang 2thumb.jpg",
		137, 103,
		"H-DCM-RRA6-1", "Rolling Road Active Set",
		"H-DCM-RRA6  Rolling Road Active Set for use on DC or DCC  ", "DCC Concepts",
		"69", "0",
		"1", 1,
		"pack", "56",
		"", "pd1267006603.htm",
		"", 1,
		"ROLLINGROA", "0",
		 0)
	
		Entry[1373] = new Element(
		1373, "assets/images/nopicturegreen.jpg",
		133, 46,
		"H-DCM-RRCOM-1", "Rolling Road Combination Set",
		"H-DCM-RRCOM 1 x Rolling Road Active Set for use on DC or DCC and 1 x Rolling Road Support Set  ", "DCC Concepts",
		"111", "0",
		"1", 1,
		"pack", "56",
		"", "pd1269278880.htm",
		"", 1,
		"ROLLINGROA", "0",
		 0)
	
		Entry[1374] = new Element(
		1374, "assets/thumb/RR bare pk L ang SUPPORTthumb.jpg",
		137, 103,
		"H-DCM-RRS6-1", "Rolling Road Support Set",
		"H-DCM-RRS6  Rolling Road Support Set   ", "DCC Concepts",
		"48", "0",
		"1", 1,
		"pack", "56",
		"", "pd-1981857842.htm",
		"", 1,
		"ROLLINGROA", "0",
		 0)
	
		Entry[1375] = new Element(
		1375, "assets/thumb/pickupspringsthumb.jpg",
		137, 87,
		"H-DCF-PSOO", "Pickup springs, 48 pack",
		"Pickup springs, 48 pack - available for N and OO/HO/EM/P4 gauges", "DCC Concepts",
		"20", "0",
		"1", 1,
		"pack", "51",
		"Scale;OO gauge@", "pd-494238472.htm",
		"", 1,
		"FLICKER", "0",
		 0)
	
		Entry[1376] = new Element(
		1376, "assets/thumb/silvptthumb.jpg",
		137, 129,
		"HT-Silver-1", "Silver conductive paint",
		"Silver loaded conductive varnish", "DCC Concepts",
		"10", "0",
		"1", 1,
		"pack", "57",
		"", "pd766350210.htm",
		"", 1,
		"SOLDER", "0",
		 0)
	
		Entry[1377] = new Element(
		1377, "assets/thumb/sap145.jpg",
		137, 175,
		"H-DCS100-1", "Sapphire 100 solder",
		"Sapphire 100 low melt point solder pack", "DCC Concepts",
		"8.15", "0",
		"1", 1,
		"pack", "57",
		"", "pd-686641738.htm",
		"", 1,
		"SOLDER", "0",
		 0)
	
		Entry[1378] = new Element(
		1378, "assets/thumb/sap145.jpg",
		137, 175,
		"H-DCS145-1", "Sapphire 145 solder",
		"Sapphire 145 solder 4m pack", "DCC Concepts",
		"6", "0",
		"1", 1,
		"pack", "57",
		"", "pd-1547607340.htm",
		"", 1,
		"SOLDER", "0",
		 0)
	
		Entry[1379] = new Element(
		1379, "assets/thumb/sap179.jpg",
		137, 174,
		"H-DCS179-1", "Sapphire 179 solder",
		"Sapphire 179 solder 4m pack", "DCC Concepts",
		"6", "0",
		"1", 1,
		"pack", "57",
		"", "pd83219746.htm",
		"", 1,
		"SOLDER", "0",
		 0)
	
		Entry[1380] = new Element(
		1380, "assets/thumb/dccmsloucthumb.jpg",
		137, 360,
		"H-MSL-OU-1", "4mm Oil station/yard lamp",
		"Pack of 3 Undercoated station/yard oil lamps", "DCC Concepts",
		"35", "0",
		"1", 1,
		"pack", "58",
		"", "pd-1711585557.htm",
		"", 1,
		"STATIONLAM", "0",
		 0)
	
		Entry[1381] = new Element(
		1381, "assets/thumb/hled5packthumb.jpg",
		137, 108,
		"HLED-PW5-1", "5mm Protowhite (Golden White) LED",
		"Pack of 4 x 5mm Protowhite (Golden White) LEDs and 4 x 1K ohm resistors", "DCC Concepts",
		"5.1", "0",
		"1", 1,
		"pack", "52",
		"", "pd-1514247600.htm",
		"", 1,
		"LEDDCC", "0",
		 0)
	
		Entry[1382] = new Element(
		1382, "assets/thumb/hledt1bthumb.jpg",
		137, 150,
		"HLED-T1 BL3-1", "3mm LED Blue",
		"Single 3mm Blue (Clear) LED - min order quantity 2", "DCC Concepts",
		"0.9", "0",
		"1", 1,
		"item", "52",
		"", "pd1084910381.htm",
		"", 2,
		"LEDDCC", "0",
		 0)
	
		Entry[1383] = new Element(
		1383, "assets/thumb/hledt1gthumb.jpg",
		137, 148,
		"HLED-T1 GR3-1", "3mm LED Green",
		"Single 3mm green diffused LED - min order quantity 2", "DCC Concepts",
		"0.2", "0",
		"1", 1,
		"item", "52",
		"", "pd-355903197.htm",
		"", 2,
		"LEDDCC", "0",
		 0)
	
		Entry[1384] = new Element(
		1384, "assets/thumb/hledrd3thumb.jpg",
		137, 111,
		"HLED-T1 RD3-1", "3mm LED Red",
		"Single 3mm red diffused LED - min order quantity 2", "DCC Concepts",
		"0.2", "0",
		"1", 1,
		"item", "52",
		"", "pd-1553395703.htm",
		"", 2,
		"LEDDCC", "0",
		 0)
	
		Entry[1385] = new Element(
		1385, "assets/thumb/r8788thumb.jpg",
		137, 68,
		"R8788", "Corrugated Nissen Hut",
		"R8788 Corrugated Nissen Hut  MSRP £7.85", "Hornby",
		"7.15", "0",
		"1", 1,
		"model", "139",
		"", "pd565064777.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1386] = new Element(
		1386, "assets/thumb/76vw007thumb.jpg",
		137, 92,
		"76VW007", "VW Bus with surfboards",
		"Green/White  - 1:76 scale  MSRP £3.49", "Oxford Diecast",
		"3.25", "0",
		"1", 1,
		"model", "21",
		"", "pd1258716381.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1387] = new Element(
		1387, "assets/thumb/hledt1ythumb.jpg",
		137, 119,
		"HLED-T1 YL3-1", "3mm LED Yellow",
		"Single 3mm yellow diffused LED - min order quantity 2", "DCC Concepts",
		"0.2", "0",
		"1", 1,
		"item", "52",
		"", "pd-1641252513.htm",
		"", 2,
		"LEDDCC", "0",
		 0)
	
		Entry[1388] = new Element(
		1388, "assets/thumb/twpwthumb.jpg",
		137, 128,
		"HLED-TWPGW-1", "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", "52",
		"", "pd-1654220123.htm",
		"", 2,
		"LEDDCC", "0",
		 0)
	
		Entry[1389] = new Element(
		1389, "assets/thumb/twpw4thumb.jpg",
		137, 119,
		"HLED-TWPGW6-1", "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.1", "0",
		"1", 1,
		"pack", "52",
		"", "pd-1609178368.htm",
		"", 1,
		"LEDDCC", "0",
		 0)
	
		Entry[1390] = new Element(
		1390, "assets/thumb/2mmsunnywhite.jpg",
		137, 108,
		"HLED-TWSW-1", "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", "52",
		"", "pd-1284144850.htm",
		"", 2,
		"LEDDCC", "0",
		 0)
	
		Entry[1391] = new Element(
		1391, "assets/thumb/twpw4l.jpg",
		137, 166,
		"HLED-TWSW6-1", "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.5", "0",
		"1", 1,
		"pack", "52",
		"", "pd953389341.htm",
		"", 1,
		"LEDDCC", "0",
		 0)
	
		Entry[1392] = new Element(
		1392, "assets/thumb/mpd.jpg",
		137, 75,
		"H-MPD460", "Motive Power Depot 460mm long",
		"MPD storage and maintenance cradle", "DCC Concepts",
		"38", "0",
		"1", 1,
		"item", "56",
		"Length (mm);460@", "pd1734869469.htm",
		"", 1,
		"ROLLINGROA", "0",
		 0)
	
		Entry[1393] = new Element(
		1393, "assets/thumb/dcc218.jpg",
		137, 135,
		"HP-DCC218", "21 pin to 8 pin DCC adapter",
		"Available singly or in 5-packs", "DCC Concepts",
		"4", "0",
		"1", 1,
		"item", "50",
		"Multi-pack;Single item@", "pd196027926.htm",
		"", 1,
		"ACCESORIES", "0",
		 0)
	
		Entry[1394] = new Element(
		1394, "assets/thumb/dcc-bt2.jpg",
		137, 102,
		"H-DCC-BT2-2", "Bus Terminator",
		"Bus Terminator (RC filter)", "DCC Concepts",
		"7", "0",
		"1", 1,
		"pack", "50",
		"", "pd-1954110003.htm",
		"", 1,
		"ACCESORIES", "0",
		 0)
	
		Entry[1395] = new Element(
		1395, "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",
		"8.5", "0",
		"1", 1,
		"pack", "50",
		"Multi-pack;2-pack@", "pd-215221716.htm",
		"", 1,
		"ACCESORIES", "0",
		 0)
	
		Entry[1396] = new Element(
		1396, "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.65", "0",
		"1", 1,
		"pack", "50",
		"Multi-pack;2-pack@", "pd1426859022.htm",
		"", 1,
		"ACCESORIES", "0",
		 0)
	
		Entry[1397] = new Element(
		1397, "assets/thumb/ald4thumb.jpg",
		137, 76,
		"ALD4", "ALD4 drop in N scale decoder ",
		"Atlas long 4 function drop in N scale decoder with BEMF and  LEDs", "TCS",
		"24.5", "0",
		"1", 1,
		"decoder", "107",
		"", "pd1535732603.htm",
		"", 1,
		"REPLACEN", "0",
		 0)
	
		Entry[1398] = new Element(
		1398, "assets/thumb/amd4.JPG",
		137, 30,
		"AMD4", "AMD4 drop in N scale decoder ",
		"Atlas micro 4 function drop in N scale decoder with BEMF and  LEDs", "TCS",
		"24.5", "0",
		"1", 1,
		"decoder", "107",
		"", "pd1166355397.htm",
		"", 1,
		"REPLACEN", "0",
		 0)
	
		Entry[1399] = new Element(
		1399, "assets/thumb/ASD4.jpg",
		137, 33,
		"ASD4", "ASD4 drop in N scale decoder ",
		"Atlas short 4 function drop in N scale decoder with BEMF and  LEDs", "TCS",
		"25.5", "0",
		"1", 1,
		"decoder", "107",
		"", "pd2106938773.htm",
		"", 1,
		"REPLACEN", "0",
		 0)
	
		Entry[1400] = new Element(
		1400, "assets/thumb/DSCN1970.jpg",
		137, 207,
		"CN", "CN drop in N scale decoder ",
		"2 function drop in N scale decoder with LEDs - 1 amp continuous 2 amp peak", "TCS",
		"25.5", "0",
		"1", 1,
		"decoder", "107",
		"", "pd429058507.htm",
		"", 1,
		"REPLACEN", "0",
		 0)
	
		Entry[1401] = new Element(
		1401, "assets/thumb/cngpatl9.jpg",
		137, 60,
		"CN-GP", "CN drop in N scale decoder ",
		"2 function drop in N scale decoder with LEDs for GP chassis loco - 1 amp continuous 2 amp peak", "TCS",
		"27", "0",
		"1", 1,
		"decoder", "107",
		"", "pd-1408736713.htm",
		"", 1,
		"REPLACEN", "0",
		 0)
	
		Entry[1402] = new Element(
		1402, "assets/thumb/t-imf4thumb.jpg",
		137, 45,
		"IMF4", "IMF4 4 function N scale drop-in decoder",
		"4 Function Drop-In decoder with Auto Adjusting Back EMF for N-Scale Intermountain F3A, F7A, F3B, F7B, and F9B", "TCS",
		"24.5", "0",
		"1", 1,
		"decoder", "107",
		"", "pd1068284819.htm",
		"", 1,
		"REPLACEN", "0",
		 0)
	
		Entry[1403] = new Element(
		1403, "assets/thumb/t-imfp4thumb.jpg",
		137, 44,
		"IMFP4", "IMFP4 4 function N scale drop-in decoder",
		"4 Function Drop-In decoder with Auto Adjusting Back EMF for N-Scale Intermountain, FP7A, FP9A", "TCS",
		"24.5", "0",
		"1", 1,
		"decoder", "107",
		"", "pd1902573561.htm",
		"", 1,
		"REPLACEN", "0",
		 0)
	
		Entry[1404] = new Element(
		1404, "assets/thumb/t-imfta4thumb.jpg",
		137, 46,
		"IMFTA4", "IMFTA4 4 function N scale drop-in decoder",
		"4 Function Drop-In decoder with Auto Adjusting Back EMF for N-Scale Intermountain FTA", "TCS",
		"24.5", "0",
		"1", 1,
		"decoder", "107",
		"", "pd665739983.htm",
		"", 1,
		"REPLACEN", "0",
		 0)
	
		Entry[1405] = new Element(
		1405, "assets/thumb/t-imftb4thumb.jpg",
		137, 39,
		"IMFTB4", "IMFTB4 4 function N scale drop-in decoder",
		"4 Function Drop-In decoder with Auto Adjusting Back EMF for N-Scale Intermountain FTB", "TCS",
		"24.5", "0",
		"1", 1,
		"decoder", "107",
		"", "pd224551317.htm",
		"", 1,
		"REPLACEN", "0",
		 0)
	
		Entry[1406] = new Element(
		1406, "assets/thumb/k0d8a.jpg",
		137, 25,
		"K0D8-A", "K0D8-A 8 function decoder for Kato locos",
		"K0D8-A 8 function drop-in N scale decoder for Kato Alco PA1, P42, E9A and E8/9A units", "TCS",
		"24.5", "0",
		"1", 1,
		"decoder", "107",
		"", "pd1257956921.htm",
		"", 1,
		"REPLACEN", "0",
		 0)
	
		Entry[1407] = new Element(
		1407, "assets/thumb/k0d8_b.jpg",
		137, 42,
		"K0D8-B", "K0D8-B 8 function decoder for Kato locos",
		"K0D8-B 8 function drop-in N scale decoder for Kato F3A and F7A units", "TCS",
		"24.5", "0",
		"1", 1,
		"decoder", "107",
		"", "pd1027847125.htm",
		"", 1,
		"REPLACEN", "0",
		 0)
	
		Entry[1408] = new Element(
		1408, "assets/thumb/k0d8_c.jpg",
		137, 39,
		"K0D8-C", "K0D8-C 8 function decoder for Kato locos",
		"K0D8-C 8 function drop-in N scale decoder for Kato PH unit", "TCS",
		"24.5", "0",
		"1", 1,
		"decoder", "107",
		"", "pd-1579585013.htm",
		"", 1,
		"REPLACEN", "0",
		 0)
	
		Entry[1409] = new Element(
		1409, "assets/thumb/K0D8_D.jpg",
		137, 50,
		"K0D8-D", "K0D8-D 8 function decoder for Kato locos",
		"K0D8- D 8 function drop-in N scale decoder for Kato B units - PB1, F3B, F7B, E9B", "TCS",
		"25.5", "0",
		"1", 1,
		"decoder", "107",
		"", "pd-2008714447.htm",
		"", 1,
		"REPLACEN", "0",
		 0)
	
		Entry[1410] = new Element(
		1410, "assets/thumb/tcs_k3d3.jpg",
		137, 137,
		"K3D3", "K3D3 3 function decoder for Kato NW2 loco",
		"K3D3 3 function drop-in decoder for Kato NW2  N scale loco", "TCS",
		"22.5", "0",
		"1", 1,
		"decoder", "107",
		"", "pd900208042.htm",
		"", 1,
		"REPLACEN", "0",
		 0)
	
		Entry[1411] = new Element(
		1411, "assets/thumb/kid4.jpg",
		29, 150,
		"KID4", "KID4 drop in N scale decoder ",
		"Kato 4 function drop in N scale decoder with BEMF and  LEDs", "TCS",
		"25.5", "0",
		"1", 1,
		"decoder", "107",
		"", "pd-362952159.htm",
		"", 1,
		"REPLACEN", "0",
		 0)
	
		Entry[1412] = new Element(
		1412, "assets/thumb/mp15nthumb.jpg",
		137, 22,
		"MP-15N", "MP-15N 4 function drop-in decoder for N scale Atlas MP15 loco",
		"MP-15N 4 function drop-in decoder for N scale Atlas MP15 loco", "TCS",
		"26.55", "0",
		"1", 1,
		"decoder", "107",
		"", "pd1239180501.htm",
		"1::10::2.5;", 1,
		"REPLACEN", "0",
		 0)
	
		Entry[1413] = new Element(
		1413, "assets/thumb/A6X.jpg",
		137, 41,
		"A6X", "A6X Drop in 6 function decoder with controllable power output and BEMF",
		"A6X Drop in decoder with BEMF for OO/HO diesel engines with factory installed DCC boards", "TCS",
		"23.5", "0",
		"1", 1,
		"decoder", "108",
		"", "pd1119710413.htm",
		"", 1,
		"REPLACEOO", "0",
		 0)
	
		Entry[1414] = new Element(
		1414, "assets/thumb/VO1000Release.jpg",
		137, 37,
		"VO-1000", "VO-1000 Atlas N scale decoder",
		"4 function drop-in replacement board for Atlas N scale VO-1000 locomotive with LEDs", "TCS",
		"26.55", "0",
		"1", 1,
		"decoder", "107",
		"", "pd1149252891.htm",
		"", 1,
		"REPLACEN", "0",
		 0)
	
		Entry[1415] = new Element(
		1415, "assets/thumb/hpsc3.jpg",
		137, 193,
		"H-DCF-MS-BOL-1", "Mixed pack of Micro machine screws and bolts",
		"48 of each assorted", "DCC Concepts",
		"10", "0",
		"1", 1,
		"pack", "59",
		"", "pd-69341822.htm",
		"", 1,
		"TOOLSETC", "0",
		 0)
	
		Entry[1416] = new Element(
		1416, "assets/thumb/microscrews.jpg",
		137, 68,
		"H-DCF-MS-CSK-1", "Mixed pack of micro Philips CSK Head screws",
		"60 x assorted self tapping screws", "DCC Concepts",
		"6.5", "0",
		"1", 1,
		"pack", "59",
		"", "pd-1276704338.htm",
		"", 1,
		"TOOLSETC", "0",
		 0)
	
		Entry[1417] = new Element(
		1417, "assets/thumb/hpsc2.jpg",
		137, 193,
		"H-DCF-MS-PAN-1", "Mixed pack of micro Flat Pan Head screws",
		"60 x assorted self tapping screws", "DCC Concepts",
		"6.5", "0",
		"1", 1,
		"pack", "59",
		"", "pd-2097807476.htm",
		"", 1,
		"TOOLSETC", "0",
		 0)
	
		Entry[1418] = new Element(
		1418, "assets/thumb/mp185thumb.jpg",
		137, 128,
		"HP-MP185-1", "Track Cutter",
		"High quality precision track cutter", "DCC Concepts",
		"14", "0",
		"1", 1,
		"item", "59",
		"", "pd-1307899128.htm",
		"", 1,
		"TOOLSETC", "0",
		 0)
	
		Entry[1419] = new Element(
		1419, "assets/thumb/mp250thumb.jpg",
		137, 151,
		"HP-MP250-1", "Flush Cutter",
		"Flush Cutter, small, orange RV", "DCC Concepts",
		"10.2", "0",
		"1", 1,
		"item", "59",
		"", "pd-1447688074.htm",
		"", 1,
		"TOOLSETC", "0",
		 0)
	
		Entry[1420] = new Element(
		1420, "assets/thumb/mp251thumb.jpg",
		137, 152,
		"HP-MP251A-1", "Long Fine Taper Jaw Pliers",
		"Fine parallel pliers. 3mm RV", "DCC Concepts",
		"10.2", "0",
		"1", 1,
		"item", "59",
		"", "pd-1830339692.htm",
		"", 1,
		"TOOLSETC", "0",
		 0)
	
		Entry[1421] = new Element(
		1421, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ620", "Fire Engines",
		"HQ620", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd-1264952350.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[1422] = new Element(
		1422, "assets/thumb/b2bgauge145.jpg",
		137, 124,
		"H-DCG-145", "Back to back gauge",
		"One standard back to back gauge for OO/HO scales", "DCC Concepts",
		"13", "0",
		"1", 1,
		"item", "27",
		"", "pd-2086671136.htm",
		"", 1,
		"Tools", "0",
		 0)
	
		Entry[1423] = new Element(
		1423, "assets/thumb/btod88thumb.jpg",
		137, 71,
		"BTOD88", "AEC 4w Dropside     Cat. No. BTOD88",
		"BRS - Cheapside Brimingham Group  MSRP £6.99", "Base Toys",
		"6.5", "0",
		"1", 1,
		"model", "6",
		"", "pd-300135805.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1424] = new Element(
		1424, "assets/thumb/btod89thumb.jpg",
		137, 82,
		"BTOD89", "Leyland FG Crewbus     Cat. No. BTOD89",
		"British Railways (Green)  MSRP £6.99", "Base Toys",
		"6.5", "0",
		"1", 1,
		"model", "6",
		"", "pd-1251024791.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1425] = new Element(
		1425, "assets/thumb/btod90thumb.jpg",
		137, 60,
		"BTOD90", "Bristol 8w Flatbed     Cat. No. BTOD90",
		"Somerset Wire Company (BRS)  MSRP £6.99", "Base Toys",
		"6.5", "0",
		"1", 1,
		"model", "6",
		"", "pd-1195622209.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1426] = new Element(
		1426, "assets/thumb/btod91thumb.jpg",
		137, 88,
		"BTOD91", "Leyland FG 4w Van     Cat. No. BTOD91",
		"Railfreight   MSRP £6.99", "Base Toys",
		"6.5", "0",
		"1", 1,
		"model", "6",
		"", "pd-1081265915.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1427] = new Element(
		1427, "assets/thumb/btod93thumb.jpg",
		137, 53,
		"BTOD93", "AEC 4w Flatbed with Flat Trailer    Cat. No. BTOD93",
		"Pickfords   MSRP £9.99", "Base Toys",
		"8.7", "0",
		"1", 1,
		"model", "6",
		"", "pd-1434586437.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1428] = new Element(
		1428, "assets/thumb/btod92.jpg",
		137, 75,
		"BTOD92", "Leyland &rsquo;MO&rsquo; 8w Tanker    Cat. No. BTOD92",
		"Shell-BP   MSRP £6.99", "Base Toys",
		"6.5", "0",
		"1", 1,
		"model", "6",
		"", "pd-1545952415.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1429] = new Element(
		1429, "assets/thumb/em76691thumb.jpg",
		137, 92,
		"EM76691", "Austin K8 Three Way Van GREEN  Cat. No. EM76691",
		"Green  MSRP £4.50", "Classix",
		"4", "0",
		"1", 1,
		"model", "8",
		"", "pd1477933439.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1430] = new Element(
		1430, "assets/thumb/em76693thumb.jpg",
		137, 90,
		"EM76693", "Austin K8     Cat. No. EM76693",
		"Pink Paraffin   MSRP £4.50", "Classix",
		"4", "0",
		"1", 1,
		"model", "8",
		"", "pd-1545201723.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1431] = new Element(
		1431, "assets/thumb/em76853thumb.jpg",
		137, 79,
		"EM76853", "Austin A35 4-door Saloon    Cat. No. EM76853",
		"Beige  MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd587478907.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1432] = new Element(
		1432, "assets/thumb/em76885thumb.jpg",
		137, 77,
		"EM76885", "Triumph Herald 13/60 Estate   Cat. No. EM76885",
		"Primrose Yellow   MSRP £4.50", "Classix",
		"4", "0",
		"1", 1,
		"model", "8",
		"", "pd-2027007427.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1433] = new Element(
		1433, "assets/thumb/utpcat5.jpg",
		137, 60,
		"N-UTP-CAT5", "UTP-CAT5 cab bus fascia panel",
		"Cab Bus UTP fascia panel with RJ12 and CAT5 connectors", "NCE",
		"13", "0",
		"1", 1,
		"item", "95",
		"", "pd-1021179879.htm",
		"", 1,
		"CabsW", "0",
		 0)
	
		Entry[1434] = new Element(
		1434, "assets/thumb/UTP-CAT5 Cable Adapterthumb.jpg",
		137, 64,
		"N-CAT5-UTP", "CAT5 to RJ cable adapter",
		"", "NCE",
		"6.75", "0",
		"1", 1,
		"item", "95",
		"", "pd415002607.htm",
		"", 1,
		"CabsW", "0",
		 0)
	
		Entry[1435] = new Element(
		1435, "assets/thumb/btod85thumb.jpg",
		137, 85,
		"BTOD85", "Leyland FG Van    Cat. No. BTOD85",
		"Whittles Bakery - Sunblest  MSRP £6.99", "Base Toys",
		"6.5", "0",
		"1", 1,
		"model", "6",
		"", "pd1278670452.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1436] = new Element(
		1436, "assets/thumb/efe14204thumb.jpg",
		137, 73,
		"14204", "Bristol FLF Lodekka  Cat. No. 14204",
		"Western National", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd1278747167.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1437] = new Element(
		1437, "assets/thumb/efe25810thumb.jpg",
		137, 71,
		"25810", "Daimler DMS 1 Door  Cat. No. 25810",
		"GPTE Lancashire Utd", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd335514071.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1438] = new Element(
		1438, "assets/thumb/efe29624thumb.jpg",
		137, 68,
		"29624", "Leyland Olympian  Cat. No. 29624",
		"North Western", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd-528810019.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1439] = new Element(
		1439, "assets/thumb/efe36003thumb.jpg",
		137, 90,
		"36003", "Leyland RTL Bus  Cat. No. 36003",
		"Central SMT", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd329609573.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1440] = new Element(
		1440, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ657-1", "Church Bell - 8 bell peal - NEW",
		"HQ657-1", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd414725461.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[1441] = new Element(
		1441, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ657-2", "Church Bell - 10 bell peal - NEW",
		"HQ657-2", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd-608710773.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[1442] = new Element(
		1442, "assets/thumb/em76641thumb.jpg",
		137, 101,
		"EM76641", "NCB Electric High Top Van Cat. No. EM76641",
		"British Railways  MSRP £4.50", "Classix",
		"4", "0",
		"1", 1,
		"model", "8",
		"", "pd1279014192.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1443] = new Element(
		1443, "assets/thumb/76ak002thumb.jpg",
		137, 96,
		"76AK002", "Austin K8 3-Way",
		"Pink Paraffin - 1:76 scale    MSRP £4.50", "Oxford Diecast",
		"4", "0",
		"1", 1,
		"model", "21",
		"", "pd338204732.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1444] = new Element(
		1444, "assets/thumb/76ak003thumb.jpg",
		137, 95,
		"76AK003", "Austin K8 3-Way",
		"Walls - 1:76 scale    MSRP £4.50", "Oxford Diecast",
		"4.1", "0",
		"1", 1,
		"model", "21",
		"", "pd1113630922.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1445] = new Element(
		1445, "assets/thumb/76vw005thumb.jpg",
		137, 70,
		"76VW005", "VW Van",
		"Senegal Red   - 1:76 scale  MSRP £3.49", "Oxford Diecast",
		"3.25", "0",
		"1", 1,
		"model", "21",
		"", "pd-194141176.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1446] = new Element(
		1446, "assets/thumb/76we009thumb.jpg",
		137, 106,
		"76WE009", "W &amp; E Milk Float",
		"Scottish Dairy Farmers - 1:76 scale    MSRP £3.25", "Oxford Diecast",
		"3", "0",
		"1", 1,
		"model", "21",
		"", "pd-685880970.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1447] = new Element(
		1447, "assets/thumb/76jm018thumb.jpg",
		137, 84,
		"76JM018", "Morris J2 Postbus",
		"Royal Mail  - 1:76 scale    MSRP £3.95", "Oxford Diecast",
		"3.4", "0",
		"1", 1,
		"model", "21",
		"", "pd-865246060.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1448] = new Element(
		1448, "assets/thumb/76ang033thumb.jpg",
		137, 95,
		"76ANG033", "Anglia Van",
		"Lyons Maid - 1:76 scale    MSRP£2.95", "Oxford Diecast",
		"3", "0",
		"1", 1,
		"model", "21",
		"", "pd-1710183198.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1449] = new Element(
		1449, "assets/thumb/76ang014thumb.jpg",
		137, 107,
		"76ANG014", "Anglia Van",
		"Tonibell Blue - 1:76 scale    MSRP£3.49", "Oxford Diecast",
		"3", "0",
		"1", 1,
		"model", "21",
		"", "pd-98392608.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1450] = new Element(
		1450, "assets/thumb/76ca023thumb.jpg",
		137, 87,
		"76CA023", "Bedford CA Milk Float",
		"Co-op - 1:76 scale    MSRP£3.95", "Oxford Diecast",
		"3.4", "0",
		"1", 1,
		"model", "21",
		"", "pd-413171954.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1451] = new Element(
		1451, "assets/thumb/d14srp2.jpg",
		137, 115,
		"N-D14SR", "D14SR OO/HO 6 function decoder",
		"D14SR OO/HO plug and play decoder, 1.3 Amp (2 Amp peak) 6 functions", "NCE",
		"20.9", "0",
		"1", 1,
		"decoder", "90",
		"", "pd1279263478.htm",
		"", 1,
		"HODec", "0",
		 0)
	
		Entry[1452] = new Element(
		1452, "assets/thumb/blocd8thumb.jpg",
		137, 103,
		"TD-BLOCD8", "BlocD8™",
		"High density Block Detector", "Team Digital",
		"68", "0",
		"1", 1,
		"item", "101",
		"", "pd1279576923.htm",
		"", 1,
		"TD", "0",
		 0)
	
		Entry[1453] = new Element(
		1453, "assets/thumb/sic24thumb.jpg",
		137, 83,
		"TD-SIC24", "Signal and Indicator Controller",
		"SIC24", "Team Digital",
		"37", "0",
		"1", 1,
		"item", "63",
		"", "pd1280140984.htm",
		"", 1,
		"OTHRDCCDIS", "10",
		 0)
	
		Entry[1454] = new Element(
		1454, "assets/thumb/dcp-cmsc.jpg",
		137, 138,
		"H-DCP-CMSC-R", "Cobalt Switch Pack (Panel Mountings)",
		"Red LEDs", "DCC Concepts",
		"13.5", "0",
		"1", 1,
		"pack", "49",
		"Color;Red@", "pd1280227074.htm",
		"", 1,
		"COBALT", "0",
		 0)
	
		Entry[1455] = new Element(
		1455, "assets/thumb/b2bgauge145.jpg",
		137, 124,
		"H-DCG-1475", "Back to back gauge",
		"One fine scale back to back gauge for OO scale", "DCC Concepts",
		"13", "0",
		"1", 1,
		"item", "27",
		"", "pd-1320241704.htm",
		"", 1,
		"Tools", "0",
		 0)
	
		Entry[1456] = new Element(
		1456, "assets/thumb/rollergauge.jpg",
		137, 98,
		"H-DCG-RS", "Roller gauge for 16.5mm standard",
		"Pair of roller gauges for OO scale", "DCC Concepts",
		"12.25", "0",
		"1", 1,
		"item", "27",
		"", "pd-314461340.htm",
		"", 1,
		"Tools", "0",
		 0)
	
		Entry[1457] = new Element(
		1457, "assets/thumb/rollergauge.jpg",
		137, 98,
		"H-DCG-RF", "Roller gauge for 16.5mm fine gauge",
		"Pair of roller gauges for OO scale fine gauge", "DCC Concepts",
		"12.25", "0",
		"1", 1,
		"item", "27",
		"", "pd-780140112.htm",
		"", 1,
		"Tools", "0",
		 0)
	
		Entry[1458] = new Element(
		1458, "assets/thumb/b2bgauge145.jpg",
		137, 124,
		"H-DCG-145-1", "Back to back gauge",
		"One standard back to back gauge for OO/HO scales", "DCC Concepts",
		"13", "0",
		"1", 1,
		"item", "59",
		"", "pd-1893323588.htm",
		"", 1,
		"TOOLSETC", "0",
		 0)
	
		Entry[1459] = new Element(
		1459, "assets/thumb/b2bgauge145.jpg",
		137, 124,
		"H-DCG-1475-1", "Back to back gauge",
		"One fine scale back to back gauge for OO scale", "DCC Concepts",
		"13", "0",
		"1", 1,
		"item", "59",
		"", "pd-1164869496.htm",
		"", 1,
		"TOOLSETC", "0",
		 0)
	
		Entry[1460] = new Element(
		1460, "assets/thumb/rollergauge.jpg",
		137, 98,
		"H-DCG-RF-1", "Roller gauge for 16.5mm fine gauge",
		"Pair of roller gauges for OO scale fine gauge", "DCC Concepts",
		"12.25", "0",
		"1", 1,
		"item", "59",
		"", "pd1189873940.htm",
		"", 1,
		"TOOLSETC", "0",
		 0)
	
		Entry[1461] = new Element(
		1461, "assets/thumb/rollergauge.jpg",
		137, 98,
		"H-DCG-RS-1", "Roller gauge for 16.5mm standard",
		"Pair of roller gauges for OO scale", "DCC Concepts",
		"12.25", "0",
		"1", 1,
		"item", "59",
		"", "pd-1300721056.htm",
		"", 1,
		"TOOLSETC", "0",
		 0)
	
		Entry[1462] = new Element(
		1462, "assets/thumb/lnerlocolampthumb.jpg",
		92, 109,
		"H-DML-LLLNERR", "Loco lamp LNER Red",
		"Pack of 6 x LNER red loco lamps", "DCC Concepts",
		"34", "0",
		"1", 1,
		"pack", "25",
		"", "pd-274814868.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[1463] = new Element(
		1463, "assets/thumb/lnerlocolampthumb.jpg",
		92, 109,
		"H-DML-LLLNERW", "Loco lamp LNER White",
		"Pack of 6 x LNER white loco lamps", "DCC Concepts",
		"32.7", "0",
		"1", 1,
		"pack", "25",
		"", "pd-1762659206.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[1464] = new Element(
		1464, "assets/thumb/lnerlocolampthumb.jpg",
		92, 109,
		"H-DML-LLLNERR-1", "Loco lamp LNER Red",
		"Pack of 6 x LNER red loco lamps", "DCC Concepts",
		"34", "0",
		"1", 1,
		"pack", "54",
		"", "pd1454806840.htm",
		"", 1,
		"LOCOLAMPS", "0",
		 0)
	
		Entry[1465] = new Element(
		1465, "assets/thumb/lnerlocolampthumb.jpg",
		92, 109,
		"H-DML-LLLNERW-1", "Loco lamp LNER White",
		"Pack of 6 x LNER white loco lamps", "DCC Concepts",
		"32.7", "0",
		"1", 1,
		"pack", "54",
		"", "pd-1125699546.htm",
		"", 1,
		"LOCOLAMPS", "0",
		 0)
	
		Entry[1466] = new Element(
		1466, "assets/thumb/em76676thumb.jpg",
		137, 79,
		"EM76676", "Ford Thames 300E Van 5 cwt  Cat. No. EM76676",
		"Mid Green", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd1280780102.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1467] = new Element(
		1467, "assets/thumb/em76692thumb.jpg",
		137, 96,
		"EM76692", "Austin K8 Travelling Butcher’s Shop    Cat. No. EM76692",
		"MSRP £4.50", "Classix",
		"4", "0",
		"1", 1,
		"model", "8",
		"", "pd1521584050.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1468] = new Element(
		1468, "assets/thumb/em76695thumb.jpg",
		137, 94,
		"EM76695", "Austin K8 Welfarer Ambulance    Cat. No. EM76695",
		"MSRP £4.50", "Classix",
		"4", "0",
		"1", 1,
		"model", "8",
		"", "pd-2066727632.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1469] = new Element(
		1469, "assets/thumb/em76880thumb.jpg",
		137, 69,
		"EM76880", "Triumph Herald 13/60 Convertible Hood Down       Cat. No. EM76880",
		"Blue  MSRP £4.50", "Classix",
		"4", "0",
		"1", 1,
		"model", "8",
		"", "pd374153276.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1470] = new Element(
		1470, "assets/thumb/efe23405thumb.jpg",
		137, 62,
		"23405", "Bedford TK Flatbed  Cat. No. 23405",
		"Staplehurst Transits", "EFE",
		"18.4", "0",
		"1", 1,
		"model", "17",
		"", "pd447158948.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1471] = new Element(
		1471, "assets/thumb/efe20644thumb.jpg",
		137, 50,
		"20644", "Plaxton Pointer Dart  Cat. No. 20644",
		"Uxbridge Buses", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd-2083990266.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1472] = new Element(
		1472, "assets/thumb/efe29623thumb.jpg",
		137, 71,
		"29623", "Leyland Olympian  Cat. No. 29623",
		"Midland General (Trent)", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd-1471704718.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1473] = new Element(
		1473, "assets/thumb/efe29907thumb.jpg",
		137, 62,
		"29907", "AEC 10T10  Cat. No. 29907",
		"Greenline", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd-670802704.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1474] = new Element(
		1474, "assets/thumb/efe30708sbthumb.jpg",
		137, 74,
		"30708SB", "AEC Renown  Cat. No. 30708SB",
		"SELNEC Southern Showbus", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd576867486.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1475] = new Element(
		1475, "assets/thumb/smd84thumb.jpg",
		137, 100,
		"TD-SMD84", "Switch Machine Driver with Serial Bus",
		"SMD84 - Switch Machine Driver controls up to 8 solenoid and/or stall type motors", "Team Digital",
		"69", "0",
		"1", 1,
		"item", "101",
		"", "pd1303814331.htm",
		"", 1,
		"TD", "0",
		 0)
	
		Entry[1476] = new Element(
		1476, "assets/thumb/ciderthumb.jpg",
		137, 34,
		"HR6125", "Danzas Cargowaggon with sliding doors",
		"Taunton Cider       Limited Edition  MSRP £34.00", "Rivarossi",
		"32.5", "0",
		"1", 1,
		"item", "157",
		"", "pd98522093.htm",
		"", 1,
		"BachRoll", "0",
		 0)
	
		Entry[1477] = new Element(
		1477, "assets/thumb/efe23102thumb.jpg",
		137, 49,
		"23102", "AEC Ergo 4 Axle Flatbed  Cat. No. 23102",
		"McPhees", "EFE",
		"18.4", "0",
		"1", 1,
		"model", "17",
		"", "pd-28594187.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1478] = new Element(
		1478, "assets/thumb/efe32602thumb.jpg",
		137, 61,
		"32602", "AEC MkV Oval Tanker 4 Axle  Cat. No. 32602",
		"Pickfords", "EFE",
		"18.4", "0",
		"1", 1,
		"model", "17",
		"", "pd-276401839.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1479] = new Element(
		1479, "assets/thumb/efe12308thumb.jpg",
		137, 57,
		"12308", "Harrington Grenadier  Cat. No. 12308",
		"Barton Transport", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd1284146813.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1480] = new Element(
		1480, "assets/thumb/efe16225thumb.jpg",
		137, 56,
		"16225", "Bristol LS/MW  Cat. No. 16225",
		"Midland General", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd-1036376845.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1481] = new Element(
		1481, "assets/thumb/efe20449thumb.jpg",
		137, 69,
		"20449", "Bristol VRIII  Cat. No. 20449",
		"Lowland Scottish", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd97526319.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1482] = new Element(
		1482, "assets/thumb/efe35204thumb.jpg",
		137, 47,
		"35204", "36&rsquo; BET 6Bay AEC Reliance  Cat. No. 35204",
		"East Kent", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd-556999705.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1483] = new Element(
		1483, "assets/thumb/hlff.jpg",
		137, 104,
		"H-DCM-FFN-2-1", "Flicker Free 2 for N scale",
		"Flicker Free 2 constant lighting device - available as single with no light board", "DCC Concepts",
		"11.5", "0",
		"1", 1,
		"pack", "51",
		"", "pd1284219249.htm",
		"", 1,
		"FLICKER", "0",
		 0)
	
		Entry[1484] = new Element(
		1484, "assets/thumb/hlff.jpg",
		137, 104,
		"HDCM-FF", "Flicker Free 2 - single in pack with 6 springs for OO/HO",
		"Flicker Free constant lighting device - available in single, 3 or 6 packs - singles have no lighting boards or LEDs", "DCC Concepts",
		"11.5", "0",
		"1", 1,
		"pack", "25",
		"Multi-pack;Single item@", "pd2010845059.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[1485] = new Element(
		1485, "assets/thumb/76sft001thumb.jpg",
		137, 84,
		"76SFT001", "Standard Flying Twelve",
		"Black - 1:76 scale    MSRP £3.75", "Oxford Diecast",
		"3.4", "0",
		"1", 1,
		"model", "21",
		"", "pd1040929143.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1486] = new Element(
		1486, "assets/thumb/148nds002thumb.jpg",
		137, 76,
		"148NDS002", "Daimler DS420 Hearse",
		"Black - 1:148 scale    MSRP£2.95", "Oxford Diecast",
		"2.75", "0",
		"1", 1,
		"model", "22",
		"", "pd-340356995.htm",
		"", 1,
		"OXN", "0",
		 0)
	
		Entry[1487] = new Element(
		1487, "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.45", "0",
		"1", 1,
		"model", "1",
		"", "pd1284631180.htm",
		"", 1,
		"CLEAR", "40",
		 0)
	
		Entry[1488] = new Element(
		1488, "assets/thumb/CC13603thumb.jpg",
		137, 54,
		"CC13603-1", "DAF CF Curtainside  Cat. No. CC13603",
		"Tyson H Burridge Ltd", "Corgi",
		"57.45", "0",
		"1", 1,
		"model", "1",
		"", "pd981042074.htm",
		"", 1,
		"CLEAR", "40",
		 0)
	
		Entry[1489] = new Element(
		1489, "assets/thumb/om46303thumb.jpg",
		137, 87,
		"OM46303", "Routemaster Open Top  Cat. No. OM46303",
		"Arriva The Original Sightseeing Tour  MRSP £29.99", "Corgi",
		"27", "0",
		"1", 1,
		"model", "12",
		"", "pd1284719152.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[1490] = new Element(
		1490, "assets/thumb/eu621.jpg",
		137, 105,
		"EU621", "EU621 OO/HO scale 21-pin decoder",
		"6 function direct plug 21-pin decoder - 1 amp continuous 2 amp peak", "TCS",
		"22.75", "0",
		"1", 1,
		"decoder", "103",
		"", "pd-235284813.htm",
		"", 1,
		"TCS21", "0",
		 0)
	
		Entry[1491] = new Element(
		1491, "assets/thumb/mc21.jpg",
		137, 59,
		"MC21-25", "Harness to connect MC series decoders to 21-pin socket",
		"Wires 1&quot;/25mm long", "TCS",
		"6.5", "0",
		"1", 1,
		"item", "103",
		"Length (mm);25@", "pd521885399.htm",
		"", 1,
		"TCS21", "0",
		 0)
	
		Entry[1492] = new Element(
		1492, "assets/thumb/t21.jpg",
		137, 68,
		"T21-25", "Harness to connect T series decoders to 21-pin socket",
		"Wires 1&quot;/25mm long", "TCS",
		"6.5", "0",
		"1", 1,
		"item", "103",
		"Length (mm);25@", "pd1279880278.htm",
		"", 1,
		"TCS21", "0",
		 0)
	
		Entry[1493] = new Element(
		1493, "assets/thumb/ll8_jpg.jpg",
		137, 52,
		"LL8", "LL8 Drop in 8 function decoder with BEMF",
		"LL8 Drop in decoder with BEMF for Life Like Proto 2000", "TCS",
		"26.55", "0",
		"1", 1,
		"decoder", "108",
		"", "pd1529571579.htm",
		"", 1,
		"REPLACEOO", "0",
		 0)
	
		Entry[1494] = new Element(
		1494, "assets/thumb/eun651p-18.jpg",
		137, 45,
		"EUN651P-18", "EUN651 N scale decoder for European locos with 18mm harness",
		"2 function wired N scale decoder with 6-pin NEM 651 interface for Fleischmann locos - 1 amp continuous 2 amp peak", "TCS",
		"29.6", "0",
		"1", 1,
		"decoder", "107",
		"", "pd-1768553567.htm",
		"", 1,
		"REPLACEN", "0",
		 0)
	
		Entry[1495] = new Element(
		1495, "assets/thumb/21-hw5.jpg",
		137, 47,
		"21HW-5", "Circuit board with NEM21 socket and solder pads - 5-pack",
		"", "TCS",
		"11", "0",
		"1", 1,
		"item", "103",
		"", "pd-151652681.htm",
		"", 1,
		"TCS21", "0",
		 0)
	
		Entry[1496] = new Element(
		1496, "assets/thumb/9PinJSTFemale.jpg",
		137, 65,
		"JST-9", "9-pin JST Female Socket on circuit board - 5-pack",
		"", "TCS",
		"11", "0",
		"1", 1,
		"item", "104",
		"", "pd1459009587.htm",
		"", 1,
		"TCS Harn", "0",
		 0)
	
		Entry[1497] = new Element(
		1497, "assets/thumb/m4t.jpg",
		137, 233,
		"M4T", "M4T 4 function decoder for trams/streetcars",
		"M4T 4 function decoder for trams/streetcars", "TCS",
		"31.65", "0",
		"1", 1,
		"decoder", "102",
		"", "pd-1757428327.htm",
		"", 1,
		"TCSDCC", "0",
		 0)
	
		Entry[1498] = new Element(
		1498, "assets/thumb/dxdh465.jpg",
		137, 137,
		"DXDH465", "DH465",
		"DH465 HO/O 4 AMP - 6 FUNCTION DECODER W/DIGITRAX HARNESS", "Digitrax",
		"39.8", "0",
		"1", 1,
		"decoder", "70",
		"", "pd-257082409.htm",
		"", 1,
		"DXHODEC", "0",
		 0)
	
		Entry[1499] = new Element(
		1499, "assets/thumb/dxdh465.jpg",
		137, 137,
		"DXDH465-1", "DH465",
		"DH465 HO/O 4 AMP - 6 FUNCTION DECODER W/DIGITRAX HARNESS", "Digitrax",
		"39.8", "0",
		"1", 1,
		"decoder", "72",
		"", "pd-1458775722.htm",
		"", 1,
		"DXLARGE", "0",
		 0)
	
		Entry[1500] = new Element(
		1500, "assets/thumb/76sft002thumb.jpg",
		137, 80,
		"76SFT002", "Standard Flying Twelve",
		"Maroon - 1:76 scale    MSRP £3.75", "Oxford Diecast",
		"3.4", "0",
		"1", 1,
		"model", "21",
		"", "pd1286275330.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1501] = new Element(
		1501, "assets/thumb/efe13204thumb.jpg",
		137, 57,
		"13204", "Atkinson 8 Wheel Tanker  Cat. No. 13204",
		"Bulwark Transport", "EFE",
		"18.4", "0",
		"1", 1,
		"model", "17",
		"", "pd-542009600.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1502] = new Element(
		1502, "assets/thumb/efe37301thumb.jpg",
		137, 67,
		"37301", "AEC MkV 4 Axle Box Van  Cat. No. 37301",
		"Fridged Freight", "EFE",
		"18.4", "0",
		"1", 1,
		"model", "17",
		"", "pd262775346.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1503] = new Element(
		1503, "assets/thumb/efe16129thumb.jpg",
		137, 87,
		"16129", "Leyland PD2 Highbridge  Cat. No. 16129",
		"Ashton Under Lyne", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd952653102.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1504] = new Element(
		1504, "assets/thumb/efe17225thumb.jpg",
		137, 49,
		"17225", "Leyland National Mk1 Long  Cat. No. 17225",
		"Burnley &amp; Pendle", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd-269076724.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1505] = new Element(
		1505, "assets/thumb/efe30512thumb.jpg",
		137, 63,
		"30512", "Guy GS Special  Cat. No. 30512",
		"Tillingbourne", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd177775642.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1506] = new Element(
		1506, "assets/thumb/efe30709thumb.jpg",
		137, 72,
		"30709", "AEC Renown  Cat. No. 30709",
		"Red Rover", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd-1552330792.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1507] = new Element(
		1507, "assets/thumb/efe31705thumb.jpg",
		137, 79,
		"31705", "RMC Routemaster Coach  Cat. No. 31705",
		"London Country NBC", "EFE",
		"21.45", "0",
		"1", 1,
		"model", "18",
		"", "pd-866707002.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1508] = new Element(
		1508, "assets/thumb/efe14011.jpg",
		137, 91,
		"14011", "Bristol Lodekka FLF  Cat. No. 14011",
		"Scottish Motor Transport", "EFE",
		"17.35", "0",
		"1", 1,
		"model", "18",
		"", "pd1288266185.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1509] = new Element(
		1509, "assets/thumb/efe14014thumb.jpg",
		137, 78,
		"14014", "Bristol FLF Lodekka  Cat. No. 14014",
		"Eastern Scottish", "EFE",
		"20.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-679860911.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1510] = new Element(
		1510, "assets/thumb/EFE15805thumb.jpg",
		137, 75,
		"15805", "Leyland PD1 Lowbridge  Cat. No. 15805",
		"Central SMT", "EFE",
		"15.8", "0",
		"1", 1,
		"model", "18",
		"", "pd-1616707878.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1511] = new Element(
		1511, "assets/thumb/efe16010thumb.jpg",
		137, 85,
		"16010", "Leyland PD2 Lowbridge  Cat. No. 16010",
		"Western Welsh", "EFE",
		"19.4", "0",
		"1", 1,
		"model", "18",
		"", "pd-206972442.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1512] = new Element(
		1512, "assets/thumb/efe35301.jpg",
		137, 48,
		"35301", "36&rsquo; BET 6 Bay  Cat. No. 35301",
		"Southdown - 2009 Showbus/Subscriber Model", "EFE",
		"28.5", "0",
		"1", 1,
		"model", "18",
		"", "pd435656987.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1513] = new Element(
		1513, "assets/thumb/efe37401thumb.jpg",
		137, 67,
		"37401", "Atkinson Artic Tanker  Cat. No. 37401",
		"Monkton &rsquo;Flowers Keg&rsquo;", "EFE",
		"19.15", "0",
		"1", 1,
		"model", "17",
		"", "pd-1752630037.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1514] = new Element(
		1514, "assets/thumb/efe24106thumb.jpg",
		137, 59,
		"24106", "Bedford TK 2 axle Dropside  Cat. No. 24106",
		"Watneys &rsquo;Tamplins&rsquo;", "EFE",
		"19.15", "0",
		"1", 1,
		"model", "17",
		"", "pd1288862645.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1515] = new Element(
		1515, "assets/thumb/efe31505thumb.jpg",
		137, 82,
		"31505", "RM Routemaster  Cat. No. 31505",
		"Platinum East London", "EFE",
		"22.25", "0",
		"1", 1,
		"model", "18",
		"", "pd1557534985.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1516] = new Element(
		1516, "assets/thumb/efe29625thumb.jpg",
		137, 69,
		"29625", "Leyland Olympian  Cat. No. 29625",
		"Sovereign Buses", "EFE",
		"22.25", "0",
		"1", 1,
		"model", "18",
		"", "pd116750883.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1517] = new Element(
		1517, "assets/thumb/efe20450thumb.jpg",
		137, 71,
		"20450", "Bristol VRIII  Cat. No. 20450",
		"Eastern Counties", "EFE",
		"22.25", "0",
		"1", 1,
		"model", "18",
		"", "pd-1945884249.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1518] = new Element(
		1518, "assets/thumb/efe16532thumb.jpg",
		137, 73,
		"16532", "Leyland Atlantean  Cat. No. 16532",
		"City of Manchester", "EFE",
		"22.2", "0",
		"1", 1,
		"model", "18",
		"", "pd279307309.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1519] = new Element(
		1519, "assets/thumb/efe16130thumb.jpg",
		137, 88,
		"16130", "Leyland PD2 Highbridge  Cat. No. 16130",
		"Burnley Colne &amp; Nelson", "EFE",
		"22.25", "0",
		"1", 1,
		"model", "18",
		"", "pd627354207.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1520] = new Element(
		1520, "assets/thumb/lablle901.jpg",
		137, 91,
		"LAB000901", "Labelle 901 Motor Cleaning System",
		"MSRP £15.69", "Labelle",
		"15.3", "0",
		"1", 1,
		"pack", "30",
		"", "pd1288958279.htm",
		"", 1,
		"LUB", "0",
		 0)
	
		Entry[1521] = new Element(
		1521, "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",
		"22.75", "0",
		"1", 1,
		"decoder", "102",
		"", "pd1214276644.htm",
		"", 1,
		"TCSDCC", "0",
		 0)
	
		Entry[1522] = new Element(
		1522, "assets/thumb/dccconwallampsucthumb.jpg",
		137, 235,
		"H-MSL-WLUCO", "4mm Station Wall Lamp",
		"Pack of 2 x undercoated wall lamps for station", "DCC Concepts",
		"32.7", "0",
		"1", 1,
		"pack", "33",
		"", "pd-336170793.htm",
		"", 1,
		"STATION", "0",
		 0)
	
		Entry[1523] = new Element(
		1523, "assets/thumb/76cm001thumb.jpg",
		137, 104,
		"76CM001", "Commer Q25",
		"British Railways - 1:76 scale    MSRP £4.49", "Oxford Diecast",
		"4", "0",
		"1", 1,
		"model", "21",
		"", "pd1698234041.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1524] = new Element(
		1524, "assets/thumb/76wol001thumb.jpg",
		137, 76,
		"76WOL001", "Wolseley 6/80",
		"Metropolitan Police - 1:76 scale    MSRP £3.75", "Oxford Diecast",
		"3.4", "0",
		"1", 1,
		"model", "21",
		"", "pd-1663907953.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1525] = new Element(
		1525, "assets/thumb/walllampsrthumb.jpg",
		137, 292,
		"H-MSL-WLBRSR-1", "4mm Station Wall Lamp",
		"Pack of 2 x SR/BR green wall lamps for station", "DCC Concepts",
		"32.7", "0",
		"1", 1,
		"pack", "58",
		"", "pd537584628.htm",
		"", 1,
		"STATIONLAM", "0",
		 0)
	
		Entry[1526] = new Element(
		1526, "assets/thumb/dccconwallampsgwrthumb.jpg",
		137, 205,
		"H-MSL-WLGWR-1", "4mm Station Wall Lamp",
		"Pack of 2 x GWR wall lamps for station", "DCC Concepts",
		"32.7", "0",
		"1", 1,
		"pack", "58",
		"", "pd870038338.htm",
		"", 1,
		"STATIONLAM", "0",
		 0)
	
		Entry[1527] = new Element(
		1527, "assets/thumb/dccconwallampslmsthumb.jpg",
		137, 224,
		"H-MSL-WLLMS-1", "4mm Station Wall Lamp",
		"Pack of 2 x LMS maroon wall lamps for station", "DCC Concepts",
		"32.7", "0",
		"1", 1,
		"pack", "58",
		"", "pd-1523459264.htm",
		"", 1,
		"STATIONLAM", "0",
		 0)
	
		Entry[1528] = new Element(
		1528, "assets/thumb/dccconwallampsucthumb.jpg",
		137, 235,
		"H-MSL-WLUCO-1", "4mm Station Wall Lamp",
		"Pack of 2 x undercoated wall lamps for station", "DCC Concepts",
		"32.7", "0",
		"1", 1,
		"pack", "58",
		"", "pd1678455662.htm",
		"", 1,
		"STATIONLAM", "0",
		 0)
	
		Entry[1529] = new Element(
		1529, "assets/thumb/em76679thumb.jpg",
		137, 79,
		"EM76679", "Ford 300E Thames Van 7cwt  Cat. No. EM76679",
		"Dark Blue  MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd1289929618.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1530] = new Element(
		1530, "assets/thumb/em76683thumb.jpg",
		137, 79,
		"EM76683", "Triumph Courier Van     Cat. No. EM76683",
		"Mid Green  MSRP £4.50", "Classix",
		"3.9", "0",
		"1", 1,
		"model", "8",
		"", "pd1563909136.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1531] = new Element(
		1531, "assets/thumb/em76694thumb.jpg",
		137, 95,
		"EM76694", "Austin K8 Three Way Van     Cat. No. EM76694",
		"Procea Bread  MSRP £4.50", "Classix",
		"4", "0",
		"1", 1,
		"model", "8",
		"", "pd-1870274370.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1532] = new Element(
		1532, "assets/thumb/em76878thumb.jpg",
		137, 71,
		"EM76878", "Triumph Vitesse  Cat. No. EM76878",
		"Primrose Yellow  MSRP £4.50", "Classix",
		"3.9", "0",
		"1", 1,
		"model", "8",
		"", "pd-881136356.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1533] = new Element(
		1533, "assets/thumb/em76890thumb.jpg",
		137, 86,
		"EM76890", "Vauxhall Ten Four HIY (1947)  Cat. No. EM76890",
		"Black  MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd856852650.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1534] = new Element(
		1534, "assets/thumb/em76868thumb.jpg",
		137, 92,
		"EM76868", "Ford Prefect 100E 4-Door    Cat. No. EM76868",
		"Red   MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd1290079071.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1535] = new Element(
		1535, "assets/thumb/em76869.jpg",
		137, 91,
		"EM76869", "Ford Escort Estate    Cat. No. EM76869",
		"AA Road Services MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd1960410277.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1536] = new Element(
		1536, "assets/thumb/em76872.jpg",
		137, 92,
		"EM76872", "Ford 100E Squire Estate   Cat. No. EM76872",
		"Dark Biege   MSRP £4.25", "Classix",
		"3.75", "0",
		"1", 1,
		"model", "8",
		"", "pd2021500763.htm",
		"", 1,
		"CLASSIX", "0",
		 0)
	
		Entry[1537] = new Element(
		1537, "assets/thumb/mx631thumb.gif",
		137, 101,
		"MX631", "OO/HO 6 Function decoder+SUSI,  wires only",
		"MX631 OO/HO 6 Function decoder+SUSI  with 9 wires", "Zimo",
		"33.7", "0",
		"1", 1,
		"decoder", "115",
		"", "pd1290783180.htm",
		"", 1,
		"ZIMODEC", "0",
		 0)
	
		Entry[1538] = new Element(
		1538, "assets/thumb/mx631thumb.gif",
		137, 101,
		"MX631D", "OO/HO 6 Function decoder+SUSI with 21-pin connection",
		"MX631 OO/HO 6 Function decoder+SUSI  with 21-pin &quot;MTC&quot; direct plug", "Zimo",
		"32.7", "0",
		"1", 1,
		"decoder", "115",
		"", "pd688361112.htm",
		"", 1,
		"ZIMODEC", "0",
		 0)
	
		Entry[1539] = new Element(
		1539, "assets/thumb/efe35205thumb.jpg",
		137, 47,
		"35205", "36&rsquo; BET AEC Reliance  Cat. No. 35205",
		"Devon General ", "EFE",
		"22.25", "0",
		"1", 1,
		"model", "18",
		"", "pd-1860933252.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1540] = new Element(
		1540, "assets/thumb/efe34906thumb.jpg",
		137, 69,
		"34906", "Leyland Olympian Coach  Cat. No. 34906",
		"Western National", "EFE",
		"22.25", "0",
		"1", 1,
		"model", "18",
		"", "pd-2040553954.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1541] = new Element(
		1541, "assets/thumb/efe30006thumb.jpg",
		137, 66,
		"30006", "AEC 10T10  Cat. No. 30006",
		"London Transport", "EFE",
		"22.2", "0",
		"1", 1,
		"model", "18",
		"", "pd-225725840.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1542] = new Element(
		1542, "assets/thumb/efe27315thumb.jpg",
		137, 81,
		"27315", "Leyland TD1 Closed Rear  Cat. No. 27315",
		"Wilts &amp; Dorset ", "EFE",
		"22.25", "0",
		"1", 1,
		"model", "18",
		"", "pd-514176270.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1543] = new Element(
		1543, "assets/thumb/efe16226thumb.jpg",
		137, 57,
		"16226", "Bristol MW/LS Coach  Cat. No. 14011",
		"Western National NBC", "EFE",
		"22.25", "0",
		"1", 1,
		"model", "18",
		"", "pd728921734.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1544] = new Element(
		1544, "assets/thumb/efe35702.jpg",
		137, 57,
		"35702", "36&rsquo; BET 4 bay RC Coach  Cat. No. 35702",
		"Greenline - Showbus Special 2010", "EFE",
		"33", "0",
		"1", 1,
		"model", "18",
		"", "pd-1782710824.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1545] = new Element(
		1545, "assets/thumb/hled18gw.jpg",
		137, 174,
		"HLED-SW18", "1.8mm Sunny (Daylight) White LED - 6 pack",
		"Pack of 6 x 1.8mm Sunny (Daylight) White LEDs and 6 x 1K ohm resistors", "DCC Concepts",
		"5.3", "0",
		"1", 1,
		"pack", "25",
		"", "pd-1483566762.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[1546] = new Element(
		1546, "assets/thumb/76man01frthumb.jpg",
		137, 47,
		"76MAN01FR", "MAN TGX XLX Fridge",
		"Turners - 1:76 scale  MSRP £18.99", "Oxford Diecast",
		"17.5", "0",
		"1", 1,
		"model", "21",
		"", "pd60511810.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1547] = new Element(
		1547, "assets/thumb/dg223002thumb.jpg",
		137, 137,
		"DG223002", "Dennis F12 Fire Engine   DG223002",
		"Middlesex  MSRP £10.99", "Corgi",
		"9.7", "0",
		"1", 1,
		"model", "13",
		"", "pd1218712659.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[1548] = new Element(
		1548, "assets/thumb/efe37601thumb.jpg",
		137, 59,
		"37601", "AEC Ergo 2 Axle Flatbed  Cat. No. 37601",
		"Alan Firmin", "EFE",
		"19.9", "0",
		"1", 1,
		"model", "17",
		"", "pd1066951948.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1549] = new Element(
		1549, "assets/thumb/efe37501thumb.jpg",
		137, 55,
		"37501", "AEC MkV 4 Axle Dropside  Cat. No. 37501",
		"Briton Ferry Steel", "EFE",
		"20.4", "0",
		"1", 1,
		"model", "17",
		"", "pd379736878.htm",
		"", 1,
		"Commercial", "0",
		 0)
	
		Entry[1550] = new Element(
		1550, "assets/thumb/efe15109thumb.jpg",
		137, 51,
		"15109", "Leyland National Mk1 Long  Cat. No. 15109",
		"Plymouth City Transport", "EFE",
		"22.25", "0",
		"1", 1,
		"model", "18",
		"", "pd995407594.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1551] = new Element(
		1551, "assets/thumb/efe16131thumb.jpg",
		137, 83,
		"16131", "Leyland PD2 Highbridge  Cat. No. 16131",
		"Lancaster City Transport", "EFE",
		"22.25", "0",
		"1", 1,
		"model", "18",
		"", "pd-1181425880.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1552] = new Element(
		1552, "assets/thumb/efe24327thumb.jpg",
		137, 54,
		"24327", "30&rsquo; BET Dual Purpose  Cat. No. 24327",
		"North Western", "EFE",
		"22.25", "0",
		"1", 1,
		"model", "18",
		"", "pd1002469782.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1553] = new Element(
		1553, "assets/thumb/efe25211thumb.jpg",
		137, 48,
		"25211", "Bristol RELL  Cat. No. 25211",
		"Hants &amp; Dorset", "EFE",
		"22.25", "0",
		"1", 1,
		"model", "18",
		"", "pd1664586164.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1554] = new Element(
		1554, "assets/thumb/efe27812thumb.jpg",
		137, 85,
		"27812", "AEC STL Bus  Cat. No. 27812",
		"London Transport", "EFE",
		"22.25", "0",
		"1", 1,
		"model", "18",
		"", "pd137553152.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1555] = new Element(
		1555, "assets/thumb/n14ip.jpg",
		137, 61,
		"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", "91",
		"Harness;Wires only@", "pd176242738.htm",
		"", 1,
		"NDec", "0",
		 0)
	
		Entry[1556] = new Element(
		1556, "assets/thumb/76LAN180005thumb.jpg",
		137, 84,
		"76LAN188005", "Land Rover Series 1 80&quot;",
		"Factory Version - Flat back - 1:76 scale  MSRP £3.49", "Oxford Diecast",
		"3.25", "0",
		"1", 1,
		"model", "21",
		"", "pd1291803911.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1557] = new Element(
		1557, "assets/thumb/76mfe001thumb.jpg",
		137, 74,
		"76MFE001", "MAN Pump Ladder",
		"Avon Fire &amp; Rescue - 1:76 scale    MSRP £14.95", "Oxford Diecast",
		"14.3", "0",
		"1", 1,
		"model", "21",
		"", "pd709206915.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1558] = new Element(
		1558, "assets/thumb/76at004thumb.jpg",
		137, 103,
		"76AT004", "Austin Lowloader Taxi",
		"Burgundy - 1:76 scale    MSRP £3.75", "Oxford Diecast",
		"3.25", "0",
		"1", 1,
		"model", "21",
		"", "pd1962664297.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1559] = new Element(
		1559, "assets/thumb/tv_singlet_servo_decoder.jpg",
		137, 123,
		"TV-SSD001", "Singlet Servo Decoder",
		"Singlet Servo Decoder with servo", "Tam Valley Depot",
		"13.8", "0",
		"1", 1,
		"pack", "100",
		"", "pd1291914404.htm",
		"", 1,
		"TAMVALLEY", "0",
		 0)
	
		Entry[1560] = new Element(
		1560, "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.5", "0",
		"1", 1,
		"pack", "146",
		"", "pd-725489120.htm",
		"", 1,
		"KADEEACC", "0",
		 0)
	
		Entry[1561] = new Element(
		1561, "assets/thumb/ad1.jpg",
		137, 191,
		"H-DCP-AD1", "Cobalt Accessory Decoder",
		"DCC and DC compatible accessory decoder ", "DCC Concepts",
		"10.5", "0",
		"1", 1,
		"item", "49",
		"", "pd-559109020.htm",
		"", 1,
		"COBALT", "0",
		 0)
	
		Entry[1562] = new Element(
		1562, "assets/thumb/ad4.jpg",
		137, 48,
		"H-DCP-AD4", "Cobalt Accessory Decoder - block of 4 decoders",
		"DCC and DC compatible accessory decoder ", "DCC Concepts",
		"35.5", "0",
		"1", 1,
		"item", "49",
		"", "pd1284929842.htm",
		"", 1,
		"COBALT", "0",
		 0)
	
		Entry[1563] = new Element(
		1563, "assets/thumb/r4450thumb.jpg",
		137, 55,
		"R4450", "BR (Ex LMS) Parcels Van",
		"R4450 BR (Ex LMS) Parcels Van - Crimson  MSRP £38.25", "Hornby",
		"33", "0",
		"1", 1,
		"carriage", "133",
		"", "pd1292456479.htm",
		"", 1,
		"HornbyCarr", "0",
		 0)
	
		Entry[1564] = new Element(
		1564, "assets/thumb/hj1502.jpg",
		137, 39,
		"HJ1508", "Class 15 D8239 in BR green with full yellow ends , TOPS panels   Cat. No. 1508",
		"HJ1508 Class 15 D8239 in BR green with full yellow ends, TOPS panels  DCC ready MSRP £99.00", "Heljan",
		"90.9", "0",
		"1", 1,
		"loco", "128",
		"", "pd-1372648325.htm",
		"", 1,
		"HJLOCOS", "0",
		 0)
	
		Entry[1565] = new Element(
		1565, "assets/thumb/hj1502.jpg",
		137, 39,
		"HJ1506", "Class 15 D8235 in BR green with full yellow ends  Cat. No. 1506",
		"HJ1506 Class 15 D8235 in BR green with full yellow ends   DCC ready MSRP £99.00", "Heljan",
		"90.9", "0",
		"1", 1,
		"loco", "128",
		"", "pd465446085.htm",
		"", 1,
		"HJLOCOS", "0",
		 0)
	
		Entry[1566] = new Element(
		1566, "assets/thumb/hj2637thumb.jpg",
		137, 56,
		"HJ2637", "Class 26 26043 in Engineers &rsquo;Dutch&rsquo; grey and yellow livery with Eastfield depot plaques",
		"HJ2637 26043 in Engineers &rsquo;Dutch&rsquo; grey and yellow livery with Eastfield depot plaques  DCC Ready  MSRP £79.00", "Heljan",
		"66.4", "0",
		"1", 1,
		"loco", "128",
		"", "pd1350744135.htm",
		"", 1,
		"HJLOCOS", "0",
		 0)
	
		Entry[1567] = new Element(
		1567, "assets/thumb/mp168thumb.jpg",
		137, 112,
		"HP-MP168", "Super Fine Flush Cutter",
		"Hardened Jaws for close Cutting of Frets and Sprues", "DCC Concepts",
		"12.5", "0",
		"1", 1,
		"item", "27",
		"", "pd1294753397.htm",
		"", 1,
		"Tools", "0",
		 0)
	
		Entry[1568] = new Element(
		1568, "assets/thumb/mp168thumb.jpg",
		137, 112,
		"HP-MP168-1", "Super Fine Flush Cutter",
		"Hardened Jaws for close Cutting of Frets and Sprues", "DCC Concepts",
		"12.5", "0",
		"1", 1,
		"item", "59",
		"", "pd-1670865493.htm",
		"", 1,
		"TOOLSETC", "0",
		 0)
	
		Entry[1569] = new Element(
		1569, "assets/thumb/hlff.jpg",
		137, 104,
		"H-DCM-FFN2", "Flicker Free 2 for N scale",
		"Flicker Free 2 constant lighting device - available as single with no light board", "DCC Concepts",
		"11.5", "0",
		"1", 1,
		"pack", "25",
		"", "pd620706873.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[1570] = new Element(
		1570, "assets/thumb/dcc-bt2.jpg",
		137, 102,
		"H-DCC-BT2-2-1", "Bus Terminator",
		"Bus Terminator (RC filter)", "DCC Concepts",
		"6.75", "0",
		"1", 1,
		"pack", "67",
		"", "pd-470599767.htm",
		"", 1,
		"DCCACCES", "0",
		 0)
	
		Entry[1571] = new Element(
		1571, "assets/thumb/dcc218.jpg",
		137, 135,
		"HP-DCC218", "21 pin to 8 pin DCC adapter",
		"Available singly or in 5-packs", "DCC Concepts",
		"3", "0",
		"1", 1,
		"item", "67",
		"Multi-pack;Single item@", "pd-2126808883.htm",
		"", 1,
		"DCCACCES", "0",
		 0)
	
		Entry[1572] = new Element(
		1572, "assets/thumb/ad1.jpg",
		137, 191,
		"H-DCP-AD1-1", "Cobalt Accessory Decoder",
		"DCC and DC compatible accessory decoder ", "DCC Concepts",
		"10.5", "0",
		"1", 1,
		"item", "65",
		"", "pd-622111417.htm",
		"", 1,
		"DCCCOBALT", "0",
		 0)
	
		Entry[1573] = new Element(
		1573, "assets/thumb/ad4.jpg",
		137, 48,
		"H-DCP-AD4-1", "Cobalt Accessory Decoder - block of 4 decoders",
		"DCC and DC compatible accessory decoder ", "DCC Concepts",
		"35.5", "0",
		"1", 1,
		"item", "65",
		"", "pd489694129.htm",
		"", 1,
		"DCCCOBALT", "0",
		 0)
	
		Entry[1574] = new Element(
		1574, "assets/thumb/d2sapthumb.jpg",
		137, 81,
		"H-DCD-D2SAP", "D2SAP 2 function decoder WITH stay alive",
		"", "DCC Concepts",
		"16", "0",
		"1", 1,
		"decoder", "66",
		"", "pd801473941.htm",
		"", 1,
		"DCCLOCODEC", "0",
		 0)
	
		Entry[1575] = new Element(
		1575, "assets/thumb/d2sap5thumb.jpg",
		137, 135,
		"H-DCD-D2SAP-5", "D2SAP-5 2 function decoder WITH stay alive  5-pack",
		"", "DCC Concepts",
		"76", "0",
		"1", 1,
		"pack", "66",
		"", "pd367102477.htm",
		"", 1,
		"DCCLOCODEC", "0",
		 0)
	
		Entry[1576] = new Element(
		1576, "assets/thumb/d2saxthumb.jpg",
		137, 80,
		"H-DCD-D2SAX", "D2SAX 2 Function decoder without stay alive",
		"", "DCC Concepts",
		"15", "0",
		"1", 1,
		"decoder", "66",
		"", "pd1295378127.htm",
		"", 1,
		"DCCLOCODEC", "0",
		 0)
	
		Entry[1577] = new Element(
		1577, "assets/thumb/d2sax5thumb.jpg",
		137, 125,
		"H-DCD-D2SAX-5", "D2SAX-5 2 Function decoder without stay alive   5-pack",
		"", "DCC Concepts",
		"68", "0",
		"1", 1,
		"pack", "66",
		"", "pd-1491839865.htm",
		"", 1,
		"DCCLOCODEC", "0",
		 0)
	
		Entry[1578] = new Element(
		1578, "assets/thumb/d4sapthumb.jpg",
		137, 77,
		"H-DCD-D4SAP", "D4SAP 4 function decoder WITH stay alive",
		"", "DCC Concepts",
		"19.5", "0",
		"1", 1,
		"decoder", "66",
		"", "pd-11149071.htm",
		"", 1,
		"DCCLOCODEC", "0",
		 0)
	
		Entry[1579] = new Element(
		1579, "assets/thumb/d4sap5thumb.jpg",
		137, 134,
		"H-DCD-D4SAP-5", "D4SAP-5 4 function decoder WITH stay alive   5-pack",
		"", "DCC Concepts",
		"84", "0",
		"1", 1,
		"pack", "66",
		"", "pd1114037481.htm",
		"", 1,
		"DCCLOCODEC", "0",
		 0)
	
		Entry[1580] = new Element(
		1580, "assets/thumb/d4saxthumb.jpg",
		137, 98,
		"H-DCD-D4SAX", "D4SAX 4 function decoder without stay alive",
		"", "DCC Concepts",
		"16", "0",
		"1", 1,
		"decoder", "66",
		"", "pd-1040279093.htm",
		"", 1,
		"DCCLOCODEC", "0",
		 0)
	
		Entry[1581] = new Element(
		1581, "assets/thumb/d4saxs5thumb.jpg",
		137, 135,
		"H-DCD-D4SAX-5", "D4SAX-5 4 function decoder without stay alive   5-pack",
		"", "DCC Concepts",
		"74", "0",
		"1", 1,
		"pack", "66",
		"", "pd2010452739.htm",
		"", 1,
		"DCCLOCODEC", "0",
		 0)
	
		Entry[1582] = new Element(
		1582, "assets/thumb/s4sapsinglethumb.jpg",
		137, 89,
		"H-DCD-S4SAP", "S4SAP 4 function decoder (small) WITH stay alive",
		"", "DCC Concepts",
		"19", "0",
		"1", 1,
		"decoder", "66",
		"", "pd-1755187835.htm",
		"", 1,
		"DCCLOCODEC", "0",
		 0)
	
		Entry[1583] = new Element(
		1583, "assets/thumb/s4sap5thumb.jpg",
		137, 139,
		"H-DCD-S4SAP-5", "S4SAP-5 4 function decoder (small) WITH stay alive   5-pack",
		"", "DCC Concepts",
		"89", "0",
		"1", 1,
		"pack", "66",
		"", "pd-869748767.htm",
		"", 1,
		"DCCLOCODEC", "0",
		 0)
	
		Entry[1584] = new Element(
		1584, "assets/thumb/s4saxsinglethumb.jpg",
		137, 88,
		"H-DCD-S4SAX", "S4SAX 4 function decoder (small) without stay alive",
		"", "DCC Concepts",
		"18", "0",
		"1", 1,
		"decoder", "66",
		"", "pd-715747009.htm",
		"", 1,
		"DCCLOCODEC", "0",
		 0)
	
		Entry[1585] = new Element(
		1585, "assets/thumb/s4saxs5thumb.jpg",
		137, 132,
		"H-DCD-S4SAX-5", "S4SAX-5 4 function decoder (small) without stay alive   5-pack",
		"", "DCC Concepts",
		"83", "0",
		"1", 1,
		"pack", "66",
		"", "pd1331841851.htm",
		"", 1,
		"DCCLOCODEC", "0",
		 0)
	
		Entry[1586] = new Element(
		1586, "assets/thumb/efe15002dlthumb.jpg",
		137, 50,
		"15002DL", "Leyland National Long  Cat. No. 15002DL",
		"Brighton Hove &amp; District", "EFE",
		"22.25", "0",
		"1", 1,
		"model", "18",
		"", "pd1296763871.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1587] = new Element(
		1587, "assets/thumb/efe17226thumb.jpg",
		137, 48,
		"17226", "Leyland National Long  Cat. No. 17226",
		"East Kent", "EFE",
		"22.25", "0",
		"1", 1,
		"model", "18",
		"", "pd-2100776997.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1588] = new Element(
		1588, "assets/thumb/efe24203thumb.jpg",
		137, 77,
		"24203", "Alexander Fleetline  Cat. No. 124203",
		"Maidstone &amp; District NBC", "EFE",
		"22.25", "0",
		"1", 1,
		"model", "18",
		"", "pd-669768319.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1589] = new Element(
		1589, "assets/thumb/efe25107thumb.jpg",
		137, 46,
		"25107", "Bristol RELL  Cat. No. 25107",
		"Cumberland", "EFE",
		"22.25", "0",
		"1", 1,
		"model", "18",
		"", "pd1682729879.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1590] = new Element(
		1590, "assets/thumb/efe29307thumb.jpg",
		137, 67,
		"29307", "Leyland Olympian  Cat. No. 29307",
		"Southern National", "EFE",
		"22.25", "0",
		"1", 1,
		"model", "18",
		"", "pd-1381910627.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1591] = new Element(
		1591, "assets/thumb/efe35802thumb.jpg",
		137, 47,
		"35802", "SLF Dart Series 1  Cat. No. 35802",
		"Brighton &amp; Hove", "EFE",
		"22.25", "0",
		"1", 1,
		"model", "18",
		"", "pd1130464121.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1592] = new Element(
		1592, "assets/thumb/as105.jpg",
		137, 65,
		"AS1-05-1", "AEC Short Swift  Cat. No. AS1-05",
		"London Transport", "Britbus",
		"25.5", "0",
		"1", 1,
		"model", "3",
		"", "pd-953673523.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1593] = new Element(
		1593, "assets/thumb/es201.jpg",
		137, 91,
		"ES2-01-1", "Scania Omnidekka/East Lancs  Cat. No. ES2-01",
		"Metrobus - Go Ahead", "Britbus",
		"29.6", "0",
		"1", 1,
		"model", "3",
		"", "pd1352744899.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1594] = new Element(
		1594, "assets/thumb/r804.jpg",
		137, 90,
		"R804-1", "Scania 113/Alexander  Cat. No. R804",
		"BTS", "Britbus",
		"29.6", "0",
		"1", 1,
		"model", "3",
		"", "pd652859305.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1595] = new Element(
		1595, "assets/thumb/ukbus1014.jpg",
		137, 78,
		"UK1014-1", "Dennis Trident Alexander ALX400 Cat. No. UKBUS1014",
		"Oxford Park &amp; Ride", "Creative Master Northcord Ltd",
		"24.5", "0",
		"1", 1,
		"model", "3",
		"", "pd-739964417.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1596] = new Element(
		1596, "assets/thumb/uk1018thumb.jpg",
		137, 79,
		"UK1018-1", "Dennis Trident Alexander ALX400  Cat. No. UKBUS1018 ",
		"First London", "Creative Master Northcord Ltd",
		"23", "0",
		"1", 1,
		"", "3",
		"", "pd-1826612155.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1597] = new Element(
		1597, "assets/thumb/ukbus2012thumb.jpg",
		137, 89,
		"UK2012-1", "Dennis Trident Plaxton President  Cat. No. UKBUS2012 ",
		"Stagecoach Oxford Brookes Bus", "Creative Master Northcord Ltd",
		"23", "0",
		"1", 1,
		"model", "3",
		"", "pd-623915013.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1598] = new Element(
		1598, "assets/thumb/uk3009thumb.jpg",
		137, 62,
		"UK3009-1", "Dennis Dart MPD/Plaxton  Cat. No. UKBUS3009",
		"Southern Vectis", "Creative Master Northcord Ltd",
		"17.85", "0",
		"1", 1,
		"model", "3",
		"", "pd915194529.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1599] = new Element(
		1599, "assets/thumb/uk3017thumb.jpg",
		137, 65,
		"UK3017-2", "Dennis Dart  Cat. No. UKBUS3017",
		"Brighton &amp; Hove", "Creative Master Northcord Ltd",
		"17.85", "0",
		"1", 1,
		"model", "3",
		"", "pd-437858889.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1600] = new Element(
		1600, "assets/thumb/ukbus4006.jpg",
		137, 83,
		"UK4006-1", "Alexander Royale  Cat. No. UKBUS4006",
		"London United Airbus  Heathrow - Central London", "Creative Master Northcord Ltd",
		"23", "0",
		"1", 1,
		"model", "3",
		"", "pd911933235.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1601] = new Element(
		1601, "assets/thumb/ukbus5002.jpg",
		137, 62,
		"UK5002-1", "Mercedes Citaro Rigid  Cat. No. UKBUS5002",
		"Oxford Park &amp; Ride", "Creative Master Northcord Ltd",
		"23", "0",
		"1", 1,
		"model", "3",
		"", "pd7955609.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1602] = new Element(
		1602, "assets/thumb/ukbus5003.jpg",
		137, 59,
		"UK5003-1", "Mercedes Citaro Rigid Cat. No. UKBUS5003",
		"First BAA Heathrow", "Creative Master Northcord Ltd",
		"23", "0",
		"1", 1,
		"model", "3",
		"", "pd-834330513.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1603] = new Element(
		1603, "assets/thumb/uk5104thumb.jpg",
		137, 54,
		"UK5104-1", "Mercedes Citaro  Cat. No. UKBUS5104",
		"Stagecoach London in University of East London livery", "Creative Master Northcord Ltd",
		"26.55", "0",
		"1", 1,
		"model", "3",
		"", "pd590993461.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1604] = new Element(
		1604, "assets/thumb/r4451thumb.jpg",
		137, 55,
		"R4451", "Pullman SR Bogie Luggage Van",
		"R4451 Pullman SR Bogie Luggage Van MSRP  £25.99", "Hornby",
		"18", "0",
		"1", 1,
		"carriage", "133",
		"", "pd-138825484.htm",
		"", 1,
		"HornbyCarr", "0",
		 0)
	
		Entry[1605] = new Element(
		1605, "assets/thumb/76bed002thumb.jpg",
		137, 90,
		"76BED002", "Bedford J1 Lomas Ambulance",
		"Birmingham - 1:76 scale    MSRP £5.25", "Oxford Diecast",
		"4.5", "0",
		"1", 1,
		"model", "21",
		"", "pd1706774594.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1606] = new Element(
		1606, "assets/thumb/76cre007thumb.jpg",
		137, 69,
		"76CRE007", "Vauxhall Cresta",
		"Cream/Brown - 1:76 scale  MSRP £3.95", "Oxford Diecast",
		"3.4", "0",
		"1", 1,
		"model", "21",
		"", "pd716576878.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1607] = new Element(
		1607, "assets/thumb/76def002thumb.jpg",
		137, 77,
		"76DEF002", "Land Rover Defender",
		"Royal Mail - 1:76 scale  - MSRP £4.25", "Oxford Diecast",
		"3.75", "0",
		"1", 1,
		"model", "21",
		"", "pd780053580.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1608] = new Element(
		1608, "assets/thumb/76def003thumb.jpg",
		137, 91,
		"76DEF003", "Land Rover Defender",
		"Military - 1:76 scale  - MSRP £4.25", "Oxford Diecast",
		"3.75", "0",
		"1", 1,
		"model", "21",
		"", "pd-708633766.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1609] = new Element(
		1609, "assets/thumb/76reg001thumb.jpg",
		137, 105,
		"76REG001", "AEC Regent III Fire Engline",
		"London  - 1:76 scale - MSRP £12.45", "Oxford Diecast",
		"10.5", "0",
		"1", 1,
		"item", "21",
		"", "pd-35809000.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1610] = new Element(
		1610, "assets/thumb/dg225000thumb.jpg",
		137, 97,
		"DG225000", "Ruston Bucyrus 19 Face Shovel  Cat. No.DG225000",
		"Green 1937    MSRP £19.99", "Corgi",
		"17.5", "0",
		"1", 1,
		"model", "13",
		"", "pd-851540819.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[1611] = new Element(
		1611, "assets/thumb/btoda05thumb.jpg",
		137, 72,
		"BTODA05", "AEC Mammoth Major Tanker    Cat. No. BTODA05",
		"Fletcher Miller Oil", "Base Toys",
		"6.5", "0",
		"1", 1,
		"model", "6",
		"", "pd313627025.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1612] = new Element(
		1612, "assets/thumb/btoda07thumb.jpg",
		137, 48,
		"BTODA07", "Leyland Beaver Low Loader    Cat. No. BTODA07",
		"A &amp; E Morris", "Base Toys",
		"8.75", "0",
		"1", 1,
		"item", "6",
		"", "pd1135968619.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1613] = new Element(
		1613, "assets/thumb/btoda08thumb.jpg",
		137, 95,
		"BTODA08", "D-Series Box Van    Cat. No. BTODA08",
		"BRS Islandlink", "Base Toys",
		"6.5", "0",
		"1", 1,
		"model", "6",
		"", "pd2074474023.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1614] = new Element(
		1614, "assets/thumb/btoda09thumb.jpg",
		137, 75,
		"BTODA09", "Leyland Mastiff Artic Van    Cat. No. BTODA09",
		"BRS Islandlink", "Base Toys",
		"6.5", "0",
		"1", 1,
		"model", "6",
		"", "pd-1829860299.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1615] = new Element(
		1615, "assets/thumb/dcccon_s2sax.jpg",
		137, 84,
		"H-DCD-S2SAX", "S2SAX 2 function decoder (small) without stay alive",
		"", "DCC Concepts",
		"16", "0",
		"1", 1,
		"decoder", "66",
		"", "pd-664949641.htm",
		"", 1,
		"DCCLOCODEC", "0",
		 0)
	
		Entry[1616] = new Element(
		1616, "assets/thumb/r2896xsthumb.jpg",
		137, 30,
		"R2896XS", "BR Class A4 &rsquo;Sir Ronald Matthews&rsquo;",
		"R2896XS BR Class A4 &rsquo;Sir Ronald Matthews&rsquo; Sound Fitted  MSRP £235.00", "Hornby",
		"203", "0",
		"1", 1,
		"loco", "135",
		"", "pd1263126594.htm",
		"", 1,
		"HornbyStea", "0",
		 0)
	
		Entry[1617] = new Element(
		1617, "assets/thumb/dfj.jpg",
		137, 89,
		"TV-DFJ-001", "Dual Frog Juicer",
		"", "Tam Valley Depot",
		"20", "0",
		"1", 1,
		"item", "100",
		"", "pd1299671201.htm",
		"", 1,
		"TAMVALLEY", "0",
		 0)
	
		Entry[1618] = new Element(
		1618, "assets/thumb/mfj.jpg",
		137, 102,
		"TV-MFJ-001", "Mono Frog Juicer (DCC polarity reverser for frogs)",
		"", "Tam Valley Depot",
		"10", "0",
		"1", 1,
		"item", "100",
		"", "pd178906039.htm",
		"", 1,
		"TAMVALLEY", "0",
		 0)
	
		Entry[1619] = new Element(
		1619, "assets/thumb/EFE27810thumb.jpg",
		137, 82,
		"27810", "AEC STL  Cat. No. 27810",
		"London Transport Green", "EFE",
		"16.35", "0",
		"1", 1,
		"", "18",
		"", "pd-1790625478.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1620] = new Element(
		1620, "assets/thumb/om42518.jpg",
		137, 73,
		"OM42518", "East Lancs Myllenium  Cat. No. OM42518",
		"London United", "Corgi",
		"22.5", "0",
		"1", 1,
		"model", "12",
		"", "pd1019360412.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[1621] = new Element(
		1621, "assets/thumb/OM43309.jpg",
		130, 82,
		"OM43309", "Plaxton Excalibur   Cat. No. OM43309",
		"Oxford Bus Co", "Corgi",
		"18.4", "0",
		"1", 1,
		"model", "12",
		"", "pd680350297.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[1622] = new Element(
		1622, "assets/thumb/OM43311thumb.jpg",
		137, 77,
		"OM43311", "Plaxton Excalibur   Cat. No. OM43311",
		"Oxford Bus Company - Oxford Espress", "Corgi",
		"18.4", "0",
		"1", 1,
		"model", "12",
		"", "pd317303809.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[1623] = new Element(
		1623, "assets/thumb/hj5105.jpg",
		137, 28,
		"HJ5105-1", "IGA Cargowaggon with CORUS RAIL brand",
		"HJ5105  IGA Cargowaggon with CORUS RAIL brand MSRP £28.10", "Heljan",
		"28.1", "0",
		"1", 1,
		"wagon", "2",
		"", "pd-618418778.htm",
		"", 1,
		"DIECASTS", "40",
		 0)
	
		Entry[1624] = new Element(
		1624, "assets/thumb/hj5106.jpg",
		137, 29,
		"HJ5106-1", "4747 000 in ex-works CARGOWAGGON livery",
		"HJ5106  4747 000 in ex-works CARGOWAGGON livery  MSRP £28.10", "Heljan",
		"28.1", "0",
		"1", 1,
		"wagon", "2",
		"", "pd928661648.htm",
		"", 1,
		"DIECASTS", "40",
		 0)
	
		Entry[1625] = new Element(
		1625, "assets/thumb/r8584thumb.jpg",
		137, 61,
		"R8584-1", "Platform No.4 - Loading Bay Pack",
		"R8584 Skaledale Platform No.4 - Loading Bay Pack  MSRP £6.50", "Hornby",
		"6.1", "0",
		"1", 1,
		"pack", "4",
		"", "pd-97398418.htm",
		"", 1,
		"WartimeS", "40",
		 0)
	
		Entry[1626] = new Element(
		1626, "assets/thumb/r8642.jpg",
		137, 55,
		"R8642-1", "Curved Platform 1st Rad.",
		"R8642 Curved Platform 1st Rad.", "Hornby",
		"7.15", "0",
		"1", 1,
		"pack", "4",
		"", "pd1228170330.htm",
		"", 1,
		"WartimeS", "40",
		 0)
	
		Entry[1627] = new Element(
		1627, "assets/thumb/dg226000thumb.jpg",
		137, 137,
		"DG226000", "Coles Argus 6 Ton Crane  Cat. No.DG226000",
		"Yellow    MSRP £18.99", "Corgi",
		"16.5", "0",
		"1", 1,
		"model", "13",
		"", "pd1300781694.htm",
		"", 1,
		"Trackside", "0",
		 0)
	
		Entry[1628] = new Element(
		1628, "assets/thumb/r8790.jpg",
		137, 55,
		"R8790", "Cattle Pen",
		"R8790 Cattle Pen  MSRP £8.25", "Hornby",
		"6.65", "0",
		"1", 1,
		"model", "139",
		"", "pd121583519.htm",
		"", 1,
		"SKALD", "0",
		 0)
	
		Entry[1629] = new Element(
		1629, "assets/thumb/76gf001.jpg",
		137, 78,
		"76GF001", "VW Golf GTI",
		"Mars Red - 1:76 scale    MSRP£3.95", "Oxford Diecast",
		"3.4", "0",
		"1", 1,
		"model", "21",
		"", "pd1301580617.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1630] = new Element(
		1630, "assets/thumb/concorbnsfoxideswoosh.jpg",
		137, 63,
		"CON000515", "HO 100 Ton RTR Coal Hopper  Cat. No. CON000515",
		"BNSF Oxide Red Swoosh  3-pack   MSRP £44.33", "Con-Cor",
		"40", "0",
		"1", 1,
		"item", "46",
		"", "pd1299342708.htm",
		"", 1,
		"CONCORRS", "0",
		 0)
	
		Entry[1631] = new Element(
		1631, "assets/thumb/concorbnsfoxideswoosh.jpg",
		137, 63,
		"CON000516", "HO 100 Ton RTR Coal Hopper  Cat. No. CON000516",
		"BNSF Oxide Red Swoosh  3-pack   MSRP £44.33", "Con-Cor",
		"40", "0",
		"1", 1,
		"item", "46",
		"", "pd2095388866.htm",
		"", 1,
		"CONCORRS", "0",
		 0)
	
		Entry[1632] = new Element(
		1632, "assets/thumb/concorbnsfoxideswoosh.jpg",
		137, 63,
		"CON000517", "HO 100 Ton RTR Coal Hopper  Cat. No. CON000517",
		"BNSF Oxide Red Swoosh  3-pack   MSRP £44.33", "Con-Cor",
		"40", "0",
		"1", 1,
		"item", "46",
		"", "pd1252029632.htm",
		"", 1,
		"CONCORRS", "0",
		 0)
	
		Entry[1633] = new Element(
		1633, "assets/thumb/concorbnsfoxideswoosh.jpg",
		137, 63,
		"CON000518", "HO 100 Ton RTR Coal Hopper  Cat. No. CON000518",
		"BNSF Oxide Red Swoosh  3-pack   MSRP £44.33", "Con-Cor",
		"40", "0",
		"1", 1,
		"item", "46",
		"", "pd366045422.htm",
		"", 1,
		"CONCORRS", "0",
		 0)
	
		Entry[1634] = new Element(
		1634, "assets/thumb/concorppandlight.jpg",
		137, 59,
		"CON000519", "HO 100 Ton RTR Coal Hopper  Cat. No. CON000519",
		"Pennsylvania,Power &amp; Light Redi Kilowatt  3-pack   MSRP £44.33", "Con-Cor",
		"40", "0",
		"1", 1,
		"pack", "46",
		"", "pd1555853516.htm",
		"", 1,
		"CONCORRS", "0",
		 0)
	
		Entry[1635] = new Element(
		1635, "assets/thumb/concor165302thumb.jpg",
		137, 74,
		"CON165302", "MP15 Diesel Switcher",
		"Union Pacific - Dual Mode DC/DCC  MSRP £88.78", "Con-Cor",
		"67", "0",
		"1", 1,
		"loco", "47",
		"", "pd-1423104718.htm",
		"", 1,
		"CONCORLOCO", "0",
		 0)
	
		Entry[1636] = new Element(
		1636, "assets/thumb/76ltr003thumb.jpg",
		137, 71,
		"76LTR003", "Car Transporter",
		"BMC - 1:76 scale    MSRP£12.25", "Oxford Diecast",
		"11.5", "0",
		"1", 1,
		"model", "21",
		"", "pd1305281020.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1637] = new Element(
		1637, "assets/thumb/76ltr003tthumb.jpg",
		137, 61,
		"76LTR003T", "Car Transporter Trailer",
		"BMC - 1:76 scale    MSRP£12.25", "Oxford Diecast",
		"11.5", "0",
		"1", 1,
		"model", "21",
		"", "pd-1379260278.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1638] = new Element(
		1638, "assets/thumb/ee-1013-up-boxcar-01thumb.jpg",
		137, 66,
		"EX-EE-1013-4", "PC&amp;F 6033 cu. ft. Hy-Cube Box Car",
		"UP : 517106", "Exactrail",
		"17", "0",
		"1", 1,
		"wagon", "124",
		"", "pd-295564154.htm",
		"", 1,
		"EXACTRAIL", "0",
		 0)
	
		Entry[1639] = new Element(
		1639, "assets/thumb/ee-1711-juniata-hopperthumb.jpg",
		137, 57,
		"EX-EE-1711-3", "Evans 4780 Covered Hopper",
		"Juniata Farmers CO-OP : 26151", "Exactrail",
		"19", "0",
		"1", 1,
		"wagon", "124",
		"", "pd-115392270.htm",
		"", 1,
		"EXACTRAIL", "0",
		 0)
	
		Entry[1640] = new Element(
		1640, "assets/thumb/dn135dthumb.jpg",
		137, 137,
		"DXDN135D", "DN135D 3-function decoder",
		"DN135D Tiny Super Economical Motor &amp; 3 Function Decoder with BEMF 1 Amp/1.25 Amp Peak, 3 FX3 Functions@0.5 Amp ", "Digitrax",
		"13", "0",
		"1", 1,
		"decoder", "71",
		"", "pd-184059731.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[1641] = new Element(
		1641, "assets/thumb/dn135psthumb.jpg",
		137, 137,
		"DXDN135PS", "DN135PS 3-function decoder",
		"DN135PS Tiny Super Economical Motor &amp; 3 Function Decoder with 2” wires and DCC 8-pin Medium Harness, BEMF, 1 Amp/1.25 Amp Peak, 3 FX3 Functions@0.5 Amp ", "Digitrax",
		"14.5", "0",
		"1", 1,
		"decoder", "71",
		"", "pd879960739.htm",
		"", 1,
		"DXNZ", "0",
		 0)
	
		Entry[1642] = new Element(
		1642, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HLED-SW18S", "1.8mm Sunny (Daylight) White LED - single",
		"Single 1.8mm Sunny (Daylight) White LED", "DCC Concepts",
		"0.65", "0",
		"1", 1,
		"pack", "25",
		"", "pd1305624534.htm",
		"", 1,
		"LED", "0",
		 0)
	
		Entry[1643] = new Element(
		1643, "assets/thumb/hled18gw.jpg",
		137, 174,
		"HLED-SW18-1", "1.8mm Sunny (Daylight) White LED - 6 pack",
		"Pack of 6 x 1.8mm Sunny (Daylight) White LEDs and 6 x 1K ohm resistors", "DCC Concepts",
		"5.3", "0",
		"1", 1,
		"pack", "52",
		"", "pd758104564.htm",
		"", 1,
		"LEDDCC", "0",
		 0)
	
		Entry[1644] = new Element(
		1644, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HLED-SW18S-1", "1.8mm Sunny (Daylight) White LED - single",
		"Single 1.8mm Sunny (Daylight) White LED", "DCC Concepts",
		"0.65", "0",
		"1", 1,
		"pack", "52",
		"", "pd1933822274.htm",
		"", 1,
		"LEDDCC", "0",
		 0)
	
		Entry[1645] = new Element(
		1645, "assets/thumb/dcccon_m2sax.jpg",
		137, 116,
		"H-DCD-M2SAX", "M2SAX 2 function decoder (medium) without stay alive",
		"", "DCC Concepts",
		"15.5", "0",
		"1", 1,
		"decoder", "66",
		"", "pd1222647903.htm",
		"", 1,
		"DCCLOCODEC", "0",
		 0)
	
		Entry[1646] = new Element(
		1646, "assets/thumb/m2sax5.jpg",
		137, 129,
		"H-DCD-M2SAX-5", "M2SAX-5 2 function decoder (medium) without stay alive  5-pack",
		"", "DCC Concepts",
		"73", "0",
		"1", 1,
		"decoder", "66",
		"", "pd-201418331.htm",
		"", 1,
		"DCCLOCODEC", "0",
		 0)
	
		Entry[1647] = new Element(
		1647, "assets/thumb/dcccon_m4sax.jpg",
		137, 92,
		"H-DCD-M4SAX", "M4SAX 4 function decoder (medium) without stay alive",
		"", "DCC Concepts",
		"17", "0",
		"1", 1,
		"decoder", "66",
		"", "pd1039928411.htm",
		"", 1,
		"DCCLOCODEC", "0",
		 0)
	
		Entry[1648] = new Element(
		1648, "assets/thumb/m4sax5.jpg",
		137, 128,
		"H-DCD-M4SAX-5", "M4SAX-5 4 function decoder (medium) without stay alive  5-pack",
		"", "DCC Concepts",
		"79", "0",
		"1", 1,
		"decoder", "66",
		"", "pd785962497.htm",
		"", 1,
		"DCCLOCODEC", "0",
		 0)
	
		Entry[1649] = new Element(
		1649, "assets/thumb/dcccon_s2sap.jpg",
		137, 87,
		"H-DCD-S2SAP", "S2SAP 2 function decoder (small) WITH stay alive",
		"", "DCC Concepts",
		"18", "0",
		"1", 1,
		"decoder", "66",
		"", "pd1307012524.htm",
		"", 1,
		"DCCLOCODEC", "0",
		 0)
	
		Entry[1650] = new Element(
		1650, "assets/thumb/s2sap5.jpg",
		137, 161,
		"H-DCD-S2SAP-5", "S2SAP-5 2 function decoder (small) WITH stay alive - 5 pack",
		"", "DCC Concepts",
		"83", "0",
		"1", 1,
		"decoder", "66",
		"", "pd252918714.htm",
		"", 1,
		"DCCLOCODEC", "0",
		 0)
	
		Entry[1651] = new Element(
		1651, "assets/thumb/dcccon_m2Sap.jpg",
		137, 87,
		"H-DCD-M2SAP", "M2SAP 2 function decoder (medium) WITH stay alive",
		"", "DCC Concepts",
		"17.5", "0",
		"1", 1,
		"decoder", "66",
		"", "pd12408.htm",
		"", 1,
		"DCCLOCODEC", "0",
		 0)
	
		Entry[1652] = new Element(
		1652, "assets/thumb/dcccon_m4sap.jpg",
		137, 87,
		"H-DCD-M4SAP", "M4SAP 4 function decoder (medium) WITH stay alive",
		"", "DCC Concepts",
		"19", "0",
		"1", 1,
		"decoder", "66",
		"", "pd1153919846.htm",
		"", 1,
		"DCCLOCODEC", "0",
		 0)
	
		Entry[1653] = new Element(
		1653, "assets/thumb/dcccon_t2sap.jpg",
		137, 86,
		"H-DCD-TS2SAP", "TS2SAP 2 function decoder (small thin) WITH stay alive",
		"", "DCC Concepts",
		"18", "0",
		"1", 1,
		"decoder", "66",
		"", "pd-986376188.htm",
		"", 1,
		"DCCLOCODEC", "0",
		 0)
	
		Entry[1654] = new Element(
		1654, "assets/thumb/dcccon_ts2sap-5.jpg",
		137, 99,
		"H-DCD-TS2SAP-5", "TS2SAP-5 2 function decoder (small thin) WITH stay alive - 5 pack",
		"", "DCC Concepts",
		"83", "0",
		"1", 1,
		"pack", "66",
		"", "pd-1162916398.htm",
		"", 1,
		"DCCLOCODEC", "0",
		 0)
	
		Entry[1655] = new Element(
		1655, "assets/thumb/dcccon_ts2sax.jpg",
		137, 83,
		"H-DCD-TS2SAX", "TS2SAX 2 function decoder (small thin) without stay alive",
		"", "DCC Concepts",
		"16.5", "0",
		"1", 1,
		"decoder", "66",
		"", "pd267907152.htm",
		"", 1,
		"DCCLOCODEC", "0",
		 0)
	
		Entry[1656] = new Element(
		1656, "assets/thumb/dcccon_ts2sax-5.jpg",
		137, 122,
		"H-DCD-TS2SAX-5", "TS2SAX-5 2 function decoder (small thin) without stay alive - 5 pack",
		"", "DCC Concepts",
		"79", "0",
		"1", 1,
		"pack", "66",
		"", "pd-230584578.htm",
		"", 1,
		"DCCLOCODEC", "0",
		 0)
	
		Entry[1657] = new Element(
		1657, "assets/thumb/dcccon_t4sap.jpg",
		137, 79,
		"H-DCD-TS4SAP", "TS4SAP 4 function decoder (small thin) WITH stay alive",
		"", "DCC Concepts",
		"20.5", "0",
		"1", 1,
		"decoder", "66",
		"", "pd-540064420.htm",
		"", 1,
		"DCCLOCODEC", "0",
		 0)
	
		Entry[1658] = new Element(
		1658, "assets/thumb/dcccon_ts4sax.jpg",
		137, 49,
		"H-DCD-TS4SAX", "TS4SAX 4 function decoder (small thin) without stay alive",
		"", "DCC Concepts",
		"18", "0",
		"1", 1,
		"decoder", "66",
		"", "pd991402730.htm",
		"", 1,
		"DCCLOCODEC", "0",
		 0)
	
		Entry[1659] = new Element(
		1659, "assets/thumb/dcccon_t4sap-5.jpg",
		137, 102,
		"H-DCD-TS4SAP-5", "TS4SAP-5 4 function decoder (small thin) WITH stay alive - 5 pack",
		"", "DCC Concepts",
		"96", "0",
		"1", 1,
		"pack", "66",
		"", "pd-1574804696.htm",
		"", 1,
		"DCCLOCODEC", "0",
		 0)
	
		Entry[1660] = new Element(
		1660, "assets/thumb/dcccon_t4sax-5.jpg",
		137, 132,
		"H-DCD-TS4SAX-5", "TS4SAX-5 4 function decoder (small thin) without stay alive - 5 pack",
		"", "DCC Concepts",
		"83", "0",
		"1", 1,
		"pack", "66",
		"", "pd815373718.htm",
		"", 1,
		"DCCLOCODEC", "0",
		 0)
	
		Entry[1661] = new Element(
		1661, "assets/thumb/dcccon_m4sap-5.jpg",
		137, 103,
		"H-DCD-M4SAP-5", "M4SAP-5 4 function decoder (medium) WITH stay alive - 5-pack",
		"", "DCC Concepts",
		"89", "0",
		"1", 1,
		"decoder", "66",
		"", "pd398808500.htm",
		"", 1,
		"DCCLOCODEC", "0",
		 0)
	
		Entry[1662] = new Element(
		1662, "assets/thumb/dcccon_m2sap-5.jpg",
		137, 102,
		"H-DCD-M2SAP-5", "M2SAP-5 2 function decoder (medium) WITH stay alive - 5-pack",
		"", "DCC Concepts",
		"84", "0",
		"1", 1,
		"decoder", "66",
		"", "pd-898989310.htm",
		"", 1,
		"DCCLOCODEC", "0",
		 0)
	
		Entry[1663] = new Element(
		1663, "assets/thumb/76sal002thumb.jpg",
		137, 77,
		"76SAL002", "Scania Aerial Rescue Pump",
		"Avon Fire &amp; Rescue - 1:76 scale    MSRP £20.95", "Oxford Diecast",
		"18.5", "0",
		"1", 1,
		"model", "21",
		"", "pd1307094309.htm",
		"", 1,
		"OX176", "0",
		 0)
	
		Entry[1664] = new Element(
		1664, "assets/thumb/r2699thumb.jpg",
		137, 38,
		"R2966", "BR 4-6-2 Class A3   60043",
		"R2966 Late BR 4-6-2 Class A3 60043 Brown Jack - DCC Ready  MSRP £133.25", "Hornby",
		"115", "0",
		"1", 1,
		"loco", "135",
		"", "pd-1285679232.htm",
		"", 1,
		"HornbyStea", "0",
		 0)
	
		Entry[1665] = new Element(
		1665, "assets/thumb/gmdcc70.jpg",
		137, 114,
		"GM-DCC70-1-1", "Black Box Digital Sound for AC Control",
		"DCC70 Black Box Digital Sound for Analogue Control  MSRP £69.95", "Gaugemaster",
		"67.9", "0",
		"1", 1,
		"item", "63",
		"", "pd1307284173.htm",
		"", 1,
		"OTHRDCCDIS", "10",
		 0)
	
		Entry[1666] = new Element(
		1666, "assets/thumb/btoda10.jpg",
		137, 60,
		"BTODA10", "Foden 8-wheel Flatbed &amp; Crates    Cat. No. BTODA10",
		"BRS-Bouts Tillison", "Base Toys",
		"8.5", "0",
		"1", 1,
		"model", "6",
		"", "pd-1697389364.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1667] = new Element(
		1667, "assets/thumb/btoda11.jpg",
		137, 64,
		"BTODA11", "Leyland Flatbed &amp; Paving Stone Pallets    Cat. No. BTODA11",
		"S Marshall", "Base Toys",
		"8.5", "0",
		"1", 1,
		"model", "6",
		"", "pd443353050.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1668] = new Element(
		1668, "assets/thumb/btoda12.jpg",
		137, 47,
		"BTODA12", "D Series Articulated Flatbed &amp; Pallets    Cat. No. BTODA12",
		"British Rail", "Base Toys",
		"8.5", "0",
		"1", 1,
		"model", "6",
		"", "pd944291054.htm",
		"", 1,
		"BASE", "0",
		 0)
	
		Entry[1669] = new Element(
		1669, "assets/thumb/btol01.jpg",
		137, 77,
		"BTOL01", "Large Barrels (Hogshead)",
		"4 x strips of 4 x Large Barrels (Hogshead)", "Base Toys",
		"2.75", "0",
		"1", 1,
		"pack", "32",
		"", "pd-1301725710.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[1670] = new Element(
		1670, "assets/thumb/btol02.jpg",
		137, 67,
		"BTOL02", "Medium Barrels (36 gallons)",
		"4 x strips of 4 x Medium Barrels (36 gallons)", "Base Toys",
		"2.75", "0",
		"1", 1,
		"pack", "32",
		"", "pd-1767907984.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[1671] = new Element(
		1671, "assets/thumb/btol04.jpg",
		137, 87,
		"BTOL04", "Large Cable Drums",
		"2 x Large Cable Drums", "Base Toys",
		"2.75", "0",
		"1", 1,
		"pack", "32",
		"", "pd987480350.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[1672] = new Element(
		1672, "assets/thumb/btol05.jpg",
		137, 63,
		"BTOL05", "Long Packing Cases",
		"4 x Long Packing Cases", "Base Toys",
		"2.75", "0",
		"1", 1,
		"pack", "32",
		"", "pd77468452.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[1673] = new Element(
		1673, "assets/thumb/btol06.jpg",
		137, 82,
		"BTOL06", "Pallets (British)",
		"6 x Pallets (British)", "Base Toys",
		"2.75", "0",
		"1", 1,
		"pack", "32",
		"", "pd-988199812.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[1674] = new Element(
		1674, "assets/thumb/btol07.jpg",
		137, 84,
		"BTOL07", "Medium Packing Cases",
		"6 x Medium Packing Cases", "Base Toys",
		"2.75", "0",
		"1", 1,
		"pack", "32",
		"", "pd-751085160.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[1675] = new Element(
		1675, "assets/thumb/btol08.jpg",
		137, 105,
		"BTOL08", "Paving Slabs on Pallets",
		"6 x Paving Slabs on Pallets", "Base Toys",
		"2.75", "0",
		"1", 1,
		"pack", "32",
		"", "pd-40420986.htm",
		"", 1,
		"TrackAcc", "0",
		 0)
	
		Entry[1676] = new Element(
		1676, "assets/thumb/gm-dcc51.jpg",
		137, 194,
		"GM-DCC51-1", "Prodigy Wireless Conversion Set",
		"Prodigy Wireless Conversion Set  MSRP £245.00", "Gaugemaster",
		"229.8", "0",
		"1", 1,
		"item", "80",
		"", "pd1284469220.htm",
		"", 1,
		"GAUGEDCC", "0",
		 0)
	
		Entry[1677] = new Element(
		1677, "assets/thumb/gmdcc70.jpg",
		137, 114,
		"GM-DCC70-1", "Black Box Digital Sound for AC Control",
		"DCC70 Black Box Digital Sound for Analogue Control  MSRP £69.95", "Gaugemaster",
		"67.9", "0",
		"1", 1,
		"item", "80",
		"", "pd1887989890.htm",
		"", 1,
		"GAUGEDCC", "0",
		 0)
	
		Entry[1678] = new Element(
		1678, "assets/thumb/gmdcc30.jpg",
		137, 91,
		"GM-DCC30-1", "DCC Accessory decoder",
		"DCC30 DCC Accessory decoder for 4 accessories  MSRP £49.95", "Gaugemaster",
		"47.75", "0",
		"1", 1,
		"item", "81",
		"", "pd-41471210.htm",
		"", 1,
		"GAUGEACC", "0",
		 0)
	
		Entry[1679] = new Element(
		1679, "assets/thumb/om43915thumb.jpg",
		137, 87,
		"OM43915A", "Daimler CW Utility  Cat. No. OM43915A",
		"City of Birmingham - route 22 Bolton Road   MSRP £28.99", "Corgi",
		"25.5", "0",
		"1", 1,
		"model", "12",
		"", "pd1710651880.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[1680] = new Element(
		1680, "assets/thumb/om43915thumb.jpg",
		137, 87,
		"OM43915B", "Daimler CW Utility  Cat. No. OM43915B",
		"City of Birmingham - route 22 City (Suffolk Street)   MSRP £28.99", "Corgi",
		"25.5", "0",
		"1", 1,
		"model", "12",
		"", "pd198087254.htm",
		"", 1,
		"OOC", "0",
		 0)
	
		Entry[1681] = new Element(
		1681, "assets/thumb/rj12thumb.jpg",
		137, 80,
		"N-RJ15", "RJ cable ",
		"RJ cable 15ft in length to connect UTP,UTP-DIN or cab to PH-box etc", "NCE",
		"7", "0",
		"1", 1,
		"item", "95",
		"", "pd1309516882.htm",
		"", 1,
		"CabsW", "0",
		 0)
	
		Entry[1682] = new Element(
		1682, "assets/thumb/gmtsv01a.jpg",
		137, 176,
		"GM-TSVO1a", "4 function loco decoder",
		"TSVO1a 4-function loco decoder with 8-pin plug", "Gaugemaster",
		"10.5", "0",
		"1", 1,
		"decoder", "82",
		"", "pd-1987564848.htm",
		"", 1,
		"TRAINSAVE", "0",
		 0)
	
		Entry[1683] = new Element(
		1683, "assets/thumb/ath20000802thumb.jpg",
		137, 54,
		"AL20000802", "Trainman ACF 50&rsquo; Boxcar",
		"AL20000802  Canadian National #419331", "Athearn",
		"11", "0",
		"1", 1,
		"item", "40",
		"", "pd1242064390.htm",
		"", 1,
		"ATHROLL", "0",
		 0)
	
		Entry[1684] = new Element(
		1684, "assets/thumb/ath20000881.jpg",
		137, 137,
		"AL20000881", "Trainman ACF 3560 Covered Hopper",
		"AL20000881  Watkins Salt #63907", "Athearn",
		"11", "0",
		"1", 1,
		"item", "40",
		"", "pd-1676340316.htm",
		"", 1,
		"ATHROLL", "0",
		 0)
	
		Entry[1685] = new Element(
		1685, "assets/thumb/ex-ee-1751-cr-flat-car-01thumb.jpg",
		137, 41,
		"EX-EE-1755-2", "48&rsquo; Depressed Center Flat Car",
		"ATSF : 90146", "Exactrail",
		"17", "0",
		"1", 1,
		"wagon", "124",
		"", "pd1667365332.htm",
		"", 1,
		"EXACTRAIL", "0",
		 0)
	
		Entry[1686] = new Element(
		1686, "assets/thumb/ex-ee-1751-cr-flat-car-01thumb.jpg",
		137, 41,
		"EX-EE-1755-3", "48&rsquo; Depressed Center Flat Car",
		"ATSF : 90154", "Exactrail",
		"17", "0",
		"1", 1,
		"wagon", "124",
		"", "pd1074021410.htm",
		"", 1,
		"EXACTRAIL", "0",
		 0)
	
		Entry[1687] = new Element(
		1687, "assets/thumb/ex-ee-1751-cr-flat-car-01thumb.jpg",
		137, 41,
		"EX-EE-1751-1", "48&rsquo; Depressed Center Flat Car",
		"CR : 766002", "Exactrail",
		"17", "0",
		"1", 1,
		"wagon", "124",
		"", "pd1291128608.htm",
		"", 1,
		"EXACTRAIL", "0",
		 0)
	
		Entry[1688] = new Element(
		1688, "assets/thumb/ex-ee-1751-cr-flat-car-01thumb.jpg",
		137, 41,
		"EX-EE-1751-2", "48&rsquo; Depressed Center Flat Car",
		"CR : 766003", "Exactrail",
		"17", "0",
		"1", 1,
		"wagon", "124",
		"", "pd1295321678.htm",
		"", 1,
		"EXACTRAIL", "0",
		 0)
	
		Entry[1689] = new Element(
		1689, "assets/thumb/ex-ee-1751-cr-flat-car-01thumb.jpg",
		137, 41,
		"EX-EE-1751-3", "48&rsquo; Depressed Center Flat Car",
		"CR : 766004", "Exactrail",
		"17", "0",
		"1", 1,
		"wagon", "124",
		"", "pd1577218348.htm",
		"", 1,
		"EXACTRAIL", "0",
		 0)
	
		Entry[1690] = new Element(
		1690, "assets/thumb/ex-ep-80601-atsf-asdelivered-boxcar-01thumb.jpg",
		137, 60,
		"EX-EP-80601-6", "P-S 7315 Waffle Box Car",
		"ATSF : 37561", "Exactrail",
		"22", "0",
		"1", 1,
		"wagon", "124",
		"", "pd727321476.htm",
		"", 1,
		"EXACTRAIL", "0",
		 0)
	
		Entry[1691] = new Element(
		1691, "assets/thumb/ex-ee-1015-atsf-boxcar-01thumb.jpg",
		137, 66,
		"EX-EE-1015-5", "PC&amp;F 6033 cu. ft. Hy-Cube Box Car",
		"ATSF : 15693", "Exactrail",
		"17", "0",
		"1", 1,
		"wagon", "124",
		"", "pd1278963026.htm",
		"", 1,
		"EXACTRAIL", "0",
		 0)
	
		Entry[1692] = new Element(
		1692, "assets/thumb/ex-ee-1015-atsf-boxcar-01thumb.jpg",
		137, 66,
		"EX-EE-1015-6", "PC&amp;F 6033 cu. ft. Hy-Cube Box Car",
		"ATSF : 15695", "Exactrail",
		"17", "0",
		"1", 1,
		"wagon", "124",
		"", "pd-1905321008.htm",
		"", 1,
		"EXACTRAIL", "0",
		 0)
	
		Entry[1693] = new Element(
		1693, "assets/images/nopicturegreen.jpg",
		133, 46,
		"STX826116", "Tsunami DRGW C-Class",
		"TSU-1000 Denver &amp; Rio Grande C-Class", "Soundtraxx",
		"77", "0",
		"1", 1,
		"decoder", "99",
		"", "pd-1224888488.htm",
		"", 1,
		"TSUNAMI", "0",
		 0)
	
		Entry[1694] = new Element(
		1694, "assets/thumb/r2900xsthumb.jpg",
		137, 34,
		"R2900XS", "Class 31 BR Railfreight AIA-AIA",
		"R2900XS Class 31 BR Railfreight AIA-AIA  31247  Sound fitted  MSRP £210.00", "Hornby",
		"180", "0",
		"1", 1,
		"loco", "136",
		"", "pd183854156.htm",
		"", 1,
		"HornbyDies", "0",
		 0)
	
		Entry[1695] = new Element(
		1695, "assets/thumb/efe12309thumb.jpg",
		137, 65,
		"12309", "Harrington Grenadier  Cat. No. 12309",
		"Black and White", "EFE",
		"22.5", "0",
		"1", 1,
		"model", "18",
		"", "pd-1380039977.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1696] = new Element(
		1696, "assets/thumb/efe32305thumb.jpg",
		137, 49,
		"32305", "Bristol RELH Coach  Cat. No. 32305",
		"Royal Blue", "EFE",
		"22.5", "0",
		"1", 1,
		"model", "18",
		"", "pd1138966713.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1697] = new Element(
		1697, "assets/thumb/OM46106 Plaxton Panther.jpg",
		137, 70,
		"OM46106-1", "Plaxton Panther  Cat. No. OM46106",
		"Parks of Hamilton", "Corgi",
		"23", "0",
		"1", 1,
		"model", "3",
		"", "pd-52321556.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1698] = new Element(
		1698, "assets/thumb/om46103.jpg",
		137, 59,
		"OM46103-1", "Plaxton Paragon  Cat. No. OM46103",
		"First Eastern Counties", "Corgi",
		"23", "0",
		"1", 1,
		"model", "3",
		"", "pd252015354.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1699] = new Element(
		1699, "assets/thumb/om46101.jpg",
		137, 56,
		"OM46101-1", "Plaxton Paragon  Cat. No. OM46101",
		"Felix Coaches", "Corgi",
		"23", "0",
		"1", 1,
		"model", "3",
		"", "pd-2089666120.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1700] = new Element(
		1700, "assets/thumb/OM46008thumb.jpg",
		137, 61,
		"OM46008-1", "Wright Solar  Cat. No. OM46008",
		"Reading Transport", "Corgi",
		"23", "0",
		"1", 1,
		"model", "3",
		"", "pd-154823002.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1701] = new Element(
		1701, "assets/thumb/om46007thumb.jpg",
		137, 50,
		"OM46007-1", "Wright Eclipse Urban  Cat. No. OM46007",
		"Rossendale Transport 50th Anniversary", "Corgi",
		"23", "0",
		"1", 1,
		"model", "3",
		"", "pd2128885060.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1702] = new Element(
		1702, "assets/thumb/om46004.jpg",
		137, 52,
		"OM46004-1", "Wright Eclipse Urban  Cat. No. OM46004",
		"Fastrack/Kent Thameside", "Corgi",
		"23", "0",
		"1", 1,
		"model", "3",
		"", "pd50375954.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1703] = new Element(
		1703, "assets/thumb/OM46002_WHITELAWS Coaches.jpg",
		137, 64,
		"OM46002B-1", "Wright single deck  Cat. No. OM46002",
		"Whitelaws - route 254 Hamilton Bus Station", "Corgi",
		"22", "0",
		"1", 1,
		"model", "3",
		"", "pd-226664048.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1704] = new Element(
		1704, "assets/thumb/OM46002_WHITELAWS Coaches.jpg",
		137, 64,
		"OM46002A-1", "Wright single deck  Cat. No. OM46002",
		"Whitelaws - route 254 Stonehouse", "Corgi",
		"22", "0",
		"1", 1,
		"model", "3",
		"", "pd-2111741378.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1705] = new Element(
		1705, "assets/thumb/OM45912 Van Hool T9.jpg",
		137, 63,
		"OM45912-1", "Van Hool T9  Cat. No. OM45912",
		"Golden Boy Coaches", "Corgi",
		"22", "0",
		"1", 1,
		"model", "3",
		"", "pd-1009235300.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1706] = new Element(
		1706, "assets/thumb/OM45911.jpg",
		137, 71,
		"OM45911-1", "Van Hool T9  Cat. No. OM45911",
		"Bibby&rsquo;s of Ingleton", "Corgi",
		"23", "0",
		"1", 1,
		"model", "3",
		"", "pd-403365334.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1707] = new Element(
		1707, "assets/thumb/om45910thumb.jpg",
		137, 69,
		"OM45910-1", "Van Hool T9 Cat. No. OM45910",
		"Bartons Transport   MSRP £25.99", "Corgi",
		"23", "0",
		"1", 1,
		"model", "3",
		"", "pd1873820776.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1708] = new Element(
		1708, "assets/thumb/OM45906_GO GOODWINS.jpg",
		137, 64,
		"OM45906-1", "Van Hool T9  Cat. No. OM45906",
		"Goodwins (England Cricket)", "Corgi",
		"22", "0",
		"1", 1,
		"model", "3",
		"", "pd1062738134.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1709] = new Element(
		1709, "assets/thumb/OM45903_Fraser Eagle.jpg",
		137, 59,
		"OM45903-1", "Van Hool T9   Cat. No. OM45903",
		"Fraser Eagle", "Corgi",
		"20.4", "0",
		"1", 1,
		"model", "3",
		"", "pd57492212.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1710] = new Element(
		1710, "assets/thumb/OM45310_Bova Futura.jpg",
		137, 85,
		"OM45310-1", "Bova Futura   Cat. No. OM45310",
		"Kings Coaches, Colchester", "Corgi",
		"17.6", "0",
		"1", 1,
		"model", "3",
		"", "pd-87156114.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1711] = new Element(
		1711, "assets/thumb/om45119.jpg",
		137, 82,
		"OM45119-1", "MCW Metrobus MkII SD  Cat. No. OM45119",
		"Dublin Bus", "Corgi",
		"23", "0",
		"1", 1,
		"model", "3",
		"", "pd-971080116.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1712] = new Element(
		1712, "assets/thumb/om45118thumb.jpg",
		137, 98,
		"OM45118-1", "MCW Metrobus MkI DD Cat. No. OM45118",
		"London Transport  MSRP £25.99", "Corgi",
		"23", "0",
		"1", 1,
		"model", "3",
		"", "pd-1251000998.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1713] = new Element(
		1713, "assets/thumb/OM45117_LONDON EXPRESS Bus.jpg",
		137, 80,
		"OM45117B-1", "Metrobus  Cat. No. OM45117",
		"Reading Buses - destination Heathrow", "Corgi",
		"22.5", "0",
		"1", 1,
		"model", "3",
		"", "pd-1683059944.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1714] = new Element(
		1714, "assets/thumb/OM45117_LONDON EXPRESS Bus.jpg",
		137, 80,
		"OM45117A-1", "Metrobus  Cat. No. OM45117",
		"Reading Buses - destination Reading", "Corgi",
		"22.5", "0",
		"1", 1,
		"model", "3",
		"", "pd-2125215994.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1715] = new Element(
		1715, "assets/thumb/OM44710thumb.jpg",
		137, 37,
		"OM44710-1", "Dart SLF/Pointer 1  Cat. No. OM44710",
		"Trent Barton &rsquo;The Villager&rsquo;   MSRP £25.99", "Corgi",
		"23", "0",
		"1", 1,
		"model", "3",
		"", "pd-1162650460.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1716] = new Element(
		1716, "assets/thumb/OM44709.jpg",
		137, 78,
		"OM44709-1", "Dart SLF/Pointer 2  Cat. No. OM44709",
		"Arriva London", "Corgi",
		"23", "0",
		"1", 1,
		"model", "3",
		"", "pd435528562.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1717] = new Element(
		1717, "assets/thumb/OM44708_UNO Dennis Dart.jpg",
		137, 63,
		"OM44708-1", "Dart SLF  Cat. No. OM44708",
		"Uno", "Corgi",
		"16.35", "0",
		"1", 1,
		"model", "3",
		"", "pd-781664528.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1718] = new Element(
		1718, "assets/thumb/om44706bthumb.jpg",
		137, 70,
		"OM44706B-1", "Dennis Dart SLF/Pointer 1   Cat. No. OM44706B",
		"Brighton &amp; Hove Buses - Route 50 to Hollingdean", "Corgi",
		"17.6", "0",
		"1", 1,
		"model", "3",
		"", "pd-1985642850.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1719] = new Element(
		1719, "assets/thumb/om44706athumb.jpg",
		137, 61,
		"OM44706A-1", "Dennis Dart SLF/Pointer 1   Cat. No. OM44706A",
		"Brighton &amp; Hove Buses - Route 46 to Southwick Square", "Corgi",
		"17", "0",
		"1", 1,
		"model", "3",
		"", "pd-1145094660.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1720] = new Element(
		1720, "assets/thumb/OM44704thumb.jpg",
		137, 62,
		"OM44704-1", "Dennis Dart SLF/Plaxton   Cat. No. OM44704",
		"Arriva Kent &amp; Sussex (Transweald)", "Corgi",
		"16.35", "0",
		"1", 1,
		"model", "3",
		"", "pd-1166621558.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1721] = new Element(
		1721, "assets/thumb/OM44702.jpg",
		130, 82,
		"OM44702-1", "Dennis Dart   Cat. No. OM44702",
		"Metroline", "Corgi",
		"16.35", "0",
		"1", 1,
		"", "3",
		"", "pd1307287862.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1722] = new Element(
		1722, "assets/thumb/OM44112_GOWER Explorer.jpg",
		137, 77,
		"OM44112B-1", "Optare Solo  Cat. No. OM44112",
		"Gower Explorer - route 117 Horton", "Corgi",
		"18.4", "0",
		"1", 1,
		"model", "3",
		"", "pd86082132.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1723] = new Element(
		1723, "assets/thumb/OM44112_GOWER Explorer.jpg",
		137, 77,
		"OM44112A-1", "Optare Solo  Cat. No. OM44112",
		"Gower Explorer - route 115 Llangenith", "Corgi",
		"18.4", "0",
		"1", 1,
		"model", "3",
		"", "pd-1486815070.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1724] = new Element(
		1724, "assets/thumb/OM44111_Trent Barton Solo.jpg",
		137, 75,
		"OM44111A-1", "Optare Solo   Cat. No. OM44111A",
		"Trent Barton - Route 1A to Ripley", "Corgi",
		"16.85", "0",
		"1", 1,
		"model", "3",
		"", "pd-717582642.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1725] = new Element(
		1725, "assets/thumb/OM44108_Optare Solo.jpg",
		137, 85,
		"OM44108-1", "Optare Solo   Cat. No. OM44108",
		"Burton&rsquo;s - Addenbrooks Hospital Shuttle", "Corgi",
		"16.35", "0",
		"1", 1,
		"model", "3",
		"", "pd-1719301716.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1726] = new Element(
		1726, "assets/thumb/OM43402_Plaxton Beaver.jpg",
		137, 70,
		"OM43402-1", "Plaxton Beaver Cat. No. OM43402  - reduced price - damaged case",
		"East Yorkshire Motor Services", "Corgi",
		"14.3", "0",
		"1", 1,
		"model", "3",
		"", "pd966216784.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1727] = new Element(
		1727, "assets/thumb/OM43314_Red & White Coaches.jpg",
		137, 63,
		"OM43314-1", "Plaxton Premiere  Cat. No. OM43314",
		"Red &amp; White", "Corgi",
		"18.4", "0",
		"1", 1,
		"model", "3",
		"", "pd-757052674.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1728] = new Element(
		1728, "assets/thumb/OM43313_McKindless Express.jpg",
		137, 64,
		"OM43313-1", "Plaxton Premiere   Cat. No. OM43313",
		"McKindless Bus Group", "Corgi",
		"18.9", "0",
		"1", 1,
		"model", "3",
		"", "pd1090281820.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1729] = new Element(
		1729, "assets/thumb/OM43312thumb.jpg",
		137, 65,
		"OM43312-1", "Plaxton Premiere   Cat. No. OM43312",
		"Wilts &amp; Dorset Bus Co.", "Corgi",
		"18.9", "0",
		"1", 1,
		"model", "3",
		"", "pd1559893738.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1730] = new Element(
		1730, "assets/thumb/OM43311thumb.jpg",
		137, 77,
		"OM43311-1", "Plaxton Excalibur   Cat. No. OM43311",
		"Oxford Bus Company - Oxford Espress", "Corgi",
		"18.4", "0",
		"1", 1,
		"model", "3",
		"", "pd2100903720.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1731] = new Element(
		1731, "assets/thumb/OM43309.jpg",
		130, 82,
		"OM43309-1", "Plaxton Excalibur   Cat. No. OM43309",
		"Oxford Bus Co", "Corgi",
		"18.4", "0",
		"1", 1,
		"model", "3",
		"", "pd-1921263210.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1732] = new Element(
		1732, "assets/thumb/OM42519 Southdown.jpg",
		137, 85,
		"OM42519-1", "East Lancs Myllennium  Cat. No. OM42519",
		"Southdown PSV", "Corgi",
		"22.5", "0",
		"1", 1,
		"model", "3",
		"", "pd1826746804.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1733] = new Element(
		1733, "assets/thumb/om42518.jpg",
		137, 73,
		"OM42518-1", "East Lancs Myllenium  Cat. No. OM42518",
		"London United", "Corgi",
		"22.5", "0",
		"1", 1,
		"model", "3",
		"", "pd1338539778.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1734] = new Element(
		1734, "assets/thumb/OM42512_Volvo B7TL - Cork.jpg",
		137, 83,
		"OM42512-1", "East Lancs Vyking   Cat. No. OM42512",
		"Bus Eireann - Cork Park &amp; Ride", "Corgi",
		"17.6", "0",
		"1", 1,
		"item", "3",
		"", "pd-156650706.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1735] = new Element(
		1735, "assets/thumb/OM42510_East Lancs Vyking.jpg",
		137, 75,
		"OM42510-1", "East Lancs Vyking   Cat. No. OM42510",
		"Delaine Buses", "Corgi",
		"17.6", "0",
		"1", 1,
		"", "3",
		"", "pd812565772.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1736] = new Element(
		1736, "assets/images/nopicturegreen.jpg",
		133, 46,
		"OM41910-1", "Leyland PD3/Queen Mary  Cat. No. OM41910",
		"Southdown Motors  MSRP £19.99", "Corgi",
		"18.9", "0",
		"1", 1,
		"model", "3",
		"", "pd-217661992.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1737] = new Element(
		1737, "assets/thumb/OM41909.jpg",
		130, 82,
		"OM41909-1", "Leyland PD3/Queen Mary   Cat. No. OM41909",
		"Southdown", "Corgi",
		"17.6", "0",
		"1", 1,
		"model", "3",
		"", "pd1956263878.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1738] = new Element(
		1738, "assets/thumb/OM41408.jpg",
		137, 98,
		"OM41408-1", "AEC Regent V/Roe  Cat. No. OM41408",
		"Samuel Ledguard  MSRP £25.99", "Corgi",
		"23", "0",
		"1", 1,
		"model", "3",
		"", "pd-221627548.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1739] = new Element(
		1739, "assets/thumb/OM41306_Wright Eclipse.jpg",
		137, 54,
		"OM41306A-1", "Wright Solar Fusion   Cat. No. OM41306",
		"First York - Route 3 to Askham Bar", "Corgi",
		"24.5", "0",
		"1", 1,
		"model", "3",
		"", "pd1667876702.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1740] = new Element(
		1740, "assets/thumb/OM41301_Wright Solar Fusion.jpg",
		137, 48,
		"OM41301-1", "Wright Solar Fusion   Cat. No. OM41301",
		"Go Ahead North East", "Corgi",
		"24.5", "0",
		"1", 1,
		"", "3",
		"", "pd854045884.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1741] = new Element(
		1741, "assets/thumb/om41219thumb.jpg",
		137, 80,
		"OM41219-1", "Wright Eclipse Gemini Cat. No. OM41219",
		"Lincolnshire Road Car", "Corgi",
		"22", "0",
		"1", 1,
		"model", "3",
		"", "pd513218890.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1742] = new Element(
		1742, "assets/images/nopicturegreen.jpg",
		133, 46,
		"OM41112-1", "Leyland PD3/East Lancs  Cat. No. OM41112",
		"Burnley  MSRP £25.99", "Corgi",
		"22.5", "0",
		"1", 1,
		"model", "3",
		"", "pd782287350.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1743] = new Element(
		1743, "assets/thumb/OM41109thumb.jpg",
		137, 87,
		"OM41109-1", "Daimler CVG6/East Lancs  Cat. No. OM41109",
		"Bradford City Transport", "Corgi",
		"17.6", "0",
		"1", 1,
		"model", "3",
		"", "pd1023840532.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1744] = new Element(
		1744, "assets/thumb/AN40306_Burlingham Seagull.jpg",
		137, 91,
		"AN40306-1", "Burlingham Seagull  Cat. No. AN40306",
		"Ulsterbus - 50th Anniversary Model", "Corgi",
		"26", "0",
		"1", 1,
		"model", "3",
		"", "pd-1362183046.htm",
		"", 1,
		"HORNBYSALE", "45",
		 0)
	
		Entry[1745] = new Element(
		1745, "assets/thumb/HQBrdcolor1.jpg",
		137, 66,
		"HQ100-3", "US Steam Whistle 3",
		"HQ100-3", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd1312188665.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[1746] = new Element(
		1746, "assets/images/nopicturegreen.jpg",
		133, 46,
		"HQ610-4", "Chain Saw",
		"HQ610-4", "ITTC",
		"22.5", "0",
		"1", 1,
		"item", "144",
		"", "pd1169112015.htm",
		"", 1,
		"ITTCSound", "0",
		 0)
	
		Entry[1747] = new Element(
		1747, "assets/thumb/walt3906thumb.jpg",
		137, 133,
		"WALT-3906", "Paper Rolls",
		"Pack of 4 x Paper Rolls", "Walthers",
		"9.75", "0",
		"1", 1,
		"item", "162",
		"", "pd1675119880.htm",
		"", 1,
		"WALTHCORNE", "0",
		 0)
	
		Entry[1748] = new Element(
		1748, "assets/thumb/walt3905thumb.jpg",
		137, 55,
		"WALT-3905", "Puplwood Stack",
		"", "Walthers",
		"9.75", "0",
		"1", 1,
		"item", "162",
		"", "pd-1298945345.htm",
		"", 1,
		"WALTHCORNE", "0",
		 0)
	
		Entry[1749] = new Element(
		1749, "assets/thumb/hfj.jpg",
		137, 99,
		"TV-HFJ-002", "Hex Frog Juicer",
		"Hex Frog Juicer for use with NCE PowerCab systems", "Tam Valley Depot",
		"54.5", "0",
		"1", 1,
		"item", "100",
		"", "pd1312456123.htm",
		"", 1,
		"TAMVALLEY", "0",
		 0)
	
		Entry[1750] = new Element(
		1750, "assets/thumb/dab002.jpg",
		137, 104,
		"TV-DAB", "DCC Booster Board 5A",
		"", "Tam Valley Depot",
		"29", "0",
		"1", 1,
		"pack", "100",
		"", "pd-709482911.htm",
		"", 1,
		"TAMVALLEY", "0",
		 0)
	
		Entry[1751] = new Element(
		1751, "assets/thumb/efe27902thumb.jpg",
		137, 72,
		"27902", "Daimler DMS Open Top  Cat. No. 27901",
		"Big Bus Company", "EFE",
		"22.25", "0",
		"1", 1,
		"model", "18",
		"", "pd-385493129.htm",
		"", 1,
		"EFE", "0",
		 0)
	
		Entry[1752] = new Element(
		1752, "assets/thumb/sa3.jpg",
		64, 82,
		"H-DCD-SA3", "Pack of 3 stay alive",
		"", "DCC Concepts",
		"13", "0",
		"1", 1,
		"pack", "66",
		"", "pd561188157.htm",
		"", 1,
		"DCCLOCODEC", "0",
		 0)
	
		Entry[1753] = new Element(
		1753, "assets/thumb/76tr005.jpg",
		137, 100,
		"76TR005", "Mobile Trailer",
		"The Happy Plaice - 1:76 scale    MSRP £6.25", "Oxford Diecast",

