	// 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="84" height="24" 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/cayenne S+Turbo.jpg",
		200, 176,
		"P-2", "Porsche Cayenne S &amp; Turbo Press Disc",
		"Contains 32 pictures in low/medium and high resolution", "",
		"15", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd970747660.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/911 turbo cab.jpg",
		200, 165,
		"P-1", "Porsche 911 Turbo Cabriolet Press Disc",
		"Contains 33 pictures in low/medium and high resolution", "",
		"15", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd-792093670.htm",
		"", 0,
		"press5", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/Carrera GT.jpg",
		200, 167,
		"P-3", "Porsche 911 GT Press Disc",
		"Porsche 911 GT Press Disc", "",
		"15", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd-772601896.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/911 40yrs history.jpg",
		200, 172,
		"P-4", "Porsche 911 40yrs History Press Disc",
		"Porsche 911 40yrs History Press Disc", "",
		"15", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd1732743622.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/1999 all models small.jpg",
		200, 203,
		"P-5", "Porsche 1999 Full Model Range Disc",
		"Porsche 1999 Full Model Range 225mm x 192mm ", "",
		"15", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd1365189988.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/2003 model range.jpg",
		250, 339,
		"P-6", "2003 Full model Range",
		"Booklet Included Giving Full Specification. Disc Contains 60 Images. 190mm x140mm", "",
		"15", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd-967730638.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/Jaguar Stype04 Diesel small.jpg",
		200, 185,
		"JAG-1", "2004 Jaguar S-Type 2.7 V6 Diesel Press Disc ",
		"Includes 45 Full Colour Pictures", "",
		"15", "0",
		"1", 1,
		"Pieces", "59",
		"", "pd-1903533540.htm",
		"", 1,
		"press 7", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/Lotus Carlton 1 Small.jpg",
		200, 158,
		"L-1", "Lotus Carlton Press Pic 1 (Photo Printed copy of original)",
		"Lotus Carlton Press Pic 1", "",
		"5", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd1091907650.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/Lotus Carlton 2 small.jpg",
		200, 157,
		"L-10", "Lotus Carlton Press Pic 2 (Photo Printed copy of original)",
		"Lotus Carlton Press Pic 2", "",
		"5", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd-1522771904.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/Lotus Carlton 3 small.jpg",
		200, 161,
		"L-11", "Lotus Carlton Press Pic 3  (Photo Printed copy of original)",
		"Lotus Carlton Press Pic 3", "",
		"5", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd1584265326.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/Lotus V8  black small.jpg",
		200, 153,
		"L-4", "Lotus Esprit V8 BLACK",
		"Lotus Esprit V8 BLACK", "",
		"8", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd-864449460.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/Lotus Esprit GT3 Red small.jpg",
		200, 152,
		"L-5", "Lotus Esprit GT3 Red",
		"Lotus Esprit GT3 Red", "",
		"7", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd-1816593574.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/Lotus Esprit GT Yellow small.jpg",
		200, 153,
		"L-6", "Lotus Esprit GT3 Yellow",
		"Lotus Esprit GT3 Yellow", "",
		"7", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd1749448984.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/Lotus Esprit Sport 350 Silver 1 small.jpg",
		200, 153,
		"L-7", "Lotus Esprit Sport 350 Silver 1",
		"Lotus Esprit Sport 350 Silver 1 ", "",
		"7", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd1202021638.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/Lotus Project M250 Concept Car 1 Small.jpg",
		200, 154,
		"L-8", "Lotus Project M250 Concept Car ",
		"Lotus Project M250 Concept Car ", "",
		"7", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd840313508.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/Lotus Project M250 Concept Car interior Small.jpg",
		200, 154,
		"L-9", "Lotus Project M250 Concept Car interior ",
		"Lotus Project M250 Concept Car interior", "",
		"7", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd-1215487630.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/Lotus  Elise 1 small.jpg",
		200, 152,
		"L-3a", "Lotus Elise 1",
		"Lotus Elise 1", "",
		"7", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd-1392218896.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/Lotus Elise Motorsport small.jpg",
		200, 153,
		"L-9a", "Lotus Motorsport 1",
		"Lotus Motorsport 1", "",
		"7", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd1302387870.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/Lotus Elise Motorsport 2 small.jpg",
		200, 153,
		"L-9b", "Lotus Motorsport 2",
		"Lotus Motorsport 2", "",
		"7", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd-1746809860.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/Exige Small.jpg",
		200, 153,
		"L-9c", "Lotus Exige Silver",
		"Lotus Exige Silver", "",
		"7", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd299106954.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/Elise Red White 2tone Small.jpg",
		200, 154,
		"L-9d", "Lotus Elise 49 red/white",
		"Lotus Elise 49 red/white", "",
		"7", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd-134245432.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/Elise Yellow Small.jpg",
		200, 152,
		"L-9e", "Lotus Elise Yellow",
		"Lotus Elise Yellow", "",
		"7", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd1636351798.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/Elise Silver Small.jpg",
		200, 152,
		"L-9f", "Lotus Elise 111s Silver",
		"Lotus Elise 111s  Silver", "",
		"7", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd-927215532.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/VX220 Silver Small.jpg",
		200, 147,
		"V-1", "VX220 Silver",
		"VX220 Silver", "",
		"5", "0",
		"1", 1,
		"Pieces", "162",
		"", "pd-1243825197.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/Masarati 3200 GT Assetto Corsa small.jpg",
		200, 146,
		"MAS-1", "Masarati 3200 GT Assetto Corsa Red",
		"Masarati 3200 GT Assetto Corsa Red", "",
		"5", "0",
		"1", 1,
		"Pieces", "87",
		"", "pd-518328473.htm",
		"", 1,
		"press15", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/Masarati 3200 GT red small.jpg",
		200, 148,
		"MAS-2", "Masarati 3200 GT Red",
		"Masarati 3200 GT Red", "",
		"5", "0",
		"1", 1,
		"Pieces", "87",
		"", "pd-1900470291.htm",
		"", 1,
		"press15", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/Masarati spyder silver small.jpg",
		200, 145,
		"MAS-3", "Masarati Spyder silver",
		"Masarati Spyder silver", "",
		"5", "0",
		"1", 1,
		"Pieces", "87",
		"", "pd661789667.htm",
		"", 1,
		"press15", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/Masarati spyder silver 2 small.jpg",
		200, 146,
		"MAS-4", "Masarati Spyder silver",
		"Masarati Spyder silver", "",
		"5", "0",
		"1", 1,
		"Pieces", "87",
		"", "pd-55406391.htm",
		"", 1,
		"press15", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/VX220 Turbo Blue small.jpg",
		200, 146,
		"V-2", "VX 220 Turbo Blue",
		"VX 220 Turbo Blue", "",
		"5", "0",
		"1", 1,
		"Pieces", "162",
		"", "pd-1505957857.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/VX220 Turbo red small.jpg",
		200, 145,
		"V-3", "VX 220 Turbo Red",
		"VX 220 Turbo Red", "",
		"5", "0",
		"1", 1,
		"Pieces", "162",
		"", "pd-175134875.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/VX220 yellow small.jpg",
		200, 146,
		"V-4", "VX 220 Yellow",
		"VX 220 Yellow", "",
		"5", "0",
		"1", 1,
		"Pieces", "162",
		"", "pd-986525669.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/VX220 yellow 2 small.jpg",
		200, 146,
		"V-5", "VX220 Lightning Yellow",
		"VX220 Lightning Yellow", "",
		"5", "0",
		"1", 1,
		"Pieces", "162",
		"", "pd-1035714623.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/VX220 Orange small.jpg",
		200, 148,
		"V-6", "VX 220 Orange",
		"VX 220 Orange", "",
		"5", "0",
		"1", 1,
		"Pieces", "162",
		"", "pd-698675241.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/eco-speedster small.jpg",
		200, 145,
		"V-9", "VAUXHALL ECO-SPEEDSTER",
		"VAUXHALL ECO-SPEEDSTER", "",
		"5", "0",
		"1", 1,
		"Pieces", "162",
		"", "pd-1516636707.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/Porsche 911 GT3 Press Photo small.jpg",
		200, 137,
		"P-7", "Porsche 911 GT3 Press Photo",
		"Porsche 911 GT3 Press Photo", "",
		"5", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd411607891.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/Maserati Trofeo small.jpg",
		200, 147,
		"MAS-5", "Maserati 3200 Trofeo Press Photo",
		"Maserati 3200 Trofeo", "",
		"5", "0",
		"1", 1,
		"Pieces", "87",
		"", "pd319563193.htm",
		"", 1,
		"press15", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/Ferrari 612 Pic Sheet.jpg",
		300, 423,
		"FER-1", "Ferrari 612 Full Press Kit (click &quot;More&quot;)",
		"Full Press Kit", "",
		"25", "0",
		"1", 1,
		"Pieces", "34",
		"", "pd-1181333873.htm",
		"", 1,
		"Press 6", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/2004 Jauguar X-Type Estate.jpg",
		300, 355,
		"JAG-2", "2004 Jauguar X-Type Estate Full Press Kit (click &quot;More&quot;)",
		"2004 Jauguar X-Type Estate", "",
		"20", "0",
		"1", 1,
		"Pieces", "59",
		"", "pd-345773227.htm",
		"", 1,
		"press 7", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/VX220 00057 Silver small.jpg",
		200, 145,
		"V-1a", "VX220 Silver Press photo",
		"VX220 Silver Press photo ", "",
		"5", "0",
		"1", 1,
		"Pieces", "162",
		"", "pd1415738763.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/VX220 00063 Silver small.jpg",
		200, 148,
		"V-1b", "VX220 Silver Press photo 2",
		"VX220 Silver Press photo 2", "",
		"5", "0",
		"1", 1,
		"Pieces", "162",
		"", "pd-1693179215.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/VX220 00066 Silver small.jpg",
		200, 147,
		"V-1c", "VX220 Silver Press photo 3",
		"VX220 Silver Press photo 3", "",
		"5", "0",
		"1", 1,
		"Pieces", "162",
		"", "pd646671431.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/VX220 00068 Silver small.jpg",
		200, 147,
		"V-1d", "VX220 Silver Press photo 4",
		"VX220 Silver Press photo 4", "",
		"5", "0",
		"1", 1,
		"Pieces", "162",
		"", "pd-1235916851.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/VX220 00115 Silver small.jpg",
		200, 149,
		"V-1e", "VX220 Silver Press photo 5",
		"VX220 Silver Press photo 5", "",
		"5", "0",
		"1", 1,
		"Pieces", "162",
		"", "pd-102029629.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/Enzo 1 small.jpg",
		200, 145,
		"FER-2", "Enzo Press Photo 1",
		"Enzo Press Photo 1", "",
		"10", "0",
		"1", 1,
		"Pieces", "34",
		"", "pd1862407849.htm",
		"", 1,
		"Press 6", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/Enzo 2 small.jpg",
		200, 147,
		"FER-3", "Enzo Press Photo 2",
		"Enzo Press Photo 2", "",
		"10", "0",
		"1", 1,
		"Pieces", "34",
		"", "pd2111004927.htm",
		"", 1,
		"Press 6", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/2003 Maranello FIA GT Championship small.jpg",
		200, 147,
		"FER-4", "Maranello 2003 FIA GT Championship Press Photo",
		"Maranello 2003 FIA GT Championship Press Photo", "",
		"5", "0",
		"1", 1,
		"Pieces", "34",
		"", "pd3296069.htm",
		"", 1,
		"Press 6", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/Ferrari Owners Site small.jpg",
		200, 147,
		"FER-5", "Ferrari Owners Site Press Photo",
		"Ferrari Owners Site Press Photo", "",
		"5", "0",
		"1", 1,
		"Pieces", "34",
		"", "pd-1945528581.htm",
		"", 1,
		"Press 6", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/model small.jpg",
		150, 75,
		"FERM-1", "Bang Ferrari 348GT Competizione 1993 (Oscar Larrauri) 1:43rd Scale",
		"Bang Ferrari No 8018", "",
		"9.99", "0",
		"1", 1,
		"Pieces", "37",
		"", "pd1092252446.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/mod small.jpg",
		150, 75,
		"FERM-2", "Bang Ferrari 348GT Competizione 1993 (Motor Show Special) 1:43rd Scale SOLD",
		"SOLD", "",
		"0", "0",
		"1", 1,
		"Pieces", "37",
		"", "pd808635341.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/9505 small.jpg",
		150, 77,
		"FERM-3", "Bang Ferrari F355 1995 (V Polli) 1:43rd Scale",
		"Bang No 9505", "",
		"9.99", "0",
		"1", 1,
		"Pieces", "37",
		"", "pd1092260186.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/9406 small.jpg",
		150, 74,
		"FERM-4", "Bang Ferrari 348 Challenge 1994 (Roberto Ragazzi) 1:43rd Scale SOLD",
		"SOLD", "",
		"0", "0",
		"1", 1,
		"Pieces", "37",
		"", "pd-1239810280.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/9305 small.jpg",
		150, 75,
		"FERM-5", "Bang Ferrari 348 Challenge 1993 (Paolo Rossi) 1:43 rd Scale",
		"Bang No 9305", "",
		"9.99", "0",
		"1", 1,
		"Pieces", "37",
		"", "pd1694259974.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/9303 small.jpg",
		150, 75,
		"FERM-6", "Bang Ferrai 348 Challenge 1993 (R Ragazzi) 1:43rd Scale SOLD",
		"SOLD", "",
		"0", "0",
		"1", 1,
		"Pieces", "37",
		"", "pd2052984996.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/9504 small.jpg",
		150, 76,
		"FERM-7", "Bang Ferrari F355 1995 (G  Giraudi) 1:43rd Scale .. SOLD",
		"SOLD", "",
		"0", "0",
		"1", 1,
		"Pieces", "37",
		"", "pd2045736818.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/9511 small.jpg",
		150, 78,
		"FERM-8", "Bang Ferrari F355 1995 (Lehman Knut) 1:43rd Scale (SOLD)",
		"SOLD", "",
		"0", "0",
		"1", 1,
		"Pieces", "37",
		"", "pd-1027165456.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/8007small.jpg",
		150, 79,
		"FERM-9", "Bang Ferrari 348tb 1990 (Red) 1:43rd Scale SOLD",
		"SOLD", "",
		"0", "0",
		"1", 1,
		"Pieces", "37",
		"", "pd394564254.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/9318 small.jpg",
		150, 75,
		"FERM-10", "Bang Ferrari 348 Challenge (S Castellaneta) 1:43rd Scale",
		"Bang No 9318", "",
		"9.99", "0",
		"1", 1,
		"Pieces", "37",
		"", "pd-1165725188.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/9501 small.jpg",
		150, 75,
		"FERM-11 ", "Bang Ferrari 348GT Competizione (A Garbagnati) 1:43rd Scale",
		"Bang No 9501", "",
		"9.99", "0",
		"1", 1,
		"Pieces", "37",
		"", "pd151984266.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/9316small.jpg",
		150, 76,
		"FERM-13", "Bang Ferrari 348 Challenge 1993 (Nicolas Buehrer) 1:43rd Scale",
		"Bang No 9316", "",
		"9.99", "0",
		"1", 1,
		"Pieces", "37",
		"", "pd1497930184.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/9423small.jpg",
		150, 78,
		"FERM-12", "Bang Ferrari 348 Challenge 1994 (Paolo Rossi) 1:43rd Scale",
		"Bang No 9423", "",
		"9.99", "0",
		"1", 1,
		"Pieces", "37",
		"", "pd1699820854.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/9502 small.jpg",
		150, 79,
		"FERM-14", "Bang Ferrari 348 Competizione 1995 ( Ademaro Massa) 1:43rd Scale",
		"Bang No 9502", "",
		"9.99", "0",
		"1", 1,
		"Pieces", "37",
		"", "pd1926313556.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/8001small.jpg",
		150, 81,
		"FERM-15", "Bang Ferrari 348 TS 1:43rd Scale",
		"Bang No 8001", "",
		"9.99", "0",
		"1", 1,
		"Pieces", "37",
		"", "pd-655895390.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/9802small.jpg",
		150, 80,
		"FERM-16", "Bang Ferrari F355 (Imola 1998) (Yumishi Sakamoto)1:43rd Scale",
		"Bang No 9802", "",
		"9.99", "0",
		"1", 1,
		"Pieces", "37",
		"", "pd926225312.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/9306small.jpg",
		150, 77,
		"FERM-17", "Bang Ferrari 348 Challenge 1993 (Marco Pietra) 1:43rd Scale SOLD",
		"SOLD", "",
		"0", "0",
		"1", 1,
		"Pieces", "37",
		"", "pd-814308658.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/Detail cars 348 Art 120 small.jpg",
		150, 89,
		"FERM-18", "Detail Cars Ferrari 348 1:43rd Scale",
		"Detail Cars No Art120", "",
		"9.99", "0",
		"1", 1,
		"Pieces", "37",
		"", "pd1092337471.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/Corgi 944 Police small.jpg",
		150, 89,
		"PORM-001", "Corgi Porsche 944 Police Car 1:43rd Scale",
		"Corgi No 57701", "",
		"5.99", "0",
		"1", 1,
		"Pieces", "123",
		"", "pd1570952069.htm",
		"", 1,
		"collector5", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/246 video small.jpg",
		121, 200,
		"FERV-1", "Ferrari 246 Video. No4. SOLD",
		"SOLD", "",
		"0", "0",
		"1", 1,
		"Pieces", "38",
		"", "pd1092866552.htm",
		"", 1,
		"video19", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/288 GTO video small.jpg",
		118, 202,
		"FERV-2", "Ferrari 288 GTO Video. No6",
		"Approx 30 minutes", "",
		"9.99", "0",
		"1", 1,
		"Pieces", "38",
		"", "pd-731256602.htm",
		"", 1,
		"video19", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/365 Video small.jpg",
		121, 201,
		"FERV-3", "Ferrari 365 Video. No5",
		"Approx 30 Minutes", "",
		"9.99", "0",
		"1", 1,
		"Pieces", "38",
		"", "pd-211693180.htm",
		"", 1,
		"video19", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/mondial t press kit small.jpg",
		200, 143,
		"SOLD IT", "Ferrari Mondial T full Press Kit (rare) (SOLD)",
		"English text contains 6 large format B/W press photographs", "",
		"0", "0",
		"1", 1,
		"Pieces", "34",
		"", "pd1092944746.htm",
		"", 1,
		"Press 6", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/new vectra small.jpg",
		200, 147,
		"V-10", "Vauxhall Vectra Press Photo",
		"", "",
		"3", "0",
		"1", 1,
		"Pieces", "162",
		"", "pd-1222197320.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/new vectra SRI small.jpg",
		200, 149,
		"V-11", "Vaxhall New Vectra SRi Press Photograph",
		"02194", "",
		"3.5", "0",
		"1", 1,
		"Pieces", "162",
		"", "pd-790262618.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/348 Catalogue small.jpg",
		175, 166,
		"Sold", "Ferrari 348 Catalogue (SOLD)",
		"Ferrari 348 catalogue  (SOLD)", "",
		"15", "0",
		"1", 1,
		"Pieces", "36",
		"", "pd1093456500.htm",
		"", 1,
		"Sales6", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/360 Modena Catalogue small.jpg",
		181, 200,
		"CAT-5", "SOLD",
		"SOLD", "",
		"20", "0",
		"1", 1,
		"Pieces", "36",
		"", "pd70864322.htm",
		"", 1,
		"Sales6", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/575M catalogue small.jpg",
		200, 187,
		"FCAT-3", "SOLD",
		"SOLD", "",
		"20", "0",
		"1", 1,
		"Pieces", "36",
		"", "pd625193408.htm",
		"", 1,
		"Sales6", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/Mondial T Catalogue small.jpg",
		175, 161,
		"FCAT-4", "Ferrari Mondial T 1989 Catalogue (SOLD)",
		"Ferrari Mondial T 1989 Catalogue (SOLD)", "",
		"20", "0",
		"1", 1,
		"Pieces", "36",
		"", "pd2004545006.htm",
		"", 1,
		"Sales6", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/Ferrari range catalogue Jan 91 small.jpg",
		200, 142,
		"FCAT-5", "Ferrari Range 1991 Catalogue",
		"Ferrari Range 1991 Catalogue", "",
		"10", "0",
		"1", 1,
		"Pieces", "36",
		"", "pd-722108980.htm",
		"", 1,
		"Sales6", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/Range Catalogue July 1992 small.jpg",
		200, 142,
		"FCAT-6", "Ferrari Range 1992 Catalogue",
		"Ferrari Range 1992 Catalogue", "",
		"10", "0",
		"1", 1,
		"Pieces", "36",
		"", "pd564938970.htm",
		"", 1,
		"Sales6", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/A Guide to Ferrari small.jpg",
		138, 200,
		"FCAT-7", "A Guide to Ferrari (1990)",
		"A Guide to Ferrari (1990)", "",
		"10", "0",
		"1", 1,
		"Pieces", "36",
		"", "pd-160398696.htm",
		"", 1,
		"Sales6", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/Ferrari Issue 129 Spring 2001 small.jpg",
		141, 200,
		"FMAG-1", "Ferrari Magazine ",
		"Issue 129 Spring 2001", "",
		"10", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd-1068201338.htm",
		"", 1,
		"Mags", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/Ferrari Issue 131 Autumn 2001 small.jpg",
		138, 200,
		"FMAG-2", "Ferrari Magazine",
		"issue 131 Autumn 2001", "",
		"10", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd-708850652.htm",
		"", 1,
		"Mags", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/Ferrari Issue 132 Winter 2001 small.jpg",
		138, 200,
		"FMAG-3", "Ferrari Magazine",
		"Issue 132 Winter 2001", "",
		"10", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd-987390222.htm",
		"", 1,
		"Mags", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/Ferrari Issue 137 Sprint 2003 small.jpg",
		138, 200,
		"FMAG-4", "Ferrari Magazine",
		"Issue 137 Spring 2003", "",
		"10", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd-1575541136.htm",
		"", 1,
		"Mags", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/Ferrari News No 87 Oct 2001 small.jpg",
		142, 200,
		"FNEW-1", "Ferrari News Magazine",
		"Issue 87 October 2001", "",
		"10", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd-2077740514.htm",
		"", 1,
		"Mags", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/Astra Gsi 2 small.jpg",
		200, 142,
		"V-12", "Vauxhall Astra GSi Press Photo",
		"No1", "",
		"5", "0",
		"1", 1,
		"Pieces", "162",
		"", "pd2011110780.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/Astra Gsi small.jpg",
		148, 200,
		"V-13", "Vauxhall Astra GSi Press Photo",
		"No2", "",
		"5", "0",
		"1", 1,
		"Pieces", "162",
		"", "pd-56119286.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/2003 discovery small.jpg",
		200, 143,
		"LR-1", "Land Rover Discovery 2003 Press Photo",
		"Land Rover Discovery 2003 Press Photo", "",
		"5", "0",
		"1", 1,
		"Pieces", "73",
		"", "pd1759397046.htm",
		"", 1,
		"press55", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/Merc AClass Blue small.jpg",
		200, 149,
		"M-2", "Mercedes A-Class Press Photo",
		"A-Class", "",
		"5", "0",
		"1", 1,
		"Pieces", "97",
		"", "pd1093762169.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/Merc C Class small.jpg",
		200, 151,
		"M-3", "Mercedes C-Class Press photo",
		"C-Class", "",
		"5", "0",
		"1", 1,
		"Pieces", "97",
		"", "pd1686010703.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/Merc C Class 2 small.jpg",
		200, 152,
		"M-4", "Mercedes C-Class Press photo ",
		"C-Class No 2", "",
		"5", "0",
		"1", 1,
		"Pieces", "97",
		"", "pd-2038288875.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/Merc C Class 3 small.jpg",
		200, 151,
		"M-5", "Mercedes C-Class Press photo",
		"C-Class No3", "",
		"5", "0",
		"1", 1,
		"Pieces", "97",
		"", "pd-685935029.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/Merc CL Coupe small.jpg",
		151, 200,
		"M-6", "Mercedes CL Coupe Press Photo",
		"CL-Class", "",
		"5", "0",
		"1", 1,
		"Pieces", "97",
		"", "pd-913039.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/Merc CL small.jpg",
		200, 151,
		"M-7", "Mercedes Cl Coupe No2 Press Photo",
		"CL-Class No2", "",
		"5", "0",
		"1", 1,
		"Pieces", "97",
		"", "pd775813383.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/Merc CLK 55 AMG small.jpg",
		200, 149,
		"M-8", "Mercedes CLK 55 AMG Press Photo",
		"CLK-Class", "",
		"7", "0",
		"1", 1,
		"Pieces", "97",
		"", "pd296075917.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/Merc CLK 240 ELE small.jpg",
		200, 149,
		"M-9", "Mercedes CLK 240 Elegance Press Photo",
		"CLK 240 Elegance", "",
		"5", "0",
		"1", 1,
		"Pieces", "97",
		"", "pd-1249509501.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/Merc CLK Coupe small.jpg",
		200, 150,
		"M-10", "Mercedes CLK Coupe Press photo",
		"CLK Coupe", "",
		"5", "0",
		"1", 1,
		"Pieces", "97",
		"", "pd-198992535.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/Merc CLK Coupe 2 small.jpg",
		200, 150,
		"M-11", "Mercedes Coupe Press Photo No2",
		"CLK Coupe", "",
		"5", "0",
		"1", 1,
		"Pieces", "97",
		"", "pd-1294776897.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/Merc CLK Cab Int small.jpg",
		200, 151,
		"M-12", "Mercedes CLK Cabriolet Interior Press Photo",
		"CLK Interior", "",
		"5", "0",
		"1", 1,
		"Pieces", "97",
		"", "pd2000111547.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/thumb/Merc CLK Coupe Int small.jpg",
		200, 149,
		"M-13", "Mercedes CLK Coupe Interior Press Photo",
		"CLK Interior", "",
		"5", "0",
		"1", 1,
		"Pieces", "97",
		"", "pd-756547487.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/Merc S Class small.jpg",
		200, 150,
		"M-14", "Mercedes S-Class Press photo",
		"S-Class", "",
		"5", "0",
		"1", 1,
		"Pieces", "97",
		"", "pd1471365495.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/thumb/Merc S320 CDi small.jpg",
		200, 152,
		"M-15", "Mercedes S320 CDi Press photo",
		"Merc S320 CDi", "",
		"5", "0",
		"1", 1,
		"Pieces", "97",
		"", "pd-278921091.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/MERC SLK small.jpg",
		200, 148,
		"M-16", "Mercedes SLK Press Photo",
		"Merk SLK", "",
		"5", "0",
		"1", 1,
		"Pieces", "97",
		"", "pd-1984680205.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[102] = new Element(
		102, "assets/thumb/Merc SL55 AMG small.jpg",
		200, 147,
		"M-17", "Mercedes SL55 AMG Press Photo",
		"Merc SL55 AMG", "",
		"7", "0",
		"1", 1,
		"Pieces", "97",
		"", "pd-721610151.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[103] = new Element(
		103, "assets/thumb/Merc SL55 AMG 2 small.jpg",
		200, 149,
		"M-18", "Mercedes SL55 AMG Press Photo No2",
		"SL55 Amg No2", "",
		"7", "0",
		"1", 1,
		"Pieces", "97",
		"", "pd-1622225873.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/Merc New SL Roadster small.jpg",
		200, 149,
		"M-19", "Mercedes NEW SL Roadster Press Photo",
		"Merc New SL Roadster", "",
		"5", "0",
		"1", 1,
		"Pieces", "97",
		"", "pd189950453.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/Merc MClass Silver small.jpg",
		200, 151,
		"M-20", "Mercedes ML Class Press Photo",
		"Merc ML Class", "",
		"5", "0",
		"1", 1,
		"Pieces", "97",
		"", "pd523998507.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/thumb/Merc E Class Saloon small.jpg",
		200, 149,
		"M-21", "Mercedes E-Class Saloon Press Photo",
		"Merc E-class", "",
		"5", "0",
		"1", 1,
		"Pieces", "97",
		"", "pd-163787951.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/Merc E270 CDi Avant small.jpg",
		200, 149,
		"M-22", "Mercedes E270 CDi Avangarde Press Photo",
		"Merc E270 CDi", "",
		"5", "0",
		"1", 1,
		"Pieces", "97",
		"", "pd1955775975.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/Merc E270 CDi Avant 2 small.jpg",
		200, 151,
		"M-23", "Mercedes E270 CDi Avantgarde Press Photo No2",
		"Merc E270 CDi No2", "",
		"5", "0",
		"1", 1,
		"Pieces", "97",
		"", "pd-1140925843.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/bmw 1 series small.jpg",
		200, 148,
		"BMW-1", "BMW 1 Series Press Photo",
		"1 Series", "",
		"5", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd1093771677.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/thumb/bmw 1 series 2 small.jpg",
		200, 148,
		"BMW-2", "BMW 1 Series Press Photo No2",
		"1 Series No2", "",
		"5", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd1172256019.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[111] = new Element(
		111, "assets/thumb/bmw 1 series 3 small.jpg",
		200, 148,
		"BMW-3", "BMW 1 Series Press Photo No3",
		"1 series No3", "",
		"5", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd1695812985.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/bmw 1 series 4 int small.jpg",
		200, 148,
		"BMW-4", "BMW 1 Series Interior Press Photo No4",
		"1 Series No4", "",
		"5", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd-1471712177.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/thumb/BMW X3 small.jpg",
		200, 147,
		"BMW-5", "BMW X3 Press Photo",
		"BMW X3", "",
		"5", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd1094176533.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/thumb/360 challenge may 2001 small.jpg",
		200, 143,
		"FER-7", "Ferrari 360 Challenge May 2001 ",
		"ferrari Challenge 2001", "",
		"5", "0",
		"1", 1,
		"Pieces", "34",
		"", "pd-936378549.htm",
		"", 1,
		"Press 6", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/thumb/Mits Shogun Pinin small.jpg",
		200, 144,
		"MIT-2", "Mitsubishi Shogun Pinin Press Photo",
		"", "",
		"3", "0",
		"1", 1,
		"Pieces", "108",
		"", "pd1268779258.htm",
		"", 1,
		"Press 15", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/thumb/Mitsu Colt 1600 GLXi small.jpg",
		200, 159,
		"MIT-1", "Mitsubishi Colt 1.6 GLXi  1993 B/W Press Photo",
		"Mitsubishi Colt 1.6 GLXi 1993", "",
		"3", "0",
		"1", 1,
		"Pieces", "108",
		"", "pd-1414018836.htm",
		"", 1,
		"Press 15", "0",
		 0)
	
		Entry[117] = new Element(
		117, "assets/thumb/corolla T sport silver small.jpg",
		200, 144,
		"TOY-1", "Toyota Corolla T Sport Press Photo",
		"Toyota Corolla T Sport", "",
		"5", "0",
		"1", 1,
		"Pieces", "157",
		"", "pd-948408727.htm",
		"", 1,
		"Press 14", "0",
		 0)
	
		Entry[118] = new Element(
		118, "assets/thumb/Fiesta ST small.jpg",
		200, 145,
		"FOR-1", "Ford Fiesta ST Press Photo",
		"Ford Fiesta ST", "",
		"8", "0",
		"1", 1,
		"Pieces", "45",
		"", "pd-1055297054.htm",
		"", 1,
		"press", "0",
		 0)
	
		Entry[119] = new Element(
		119, "assets/thumb/Fiesta ST 2 small.jpg",
		200, 149,
		"FOR-2", "Ford Fiesta ST Press Photo No2",
		"Ford Fiesta ST No2", "",
		"8", "0",
		"1", 1,
		"Pieces", "45",
		"", "pd-1949502752.htm",
		"", 1,
		"press", "0",
		 0)
	
		Entry[120] = new Element(
		120, "assets/thumb/RS Fiesta Concept small.jpg",
		200, 148,
		"FOR-3", "Ford Fiesta RS Concept Press Photo",
		"Ford Fiesta RS Concept", "",
		"8", "0",
		"1", 1,
		"Pieces", "45",
		"", "pd1638306830.htm",
		"", 1,
		"press", "0",
		 0)
	
		Entry[121] = new Element(
		121, "assets/thumb/RS Fiesta Concept 2 small.jpg",
		200, 149,
		"FOR-4", "Ford Fiesta RS Concept Press Photo No2",
		"Ford Fiesta RS Concept No2", "",
		"8", "0",
		"1", 1,
		"Pieces", "45",
		"", "pd1367216364.htm",
		"", 1,
		"press", "0",
		 0)
	
		Entry[122] = new Element(
		122, "assets/thumb/RS Fiesta Concept inter small.jpg",
		200, 151,
		"FOR-5", "Ford Fiesta RS Concept interior Press Photo",
		"Fiesta RS Concept Interior", "",
		"8", "0",
		"1", 1,
		"Pieces", "45",
		"", "pd-1628466950.htm",
		"", 1,
		"press", "0",
		 0)
	
		Entry[123] = new Element(
		123, "assets/thumb/Suzuki Baleno 1996 small.jpg",
		149, 200,
		"SUZ-1", "Suzuki Baleno 1996 Press Photo",
		"Suzuki Baleno 1996", "",
		"3", "0",
		"1", 1,
		"Pieces", "154",
		"", "pd1809066841.htm",
		"", 1,
		"Press 17", "0",
		 0)
	
		Entry[124] = new Element(
		124, "assets/thumb/suzuki swift 1996 small.jpg",
		147, 200,
		"SUZ-2", "Suzuki Swift 1996 Press Photo",
		"Suzuki Swift 1996", "",
		"3", "0",
		"1", 1,
		"Pieces", "154",
		"", "pd1361069359.htm",
		"", 1,
		"Press 17", "0",
		 0)
	
		Entry[125] = new Element(
		125, "assets/thumb/Toyota Prius small.jpg",
		200, 141,
		"TOY-2", "Toyota Prius Press Photo",
		"Toyota Prius", "",
		"3", "0",
		"1", 1,
		"Pieces", "157",
		"", "pd1967426293.htm",
		"", 1,
		"Press 14", "0",
		 0)
	
		Entry[126] = new Element(
		126, "assets/thumb/ford mondeo MISTRAL small.jpg",
		200, 141,
		"FOR-6", "Ford Mondeo &quot;Mistral&quot; Press Photo",
		"Ford Mondeo Mistral", "",
		"3", "0",
		"1", 1,
		"Pieces", "45",
		"", "pd870227499.htm",
		"", 1,
		"press", "0",
		 0)
	
		Entry[127] = new Element(
		127, "assets/thumb/Jag S Type Red small.jpg",
		200, 147,
		"JAG-3", "Jauguar S-Type Press Photo",
		"Jaguar S-Type", "",
		"5", "0",
		"1", 1,
		"Pieces", "59",
		"", "pd-975947620.htm",
		"", 1,
		"press 7", "0",
		 0)
	
		Entry[128] = new Element(
		128, "assets/thumb/kia picanto small.jpg",
		200, 148,
		"KIA-1", "Kia Picanto Press Photo",
		"Kia Picanto", "",
		"3", "0",
		"1", 1,
		"Pieces", "68",
		"", "pd1521945192.htm",
		"", 1,
		"Press 19", "0",
		 0)
	
		Entry[129] = new Element(
		129, "assets/thumb/lotus elan bw small.jpg",
		200, 150,
		"L-20", "Lotus Elan 1989 B/W Press Photo",
		"Lotus Elan 1989", "",
		"8", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd-1993107754.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[130] = new Element(
		130, "assets/thumb/Maybach 2 small.jpg",
		200, 149,
		"MAY-1", "Maybach Press Photo",
		"Maybach Press Photo", "",
		"6", "0",
		"1", 1,
		"Pieces", "92",
		"", "pd-160986169.htm",
		"", 1,
		"Press 20", "0",
		 0)
	
		Entry[131] = new Element(
		131, "assets/thumb/Maybach Concept 2001 small.jpg",
		200, 149,
		"MAY-2", "Maybach Concept Press Photo ",
		"Maybach ", "",
		"6", "0",
		"1", 1,
		"Pieces", "92",
		"", "pd-610495667.htm",
		"", 1,
		"Press 20", "0",
		 0)
	
		Entry[132] = new Element(
		132, "assets/thumb/mits Colt CZ3 concept 04 small.jpg",
		200, 145,
		"MIT-3", "Mitsubushi Colt CZ3 Concept Press Photo",
		"Mitsubushi Colt CZ3 Concept", "",
		"6", "0",
		"1", 1,
		"Pieces", "108",
		"", "pd-1442553772.htm",
		"", 1,
		"Press 15", "0",
		 0)
	
		Entry[133] = new Element(
		133, "assets/thumb/mits Colt CZ3 concept 04 2 small.jpg",
		200, 149,
		"MIT-4", "Mitsubushi Colt CZ3 Concept Press Photo No2",
		"Mitsubushi Colt CZ3 Concept ", "",
		"6", "0",
		"1", 1,
		"Pieces", "108",
		"", "pd2092371618.htm",
		"", 1,
		"Press 15", "0",
		 0)
	
		Entry[134] = new Element(
		134, "assets/thumb/Mits Evo 8 300 red small.jpg",
		200, 148,
		"MIT-5", "Mitsubushi EVO 8 (Red) 300 Press Photo",
		"Mitsubushi EVO 8 ", "",
		"8", "0",
		"1", 1,
		"Pieces", "108",
		"", "pd1463737760.htm",
		"", 1,
		"Press 15", "0",
		 0)
	
		Entry[135] = new Element(
		135, "assets/thumb/Mits Evo 8 300 2 red small.jpg",
		200, 148,
		"MIT-6", "Mitsubushi EVO 8 (Red) 300 Press Photo No 2",
		"Mitsubushi EVO 8 300 ", "",
		"8", "0",
		"1", 1,
		"Pieces", "108",
		"", "pd779975886.htm",
		"", 1,
		"Press 15", "0",
		 0)
	
		Entry[136] = new Element(
		136, "assets/thumb/Mits Evo 8 330 yellow small.jpg",
		151, 200,
		"MIT-7", "Mitsubushi EVO 8 (Yellow) 330 Press Photo",
		"Mitsubushi EVO 8 330", "",
		"8", "0",
		"1", 1,
		"Pieces", "108",
		"", "pd142223276.htm",
		"", 1,
		"Press 15", "0",
		 0)
	
		Entry[137] = new Element(
		137, "assets/thumb/nissan 350Z gold small.jpg",
		200, 147,
		"NIS-1", "Nissan 350Z Press Photo",
		"Nissan 350Z", "",
		"6", "0",
		"1", 1,
		"Pieces", "113",
		"", "pd307797427.htm",
		"", 1,
		"Press 22", "0",
		 0)
	
		Entry[138] = new Element(
		138, "assets/thumb/Peugeot 407 Silhouette Concept small.jpg",
		200, 147,
		"PEU-1", "Peugeot 407 Silhouette Concept Car",
		"Peugeot 407 Concept ", "",
		"7", "0",
		"1", 1,
		"Pieces", "121",
		"", "pd-1313254042.htm",
		"", 1,
		"Press 23", "0",
		 0)
	
		Entry[139] = new Element(
		139, "assets/thumb/Peugeot 407 SW small.jpg",
		200, 141,
		"PEU-2", "Peugeot 407 SW Press Photo",
		"Peugeot 407 SW ", "",
		"4", "0",
		"1", 1,
		"Pieces", "121",
		"", "pd-1245723979.htm",
		"", 1,
		"Press 23", "0",
		 0)
	
		Entry[140] = new Element(
		140, "assets/thumb/Peugeot 407 SW 2 small.jpg",
		200, 146,
		"PEU-3", "Peugeot 407 SW Press Photo No2",
		"Peugeot 407 SW No2", "",
		"4", "0",
		"1", 1,
		"Pieces", "121",
		"", "pd-1452041237.htm",
		"", 1,
		"Press 23", "0",
		 0)
	
		Entry[141] = new Element(
		141, "assets/thumb/porsche carrera cup 2003 car 1 small.jpg",
		200, 145,
		"P-8", "Porsche Carrara Cup 2003 Press Photo",
		"Porsche Carrara Cup 2003 ", "",
		"6", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd-1070125039.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[142] = new Element(
		142, "assets/thumb/porsche carrera cup 2003 car 2 small.jpg",
		200, 140,
		"P-9", "Porsche Carrara Cup 2003 Press Photo No2",
		"Porsche Carrara Cup 2003 No2", "",
		"6", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd936294567.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[143] = new Element(
		143, "assets/thumb/Renault Avantime small.jpg",
		200, 149,
		"REN-1", "Renault Avantime Press Photograph",
		"3/9/99", "",
		"3", "0",
		"1", 1,
		"Pieces", "136",
		"", "pd-28395989.htm",
		"", 1,
		"Press 24", "0",
		 0)
	
		Entry[144] = new Element(
		144, "assets/thumb/renault wind concept car small.jpg",
		200, 146,
		"REN-2", "Renault Wind Concept Car Press Photo",
		"Renault Wind Concept ", "",
		"5", "0",
		"1", 1,
		"Pieces", "136",
		"", "pd-1174472413.htm",
		"", 1,
		"Press 24", "0",
		 0)
	
		Entry[145] = new Element(
		145, "assets/thumb/renault wind concept car 2 small.jpg",
		200, 142,
		"REN-3", "Renault Wind Concept Car Press Photo No2",
		"Renault Wind Concept Car No2", "",
		"5", "0",
		"1", 1,
		"Pieces", "136",
		"", "pd1209511945.htm",
		"", 1,
		"Press 24", "0",
		 0)
	
		Entry[146] = new Element(
		146, "assets/images/nopicture.gif",
		75, 50,
		"REN-4", "Renault Wind Concept Car Interior Press Photo No3",
		"Renault Wind Concept Car No3", "",
		"5", "0",
		"1", 1,
		"Pieces", "136",
		"", "pd-654567073.htm",
		"", 1,
		"Press 24", "0",
		 0)
	
		Entry[147] = new Element(
		147, "assets/thumb/SL Special Interior small.jpg",
		200, 149,
		"M-19a", "Mercedes SL Special Edition Interior Press Photo",
		"Merc SL Interior", "",
		"5", "0",
		"1", 1,
		"Pieces", "97",
		"", "pd1398432524.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[148] = new Element(
		148, "assets/thumb/Suzuki Samaurai small.jpg",
		200, 141,
		"SUZ-3", "Suzuki Samaurai Press photo",
		"Suzki Samaurai", "",
		"5", "0",
		"1", 1,
		"Pieces", "154",
		"", "pd1137225754.htm",
		"", 1,
		"Press 17", "0",
		 0)
	
		Entry[149] = new Element(
		149, "assets/thumb/Suzuki Vitara SE JLX SE 16v small.jpg",
		200, 141,
		"SUZ-4", "Suzuki Vitara LX SE Press Photo",
		"Suzuki Vitara ", "",
		"4", "0",
		"1", 1,
		"Pieces", "154",
		"", "pd-1160234024.htm",
		"", 1,
		"Press 17", "0",
		 0)
	
		Entry[150] = new Element(
		150, "assets/thumb/suzuki ignes rally 2004 small.jpg",
		200, 146,
		"SUZ-5", "Suzuki Ignes Rally 2004 Press Photo",
		"Suzuki Ignes 2004", "",
		"5", "0",
		"1", 1,
		"Pieces", "154",
		"", "pd754968006.htm",
		"", 1,
		"Press 17", "0",
		 0)
	
		Entry[151] = new Element(
		151, "assets/thumb/Suzuki Ignis Rally 2004 small.jpg",
		200, 147,
		"SUZ-6", "Suzuki Ignes Rally 2004 Press Photo No2",
		"Suzuki Ignes Rally 2004 No2", "",
		"5", "0",
		"1", 1,
		"Pieces", "154",
		"", "pd-929064604.htm",
		"", 1,
		"Press 17", "0",
		 0)
	
		Entry[152] = new Element(
		152, "assets/thumb/360 chall 2001 Hatch sm.jpg",
		200, 151,
		"FER-8", "Ferrari 360 Challenge Press Photo",
		"Spa May 2001", "",
		"6", "0",
		"1", 1,
		"Pieces", "34",
		"", "pd1094106933.htm",
		"", 1,
		"Press 6", "0",
		 0)
	
		Entry[153] = new Element(
		153, "assets/thumb/Aston V8 Volante (250x200) sm.jpg",
		250, 203,
		"AM-1", "Aston Martin V8 Volante Press Photo",
		"Large size (250mm x 200)", "",
		"6", "0",
		"1", 1,
		"Pieces", "11",
		"", "pd-159639635.htm",
		"", 1,
		"press 27", "0",
		 0)
	
		Entry[154] = new Element(
		154, "assets/thumb/Daewoo Nubira station wagon small.jpg",
		200, 141,
		"DAE-1", "Daewoo Nubira Station Wagon Press Photo",
		"Daewoo Nubira", "",
		"3", "0",
		"1", 1,
		"Pieces", "26",
		"", "pd-1439833708.htm",
		"", 1,
		"Press 16", "0",
		 0)
	
		Entry[155] = new Element(
		155, "assets/thumb/Hyundai E Concept Car Small.jpg",
		200, 146,
		"Hyu", "Hyundai E - Concept Press Photo",
		"Hyundai E - Concept", "",
		"5", "0",
		"1", 1,
		"Pieces", "55",
		"", "pd3088446.htm",
		"", 1,
		"Press 18", "0",
		 0)
	
		Entry[156] = new Element(
		156, "assets/thumb/2003 discovery small.jpg",
		200, 143,
		"LAND-1", "Land Rover Discovery 2003 Press Photograph",
		"13/03/02", "",
		"3", "0",
		"1", 1,
		"Pieces", "73",
		"", "pd429712117.htm",
		"", 1,
		"press55", "0",
		 0)
	
		Entry[157] = new Element(
		157, "assets/thumb/mazda sakata small.jpg",
		200, 147,
		"MAZ-2", "Mazda Sakata Press Photo",
		"Mazda Sakata", "",
		"5", "0",
		"1", 1,
		"Pieces", "94",
		"", "pd-402469066.htm",
		"", 1,
		"Press 21", "0",
		 0)
	
		Entry[158] = new Element(
		158, "assets/thumb/Mazda 2004 MX5 small.jpg",
		200, 142,
		"MAZ-1", "Mazda 2004 MX5 Press Photo",
		"Mazda 2004 MX5", "",
		"5", "0",
		"1", 1,
		"Pieces", "94",
		"", "pd-491838520.htm",
		"", 1,
		"Press 21", "0",
		 0)
	
		Entry[159] = new Element(
		159, "assets/thumb/Rover 75 2 V8 small.jpg",
		200, 145,
		"ROV-2", "Rover 75 Press Photo No2",
		"Rover 75 ", "",
		"5", "0",
		"1", 1,
		"Pieces", "140",
		"", "pd-611908864.htm",
		"", 1,
		"Press 25", "0",
		 0)
	
		Entry[160] = new Element(
		160, "assets/thumb/Rover 75 V8 small.jpg",
		200, 145,
		"ROV-1", "Rover 75 Press Photo",
		"Rover 75", "",
		"5.25", "0",
		"1", 1,
		"Pieces", "140",
		"", "pd-1660056318.htm",
		"", 1,
		"Press 25", "0",
		 0)
	
		Entry[161] = new Element(
		161, "assets/thumb/Rover 75 V8 interior small.jpg",
		200, 143,
		"ROV-3", "Rover 75 Interior Press Photo",
		"Rover 75 ", "",
		"5", "0",
		"1", 1,
		"Pieces", "140",
		"", "pd-1664376530.htm",
		"", 1,
		"Press 25", "0",
		 0)
	
		Entry[162] = new Element(
		162, "assets/thumb/Renault Avantime interior small.jpg",
		150, 200,
		"RE-2", "Renault Avantime Interior Shot 2000 Press Photo",
		"Renault Avantime Interior Shot 2000 Press Photo", "",
		"5", "0",
		"1", 1,
		"Pieces", "134",
		"", "pd-603756768.htm",
		"", 1,
		"Press13", "0",
		 0)
	
		Entry[163] = new Element(
		163, "assets/thumb/Renault Avantime small.jpg",
		200, 149,
		"RE-1", "Renault Avantime 2000 Press Photo",
		"Renault Avantime 2000 Press Photo", "",
		"5", "0",
		"1", 1,
		"Pieces", "134",
		"", "pd-2141135838.htm",
		"", 1,
		"Press13", "0",
		 0)
	
		Entry[164] = new Element(
		164, "assets/thumb/VW Golf 1.6 FSi S 5dr small.jpg",
		200, 150,
		"VW-1", "VW Golf FSi Press Photo",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "172",
		"", "pd-1778170369.htm",
		"", 1,
		"Press 30", "0",
		 0)
	
		Entry[165] = new Element(
		165, "assets/thumb/Lexus !S200 LE lsm.jpg",
		200, 140,
		"LEX-1", "Lexus IS200 Press photo",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "76",
		"", "pd-1532092495.htm",
		"", 1,
		"Press 29", "0",
		 0)
	
		Entry[166] = new Element(
		166, "assets/thumb/Lexus LF-S Concept (3 of 3) sm.jpg",
		200, 142,
		"LEX-3", "Lexus LF-S Concept Car Press Photo (No2)",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "76",
		"", "pd812725453.htm",
		"", 1,
		"Press 29", "0",
		 0)
	
		Entry[167] = new Element(
		167, "assets/thumb/Lexus RX concept sm.jpg",
		200, 141,
		"LEX-4", "Lexus RX Concept Car Press Photo",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "76",
		"", "pd-1476412477.htm",
		"", 1,
		"Press 29", "0",
		 0)
	
		Entry[168] = new Element(
		168, "assets/thumb/Lexus LF-S Concept (2 of 3) sm.jpg",
		175, 250,
		"LEX-2", "Lexus LF-S Concept Car Press Photo",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "76",
		"", "pd319402311.htm",
		"", 1,
		"Press 29", "0",
		 0)
	
		Entry[169] = new Element(
		169, "assets/thumb/stilo maroon small.jpg",
		200, 147,
		"FIA-1", "Fiat Stilo (Maroon) Press Photo",
		"Fiat Stilo", "",
		"4", "0",
		"1", 1,
		"Pieces", "40",
		"", "pd-2017966160.htm",
		"", 1,
		"PRESS 26", "0",
		 0)
	
		Entry[170] = new Element(
		170, "assets/thumb/stilo 3 maroon small.jpg",
		200, 149,
		"FIA-3", "Fiat Stilo (maroon) Press Photo No3",
		"Fiat Stilo", "",
		"4", "0",
		"1", 1,
		"Pieces", "40",
		"", "pd-174140740.htm",
		"", 1,
		"PRESS 26", "0",
		 0)
	
		Entry[171] = new Element(
		171, "assets/thumb/stilo 2 small.jpg",
		200, 143,
		"FIA-5", "Fiat Stilo (silver) Press Photo No2",
		"Fiat Stilo Silver No2", "",
		"3", "0",
		"1", 1,
		"Pieces", "40",
		"", "pd-116357496.htm",
		"", 1,
		"PRESS 26", "0",
		 0)
	
		Entry[172] = new Element(
		172, "assets/thumb/stilo 3 small.jpg",
		200, 149,
		"FIA-6", "Fiat Stilo (silver) Press Photo No3",
		"Fiat Stilo (silver) No3", "",
		"4", "0",
		"1", 1,
		"Pieces", "40",
		"", "pd-1607077898.htm",
		"", 1,
		"PRESS 26", "0",
		 0)
	
		Entry[173] = new Element(
		173, "assets/thumb/stilo small.jpg",
		200, 147,
		"FIA-4", "Fiat Stilo (silver) Press Photo ",
		"Fiat Stilo ", "",
		"4", "0",
		"1", 1,
		"Pieces", "40",
		"", "pd1323001674.htm",
		"", 1,
		"PRESS 26", "0",
		 0)
	
		Entry[174] = new Element(
		174, "assets/thumb/stilo 2 maroon small.jpg",
		200, 143,
		"FIA-2", "Fiat Stilo (maroon) Press Photo No2",
		"Fiat Stilo", "",
		"4", "0",
		"1", 1,
		"Pieces", "40",
		"", "pd894121310.htm",
		"", 1,
		"PRESS 26", "0",
		 0)
	
		Entry[175] = new Element(
		175, "assets/thumb/ferrari in racing.jpg",
		300, 190,
		"FBOOK1", "Ferrari In Racing 1950-2001",
		"", "",
		"8", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd1107730807.htm",
		"", 1,
		"Mags", "0",
		 0)
	
		Entry[176] = new Element(
		176, "assets/thumb/ferrari schumacher.jpg",
		250, 341,
		"FBOOK2", "Ferrari &quot;The Passion and The Pain&quot;",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd-1553833859.htm",
		"", 1,
		"Mags", "0",
		 0)
	
		Entry[177] = new Element(
		177, "assets/thumb/Ferrari legend.jpg",
		250, 181,
		"FBOOK3", "Ferrari &quot;The Legend&quot;",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd-84046093.htm",
		"", 1,
		"Mags", "0",
		 0)
	
		Entry[178] = new Element(
		178, "assets/thumb/Ferrari 50 years.jpg",
		200, 244,
		"FBOOK4", "50 Years of Ferrari",
		"", "",
		"10", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd-2132444583.htm",
		"", 1,
		"Mags", "0",
		 0)
	
		Entry[179] = new Element(
		179, "assets/thumb/Ferrari for the road.jpg",
		250, 182,
		"FBOOK5", "Ferrari&rsquo;s for the Road",
		"", "",
		"16", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd-1561449425.htm",
		"", 1,
		"Mags", "0",
		 0)
	
		Entry[180] = new Element(
		180, "assets/thumb/Ferrari Series.jpg",
		250, 265,
		"FBOOK6", "Ferrari (Enthusiast Color Series)",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd696306165.htm",
		"", 1,
		"Mags", "0",
		 0)
	
		Entry[181] = new Element(
		181, "assets/thumb/Ferrari Dream.jpg",
		250, 314,
		"FBOOK7", "Ferrari &quot;The Ultimate Dream Machine&quot;",
		"", "",
		"8", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd1107736757.htm",
		"", 1,
		"Mags", "0",
		 0)
	
		Entry[182] = new Element(
		182, "assets/thumb/ferrari 4 pics cover.jpg",
		250, 274,
		"FBOOK8", "Ferrari",
		"", "",
		"10", "0",
		"1", 1,
		"Pieces", "35",
		"", "pd-1171553813.htm",
		"", 1,
		"Mags", "0",
		 0)
	
		Entry[183] = new Element(
		183, "assets/thumb/Auctocar 16 Jul 2002.jpg",
		182, 250,
		"MAG1", "Autocar 16 July 2002",
		"Aston Martin....Ferrari 575 and Lambourghini Murcielago.... Porsche 928 911 turbo....Honda NSX Tyre R..... Saab 9-3 Aero.... Seat Leon Cupra R.... Lotus Elise 111R..... + much more", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd-1369675070.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[184] = new Element(
		184, "assets/thumb/porsche chris harvey.jpg",
		212, 300,
		"Porbook1", "Porsche (by Chris Harvey)",
		"1986, Hardback, (64 pages) all models including 928 and 944  ", "",
		"7", "0",
		"1", 1,
		"Pieces", "125",
		"", "pd1110486644.htm",
		"", 1,
		"Mags7", "0",
		 0)
	
		Entry[185] = new Element(
		185, "assets/thumb/Evo July 2003.jpg",
		190, 250,
		"EVOMAG1", "Evo Magazine July 2003",
		"New BEtley 200mph Continental.... 21st century Ford GT40....Ferrari 360 Stradale.....Porsche Carrera GT....TVR T350C vs Evo VIII FQ300 vs Clio V6 vs VX220 Turbo...CL55 AMG...Lotus Elise 135R...LSV Holden...Smart Brabus...New BMW 5 Series.", "",
		"8", "0",
		"1", 1,
		"Pieces", "3",
		"", "pd1110531465.htm",
		"", 1,
		"MAG3", "0",
		 0)
	
		Entry[186] = new Element(
		186, "assets/thumb/911 and Porsche World  Feb 2001.jpg",
		250, 353,
		"PORMAG", "911 and Porsche World  Feb 2001",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "125",
		"", "pd1126035794.htm",
		"", 1,
		"Mags7", "0",
		 0)
	
		Entry[187] = new Element(
		187, "assets/thumb/Aston V8 Coupe INT (250x200) sm.jpg",
		250, 199,
		"AM-2", "Aston Martin V8 Coupe Interior Press Photo",
		"Large Size (250m x 200)", "",
		"6", "0",
		"1", 1,
		"Pieces", "11",
		"", "pd-57353821.htm",
		"", 1,
		"press 27", "0",
		 0)
	
		Entry[188] = new Element(
		188, "assets/thumb/Aston Alfred Dunbar DB7 (250x200) sm.jpg",
		250, 204,
		"AM-5", "Aston Martin DB7 Alfred Dunhill Press Photo",
		"Large Size (250mm x 200)", "",
		"7", "0",
		"1", 1,
		"Pieces", "11",
		"", "pd1630820133.htm",
		"", 1,
		"press 27", "0",
		 0)
	
		Entry[189] = new Element(
		189, "assets/thumb/Aston Alfred Dunhill DB7 2  (250x200) sm.jpg",
		250, 203,
		"AM-6", "Aston Martin DB7 Alfred Dunhill Press Photo No2",
		"Large Size (250mm x 200mm)", "",
		"7", "0",
		"1", 1,
		"Pieces", "11",
		"", "pd-1460795941.htm",
		"", 1,
		"press 27", "0",
		 0)
	
		Entry[190] = new Element(
		190, "assets/thumb/bmw 3 series coupe small.jpg",
		200, 151,
		"BMW-6", "BMW 3 Series Coupe Press Photo",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd159401603.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[191] = new Element(
		191, "assets/thumb/BMW 5 series small.jpg",
		200, 151,
		"BMW-7", "BMW 5 Series Press Photo",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd1095016643.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[192] = new Element(
		192, "assets/thumb/BMW 6 Series small.jpg",
		200, 151,
		"BMW-8", "BMW 6 Series Convertible Press Photo",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd-23060311.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[193] = new Element(
		193, "assets/thumb/BMW 6 Series 3 small.jpg",
		200, 149,
		"BMW-9", "BMW 6 Series Convertible Press Photo (No2)",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd-544703745.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[194] = new Element(
		194, "assets/thumb/BMW 5 series small.jpg",
		200, 151,
		"BMW-10", "BMW 5 Series Press Photo",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd1276441925.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[195] = new Element(
		195, "assets/thumb/BMW 5 Series Touring small.jpg",
		200, 151,
		"BMW-11", "BMW 5 Series Touring Press Photo",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd-1575726853.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[196] = new Element(
		196, "assets/thumb/BMW 5 Series Touring 2 small.jpg",
		200, 153,
		"BMW-12", "BMW 5 Series Touring Press Photo (No2)",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd-968283231.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[197] = new Element(
		197, "assets/thumb/BMW 6 Series Coupe small.jpg",
		200, 152,
		"BMW-13", "BMW 6 Series Coupe Press Photo",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd1568497335.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[198] = new Element(
		198, "assets/thumb/BMW 6 Series Coupe 2 small.jpg",
		200, 151,
		"BMW-14", "BMW 6 Series Coupe Press Photo (No2)",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd1833197501.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[199] = new Element(
		199, "assets/thumb/BMW 6 Series Coupe 3 small.jpg",
		200, 153,
		"BMW-15", "BMW 6 Series Coupe Press Photo (No3)",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd-2012962765.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[200] = new Element(
		200, "assets/thumb/BMW 6 Series Coupe Int small.jpg",
		200, 152,
		"BMW-16", "BMW 6 Series Coupe Interior Press Photo",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd-1314919015.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[201] = new Element(
		201, "assets/thumb/bmw 318i ES small.jpg",
		200, 152,
		"BMW-17", "Bmw 318is ES Press Photo",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd1238552943.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[202] = new Element(
		202, "assets/thumb/BMW 325ti Sport Compact small.jpg",
		200, 151,
		"BMW-18", "BMW 325ti Compact Sport Press Photo",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd1864560949.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[203] = new Element(
		203, "assets/thumb/BMW 330 CD small.jpg",
		200, 151,
		"BMW-19", "BMW 330Cd Press Photo",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd-386634133.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[204] = new Element(
		204, "assets/thumb/BMW 330 CD 2 small.jpg",
		200, 152,
		"BMW-20", "BMW 330Cd Press Photo (No2)",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd-1457633647.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[205] = new Element(
		205, "assets/thumb/BMW 330 CD 3 small.jpg",
		200, 150,
		"BMW-21", "BMW 330Cd Press Photo (No3)",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd-854215897.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[206] = new Element(
		206, "assets/thumb/BMW 545i SE Touring small.jpg",
		200, 151,
		"BMW-22", "BMW 545i SE Touring Press Photo",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd-1534555731.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[207] = new Element(
		207, "assets/thumb/BMW 545i SE Touring 2 small.jpg",
		200, 153,
		"BMW-24", "BMW 545i SE Touring Press Photo (No2)",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd385784739.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[208] = new Element(
		208, "assets/thumb/BMW 545i SE Touring 3 small.jpg",
		200, 152,
		"BMW-23", "BMW 545i SE Touring Press Photo (No3)",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd-1143335287.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[209] = new Element(
		209, "assets/thumb/BMW 545i SE 4 Touring small.jpg",
		200, 153,
		"BMW-25", "BMW 545i SE Touring Press Photo (No4)",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd-2016484385.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[210] = new Element(
		210, "assets/thumb/BMW 745Li smal.jpg",
		200, 150,
		"BMW-26", "BMW 745Li Press Photo",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd145295653.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[211] = new Element(
		211, "assets/thumb/BMW CS1 Concept car small.jpg",
		200, 149,
		"BMW-27", "BMW CS1 Concept Car Press Photo",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd872024027.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[212] = new Element(
		212, "assets/thumb/BMW CS1 Concept car 2 small.jpg",
		200, 150,
		"BMW-28", "BMW CS1 Concept Car Press Photo (No2)",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd-1090175615.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[213] = new Element(
		213, "assets/thumb/BMW X3 3.0i small.jpg",
		200, 152,
		"BMW-29", "BMW X3 3.0i Press Photo",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd1040401303.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[214] = new Element(
		214, "assets/thumb/Bmw X3 Interior small.jpg",
		200, 149,
		"BMW-30", "BMW X3 Interior Press Photo",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd-694923363.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[215] = new Element(
		215, "assets/thumb/BMW X5 red small.jpg",
		200, 151,
		"BMW-31", "BMW X5 Press Photo",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd-1795583213.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[216] = new Element(
		216, "assets/thumb/bmw X5 silver 2 small.jpg",
		200, 151,
		"BMW-32", "Bmw X5 Press Photo",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd1567464313.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[217] = new Element(
		217, "assets/thumb/BMW X5 silver small.jpg",
		200, 151,
		"BMW-33", "BMW X5 Press Photo",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd1924379215.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[218] = new Element(
		218, "assets/thumb/BMW Z3 2.8 small.jpg",
		200, 152,
		"BMW-34", "BMW Z3 2.8 Press Photo",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd-1867105003.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[219] = new Element(
		219, "assets/thumb/BMW Z3 Coupe sm.jpg",
		200, 151,
		"BMW-35", "BMW Z3 Coupe Press Photo",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd365698379.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[220] = new Element(
		220, "assets/thumb/BMW Z4 Interior small.jpg",
		200, 151,
		"BMW-36", "BMW Z4 Interior Press Photo",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "17",
		"", "pd-1761800079.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[221] = new Element(
		221, "assets/thumb/Citroen C3 1.4i SX Sensodrive sm.jpg",
		200, 141,
		"CIT-1", "Citroen Citroen C3 1.4i SX Sensodrive Press Photo",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "23",
		"", "pd1551664771.htm",
		"", 1,
		"Press 28", "0",
		 0)
	
		Entry[222] = new Element(
		222, "assets/thumb/Citroen Sport Concept car sm.jpg",
		200, 143,
		"CIT-2", "Citroen Sport Concept Car Press Photo",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "23",
		"", "pd-1338409879.htm",
		"", 1,
		"Press 28", "0",
		 0)
	
		Entry[223] = new Element(
		223, "assets/thumb/Citroen Sport Concept Car 2 small.jpg",
		200, 143,
		"CIT-3", "Citroen C4 Sport Concept Car Press Photo (No2)",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "23",
		"", "pd1400388799.htm",
		"", 1,
		"Press 28", "0",
		 0)
	
		Entry[224] = new Element(
		224, "assets/thumb/Citroen Xsara 2004 WRC small.jpg",
		200, 142,
		"CIT-4", "Citroen Xsara 2004 WRC Press Photo",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "23",
		"", "pd1964608773.htm",
		"", 1,
		"Press 28", "0",
		 0)
	
		Entry[225] = new Element(
		225, "assets/thumb/Citroen Xsara Picasso sm.jpg",
		200, 143,
		"CIT-5", "Citroen Xsara Picasso Press Photo",
		"", "",
		"4", "0",
		"1", 1,
		"Pieces", "23",
		"", "pd215068347.htm",
		"", 1,
		"Press 28", "0",
		 0)
	
		Entry[226] = new Element(
		226, "assets/thumb/Citroen Xsara Picasso 2 sm.jpg",
		200, 148,
		"CIT-6", "Citroen Xsara Picasso Press Photo (No2)",
		"", "",
		"4", "0",
		"1", 1,
		"Pieces", "23",
		"", "pd-1849376927.htm",
		"", 1,
		"Press 28", "0",
		 0)
	
		Entry[227] = new Element(
		227, "assets/thumb/Escort RS Cosworth sm.jpg",
		200, 149,
		"FOR-7", "Ford Escort Cosworth Press Photo",
		"", "",
		"10", "0",
		"1", 1,
		"Pieces", "45",
		"", "pd1476008055.htm",
		"", 1,
		"press", "0",
		 0)
	
		Entry[228] = new Element(
		228, "assets/thumb/Escort RS Turbo sm.jpg",
		200, 150,
		"FOR-8", "Ford RS Turbo Press Photo",
		"", "",
		"10", "0",
		"1", 1,
		"Pieces", "45",
		"", "pd1820241789.htm",
		"", 1,
		"press", "0",
		 0)
	
		Entry[229] = new Element(
		229, "assets/thumb/Evo 7 FQ300 sm.jpg",
		200, 152,
		"MIT-9", "Mitsubushi EVO 7 FQ300 Press Photo",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "108",
		"", "pd1095105220.htm",
		"", 1,
		"Press 15", "0",
		 0)
	
		Entry[230] = new Element(
		230, "assets/thumb/Evo 7 FQ300 2 sm.jpg",
		200, 152,
		"MIT-8", "Mitsubushi EVO 7 FQ300 Press Photo (No2)",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "108",
		"", "pd-1642205550.htm",
		"", 1,
		"Press 15", "0",
		 0)
	
		Entry[231] = new Element(
		231, "assets/thumb/EVO 7 INT sm.jpg",
		200, 149,
		"MIT-10", "Mitsubushi EVO 7 Interior Press Photo",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "108",
		"", "pd1060273936.htm",
		"", 1,
		"Press 15", "0",
		 0)
	
		Entry[232] = new Element(
		232, "assets/thumb/EVO 8 Black sm.jpg",
		200, 151,
		"MIT-11", "Mitsubushi EVO 8 (Black) Press Photo",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "108",
		"", "pd-903758914.htm",
		"", 1,
		"Press 15", "0",
		 0)
	
		Entry[233] = new Element(
		233, "assets/thumb/EVO 8 Black 2 sm.jpg",
		200, 151,
		"MIT-12", "Mitsubushi EVO 8 (Black) Press Photo (No2)",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "108",
		"", "pd-1450819556.htm",
		"", 1,
		"Press 15", "0",
		 0)
	
		Entry[234] = new Element(
		234, "assets/thumb/Focus RS sm.jpg",
		200, 149,
		"FOR-9", "Ford Focus RS Press Photo",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "45",
		"", "pd-235269206.htm",
		"", 1,
		"press", "0",
		 0)
	
		Entry[235] = new Element(
		235, "assets/thumb/Focus RS 2 sm.jpg",
		200, 152,
		"FOR-10", "Ford Focus RS Press Photo (No2)",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "45",
		"", "pd-564885016.htm",
		"", 1,
		"press", "0",
		 0)
	
		Entry[236] = new Element(
		236, "assets/thumb/FOCUS COLIN MCRAE 1999 SM.jpg",
		200, 149,
		"FOR-11", "Colin Mcrae Ford Focus 1999 Press Photo",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "45",
		"", "pd1100685910.htm",
		"", 1,
		"press", "0",
		 0)
	
		Entry[237] = new Element(
		237, "assets/thumb/Focus TDCi Sport sm.jpg",
		200, 151,
		"FOR-12", "Ford Focus TDCi Sport Press Photo",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "45",
		"", "pd1373464692.htm",
		"", 1,
		"press", "0",
		 0)
	
		Entry[238] = new Element(
		238, "assets/thumb/Ferrari 355 sm.jpg",
		200, 148,
		"FER-9", "Ferrari 355 Press Photo",
		"", "",
		"10", "0",
		"1", 1,
		"Pieces", "34",
		"", "pd-1040985150.htm",
		"", 1,
		"Press 6", "0",
		 0)
	
		Entry[239] = new Element(
		239, "assets/thumb/Ferrari 456M GTA sm.jpg",
		200, 150,
		"FER-10", "Ferrari 456M GTA Press Photo",
		"", "",
		"10", "0",
		"1", 1,
		"Pieces", "34",
		"", "pd-254171200.htm",
		"", 1,
		"Press 6", "0",
		 0)
	
		Entry[240] = new Element(
		240, "assets/thumb/Ferrari 575M sm.jpg",
		200, 151,
		"FER-11", "Ferrari 575M Press Photo",
		"", "",
		"10", "0",
		"1", 1,
		"Pieces", "34",
		"", "pd874107886.htm",
		"", 1,
		"Press 6", "0",
		 0)
	
		Entry[241] = new Element(
		241, "assets/thumb/Hyundai Elantra CRTD CDX  small.jpg",
		200, 150,
		"HYU-1", "Hyundai Elantra CRTD CDX Press Photo",
		"", "",
		"3", "0",
		"1", 1,
		"Pieces", "55",
		"", "pd-1618553908.htm",
		"", 1,
		"Press 18", "0",
		 0)
	
		Entry[242] = new Element(
		242, "assets/thumb/Hyundai Getz 1.3 Sport sm.jpg",
		200, 152,
		"HYU-2", "Hyundai Getz 1.3 Sport Press Photo",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "55",
		"", "pd1463127770.htm",
		"", 1,
		"Press 18", "0",
		 0)
	
		Entry[243] = new Element(
		243, "assets/thumb/Jaguar XJ6 small.jpg",
		200, 151,
		"JAG-4", "Jaguar XJ6 Press Photo",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "59",
		"", "pd561199256.htm",
		"", 1,
		"press 7", "0",
		 0)
	
		Entry[244] = new Element(
		244, "assets/thumb/Jaguar X-type estate small.jpg",
		200, 151,
		"JAG-5", "Jaguar X-Type Estate Press Photo",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "59",
		"", "pd-986828666.htm",
		"", 1,
		"press 7", "0",
		 0)
	
		Entry[245] = new Element(
		245, "assets/thumb/Jaguar X-Type small.jpg",
		200, 150,
		"JAG-6", "Jaguar X-Type Press Photo",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "59",
		"", "pd1980359204.htm",
		"", 1,
		"press 7", "0",
		 0)
	
		Entry[246] = new Element(
		246, "assets/thumb/Kia Rio Ice Racer sm.jpg",
		200, 151,
		"KIA-2", "Kia Rio Ice Race Press Photo",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "68",
		"", "pd1377150194.htm",
		"", 1,
		"Press 19", "0",
		 0)
	
		Entry[247] = new Element(
		247, "assets/thumb/Volvo XC90 (250x200) sm.jpg",
		200, 249,
		"VOL-1", "Volvo XC-90 Press Photo (Large)",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "168",
		"", "pd1071167557.htm",
		"", 1,
		"Press 13", "0",
		 0)
	
		Entry[248] = new Element(
		248, "assets/thumb/Volvo XC70 2004 (250x200) sm.jpg",
		250, 201,
		"VOL-2", "Volvo XC-70 Press Photo (Large)",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "168",
		"", "pd1898564603.htm",
		"", 1,
		"Press 13", "0",
		 0)
	
		Entry[249] = new Element(
		249, "assets/thumb/VOLVO V50 (250x200) sm.jpg",
		250, 199,
		"VOL-3", "Volvo V50 Press Photo (Large)",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "168",
		"", "pd149364385.htm",
		"", 1,
		"Press 13", "0",
		 0)
	
		Entry[250] = new Element(
		250, "assets/thumb/Volvo V50 2 (250x200) sm.jpg",
		201, 250,
		"VOL-4", "Volvo V50 Press Photo (No2) (Large)",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "168",
		"", "pd699959735.htm",
		"", 1,
		"Press 13", "0",
		 0)
	
		Entry[251] = new Element(
		251, "assets/thumb/Vauxhall Trixx small.jpg",
		151, 200,
		"V-14", "Vauxhall Trixx Press Photo",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "162",
		"", "pd1111458493.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[252] = new Element(
		252, "assets/thumb/Vaux Monaro sm.jpg",
		200, 151,
		"V-15", "Vauxhall Monaro Press Photo",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "162",
		"", "pd-325027021.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[253] = new Element(
		253, "assets/thumb/Toyota Verso small.jpg",
		200, 144,
		"TOY-3", "Toyota Verso Press Photo",
		"", "",
		"4", "0",
		"1", 1,
		"Pieces", "157",
		"", "pd-1297399655.htm",
		"", 1,
		"Press 14", "0",
		 0)
	
		Entry[254] = new Element(
		254, "assets/thumb/Toyota Verso 2 sm.jpg",
		200, 141,
		"TOY-4", "Toyota Verso Press Photo (No2)",
		"", "",
		"4", "0",
		"1", 1,
		"Pieces", "157",
		"", "pd-474325905.htm",
		"", 1,
		"Press 14", "0",
		 0)
	
		Entry[255] = new Element(
		255, "assets/thumb/Toyota NLSV concept sm.jpg",
		149, 200,
		"TOY-5", "Toyota NLSV Concept Press Photo",
		"", "",
		"4", "0",
		"1", 1,
		"Pieces", "157",
		"", "pd-819891147.htm",
		"", 1,
		"Press 14", "0",
		 0)
	
		Entry[256] = new Element(
		256, "assets/thumb/Toyota concepts sm.jpg",
		138, 200,
		"TOY-6", "Toyota Concepts Press Photo",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "157",
		"", "pd1371711851.htm",
		"", 1,
		"Press 14", "0",
		 0)
	
		Entry[257] = new Element(
		257, "assets/thumb/Toyota 2004 HiLux small.jpg",
		200, 144,
		"TOY-7", "Toyota Hi-Lux 2004 Press Photo",
		"", "",
		"3", "0",
		"1", 1,
		"Pieces", "157",
		"", "pd-1490880111.htm",
		"", 1,
		"Press 14", "0",
		 0)
	
		Entry[258] = new Element(
		258, "assets/thumb/Land Rover 2003 Disc sm.jpg",
		200, 150,
		"LR-2", "Lands Rover Discovery 2003 Press Photo",
		"", "",
		"4", "0",
		"1", 1,
		"Pieces", "73",
		"", "pd1095867051.htm",
		"", 1,
		"press55", "0",
		 0)
	
		Entry[259] = new Element(
		259, "assets/thumb/Lotus Elise 340R (250mmx195) sm.jpg",
		250, 197,
		"L-21", "Lotus Elise 340R Press Photo",
		"Large Size (250mm x 195mm)", "",
		"7.5", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd-2128065327.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[260] = new Element(
		260, "assets/thumb/Lotus Elise 340R 2 (250mmx195) sm.jpg",
		250, 198,
		"L-12", "Lotus Elise 340R Press Photo (No2)",
		"Large Size (250mm x 195mm)", "",
		"8", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd-423615641.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[261] = new Element(
		261, "assets/thumb/Lotus Elise 340R 3 (250mmx195) sm.jpg",
		250, 194,
		"L-13", "Lotus Elise 340R Press Photo (No3)",
		"Large Size (250mm x 195mm)", "",
		"8", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd-1087278099.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[262] = new Element(
		262, "assets/thumb/Lotus Esprit V8 GT (250x200) sm.jpg",
		250, 195,
		"L-14", "Lotus Esprit V8 GT (Yellow) Press Photo",
		"Large Size (250mm x 200mm)", "",
		"8", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd124948451.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[263] = new Element(
		263, "assets/thumb/Lotus Exige (250mmx195mm) sm.jpg",
		250, 197,
		"L-15", "Lotus Exige Press Photo",
		"Large Size (25mm x 195mm)", "",
		"7", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd-738712375.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[264] = new Element(
		264, "assets/thumb/Lotus Exige 2 (250mmx195) sm.jpg",
		250, 198,
		"L-16", "Lotus Exige Press Photo (No2)",
		"Large Size (250mm x 195mm)", "",
		"7", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd1456249887.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[265] = new Element(
		265, "assets/thumb/Lotus Exige 3 (250mmx195) sm.jpg",
		250, 197,
		"L-17", "Lotus Exige Press Photo (No3)",
		"Large Size (250mm x 195mm)", "",
		"7", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd-1527350427.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[266] = new Element(
		266, "assets/thumb/Lotus M250 Concept (250mmx195) sm.jpg",
		250, 197,
		"L-18", "Lotus M250 Concept Car Press Photo ",
		"Large Size (250mm x 195mm)", "",
		"7", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd-1480211429.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[267] = new Element(
		267, "assets/thumb/Lotus M250 Concept 2 (250mmx195) sm.jpg",
		250, 198,
		"L-19", "Lotus M25 Concept Cars Press Photo",
		"Large Size (250mm x 195mm)", "",
		"7.5", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd-664775743.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[268] = new Element(
		268, "assets/thumb/Autocar 30 march 2004 spec iss.jpg",
		182, 250,
		"MAG2", "Autocar 30 March 2003 (Special Issue)",
		"Fiesta RS..... Elise 111R..... Ferrari 360 Modena..... Rover 75 V6 vs Rols-Royce Phantom..... Lotus Exige..... BMW 5 Series Touring..... Filipe Mass (18GPs vs Fisichella (126 GPs)..... + much more ", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd-705570066.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[269] = new Element(
		269, "assets/thumb/Autocar 9 July 2003.jpg",
		182, 250,
		"MAG3", "Autocar 9 July 2003",
		"City Rover.....BMW M3 vs Audi S4.....VW Toureg vs V10 TDi.....Cobra vs SL55AMG.....Across the desert with a 765bhp MG ZT-T.....VW Toureg.....Lexus LS430..... + much more", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd-1487260980.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[270] = new Element(
		270, "assets/thumb/Autocar 30 April 2003.jpg",
		182, 250,
		"MAG4", "Autocar 30 April 2003",
		"New Jag XK8.....Lotus 135R.....Alfa Romeo JTS.....Jaguar XJ6.....Britains best drivers car for under 15k (Seat, Astra, MX-5, Focus RS,Lupo Gti, 206 Gti, Celica,Mini Cooper S, Clio Cup, Honda civic type-R, Saxo VTS etc)..... Used Jaguar guide...+ much more", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd-271317542.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[271] = new Element(
		271, "assets/thumb/AutoCar 2 Jul 2003.jpg",
		182, 250,
		"MAG5", "Autocar 2 July 2003",
		"BMW Z4 vs Porsche Roadster.....Alfa Romeo 147 GTA.....Porsche 911 RS + C4S.....BMW 760iL.....Mercedes 320 CLK Cabriolet.....+ much more ", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd2033354648.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[272] = new Element(
		272, "assets/thumb/Autocar 18 June 2003.jpg",
		182, 250,
		"MAG6", "Autocar 18 June 2003",
		"MClaren Mercedes SLR.....New BMW X3.....New X-Type Diesel.....Bugatti Veyron 987 bhp and 0-62mph in 2.9 Secs!!!!!!.....New Alfa Romeo 156 2.4 JTD.....Saab 9-3 Convertible.....VW Phaeton W12.....+ much more", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd291116934.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[273] = new Element(
		273, "assets/thumb/Autocar 25 June 2003.jpg",
		182, 250,
		"MAG7", "Autocar 25 June 2003",
		"Mercedes E-class Wagon.....BMW Z4.....Britains fastest car from A-B includes (Noble M12, Evo 8, Caterham R300, Renault Clio Cup, Vauxhall VX220 Turbo, Ford Focus RS, BMW M3, TVR Tuscan S, 911 Turbo and the Lamborghini Murcielago).......+ much more", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd1674846500.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[274] = new Element(
		274, "assets/thumb/Autocar 13 april 2004.jpg",
		182, 250,
		"MAG8", "Autocar 13 April 2004",
		"Jag S-Type R.....Mercedes CLS AMG.....Audi RS6..... BMW M5 + X3.....Bugatti Veryon.....Mercedes SLK 200K.....Ariel Atom..... Alpina B3.....Audi S4 Estate, C32 AMG Estate.....Porsche 911 vs Aeroplane track test..... + much more", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd-1593443342.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[275] = new Element(
		275, "assets/thumb/Autocar 27 April 2004 Special issue.jpg",
		182, 250,
		"MAG9", "Autocar 27 April 2004",
		"0-100-0 Test with 47 of the greatest cars!!! including the Ferrari Enzo, Porsche Carrera GT, Mercedes SLR, TVR, Metro 6R4, Pagani Zonda, Aston DB9,Honda NSX,Lamborghini Gallardo,Renault Megane R, Porsche 911 GT3, Caterham R500 Evo..... + much more", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd-675099792.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[276] = new Element(
		276, "assets/thumb/Autocar 28 may 2003.jpg",
		182, 250,
		"MAG10", "Autocar 28 May 2003",
		"35 page Porsche 911 Celebration.... 911 group test..... 911 GT3 Road Test..... 911 for 7.5k..... Bentley Continental..... Diahatsu Charade 1.0 EL..... Evo 8 Extreme..... + much more", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd1108325622.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[277] = new Element(
		277, "assets/thumb/Autocar 9 March 2004.jpg",
		182, 250,
		"MAG11", "Autocar 9 March 2004",
		"New BMW M5..... Ford Fiesta RS.....Renault Megane RS vs Ford Focus RS.....BMW Alpina Z4 vs TVR T350 T.....Road Test on the VW beetle Cabriolet.....First drive of the Ferrari 612 S.....+ much more", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd1786428436.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[278] = new Element(
		278, "assets/thumb/Autocar 26 march 2003.jpg",
		182, 250,
		"MAG12", "Autocar 26 March 2003",
		"18 page report of 100 Cheap fast cars (Fiat Turbo 20v Coupe,RS Cosworth,Lotus Elise,Nissan Skyline GT-R,BMW M5).....Audi A3 2.0 TDi vs BMW 320td..... Evo 8 vs Subaru Impreza STi.....road test Honda Accord 2.0.....Mercedes CLK 500 Cabriolet....+ much more ", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd1858850914.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[279] = new Element(
		279, "assets/thumb/Autocar 6 April 2004.jpg",
		182, 250,
		"MAG13", "Autocar 6 April 2004",
		"Alfa Romeo GT vs Mazda RX-8....New Astra 1.8 SRi Road test.....Skoda Octavia 2.0 TDi.....Subaru Impreza WRX STi WR1.....Peugeot 307CC...Saab SUV.....VW Lupo.....Alfa 147 gets 4x4.....Land Rover Discovery.....Citroen C3 XTR....Corolla Verso....+ much more ", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd519075168.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[280] = new Element(
		280, "assets/thumb/Autocar 9 Oct 2002.jpg",
		182, 250,
		"MAG14", "Autocar 9 Oct 2002",
		"New BMW Z4.....VW Polo FSi..... Buying a used BMW 5-Series.....Caterham R300.....VW Golf GTi 1.9 PD.....Japanese Grand Prix Preview.....Renalt Megane 1.5 DCi 80.....Kia Rio.....Hyundai Getz.....+ much more ", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd1806686862.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[281] = new Element(
		281, "assets/thumb/Autocar 7 May 2003.jpg",
		182, 250,
		"MAG15", "Autocar 7 May 2003",
		"210mph Bristol.....New Discovery.....Citroen Pluriel.....road test on the Ford Street Ka.....Audi S4 Avant.....Vauxhall&rsquo;s VX220 replacement.....Mercedes SLR.....BMW M5&rsquo;s latest.....Mako Shark 400bhp V8..... + much more", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd527612780.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[282] = new Element(
		282, "assets/thumb/Autocar 23 July 2003.jpg",
		182, 250,
		"MAG16", "Autocar 23 July 2003 ",
		"BMW Blitz (M3 M4 M5 M6).....Ferrari Enzo vs Porsche Carrera GT vs Pagani Zonda vs Mclaren Mercedes SLR.....Bentley Continental vs Aston Martin Vanquish..... Road test on the Ford Fiesta 1.25LX.....Vauxhall VX220.....Skoda Fabia VRS.....+ much more", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd-942784646.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[283] = new Element(
		283, "assets/thumb/Autocar 16 July 2003.jpg",
		182, 250,
		"MAG17", "Autocar 16 July 2003",
		"New Clio V6 vs Porsche 911 Carrera.....First drive Chrysler Crossfire.....9000 miles in the Subaru STi.....Road Test BMW Z4 2.5.....BMW 6-Series.....New Astra..... British GP Preview Volvo S60.....Seat Leon Cupra R.....Jag X-Type 2.5 Sport.....+ much more", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd-376841672.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[284] = new Element(
		284, "assets/thumb/Autocar 20 April 2004.jpg",
		182, 250,
		"MAG19", "Autocar 20 April 2004",
		"350bhp Audi RS3.....New Lexus IS200.....Honda NSX-R.....Mercedes CLK.....Peugeot 407 SV HDi 136.....Suzuki Liana.....Mitsubishi Colt 1.5 DiD.....Porsche 911S new name is out.....JD Power League Table.....+ much more   ", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd261630758.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[285] = new Element(
		285, "assets/thumb/Autocar 12 Aug 2003.jpg",
		182, 250,
		"MAG20", "Autocar 12 August 2003",
		"Porsche Boxster Coupe..... Smart Roadster V6.... First UK Drive BMW M3 CSL (6 pages).... Lambourghini Gallardo vs Ferrari 360 v Porsche 911 GT3..... Audi A4 TDi vs BMW 320d vs Jaguar X-Type Diesel vs Mercedes 220 CDi (8 pages)......+ much more ", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd-1707418172.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[286] = new Element(
		286, "assets/thumb/Autocar 13-19 Jul 2004.jpg",
		182, 250,
		"MAG18", "Autocar 13-19 July 2004",
		"Road test on the New 205mph Ford GT.....New Mercedes A-Class.... Cariolet fight out (BMW Mini, VW Beetle, Peugeot 206cc, Smart).....Honda FR-V.....RX-8 vs Chrysler Crossfire vs Nissan 350Z..... + much more", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd-1773565550.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[287] = new Element(
		287, "assets/thumb/Autocar 14 May 2003.jpg",
		182, 250,
		"MAG21", "Autocar 14 May 2004",
		"10 page special on the NEW BMW 5-Series.....Vauxhall VX Lightning.....Citroen C2 VTR....Audo 344bhp S4 Estate....BMW 730d sport.....Audi A8 TDi.....Daihatsu Charade....+ much more", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd1108380384.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[288] = new Element(
		288, "assets/thumb/AutoCar 8 Jan 2003.jpg",
		182, 250,
		"MAG22", "Autocar 8 January 2003",
		"New baby Aston V8 Vantage....21 page special on the New Rolls Royce Phantom....6 page road test on the Vauxhall Astra GSi.....Audi A4 Cabriolet....Audi TT....+ much more", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd351529998.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[289] = new Element(
		289, "assets/thumb/AutoCar 29 Jan 2003.jpg",
		182, 250,
		"MAG23", "Autocar 29 January 2003",
		"6 page road test on the Subaru WRX...Honda Civic Type-S.....Ford Mustang....Mercedes CLK55.....A new Ford Capri??....Mazda 6 2.3 Sport...20 page report on tyre performance....+ much more ", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd-135583508.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[290] = new Element(
		290, "assets/thumb/Autocar 16 Oct 2002.jpg",
		182, 250,
		"MAG24", "Autocar 16 October 2002",
		"VW 237bhp Golf R32.....Mercedes C30 CDi AMG....Aston Martin DB7 GT....Mercedes A-Class Coupe...200bhp Mini Cooper....Audi A4 3.0...Mercedes E55 AMG....Renault Avantime....Noble M12...+ much more", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd-1266521862.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[291] = new Element(
		291, "assets/thumb/Autocar 14 Aug 2002.jpg",
		182, 250,
		"MAG25", "Autocar 14 August 2002",
		"Ford Focus RS...VW Golf R32...mercedes E270 CDi...Mistubushi Evo 8...Rover 75 1.8T.....Mercedes F400....Honda Jazz CVT...420bhp Audi RSR V10...+ much more", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd1750081464.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[292] = new Element(
		292, "assets/thumb/Autocar 12 Mar 2003.jpg",
		182, 250,
		"MAG26", "Autocar 12 March 2003",
		"Road test on the Vauxhall VX220 Turbo.....BMW 320td Compact.....Jaguar XJ 4.2 SE.... 4 page report on the New Mercedes E-Class Coupe.....Nissan Micra 1.2s auto.....Renault Grand Espace 3.5 V6.....New Saab Cabriolet.....Geneva 2003 car show.....+ much more", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd1068362918.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[293] = new Element(
		293, "assets/thumb/Autocar 26 Sept 2001.jpg",
		182, 250,
		"MAG30", "Autocar 26 September 2001",
		"New BMW 1-Series.....Road test on the Jeep Cherokee.....Lexus IS300.....Honda Integra Type-R.....Vauxhall Signum.....Murray Walker interview....New car poll 2002.....Mercedes SL500..... Masertai Spyder.....+ much more", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd-694387900.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[294] = new Element(
		294, "assets/thumb/Autocar 4 Dec 2002.jpg",
		182, 250,
		"MAG29", "Autocar 4 December 2002",
		"NEW V6 Audi TT.....VW Gold R32.....Top 10 best Britsih new cars....Jaguar XKR vs  Maserati Coupe....BMW 760Li V12...Mercedes E55 AMG.....BMW M3 Hartge 400bhp V8....Lexus RX330 Scoop....Renault Espace.....Renault Clio 172...+ much more", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd-137731310.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[295] = new Element(
		295, "assets/thumb/Autocar 2 Mar 2004.jpg",
		181, 250,
		"MAG28", "Autocar 2 March 2004",
		"Road test on the Chrysler Crossfire....Vauxhall Astra GSi... Volvo V50 T5 SE....Smart Fourfour...Mitsubishi Evo VIII 260...Range Rover 4.4 V8 Vouge...Melbourne GP...&quot;Scoop&quot; Peugeot 407 Copue...All New Porsche 911...New V10 Toyota Supra....BMW..+ much more", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd1108406221.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[296] = new Element(
		296, "assets/thumb/Autocar 20 Jan 2004.jpg",
		182, 250,
		"MAG31", "Autocar 20 January 2004",
		"Road test Porsche 911 Carrera GT....Bentley&rsquo;s Secret Coupe and Cabriolet....Toyota Prius MK2....Nissan 350Z or Honda NSX??....Honda S2000....BMW X5 4.4i....Seat Leon TDi Cupra vs VW Golf TDi....Smart Roadster Coupe....New F1 car are coming....+ much more", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd288485059.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[297] = new Element(
		297, "assets/thumb/autocar 13 Jan 04.jpg",
		181, 250,
		"MAG32", "Autocar 13 January 2004",
		"Worlds fastest car Bugatti...BMW 645 vs Porsche 911 vs Mercedes CLK....Lambourghini Gallardo....BMW X5...MG ZT 260 V8...Detroit Motor Show... + much more ", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd29761193.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[298] = new Element(
		298, "assets/thumb/Autocar 9 dec 2003.jpg",
		182, 250,
		"MAG27", "Autocar 9 December 2003",
		"New Porsche 928....Volvo V50....BMW 545i and 525i.....Dodge Ram SRT-10....Ford Granada 2.8i....Chrysler Crossfire vs Audi TT V6 vs Mazda RX-8 vs Nissan 350Z...New Porsches...BMW 6-Series Convertible... + much more", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd-2057918209.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[299] = new Element(
		299, "assets/thumb/Autocar 27 Nov 2002.jpg",
		182, 250,
		"MAG33", "Autocar 27 November 2002",
		"20 page special on the 100 most beautiful Cars.....Audi TT V6.....ferrari 575M...Mitsubishi Evo VIII....Volvo V70R...Daihatsu Copen...Mercedes E55 AMG vs BMW M5.....New Honda Accord....New Renault Espace.....latest NCAP Test Results....+ much more", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd-544812219.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[300] = new Element(
		300, "assets/thumb/Autocar 4 May 2004.jpg",
		181, 250,
		"MAG34", "Autocar 4 May 2004",
		"Road test on the New Golf GTi...Porsche 911 vs GT3 TVR Tuscan.... Road test on the Vauxhall Monaro....Rolls-Royce... Bentley Arnage..Citroen C2 1.4 Furio...EVO VIII FQ 320.....Volvo S60 D5 Sport...Noble M400...+much more ", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd1687248635.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[301] = new Element(
		301, "assets/thumb/Autocar 6 Jan 2004.jpg",
		182, 250,
		"MAG35", "Autocar 6 January 2004",
		"160mph Range Rover Supersport...Aston Martin DB7....Porsche 911 GT3 RS vs Ferrari 360CS....Road test on the Peugeot 307cc...New Mercedes SLK...New Jaguar S-Type....Leading Edge 240RT....Ford Mustang..+.. much more ", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd92596641.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[302] = new Element(
		302, "assets/thumb/Autocar 16 March 2004.jpg",
		182, 250,
		"MAG36", "Autocar 16 March 2004",
		"Aston Martin DB9 vs Porsche 911 Turbo vs Lambourghini Gallardo... New Mercedes SLK.....McRae vs Autocar.... Renault Clio 182.....Updates on the Chrysler Crossfire/Nissan 350Z/Mazda RX8 and the Hyundai Coupe....Malasian Grand Prix Preview....+ much more", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd-61387593.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[303] = new Element(
		303, "assets/thumb/Autocar 27 Jan 2004.jpg",
		182, 250,
		"MAG37", "Autocar 27 January 2004",
		"2 New Jaguars.....First drive of the new 4 door 400bhp Maserati Quattroporte.....New Mitsubishi Colt...Clio 182...Toyota MR2 Turbo....Volvo XC90 Exec....Long test on the Porsche Carrera 2 (996)....+ much more", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd396885437.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[304] = new Element(
		304, "assets/thumb/Autocar McLaren 17 feb 04.jpg",
		182, 250,
		"MAG38", "Autocar 17 February 2004",
		"New baby McLaren...Audi A6...Renault Z15 C....Peugeot 307cc 180....Volvo V50....Audi A3 2.0 TDi DSG Sport....Daewoo Lacetti 1.6....Hyundai getz 1.5 CRTD...Subaru Impeza Type 25...Updates on the Volvo XC90,Hyundai Coupe and the Jaguar X-Type...+ much more", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd-1983287757.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[305] = new Element(
		305, "assets/thumb/Autocar Ferrari April 6 1996.jpg",
		182, 250,
		"MAG39", "Autocar 3 April 1996",
		"A Feast of Ferrari&rsquo;s... Track 355 Racer(4 pages)...Ferrari 456 GT(2 pages)...Ferrari F310 GP car(6 pages)....Ferrari F50 (8 pages)...Honda Accord 2.2 V-tec...Brazilian Grand Prix Report...+ much more", "",
		"7", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd677997465.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[306] = new Element(
		306, "assets/thumb/Autocar Enzo april 17 2002.jpg",
		182, 250,
		"MAG40", "Autocar 17 April 2002",
		"Ferrari F60 Enzo...New Ferrari 575M on test...Top 10 Ferrari&rsquo;s (288 GTO, 360 Modena, 250 GTO, 512TR, 246 GT Dino, F355, 365 GTB/4 Daytona, F40...Ferrari 348....Mercedes CLK 500....Seat Ibiza 1.9 TDi Sport...Citroen C3 1.4HDi LX....", "",
		"6", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd703627119.htm",
		"", 1,
		"MAG1", "0",
		 0)
	
		Entry[307] = new Element(
		307, "assets/thumb/Auto Italia May 2001.jpg",
		183, 250,
		"AI1", "Auto Italia May 2001",
		"Alfa Romeao Spider 3.0 24v(3pages)......300bhp ISO Grifo...Alfa 147 2.0 Launch....1930&rsquo;s Alfa 1750 Zagato....220bhp Fiat X1/9...Ferrari 512TR(5 pages)....Fiat 514MM....Fiat Sporting and HGT Tested...Abarth prototypes at Monza(5 pages)...+ much more", "",
		"6", "0",
		"1", 1,
		"Pieces", "2",
		"", "pd146300175.htm",
		"", 1,
		"MAG2", "0",
		 0)
	
		Entry[308] = new Element(
		308, "assets/thumb/Auto Italia June 2001.jpg",
		183, 250,
		"AI2", "Auto Italia June 2001",
		"Fiat 131 Abarth vs Lancia Delta Integrale Evo2 vs Fiat Coupe 16v Turbo.....Fiat 500.....Ferrari Mondial T cabriolet vs Ferrari 348 cabriolet....Maserati 3500GT.....Handcrafted Ferrari&rsquo;s.....2 Alfa 75s with Turbo&rsquo;s....Allemano bodies Fiat 750...+ much more", "",
		"6", "0",
		"1", 1,
		"Pieces", "2",
		"", "pd-581048875.htm",
		"", 1,
		"MAG2", "0",
		 0)
	
		Entry[309] = new Element(
		309, "assets/thumb/Auto Italia Sept 2001.jpg",
		186, 250,
		"AI3", "Auto Italia September 2001",
		"Mad fist 500...Maserati Mexico...Stanguellini...Build your own Ferrari 250TR....Alfa Romeo TZ1 test....The Vingnale Sperimentale.....Alfa 147 Selespeed...Fiat Marea Weekend....Maserati&rsquo;s on the Track...Ferrari 166 Barchetta...+ much more", "",
		"6", "0",
		"1", 1,
		"Pieces", "2",
		"", "pd1007088651.htm",
		"", 1,
		"MAG2", "0",
		 0)
	
		Entry[310] = new Element(
		310, "assets/thumb/Auto Italia July 2001.jpg",
		178, 250,
		"AI4", "Auto Italia July 2001",
		"120bhp Punto Turbo.....OSCA Maserati Tipo 4.....Old Maserati 3500GT.....Ferrari at Mugello.....Alfa 147 UK Launch.....Top class track tuition....+ much more", "",
		"6", "0",
		"1", 1,
		"Pieces", "2",
		"", "pd1108478872.htm",
		"", 1,
		"MAG2", "0",
		 0)
	
		Entry[311] = new Element(
		311, "assets/thumb/Auto Italia august 2001.jpg",
		177, 250,
		"AI5", "Auto Italia August 2001",
		"De Tomaso Guara Autostrada Test.....Maserati Prototypes driven....Autobianchi 500.....Ferrari Dino 246S.....HSCC Lancias....Abarth 750 Zagato....Sunbeam Venezia...+ much more", "",
		"6", "0",
		"1", 1,
		"Pieces", "2",
		"", "pd-422233210.htm",
		"", 1,
		"MAG2", "0",
		 0)
	
		Entry[312] = new Element(
		312, "assets/thumb/Auto Italia Oct 2002.jpg",
		178, 250,
		"AI6", "Auto Italia October 2002",
		"Ferrari Enzo Fiat 600.....Lancia Beta 16v Coupe.....Maserati Birdcage....Fiat Stilo Abarth....Bike Buyers Guide....Rare Michelotti Pura.....Maserati Drogo Tipo 61....+ much more", "",
		"6", "0",
		"1", 1,
		"Pieces", "2",
		"", "pd835970340.htm",
		"", 1,
		"MAG2", "0",
		 0)
	
		Entry[313] = new Element(
		313, "assets/thumb/Classic and Sports Car July 2002.jpg",
		186, 250,
		"CS1", "Classic and Sports Car July 2002",
		"Top 10 Ferrari&rsquo;s 10k-20k.....TVR Tasmin 2.8i....Westfield Eleven...Morgan vs Panther....Lincoln Continental...Riley Lynx....Jaguar D-Type....All the Midgets......Citroen 2CV....+ much more", "",
		"6.5", "0",
		"1", 1,
		"Pieces", "4",
		"", "pd1108554765.htm",
		"", 1,
		"MAG4", "0",
		 0)
	
		Entry[314] = new Element(
		314, "assets/thumb/Classic and Sports car June 2002.jpg",
		184, 250,
		"CS2", "Classic and Sports Car June 2002",
		"Alfa GT&rsquo;s.....Lotus Elite vs Elan +2S.....Aston Martin DB4 GT.....Triumph Herald.....Alfa TZ1......Maserati Ghibli Cup, Adler.....Bosley....Fiat 124 Spider.....Price Guide.... + much more", "",
		"6.5", "0",
		"1", 1,
		"Pieces", "4",
		"", "pd-1027158781.htm",
		"", 1,
		"MAG4", "0",
		 0)
	
		Entry[315] = new Element(
		315, "assets/thumb/Classic Sports Car June 2001.jpg",
		182, 250,
		"CS4", "Classic Sports Car June 2001",
		"Jensen FF....Mid Engined Renaults....King of the Cabrio&rsquo;s Ferrari 250 GT Series 2.....Mazda MX5 vs Lotus Elan M100 vs MGF 1.81 VVC vs Fiat Barchetta vs TVR S....Bentley Speed Six.....Trans-Am Giants.....Auction results....Price Guide.... + much more", "",
		"6.5", "0",
		"1", 1,
		"Pieces", "4",
		"", "pd648538943.htm",
		"", 1,
		"MAG4", "0",
		 0)
	
		Entry[316] = new Element(
		316, "assets/thumb/Classic Cars April 2001.jpg",
		184, 250,
		"TC1", "Thoroughbred and Classic Cars April 2001",
		"MGB V8 vs TVR Chimaera.....Ferrari F40....Saab 96 and 95 Estate buying guide.....Jaguar XJ 5.3 C vs Ferrari 400i.... Panhard vs Renault Dauphine.....Maserati Birdcage Tipo 60.....Marcos 1800....Auction results.....Buyer Guide.....+much more", "",
		"7", "0",
		"1", 1,
		"Pieces", "6",
		"", "pd408364777.htm",
		"", 1,
		"Mag6", "0",
		 0)
	
		Entry[317] = new Element(
		317, "assets/thumb/Thoroughbred and Classi Cars Mar 01.jpg",
		182, 250,
		"TC2", "Thoroughbred and Classic Cars March 2001",
		"Ferrari Daytona vs ferrari Boxer....EMW 327...Rover P6....Rover 2000 vs BMW 2000....Austin Healey complete buying guide....BMW 328 on route to the Mille Miglia....Buying a classic.... + much more", "",
		"7", "0",
		"1", 1,
		"Pieces", "6",
		"", "pd692929851.htm",
		"", 1,
		"Mag6", "0",
		 0)
	
		Entry[318] = new Element(
		318, "assets/thumb/Road and track June 1986.jpg",
		188, 250,
		"RT1", "Road and Track June 1986",
		"(p216) 8page fold out Porsche 944 turbo advert....New Corvettes.....Mercury Sable LS vs Audi 5000S vs Chevolet Celebrity CL Eurosport....Lotus Esprit Turbo...Maserati History file....Shelby GLH-S...Acura (Honda) Legend...1928 Maserati 8CTF....+ much more", "",
		"7", "0",
		"1", 1,
		"Pieces", "5",
		"", "pd1108571215.htm",
		"", 1,
		"MAG5", "0",
		 0)
	
		Entry[319] = new Element(
		319, "assets/thumb/Road and track Oct 1989.jpg",
		191, 250,
		"RT2", "Road and Track October 1989",
		"(164 pages) Porsche 944 S2 vs Nissan 300SX(8 pages).....Ferrari Testarossa.....Chevolet Lumina APV.....Honda CRX 1984-88.....Le Mans.....Canadian and French Grand Prix....+ much more", "",
		"7", "0",
		"1", 1,
		"Pieces", "5",
		"", "pd535023381.htm",
		"", 1,
		"MAG5", "0",
		 0)
	
		Entry[320] = new Element(
		320, "assets/thumb/Road and track April 1986.jpg",
		178, 250,
		"RT3", "Road and Track April 1986",
		"(238 pages)...Classic Confrontation Ferrari 250 Testa Rossa vs Jaguar D-Type vs Porsche RSK...1000 mile road test comparison, Alfa Romeo GTV vs Chevrolet Corvette vs Jaguar XJ-S vs Nissan 300ZX Turbo vs Porsche 944 Turbo...Datsun 280ZX Turbo..+ much more", "",
		"7", "0",
		"1", 1,
		"Pieces", "5",
		"", "pd-155451573.htm",
		"", 1,
		"MAG5", "0",
		 0)
	
		Entry[321] = new Element(
		321, "assets/thumb/Road and track Nov 1979.jpg",
		189, 250,
		"RT4", "Road and Track November 1979",
		"(192 pages) Street Mazda RX7 vs IMSA RX7.....Tested: Rolls-Royce Shadow II, ferrari Dino 308 GT4, VW Scirocco 5-Speed....6 page advert on the new 1980 Toyota Corolla.. Chevy LUV 4x4....+ much more", "",
		"7", "0",
		"1", 1,
		"Pieces", "5",
		"", "pd1857536625.htm",
		"", 1,
		"MAG5", "0",
		 0)
	
		Entry[322] = new Element(
		322, "assets/thumb/911 4S.jpg",
		200, 137,
		"P-10", "Porsche 911 Carrera 4S press photograph",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd1108772205.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[323] = new Element(
		323, "assets/thumb/911 4S no2.jpg",
		200, 136,
		"P-11", "Porsche 911 Carrra 4S press Photograph No2",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd-1233912477.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[324] = new Element(
		324, "assets/thumb/911 4S no3.jpg",
		200, 134,
		"P-12", "Porsche 911 carrera 4S press photograph No3",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd2120044105.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[325] = new Element(
		325, "assets/thumb/911 carrera 2 turbo look cab.jpg",
		200, 144,
		"P-13", "Porsche 911 Carrera 2 cabriolet Turbo look press photograph...",
		"", "",
		"8", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd1856758175.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[326] = new Element(
		326, "assets/thumb/porsche 911 40yr.jpg",
		200, 137,
		"P-14", "Porsche 911 40yr anniversary model press photograph",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd1473068261.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[327] = new Element(
		327, "assets/thumb/porsche 911 40yr no2.jpg",
		200, 138,
		"P-15", "Porsche 911 40yr anniversary model press photograph No2",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd147874203.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[328] = new Element(
		328, "assets/thumb/porsche 911 40yr no3.jpg",
		200, 140,
		"P-16", "Porsche 911 40yr anniversary model press photograph No3",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd1924279617.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[329] = new Element(
		329, "assets/thumb/porsche 911 interior 40yr.jpg",
		200, 139,
		"P-17", "Porsche 911 40yr anniversary model interior press photograph",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd33601879.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[330] = new Element(
		330, "assets/thumb/porsche boxster s.jpg",
		200, 149,
		"P-19", "Porsche Boxster S press photograph",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd1108773185.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[331] = new Element(
		331, "assets/thumb/Porsche 911 2002 2.jpg",
		200, 146,
		"P-21", "Porsche 911 Carrera 2002 press photograph",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd-1477453987.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[332] = new Element(
		332, "assets/thumb/Porsche 911 2002.jpg",
		200, 147,
		"P-22", "Porsche 911 press photograph",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd229073107.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[333] = new Element(
		333, "assets/thumb/911 carrera 1998.jpg",
		200, 148,
		"P-23", "Porsche 911 Carrera 1998 press photograph",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd-871424199.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[334] = new Element(
		334, "assets/thumb/1997 porsche boxster.jpg",
		200, 152,
		"P-24", "Porsche Boxster 1997 press photograph",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd1317526543.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[335] = new Element(
		335, "assets/thumb/1997 porsche boxter TD.jpg",
		200, 145,
		"P-25", "Porsche Boxster 1997 press photograph No2",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd-254444331.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[336] = new Element(
		336, "assets/thumb/1997 porsche boxster speedo clocks.jpg",
		200, 151,
		"P-26", "Porsche Boxster 1997 press photograph No3",
		"", "",
		"4", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd1791255307.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[337] = new Element(
		337, "assets/thumb/boxster not S 2000.jpg",
		200, 146,
		"P-27", "Porsche Boxster 2000 press photograph",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd-305279951.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[338] = new Element(
		338, "assets/thumb/Boxster S 2000.jpg",
		200, 152,
		"P-28", "Porsche Boxster S 2000  press photgraph",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd1624453575.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[339] = new Element(
		339, "assets/thumb/Porsche carrera cup 204.jpg",
		200, 136,
		"P-30", "Porsche Carrera Cup GB 2004 press photograph",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd1674094925.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[340] = new Element(
		340, "assets/thumb/Carrera cup GB 2004.jpg",
		200, 134,
		"P-31", "Porsche Carrera Cup GB 2004 press photograph No2",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd954614851.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[341] = new Element(
		341, "assets/thumb/911 targa 2002.jpg",
		200, 151,
		"P-29", "Porsche 911 Targa 2002 press photograph",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd1253601321.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[342] = new Element(
		342, "assets/thumb/cayenne S.jpg",
		200, 138,
		"P-32", "Porsche Cayenne S press photograph",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd908547711.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[343] = new Element(
		343, "assets/thumb/cayenne S no2.jpg",
		200, 137,
		"P-33", "Porsche Cayenne S press photograph No2",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd-179487547.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[344] = new Element(
		344, "assets/thumb/cayenne S no3.jpg",
		200, 137,
		"P-34", "Porsche Cayenne S press photograph No3",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd1941169275.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[345] = new Element(
		345, "assets/thumb/cayenne S no4.jpg",
		200, 138,
		"P-35", "Porsche Cayenne S press photograph No4",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd1716579105.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[346] = new Element(
		346, "assets/thumb/cayenne turbo 3.jpg",
		200, 138,
		"P-36", "Porsche Cayenne Turbo press photograph",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd693709367.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[347] = new Element(
		347, "assets/thumb/cayenne turbo.jpg",
		200, 135,
		"P-37", "Porsche Cayenne Turbo press photograph No2",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd-1815931075.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[348] = new Element(
		348, "assets/thumb/cayenne turbo 2.jpg",
		200, 137,
		"P-38", "Porsche Cayenne Turbo press photograph No3",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd-1810881613.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[349] = new Element(
		349, "assets/thumb/cayenne turbo 4.jpg",
		200, 137,
		"P-39", "Porsche Cayenne Turbo press photograph No4",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd-206234343.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[350] = new Element(
		350, "assets/thumb/cayenne turbo interior.jpg",
		200, 136,
		"P-40", "Porsche Cayenne Turbo Interior press photograph",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd1043959023.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[351] = new Element(
		351, "assets/thumb/Porsche Sledge.jpg",
		200, 153,
		"P-41", "Porsche Sledge press photograph",
		"", "",
		"3", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd1860573365.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[352] = new Element(
		352, "assets/thumb/Porsche mocean board.jpg",
		200, 150,
		"P-42", "Porsche Mocean press photograph",
		"", "",
		"3", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd597287403.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[353] = new Element(
		353, "assets/thumb/Evo 8 260.jpg",
		200, 151,
		"MIT-13", "Evo VIII (8) 260  (red) press photograph",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "108",
		"", "pd1108810422.htm",
		"", 1,
		"Press 15", "0",
		 0)
	
		Entry[354] = new Element(
		354, "assets/thumb/Evo 8 260 2.jpg",
		200, 152,
		"MIT-14", "Evo VIII (8) 260  (red) press photograph No2",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "108",
		"", "pd1534040020.htm",
		"", 1,
		"Press 15", "0",
		 0)
	
		Entry[355] = new Element(
		355, "assets/thumb/Evo 8 260 3.jpg",
		200, 152,
		"MIT-15", "Evo VIII (8) 260  (red) press photograph No3",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "108",
		"", "pd-1350364638.htm",
		"", 1,
		"Press 15", "0",
		 0)
	
		Entry[356] = new Element(
		356, "assets/thumb/Evo 8 260 Interior.jpg",
		200, 153,
		"MIT-16", "Evo VIII (8) 260 Interior press photograph",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "108",
		"", "pd-1878487776.htm",
		"", 1,
		"Press 15", "0",
		 0)
	
		Entry[357] = new Element(
		357, "assets/thumb/colt old 1.3 GLi 12v hatch.jpg",
		200, 160,
		"MIT-17", "Colt 1.3 GLI-12v Hatchback press photograph",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "108",
		"", "pd-1163085746.htm",
		"", 1,
		"Press 15", "0",
		 0)
	
		Entry[358] = new Element(
		358, "assets/thumb/Colt Old Blue mirage 1.3 1200.jpg",
		200, 153,
		"MIT-18", "Colt &quot;Mirage&quot; 1.3-12v Hatchack press photograph",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "108",
		"", "pd-147206356.htm",
		"", 1,
		"Press 15", "0",
		 0)
	
		Entry[359] = new Element(
		359, "assets/thumb/evo VIII 8 yellow 300.jpg",
		200, 139,
		"MIT-19", "Evo VIII (8) FQ300 (yellow) press photograph",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "108",
		"", "pd-444434118.htm",
		"", 1,
		"Press 15", "0",
		 0)
	
		Entry[360] = new Element(
		360, "assets/thumb/Carisma 1.6.jpg",
		200, 154,
		"MIT-20", "Carisma 1.6 press photograph",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "108",
		"", "pd1108846884.htm",
		"", 1,
		"Press 15", "0",
		 0)
	
		Entry[361] = new Element(
		361, "assets/thumb/Carisma 1.8.jpg",
		200, 155,
		"MIT-21", "Carisma 1.8 press photograph",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "108",
		"", "pd1846854642.htm",
		"", 1,
		"Press 15", "0",
		 0)
	
		Entry[362] = new Element(
		362, "assets/thumb/new colt.jpg",
		200, 151,
		"MIT-22", "New Colt press photograph",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "108",
		"", "pd898552688.htm",
		"", 1,
		"Press 15", "0",
		 0)
	
		Entry[363] = new Element(
		363, "assets/thumb/evo 7 Interior.jpg",
		200, 149,
		"MIT-23", "EVO VII (7) Interior press photograph",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "108",
		"", "pd1048291102.htm",
		"", 1,
		"Press 15", "0",
		 0)
	
		Entry[364] = new Element(
		364, "assets/thumb/evo 8 black.jpg",
		200, 147,
		"MIT-24", "Evo 8 VIII (Black) press photograph",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "108",
		"", "pd311663228.htm",
		"", 1,
		"Press 15", "0",
		 0)
	
		Entry[365] = new Element(
		365, "assets/thumb/evo 8 WRC04.jpg",
		200, 152,
		"MIT-26", "EVO 8 VIII WRC04 press photograph",
		"", "",
		"8", "0",
		"1", 1,
		"Pieces", "108",
		"", "pd694110792.htm",
		"", 1,
		"Press 15", "0",
		 0)
	
		Entry[366] = new Element(
		366, "assets/thumb/EVO 8 VIII MR.jpg",
		200, 151,
		"MIT-27", "EVO 8 VII MR press photograph",
		"", "",
		"8", "0",
		"1", 1,
		"Pieces", "108",
		"", "pd1652119990.htm",
		"", 1,
		"Press 15", "0",
		 0)
	
		Entry[367] = new Element(
		367, "assets/thumb/STI WR1 silver Special Edition.jpg",
		148, 200,
		"SUB1", "STi &quot;WR1&quot; Special Edition press photograph",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "151",
		"", "pd1568620834.htm",
		"", 1,
		"press sub", "0",
		 0)
	
		Entry[368] = new Element(
		368, "assets/thumb/Impreza Uk300.jpg",
		200, 153,
		"SUB2", "Impreza UK300 press photograph",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "151",
		"", "pd-734243808.htm",
		"", 1,
		"press sub", "0",
		 0)
	
		Entry[369] = new Element(
		369, "assets/thumb/STI WR1 silver Special Edition 2.jpg",
		200, 151,
		"SUB3", "STi &quot;WR1&quot; Special Edition press photograph No2",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "151",
		"", "pd-482224306.htm",
		"", 1,
		"press sub", "0",
		 0)
	
		Entry[370] = new Element(
		370, "assets/thumb/STI WR1 silver Special Edition 3.jpg",
		200, 151,
		"SUB4", "STi &quot;WR1&quot; Special Edition press photograph No3",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "151",
		"", "pd762316332.htm",
		"", 1,
		"press sub", "0",
		 0)
	
		Entry[371] = new Element(
		371, "assets/thumb/WRX STi Prodrive UK.jpg",
		200, 144,
		"SUB5", "WRX STi Prodrive UK press photograph ",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "151",
		"", "pd1000310842.htm",
		"", 1,
		"press sub", "0",
		 0)
	
		Entry[372] = new Element(
		372, "assets/thumb/impreza 2.0 WRX Turbo saloon 4WD.jpg",
		200, 149,
		"SUB6", "Impreza 2.0 WRX Turbo saloon 4WD press photograph",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "151",
		"", "pd495407352.htm",
		"", 1,
		"press sub", "0",
		 0)
	
		Entry[373] = new Element(
		373, "assets/thumb/1998 Impreza Turbo 2000 4WD Saloon.jpg",
		200, 145,
		"SUB7", "1998 Impreza Turbo 2000 4WD Saloon press photograph",
		"", "",
		"6.5", "0",
		"1", 1,
		"Pieces", "151",
		"", "pd815103974.htm",
		"", 1,
		"press sub", "0",
		 0)
	
		Entry[374] = new Element(
		374, "assets/thumb/Impreza Turbo catalunya.jpg",
		200, 147,
		"SUB8", "1997 Impreza Turbo &quot;Catalunya&quot; press photograph",
		"", "",
		"6.5", "0",
		"1", 1,
		"Pieces", "151",
		"", "pd-369934204.htm",
		"", 1,
		"press sub", "0",
		 0)
	
		Entry[375] = new Element(
		375, "assets/thumb/Impreza Turbo RB5.jpg",
		200, 147,
		"SUB9", "Impreza Turbo &quot;RB5&quot; press photograph",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "151",
		"", "pd-1549030830.htm",
		"", 1,
		"press sub", "0",
		 0)
	
		Entry[376] = new Element(
		376, "assets/thumb/Impreza Turbo RB5 2.jpg",
		200, 146,
		"SUB9a", "Impreza Turbo &quot;RB5&quot; press photograph No2",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "151",
		"", "pd1303224528.htm",
		"", 1,
		"press sub", "0",
		 0)
	
		Entry[377] = new Element(
		377, "assets/thumb/Impreza WRX STi + 305 Perf pack.jpg",
		200, 150,
		"SUB10", "Impreza WRX STi with 305Bhp Performance pack press photograph",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "151",
		"", "pd-1306479746.htm",
		"", 1,
		"press sub", "0",
		 0)
	
		Entry[378] = new Element(
		378, "assets/thumb/Impreza Uk300 2.jpg",
		200, 150,
		"SUB11", "Impreza UK300 press photograph No2",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "151",
		"", "pd1766129116.htm",
		"", 1,
		"press sub", "0",
		 0)
	
		Entry[379] = new Element(
		379, "assets/thumb/Impreza Uk300 3.jpg",
		200, 146,
		"SUB12", "Impreza UK300 press photograph No3",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "151",
		"", "pd-740948118.htm",
		"", 1,
		"press sub", "0",
		 0)
	
		Entry[380] = new Element(
		380, "assets/thumb/Impreza WRX STi  2003 press photograph.jpg",
		149, 200,
		"SUB13", "Impreza WRX STi  2003 press photograph",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "151",
		"", "pd732472232.htm",
		"", 1,
		"press sub", "0",
		 0)
	
		Entry[381] = new Element(
		381, "assets/thumb/impreza Turbo Police car.jpg",
		200, 147,
		"SUB14", "Impreza Turbo Police car press photograph",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "151",
		"", "pd553374230.htm",
		"", 1,
		"press sub", "0",
		 0)
	
		Entry[382] = new Element(
		382, "assets/thumb/05 WRX STI Type uk.jpg",
		200, 143,
		"SUB15", "05 WRX STI Type UK press photograph",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "151",
		"", "pd1068801588.htm",
		"", 1,
		"press sub", "0",
		 0)
	
		Entry[383] = new Element(
		383, "assets/thumb/05 WRX STI Type uk 2.jpg",
		200, 149,
		"SUB16", "05 WRX STI Type UK press photograph No2",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "151",
		"", "pd-1434648702.htm",
		"", 1,
		"press sub", "0",
		 0)
	
		Entry[384] = new Element(
		384, "assets/thumb/05 WRX STI Type uk 3.jpg",
		200, 145,
		"SUB17", "05 WRX STI Type UK press photograph No3",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "151",
		"", "pd1249753472.htm",
		"", 1,
		"press sub", "0",
		 0)
	
		Entry[385] = new Element(
		385, "assets/thumb/WRX STI type-uk.jpg",
		200, 145,
		"SUB18", "WRX STI type-uk press photograph",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "151",
		"", "pd-1859437650.htm",
		"", 1,
		"press sub", "0",
		 0)
	
		Entry[386] = new Element(
		386, "assets/thumb/WRK STI And Prodrive.jpg",
		200, 147,
		"SUB19", "WRX STI and Prodrive press photograph",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "151",
		"", "pd106791308.htm",
		"", 1,
		"press sub", "0",
		 0)
	
		Entry[387] = new Element(
		387, "assets/thumb/Japanese market Impreza WRX.jpg",
		200, 148,
		"SUB20", "Impreza (Japanese Market) press photograph",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "151",
		"", "pd1202385562.htm",
		"", 1,
		"press sub", "0",
		 0)
	
		Entry[388] = new Element(
		388, "assets/thumb/Impreza P1 prototype.jpg",
		200, 145,
		"SUB21 ", "Impreza P1 prototype press photograph (SOLD)",
		"SOLD", "",
		"0", "0",
		"1", 1,
		"Pieces", "151",
		"", "pd-2034351528.htm",
		"", 1,
		"press sub", "0",
		 0)
	
		Entry[389] = new Element(
		389, "assets/thumb/2003 WRX.jpg",
		200, 149,
		"SUB22", "Impreza WRX 2003 press photograph",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "151",
		"", "pd723472454.htm",
		"", 1,
		"press sub", "0",
		 0)
	
		Entry[390] = new Element(
		390, "assets/thumb/265Bhp perf pack new WRX.jpg",
		200, 145,
		"SUB23", "Impreza WRX 265bhp performance pack for new ",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "151",
		"", "pd-1331230748.htm",
		"", 1,
		"press sub", "0",
		 0)
	
		Entry[391] = new Element(
		391, "assets/thumb/2005 911 Carrera S RED.jpg",
		200, 136,
		"P-43", "Porshce 2005 911 Carrera S press photograph",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd1108936440.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[392] = new Element(
		392, "assets/thumb/2005 911 Carrera S red 2.jpg",
		200, 136,
		"P-44", "Porshce 2005 911 Carrera S press photograph No2",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd630597094.htm",
		"", 0,
		"press5", "0",
		 0)
	
		Entry[393] = new Element(
		393, "assets/thumb/2005 911 Carrera Yellow.jpg",
		200, 135,
		"P-45", "Porshce 2005 911 Carrera  press photograph",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd-1296279932.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[394] = new Element(
		394, "assets/thumb/2005 911 carrera Yellow 2.jpg",
		200, 136,
		"P-46", "Porshce 2005 911 Carrera  press photograph No2",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd-1456295854.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[395] = new Element(
		395, "assets/thumb/2005 Carrera 911 and 911S.jpg",
		200, 137,
		"P-47", "2005 Carrera 911 and 911S press photograph",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd-941353264.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[396] = new Element(
		396, "assets/thumb/2005 Porsche 911 and 911 SInterior.jpg",
		200, 137,
		"P-48", "2005 Porsche 911 and 911S Interior press photograph",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd-1336665730.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[397] = new Element(
		397, "assets/thumb/SAAb 93 Convert 2001.jpg",
		200, 204,
		"Saab1", "Saab 93 Convertible 2002 catalogue",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "144",
		"", "pd449686429.htm",
		"", 1,
		"saablit", "0",
		 0)
	
		Entry[398] = new Element(
		398, "assets/thumb/Saab 93 cat 2001.jpg",
		200, 205,
		"Saab2", "Saab 93 2002 catalogue",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "144",
		"", "pd969035539.htm",
		"", 1,
		"saablit", "0",
		 0)
	
		Entry[399] = new Element(
		399, "assets/thumb/Saab 93 Convertible price list 2003.jpg",
		200, 202,
		"Saab3", "Saab 93 Convertible 2003 price list",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "144",
		"", "pd-2032879751.htm",
		"", 1,
		"saablit", "0",
		 0)
	
		Entry[400] = new Element(
		400, "assets/thumb/saab 95 estate cat  2001.jpg",
		200, 198,
		"Saab4", "Saab 95 Estate 2002 catalogue",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "144",
		"", "pd1063267919.htm",
		"", 1,
		"saablit", "0",
		 0)
	
		Entry[401] = new Element(
		401, "assets/thumb/Saab 95 Saloon cat 2001.jpg",
		200, 189,
		"Saab5", "Saab 95 Saloon 2002 catalogue",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "144",
		"", "pd-72935147.htm",
		"", 1,
		"saablit", "0",
		 0)
	
		Entry[402] = new Element(
		402, "assets/thumb/Saab 9000 1996 Cat.jpg",
		225, 300,
		"Saab6", "Saab 9000 1996 catalogue",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "144",
		"", "pd-1374135989.htm",
		"", 1,
		"saablit", "0",
		 0)
	
		Entry[403] = new Element(
		403, "assets/thumb/scenic and RX4 cat 2002.jpg",
		210, 300,
		"RC-3", "Scenic and RX4 Catalogue",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "137",
		"", "pd1966224009.htm",
		"", 1,
		"sales ren", "0",
		 0)
	
		Entry[404] = new Element(
		404, "assets/thumb/Megane cat Sept 2002.jpg",
		218, 300,
		"RC-5", "2002 Megane range catalogue",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "137",
		"", "pd1822090533.htm",
		"", 1,
		"sales ren", "0",
		 0)
	
		Entry[405] = new Element(
		405, "assets/thumb/Renault Espace  Cat march 1999.jpg",
		218, 300,
		"RC-6", "Renault Espace March 1999 catalogue",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "137",
		"", "pd1362052059.htm",
		"", 1,
		"sales ren", "0",
		 0)
	
		Entry[406] = new Element(
		406, "assets/thumb/Rnault 19 cat 1994.jpg",
		218, 300,
		"RC-4", "1994 Renault 19 range catalogue",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "137",
		"", "pd164913119.htm",
		"", 1,
		"sales ren", "0",
		 0)
	
		Entry[407] = new Element(
		407, "assets/thumb/Laguna cat 2002.jpg",
		215, 300,
		"RC-2", "Laguna range sales catalogue ",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "137",
		"", "pd-1433380957.htm",
		"", 1,
		"sales ren", "0",
		 0)
	
		Entry[408] = new Element(
		408, "assets/thumb/clio cat 2002.jpg",
		218, 300,
		"RC-1", "Clio 2002 range catalogue",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "137",
		"", "pd815981997.htm",
		"", 1,
		"sales ren", "0",
		 0)
	
		Entry[409] = new Element(
		409, "assets/thumb/Honda cat.jpg",
		250, 175,
		"HON1", "Honda range catalogue (includes NSX)",
		"", "",
		"8", "0",
		"1", 1,
		"Pieces", "52",
		"", "pd1064278121.htm",
		"", 1,
		"HONsales", "0",
		 0)
	
		Entry[410] = new Element(
		410, "assets/thumb/Rover cat autumn 1997.jpg",
		204, 250,
		"ROV1", "Rover 1997 series catalogue",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "141",
		"", "pd1934300052.htm",
		"", 1,
		"Rovlit", "0",
		 0)
	
		Entry[411] = new Element(
		411, "assets/thumb/Rover 200 series cat 1999.jpg",
		250, 284,
		"ROV2", "Rover 200 series 1999 catalogue",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "141",
		"", "pd1476522978.htm",
		"", 1,
		"Rovlit", "0",
		 0)
	
		Entry[412] = new Element(
		412, "assets/thumb/Mits carisma cat 1998.jpg",
		182, 250,
		"MIT1", "Carisma range sales catalogue May 1998",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "109",
		"", "pd698946679.htm",
		"", 1,
		"Sales 2", "0",
		 0)
	
		Entry[413] = new Element(
		413, "assets/thumb/Ford Fiesta Cat FEB 2000.jpg",
		179, 250,
		"FD1", "Ford Fiesta 2000 sales catalogue ",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "48",
		"", "pd-1640625283.htm",
		"", 1,
		"Sales1", "0",
		 0)
	
		Entry[414] = new Element(
		414, "assets/thumb/Ford  Ka Cat Feb 2000.jpg",
		175, 250,
		"FD2", "Ford Ka 2000 sales catalogue ",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "48",
		"", "pd1917137395.htm",
		"", 1,
		"Sales1", "0",
		 0)
	
		Entry[415] = new Element(
		415, "assets/thumb/Fiat Punto Cat July 2003.jpg",
		187, 250,
		"FIAT1", "Fiat Punto 2003 sales catalogue",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "41",
		"", "pd-446663002.htm",
		"", 1,
		"fiatsales", "0",
		 0)
	
		Entry[416] = new Element(
		416, "assets/thumb/Saab 900 cat  1996.jpg",
		229, 300,
		"Saab7", "Saab 900 1996 range catalogue",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "144",
		"", "pd2121930052.htm",
		"", 1,
		"saablit", "0",
		 0)
	
		Entry[417] = new Element(
		417, "assets/thumb/JAG X-type accessories cat march 2002.jpg",
		218, 300,
		"JAG1", "Jaguar X-Type accessories catalogue 2002",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "63",
		"", "pd134843666.htm",
		"", 1,
		"Sales5", "0",
		 0)
	
		Entry[418] = new Element(
		418, "assets/thumb/Nssan Range Cat OCT 97.jpg",
		182, 250,
		"NIS1", "Nissan Oct 1997 range catalogue (includes Skyline GT-R)",
		"", "",
		"8", "0",
		"1", 1,
		"Pieces", "114",
		"", "pd1267721809.htm",
		"", 0,
		"Saleslit2", "0",
		 0)
	
		Entry[419] = new Element(
		419, "assets/thumb/Alfa 145 Cat.jpg",
		209, 300,
		"ALF2", "Alfa Romeo 145 Feb 1997 sales catalogue",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "9",
		"", "pd654479194.htm",
		"", 1,
		"alfsales", "0",
		 0)
	
		Entry[420] = new Element(
		420, "assets/thumb/Alfa 155 Cat.jpg",
		209, 300,
		"ALF3", "Alfa Romeo 155 July 1996 sales catalogue",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "9",
		"", "pd-998626024.htm",
		"", 1,
		"alfsales", "0",
		 0)
	
		Entry[421] = new Element(
		421, "assets/thumb/Alfa GTV cat.jpg",
		212, 300,
		"ALF4", "Alfa Romeo GTV March 1997 sales catalogue",
		"", "",
		"8", "0",
		"1", 1,
		"Pieces", "9",
		"", "pd-1689241338.htm",
		"", 1,
		"alfsales", "0",
		 0)
	
		Entry[422] = new Element(
		422, "assets/thumb/Alfa GTV Spider Cat.jpg",
		210, 300,
		"ALF5", "Alfa Romeo GTV Spider Jan 2001 sales catalogue",
		"", "",
		"8", "0",
		"1", 1,
		"Pieces", "9",
		"", "pd-494068060.htm",
		"", 1,
		"alfsales", "0",
		 0)
	
		Entry[423] = new Element(
		423, "assets/thumb/escort cat.jpg",
		211, 300,
		"FD3", "Ford Escort 1999 sales catalogue",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "48",
		"", "pd1580021106.htm",
		"", 1,
		"Sales1", "0",
		 0)
	
		Entry[424] = new Element(
		424, "assets/thumb/Focus cat.jpg",
		212, 300,
		"FD4", "Ford Focus March 2000 sales catalogue",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "48",
		"", "pd1450352880.htm",
		"", 1,
		"Sales1", "0",
		 0)
	
		Entry[425] = new Element(
		425, "assets/thumb/Focus 2 cat.jpg",
		210, 300,
		"FD5", "Ford Focus September 2000 sales catalogue",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "48",
		"", "pd-888524642.htm",
		"", 1,
		"Sales1", "0",
		 0)
	
		Entry[426] = new Element(
		426, "assets/thumb/ST200 cat.jpg",
		211, 300,
		"FD6", "Ford Mondeo ST200 1999 sales catalogue",
		"", "",
		"10", "0",
		"1", 1,
		"Pieces", "48",
		"", "pd842743804.htm",
		"", 1,
		"Sales1", "0",
		 0)
	
		Entry[427] = new Element(
		427, "assets/thumb/Mondeo cat.jpg",
		211, 300,
		"FD7", "Ford Mondeo 1997 sales catalogue",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "48",
		"", "pd1864013450.htm",
		"", 1,
		"Sales1", "0",
		 0)
	
		Entry[428] = new Element(
		428, "assets/thumb/Ford Fiesta cat.jpg",
		207, 300,
		"FD8", "Ford Fiesta 1995 sales catalogue",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "48",
		"", "pd-2106046520.htm",
		"", 1,
		"Sales1", "0",
		 0)
	
		Entry[429] = new Element(
		429, "assets/thumb/Megane Coupe range Cat Feb 1996.jpg",
		300, 211,
		"RC-7", "Megane Coupe range Feb 1996 sales catalogue ",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "137",
		"", "pd16814902.htm",
		"", 1,
		"sales ren", "0",
		 0)
	
		Entry[430] = new Element(
		430, "assets/thumb/Megane classic range cat.jpg",
		300, 212,
		"RC-8", "Megane Classic range November 1996 sales catalogue",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "137",
		"", "pd1036502100.htm",
		"", 1,
		"sales ren", "0",
		 0)
	
		Entry[431] = new Element(
		431, "assets/thumb/clio range cat 2.jpg",
		300, 211,
		"RC-11", "Clio range September 1997 sales catalogue",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "137",
		"", "pd-1959193950.htm",
		"", 1,
		"sales ren", "0",
		 0)
	
		Entry[432] = new Element(
		432, "assets/thumb/clio range cat 3.jpg",
		300, 210,
		"RC-12", "Clio range November 1997 sales catalogue",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "137",
		"", "pd-1524596320.htm",
		"", 1,
		"sales ren", "0",
		 0)
	
		Entry[433] = new Element(
		433, "assets/thumb/Megane scenic range cat.jpg",
		208, 300,
		"RC-10", "Megane Scenic range June 1997 sales catalogue",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "137",
		"", "pd1967636686.htm",
		"", 1,
		"sales ren", "0",
		 0)
	
		Entry[434] = new Element(
		434, "assets/thumb/Megane 1.6 easy cat.jpg",
		211, 300,
		"RC-9", "Megane 1.6 automatic June 1997 sales catalogue (fold out) ",
		"", "",
		"4", "0",
		"1", 1,
		"Pieces", "137",
		"", "pd-1596060756.htm",
		"", 1,
		"sales ren", "0",
		 0)
	
		Entry[435] = new Element(
		435, "assets/thumb/clio RN 1.2 easy trans.jpg",
		211, 300,
		"RC-13", "Clio 1.2 RN &quot;Zoom&quot; May 1997 sales catalogue (fold out) ",
		"", "",
		"4", "0",
		"1", 1,
		"Pieces", "137",
		"", "pd-677180998.htm",
		"", 1,
		"sales ren", "0",
		 0)
	
		Entry[436] = new Element(
		436, "assets/thumb/clio range cat.jpg",
		212, 300,
		"RC-14", "Clio June 1997 range sales catalogue (fold out)... Clio &quot;Paris&quot;... Clio &quot;Panache&quot;...Clio &quot;Provence&quot;",
		"Clio &quot;Paris&quot;, Clio &quot;Panache&quot;, Clio &quot;Provence&quot;", "",
		"6", "0",
		"1", 1,
		"Pieces", "137",
		"", "pd1720495736.htm",
		"", 1,
		"sales ren", "0",
		 0)
	
		Entry[437] = new Element(
		437, "assets/thumb/Clio grande cat.jpg",
		210, 300,
		"RC-15", "Clio &quot;Grande&quot; Feb 1999 sales catalogue (Fold out)",
		"", "",
		"4", "0",
		"1", 1,
		"Pieces", "137",
		"", "pd1180703078.htm",
		"", 1,
		"sales ren", "0",
		 0)
	
		Entry[438] = new Element(
		438, "assets/thumb/Megane Coupe + Cabriolet cat.jpg",
		209, 300,
		"RC-16", "Megane Coupe and Cabriolet June 2001 sales catalogue",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "137",
		"", "pd1937077764.htm",
		"", 1,
		"sales ren", "0",
		 0)
	
		Entry[439] = new Element(
		439, "assets/thumb/Renault Laguna cat.jpg",
		210, 300,
		"RC-17", "Laguna range September 1998 sales catalogue",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "137",
		"", "pd-23143470.htm",
		"", 1,
		"sales ren", "0",
		 0)
	
		Entry[440] = new Element(
		440, "assets/thumb/clio range cat 4.jpg",
		209, 300,
		"RC-18", "Clio range December 1998 sales catalogue",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "137",
		"", "pd-1477824944.htm",
		"", 1,
		"sales ren", "0",
		 0)
	
		Entry[441] = new Element(
		441, "assets/thumb/Ford range 1996 cat.jpg",
		212, 300,
		"FD9", "Ford range 1996 sales catalogue",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "48",
		"", "pd582352126.htm",
		"", 1,
		"Sales1", "0",
		 0)
	
		Entry[442] = new Element(
		442, "assets/thumb/Swift catalogue.jpg",
		300, 213,
		"SUZ1", "Suzuki Swift June 1996 sales catalogue",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "155",
		"", "pd1480691970.htm",
		"", 1,
		"SAUsales", "0",
		 0)
	
		Entry[443] = new Element(
		443, "assets/thumb/Rover 75 Tourer Catalogue.jpg",
		300, 200,
		"ROV3", "Rover 75 Tourer 2001 sales catalogue",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "141",
		"", "pd761964288.htm",
		"", 1,
		"Rovlit", "0",
		 0)
	
		Entry[444] = new Element(
		444, "assets/thumb/New Carisma cat.jpg",
		300, 211,
		"MIT2", "New Carisma 1996 sales catalogue",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "109",
		"", "pd1332208942.htm",
		"", 1,
		"Sales 2", "0",
		 0)
	
		Entry[445] = new Element(
		445, "assets/thumb/Proton range cat 2000.jpg",
		211, 300,
		"PRO", "Proton range 2000 sales catalogue",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "129",
		"", "pd1415155039.htm",
		"", 1,
		"prosales", "0",
		 0)
	
		Entry[446] = new Element(
		446, "assets/thumb/hyundai cat.jpg",
		300, 218,
		"HYUN", "Hyundai model range October 1995 sales catalogue",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "56",
		"", "pd-1594728152.htm",
		"", 0,
		"Hynsalese", "0",
		 0)
	
		Entry[447] = new Element(
		447, "assets/thumb/Seat Cat 1997.jpg",
		173, 250,
		"SEAT", "Seat range catalogue 1998",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "146",
		"", "pd-754295967.htm",
		"", 1,
		"seatlit", "0",
		 0)
	
		Entry[448] = new Element(
		448, "assets/thumb/Citroen c5 cat.jpg",
		211, 300,
		"CIT", "Citroen C5 May 2001 sales catalogue",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "24",
		"", "pd-611115219.htm",
		"", 1,
		"citsales", "0",
		 0)
	
		Entry[449] = new Element(
		449, "assets/thumb/PERF BMW June 2004.jpg",
		174, 250,
		"BMWMAG1", "Performance BMW June 2004",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "18",
		"", "pd1109032285.htm",
		"", 1,
		"Mags 3", "0",
		 0)
	
		Entry[450] = new Element(
		450, "assets/thumb/PERFORMANCE BMW Feb 2005.jpg",
		175, 250,
		"BMWMAG2", "Performance BMW Feb 2005",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "18",
		"", "pd1739224787.htm",
		"", 1,
		"Mags 3", "0",
		 0)
	
		Entry[451] = new Element(
		451, "assets/thumb/Total BMW Feb 2005.jpg",
		177, 250,
		"BMWMAG3", "Total BMW Feb 2005",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "18",
		"", "pd1835017529.htm",
		"", 1,
		"Mags 3", "0",
		 0)
	
		Entry[452] = new Element(
		452, "assets/thumb/giant test.jpg",
		218, 300,
		"FIAT2-1", "Road test supplement...Fiat 20v Turbo vs Honda Prelude vs Nissan 200sx (8 pages) ",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "53",
		"", "pd728949461.htm",
		"", 1,
		"honbooks", "0",
		 0)
	
		Entry[453] = new Element(
		453, "assets/thumb/giant test.jpg",
		218, 300,
		"FIAT2", "Road test supplement...Fiat 20v Turbo vs Honda Prelude vs Nissan 200sx (8 pages) ",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "42",
		"", "pd-1315417585.htm",
		"", 1,
		"fiatbook", "0",
		 0)
	
		Entry[454] = new Element(
		454, "assets/thumb/giant test.jpg",
		218, 300,
		"FIAT2-3", "Road test supplement...Fiat 20v Turbo vs Honda Prelude vs Nissan 200sx (8 pages) ",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "115",
		"", "pd-992764278.htm",
		"", 1,
		"nissbook", "0",
		 0)
	
		Entry[455] = new Element(
		455, "assets/thumb/ON Track MG rover Mag.jpg",
		211, 300,
		"MG", "On Track (MG Magazine)",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "103",
		"", "pd1687821110.htm",
		"", 1,
		"MGbook", "0",
		 0)
	
		Entry[456] = new Element(
		456, "assets/thumb/ON Track MG rover Mag.jpg",
		211, 300,
		"MG-1", "On Track (MG Magazine)",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "142",
		"", "pd-1541922107.htm",
		"", 1,
		"ROVERMAG", "0",
		 0)
	
		Entry[457] = new Element(
		457, "assets/thumb/Rover 100 kensigton catalogue.jpg",
		246, 300,
		"ROV4", "Rover 100 Kensington 1995 sales catalogue",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "141",
		"", "pd-1403962757.htm",
		"", 1,
		"Rovlit", "0",
		 0)
	
		Entry[458] = new Element(
		458, "assets/thumb/ROVER Colours and trims.jpg",
		246, 300,
		"ROV5", "Rover Colour and Trims c1996 catalogue",
		"", "",
		"4", "0",
		"1", 1,
		"Pieces", "141",
		"", "pd1757819169.htm",
		"", 1,
		"Rovlit", "0",
		 0)
	
		Entry[459] = new Element(
		459, "assets/thumb/Land rover all models price list.jpg",
		238, 250,
		"LR", "Land Rover all models price list October 2002",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "74",
		"", "pd-734800980.htm",
		"", 1,
		"CAT", "0",
		 0)
	
		Entry[460] = new Element(
		460, "assets/thumb/Range Rover Acessories.jpg",
		240, 250,
		"Range", "Range Rover Accessories 2002 catalogue",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "131",
		"", "pd1192305433.htm",
		"", 1,
		"Sale", "0",
		 0)
	
		Entry[461] = new Element(
		461, "assets/thumb/C Class price list.jpg",
		300, 203,
		"MER", "C-Class Saloon price list 2002",
		"", "",
		"4", "0",
		"1", 1,
		"Pieces", "100",
		"", "pd1850540783.htm",
		"", 1,
		"Sales2", "0",
		 0)
	
		Entry[462] = new Element(
		462, "assets/thumb/A Class price list.jpg",
		300, 202,
		"MER1", "A-Class price list 2002",
		"", "",
		"4", "0",
		"1", 1,
		"Pieces", "100",
		"", "pd-365003083.htm",
		"", 1,
		"Sales2", "0",
		 0)
	
		Entry[463] = new Element(
		463, "assets/thumb/Shogun The magazine.jpg",
		211, 300,
		"SHO", "Shogun &quot;The Magazine&quot; Winter 1994",
		"Exclusive to Mitsubishi Shogun Owners", "",
		"10", "0",
		"1", 1,
		"Pieces", "110",
		"", "pd2078233494.htm",
		"", 1,
		"MITmag", "0",
		 0)
	
		Entry[464] = new Element(
		464, "assets/thumb/Jag XK Series catalogue.jpg",
		218, 300,
		"JAG2", "jaguar XK Series c2000 sales catalogue (Large)",
		"", "",
		"10", "0",
		"1", 1,
		"Pieces", "63",
		"", "pd-493225036.htm",
		"", 1,
		"Sales5", "0",
		 0)
	
		Entry[465] = new Element(
		465, "assets/thumb/Porsche Boxster press pack 97-97.jpg",
		218, 300,
		"P-49", "Porsche Boxster Press pack (complete)",
		"Complete with 5 photographs and an 18page explanation of what the Boxster is all about", "",
		"20", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd757569794.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[466] = new Element(
		466, "assets/thumb/Porsche 911 Targa press pack.jpg",
		218, 300,
		"P-50", "Porsche 911 press pack (Complete) all models. 1996",
		"Complete with 5 slide and a 17page explantion of what the 911 is all about.. A fold out catalogue of all the porsche models (inc Boxster)..Another small booklet with 911 info...", "",
		"20", "0",
		"1", 1,
		"Pieces", "124",
		"", "pd-1948258560.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[467] = new Element(
		467, "assets/thumb/Audi 24LM Pics.jpg",
		300, 243,
		"AUD", "Audi 24hr Le Mans Cars ",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "13",
		"", "pd1107006755.htm",
		"", 1,
		"AUDpress", "0",
		 0)
	
		Entry[468] = new Element(
		468, "assets/thumb/Daewoo network guide.jpg",
		300, 172,
		"DAE2", "Daewoo Network Guide",
		"", "",
		"2", "0",
		"1", 1,
		"Pieces", "27",
		"", "pd2013866844.htm",
		"", 1,
		"DSALES", "0",
		 0)
	
		Entry[469] = new Element(
		469, "assets/thumb/daewoo price list.jpg",
		300, 172,
		"DAE1", "Daewoo 1995 price list",
		"", "",
		"3", "0",
		"1", 1,
		"Pieces", "27",
		"", "pd-491092738.htm",
		"", 1,
		"DSALES", "0",
		 0)
	
		Entry[470] = new Element(
		470, "assets/thumb/daewoo range cat 1995.jpg",
		300, 172,
		"DAE", "Daewoo range 1995 sales catalogue",
		"", "",
		"4", "0",
		"1", 1,
		"Pieces", "27",
		"", "pd-1935837616.htm",
		"", 1,
		"DSALES", "0",
		 0)
	
		Entry[471] = new Element(
		471, "assets/thumb/fiat coupe cat.jpg",
		173, 250,
		"FIAT3", "Fiat Coupe February 1996 sales catalogue (Excluding 20v Turbo but includes 16v Turbo)",
		"", "",
		"8", "0",
		"1", 1,
		"Pieces", "41",
		"", "pd1109094457.htm",
		"", 1,
		"fiatsales", "0",
		 0)
	
		Entry[472] = new Element(
		472, "assets/thumb/1996 Vaux Astra convertible cat.jpg",
		214, 300,
		"VA1", "Vauxhall Astra convertible 1996 sales catalogue",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "164",
		"", "pd1841331715.htm",
		"", 1,
		"sales7", "0",
		 0)
	
		Entry[473] = new Element(
		473, "assets/thumb/1996 Vaux Range cat.jpg",
		214, 300,
		"VA2", "Vauxhall range 1996 sales catalogue",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "164",
		"", "pd1368145897.htm",
		"", 1,
		"sales7", "0",
		 0)
	
		Entry[474] = new Element(
		474, "assets/thumb/2002 New vectra cat.jpg",
		214, 300,
		"VA3", "Vauxhall New Vectra 2002 sales catalogue",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "164",
		"", "pd-1591301057.htm",
		"", 1,
		"sales7", "0",
		 0)
	
		Entry[475] = new Element(
		475, "assets/thumb/2001 Vaux corsa cat.jpg",
		214, 300,
		"VA4", "Vauxhall New Corsa sales catalogue",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "164",
		"", "pd-608466811.htm",
		"", 1,
		"sales7", "0",
		 0)
	
		Entry[476] = new Element(
		476, "assets/thumb/1998 hatch and estate New Astra cat.jpg",
		214, 300,
		"VA5", "Vauxhall New Astra Hatchback and Estate 1998 sales catalogue",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "164",
		"", "pd1109168418.htm",
		"", 1,
		"sales7", "0",
		 0)
	
		Entry[477] = new Element(
		477, "assets/thumb/1997 Suzuki Alto cat.jpg",
		207, 300,
		"SUZ2", "Suzuki Alto 1997 sales catalogue",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "155",
		"", "pd1109195738.htm",
		"", 1,
		"SAUsales", "0",
		 0)
	
		Entry[478] = new Element(
		478, "assets/thumb/1997 Suzuki Swift cat.jpg",
		214, 300,
		"SUZ3", "Suzuki  Swift 1997 sales catalogue",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "155",
		"", "pd-2017694312.htm",
		"", 1,
		"SAUsales", "0",
		 0)
	
		Entry[479] = new Element(
		479, "assets/thumb/1997 Suzuki Vitara cat.jpg",
		207, 300,
		"SUZ4", "Suzuki Vitara 1997 catalogue",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "155",
		"", "pd-875663994.htm",
		"", 1,
		"SAUsales", "0",
		 0)
	
		Entry[480] = new Element(
		480, "assets/thumb/2002 Suzuki Ignis cat.jpg",
		208, 300,
		"SUZ5", "Suzuki Ignis 2002 sales catalogue",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "155",
		"", "pd939026212.htm",
		"", 1,
		"SAUsales", "0",
		 0)
	
		Entry[481] = new Element(
		481, "assets/thumb/1995 June Toyota RAV 4 cat.jpg",
		300, 207,
		"TO", "Toyota RAV 4 1995 sales catalogue",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "158",
		"", "pd1077769502.htm",
		"", 1,
		"TOYSALES", "0",
		 0)
	
		Entry[482] = new Element(
		482, "assets/thumb/May 1995 Toyota HILUX and HIACE cat.jpg",
		300, 214,
		"TO1", "Toyota Hi-lux and Hi-Ace sales catalogue",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "158",
		"", "pd-576579460.htm",
		"", 1,
		"TOYSALES", "0",
		 0)
	
		Entry[483] = new Element(
		483, "assets/thumb/2003 mini works cooper s cat.jpg",
		300, 233,
		"MIN", "Mini Cooper S (works) 2003 sales catalogue",
		"", "",
		"8", "0",
		"1", 1,
		"Pieces", "105",
		"", "pd1001333514.htm",
		"", 1,
		"minisales", "0",
		 0)
	
		Entry[484] = new Element(
		484, "assets/thumb/Skoda Favorit Estate cat.jpg",
		214, 300,
		"SKO", "Skoda Favorit Estate sales catalogue",
		"", "",
		"4", "0",
		"1", 1,
		"Pieces", "148",
		"", "pd-1613043786.htm",
		"", 1,
		"SKOSales", "0",
		 0)
	
		Entry[485] = new Element(
		485, "assets/thumb/2000 Subaru Legacy and outback estates cat.jpg",
		300, 214,
		"SUB", "Subaru Legacy and Outback Estates 2000 sales catalogue",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "152",
		"", "pd-516050037.htm",
		"", 1,
		"SUBSAles", "0",
		 0)
	
		Entry[486] = new Element(
		486, "assets/thumb/VAUX  Monaro 2001 press pack.jpg",
		218, 300,
		"V-16", "Vauxhall Monaro V8 2001 Press kit.",
		"Full press kit including 4 colour photograpgh and approx 15 pages of technical info and specification", "",
		"15", "0",
		"1", 1,
		"Pieces", "162",
		"", "pd1109325759.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[487] = new Element(
		487, "assets/thumb/forester accessories c2001 cat.jpg",
		300, 212,
		"SUB-1", "Subaru Forester c2001 accesories catalogue",
		"", "",
		"4.5", "0",
		"1", 1,
		"Pieces", "152",
		"", "pd1051377669.htm",
		"", 1,
		"SUBSAles", "0",
		 0)
	
		Entry[488] = new Element(
		488, "assets/thumb/impreza 2001 accessories cat.jpg",
		300, 212,
		"SUB-2", "Subaru Impreza 2001 accessories catalogue",
		"", "",
		"4.5", "0",
		"1", 1,
		"Pieces", "152",
		"", "pd1580341691.htm",
		"", 1,
		"SUBSAles", "0",
		 0)
	
		Entry[489] = new Element(
		489, "assets/thumb/subaru forester c2001cat.jpg",
		300, 212,
		"SUB-3", "Subaru Forester model range 2001 sales catalogue",
		"", "",
		"5.5", "0",
		"1", 1,
		"Pieces", "152",
		"", "pd-1654185375.htm",
		"", 1,
		"SUBSAles", "0",
		 0)
	
		Entry[490] = new Element(
		490, "assets/thumb/subaru full range c2000 fold out cat.jpg",
		300, 212,
		"SUB-4", "Subaru full range c2000 sales catalogue (Large fold out)",
		"Fold out to 6 x A4 size...", "",
		"5", "0",
		"1", 1,
		"Pieces", "152",
		"", "pd-930139273.htm",
		"", 1,
		"SUBSAles", "0",
		 0)
	
		Entry[491] = new Element(
		491, "assets/thumb/impreza c2001 cat.jpg",
		300, 212,
		"SUB-5", "Subaru Impreza c2001 sales catalogue",
		"", "",
		"8", "0",
		"1", 1,
		"Pieces", "152",
		"", "pd1462059645.htm",
		"", 1,
		"SUBSAles", "0",
		 0)
	
		Entry[492] = new Element(
		492, "assets/thumb/Octavia 2000 spec cat.jpg",
		234, 300,
		"SKO1", "Skoda Octavia Equipment, Upholstery and Colours catalogue",
		"", "",
		"4", "0",
		"1", 1,
		"Pieces", "148",
		"", "pd-842841869.htm",
		"", 1,
		"SKOSales", "0",
		 0)
	
		Entry[493] = new Element(
		493, "assets/thumb/corsa 1997 cat.jpg",
		213, 300,
		"VA6", "Vauxhall Corsa 1997 sales catalogue",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "164",
		"", "pd1269464153.htm",
		"", 1,
		"sales7", "0",
		 0)
	
		Entry[494] = new Element(
		494, "assets/thumb/astra convert 2001 cat.jpg",
		213, 300,
		"VA7", "Vauxhall Aatra Convertible 2001 sales catalogue",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "164",
		"", "pd-922550737.htm",
		"", 1,
		"sales7", "0",
		 0)
	
		Entry[495] = new Element(
		495, "assets/thumb/1996 VW Golf cabriolet Cat.jpg",
		214, 300,
		"VW5", "VW Golf Cabriolet 1996 sales catalogue ",
		"", "",
		"8", "0",
		"1", 1,
		"Pieces", "173",
		"", "pd-1614430963.htm",
		"", 1,
		"VWsales", "0",
		 0)
	
		Entry[496] = new Element(
		496, "assets/thumb/1995 VW Golf Cat.jpg",
		214, 300,
		"VW2", "VW Golf GTi 1996 sales catalogue ",
		"", "",
		"10", "0",
		"1", 1,
		"Pieces", "173",
		"", "pd1474405579.htm",
		"", 1,
		"VWsales", "0",
		 0)
	
		Entry[497] = new Element(
		497, "assets/thumb/1996 VW Golf VR6 Cat.jpg",
		214, 300,
		"VW4", "VW Golf VR6 1995 sales catalogue ",
		"", "",
		"9", "0",
		"1", 1,
		"Pieces", "173",
		"", "pd513150855.htm",
		"", 1,
		"VWsales", "0",
		 0)
	
		Entry[498] = new Element(
		498, "assets/thumb/1995 VW Passat VR6 Cat.jpg",
		214, 300,
		"VW3", "VW Passat VR6 1995 sales catalogue ",
		"", "",
		"9", "0",
		"1", 1,
		"Pieces", "173",
		"", "pd-1178868751.htm",
		"", 1,
		"VWsales", "0",
		 0)
	
		Entry[499] = new Element(
		499, "assets/thumb/1995 VW Corrado Cat.jpg",
		214, 300,
		"VW1", "VW Corrado 1995 sales catalogue ",
		"", "",
		"8", "0",
		"1", 1,
		"Pieces", "173",
		"", "pd692082837.htm",
		"", 1,
		"VWsales", "0",
		 0)
	
		Entry[500] = new Element(
		500, "assets/thumb/Golf Match 1995.jpg",
		211, 300,
		"VW6", "VW Golf &quot;Match&quot; 1995 sales catalogue",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "173",
		"", "pd1109840664.htm",
		"", 1,
		"VWsales", "0",
		 0)
	
		Entry[501] = new Element(
		501, "assets/thumb/1995 Golf Estate.jpg",
		211, 300,
		"VW7", "VW Golf Estate 1995 sales catalogue",
		"", "",
		"8", "0",
		"1", 1,
		"Pieces", "173",
		"", "pd1285902086.htm",
		"", 1,
		"VWsales", "0",
		 0)
	
		Entry[502] = new Element(
		502, "assets/thumb/1996 Golf.jpg",
		211, 300,
		"VW8", "VW Golf 1996 sales catalogue",
		"", "",
		"8", "0",
		"1", 1,
		"Pieces", "173",
		"", "pd-1283447644.htm",
		"", 1,
		"VWsales", "0",
		 0)
	
		Entry[503] = new Element(
		503, "assets/thumb/1996 Vento.jpg",
		211, 300,
		"VW9", "VW Vento 1996 sales catalogue",
		"", "",
		"8", "0",
		"1", 1,
		"Pieces", "173",
		"", "pd-1045451918.htm",
		"", 1,
		"VWsales", "0",
		 0)
	
		Entry[504] = new Element(
		504, "assets/thumb/New VW Sharan.jpg",
		211, 300,
		"VW10", "VW &quot;New&quot; Sharan 1995 sales catalogue",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "173",
		"", "pd248645360.htm",
		"", 1,
		"VWsales", "0",
		 0)
	
		Entry[505] = new Element(
		505, "assets/thumb/1996 passat saloon.jpg",
		211, 300,
		"VW11", "VW Passat Saloon 1996 sales catalogue",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "173",
		"", "pd1766852254.htm",
		"", 1,
		"VWsales", "0",
		 0)
	
		Entry[506] = new Element(
		506, "assets/thumb/1996 passat estate.jpg",
		211, 300,
		"VW12", "VW Passat Estate 1996 sales catalogue",
		"", "",
		"7.5", "0",
		"1", 1,
		"Pieces", "173",
		"", "pd613221884.htm",
		"", 1,
		"VWsales", "0",
		 0)
	
		Entry[507] = new Element(
		507, "assets/thumb/c1997 New VW Passat.jpg",
		219, 300,
		"VW13", "VW &quot;New&quot; Passat c1997 sales catalogue",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "173",
		"", "pd907660426.htm",
		"", 1,
		"VWsales", "0",
		 0)
	
		Entry[508] = new Element(
		508, "assets/thumb/Volo S80 1998.jpg",
		226, 300,
		"VOL1", "Volvo S80 sales catalogue",
		"", "",
		"8", "0",
		"1", 1,
		"Pieces", "170",
		"", "pd1705143752.htm",
		"", 1,
		"Sales8", "0",
		 0)
	
		Entry[509] = new Element(
		509, "assets/thumb/s40 v40 1 1996.jpg",
		300, 230,
		"VOL2", "Volvo S40/V40, Nov 1996 sales catalogue",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "170",
		"", "pd1510943030.htm",
		"", 1,
		"Sales8", "0",
		 0)
	
		Entry[510] = new Element(
		510, "assets/thumb/Volvo S40 1996.jpg",
		300, 231,
		"VOL3", "Volvo S40 sales catalogue",
		"", "",
		"6.5", "0",
		"1", 1,
		"Pieces", "170",
		"", "pd856705620.htm",
		"", 1,
		"Sales8", "0",
		 0)
	
		Entry[511] = new Element(
		511, "assets/thumb/Volvo XC90 2002.jpg",
		231, 300,
		"VOL4", "Volvo XC90 2002 sales catalogue",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "170",
		"", "pd-787674974.htm",
		"", 1,
		"Sales8", "0",
		 0)
	
		Entry[512] = new Element(
		512, "assets/thumb/Peu 306 Oct 1999.jpg",
		212, 300,
		"PEUC", "Peugeot 306 Oct 1999 sales catalogue (includes GTi-6) ",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "120",
		"", "pd1628763937.htm",
		"", 1,
		"peusales", "0",
		 0)
	
		Entry[513] = new Element(
		513, "assets/thumb/Peugeot 106 Cat.jpg",
		300, 216,
		"PEUC1", "Peugeot 106 c1995 sales catalogue (includes Rallye)",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "120",
		"", "pd-1402202569.htm",
		"", 1,
		"peusales", "0",
		 0)
	
		Entry[514] = new Element(
		514, "assets/thumb/Peugeot 405 cat.jpg",
		300, 213,
		"PEUC2", "Peugeot 405 c1995 sales catalogue",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "120",
		"", "pd-1757420739.htm",
		"", 1,
		"peusales", "0",
		 0)
	
		Entry[515] = new Element(
		515, "assets/thumb/1999 zafira.jpg",
		213, 300,
		"VA8", "Vauxhall Zafira 1999 sales catalogue",
		"", "",
		"6.5", "0",
		"1", 1,
		"Pieces", "164",
		"", "pd-645279821.htm",
		"", 1,
		"sales7", "0",
		 0)
	
		Entry[516] = new Element(
		516, "assets/thumb/new vectra 2002.jpg",
		213, 300,
		"VA9", "Vauxhall &quot;New&quot; Vectra 2002 sales catalogue",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "164",
		"", "pd49719577.htm",
		"", 1,
		"sales7", "0",
		 0)
	
		Entry[517] = new Element(
		517, "assets/thumb/vectra estate 1997.jpg",
		213, 300,
		"VA10", "Vauxhall Vetra Estate 1997 sales catalogue",
		"", "",
		"6.5", "0",
		"1", 1,
		"Pieces", "164",
		"", "pd-1341785873.htm",
		"", 1,
		"sales7", "0",
		 0)
	
		Entry[518] = new Element(
		518, "assets/thumb/Toyota Picnic 1997.jpg",
		216, 300,
		"TO2", "Toyota Picnic 1997 sales catalogue",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "158",
		"", "pd901276853.htm",
		"", 1,
		"TOYSALES", "0",
		 0)
	
		Entry[519] = new Element(
		519, "assets/thumb/What Car July 2003.jpg",
		182, 250,
		"What 1", "What Car July 2003",
		"New Focus vs New Scenic....VW new Golf MPV....VW Phaeton....VW Beetle Cabriolet....Renault Clio V6 Sport 255...Alfa Romeo 147 GTA vs Ford Focus RS vs Subaru Impreza WRX....Peugeot 206 GTi 180......Audi A8...Alfa GTV and Spider...", "",
		"8", "0",
		"1", 1,
		"Pieces", "7",
		"", "pd1180850996.htm",
		"", 1,
		"What Car", "0",
		 0)
	
		Entry[520] = new Element(
		520, "assets/thumb/What Car Feb 2004.jpg",
		182, 250,
		"What 2", "What Car February 2004",
		"4x4 Special...BMW X5....Volvo XC90...Lexus...VW Toureg...Peugeot 407...BMW Z4 3.0i vs Porsche boxster 2.7...Ford Fiesta 16v 1.25LX 5dr...Peugeot 206 1.1s...Vauxhall Corsa 1.2 16v &quot; Life&quot;...Comfort test with over 40 cars...+much more..", "",
		"8", "0",
		"1", 1,
		"Pieces", "7",
		"", "pd1899299970.htm",
		"", 1,
		"What Car", "0",
		 0)
	
		Entry[521] = new Element(
		521, "assets/thumb/What Car Feb 2003.jpg",
		182, 250,
		"What 3", "What Car February 2003",
		"Mercedes Benz CL600 ands CL55 AMG.....Volvo XC90 vs BMW X5 3.0d Auto...Renault Megane 2.0...Volkwagen Bora 1.8 T (180).....Mazda 2.0 TD Estate....Honda Accord 2.4 Type S vs Rover 75 2.5 Classic SE vs VW Passat V5.....Ford Focus TDCi.....VW Golf 1.4E......", "",
		"8", "0",
		"1", 1,
		"Pieces", "7",
		"", "pd-1737931136.htm",
		"", 1,
		"What Car", "0",
		 0)
	
		Entry[522] = new Element(
		522, "assets/thumb/What Car Oct 2003.jpg",
		182, 250,
		"What 4", "What Car October 2003",
		"BMW 520i vs Jaguar S-Type 2.6 V6 vs Mercedes C200K Classic vs Volvo S80 2.5T S... New VW Golf...35 New cars...BMW 5 Series...Citroen C2....Maserati Coupe and Spider....Honda Accord i-CDTi.....Volvo S40...BMW 5201..Renault Scenic 1.9 dci 120....+ much more", "",
		"8", "0",
		"1", 1,
		"Pieces", "7",
		"", "pd1049989294.htm",
		"", 1,
		"What Car", "0",
		 0)
	
		Entry[523] = new Element(
		523, "assets/thumb/What Car New Reg Special 2003.jpg",
		182, 250,
		"What 5", "What Car New Reg Special 2003",
		"New Mondeo...Jaguar X-Type Diesel...Audi A3....Saab 9-3 Cabriolet...Mercedes CLK Cabriolet....Alfa Romeo 156...BMW Z4...Daewoo Kalos....Hyundai Terracan...Ford C-Max...Ford Sport Ka...Daihatsu Charade 1.0 SL 5dr...Crash test special.....", "",
		"8", "0",
		"1", 1,
		"Pieces", "7",
		"", "pd-1450975604.htm",
		"", 1,
		"What Car", "0",
		 0)
	
		Entry[524] = new Element(
		524, "assets/thumb/What Car Aug 2003.jpg",
		182, 250,
		"What 6", "What Car August 2003",
		"BMW 5 Series...Lexus RX300...Subaru Legacy...Brabus Smart Car...VW Phaeton..Audi A4...Volvo S80...BMW 730i...Ferrari 360 Stradale...BMW 3 series converible...Daihatsu Charade...Fiat Punto...Fiat Gingo...Jaguar XJ6...Mini One D...Honda Accord Tourer 2.0...", "",
		"8", "0",
		"1", 1,
		"Pieces", "7",
		"", "pd-301164646.htm",
		"", 1,
		"What Car", "0",
		 0)
	
		Entry[525] = new Element(
		525, "assets/thumb/What Car Sept 2003.jpg",
		182, 250,
		"What 7", "What Car September 2003",
		"Fiat Punto...Jaguar Diesel..City Rover...New VW Golf...New Astra...Seat Leon Cupra R/130 TDi...Nissan 350Z...Maybach 62...Volvo C70 R + V70 R...Skoda Fabia RS...Ford Fusion...Chrysler Crossfire...Citroen C3 Pluriel...Renault 307CC Cabriolet...Megane Coupe", "",
		"8", "0",
		"1", 1,
		"Pieces", "7",
		"", "pd1324117848.htm",
		"", 1,
		"What Car", "0",
		 0)
	
		Entry[526] = new Element(
		526, "assets/thumb/jeep mag summer 2003.jpg",
		176, 250,
		"Jmag1", "Jeep &quot;Freedom&quot; Magazine... Summer 2003 ",
		"Grand Cherokee...Chrysler Crossfire....PT Cruiser...", "",
		"6", "0",
		"1", 1,
		"Pieces", "65",
		"", "pd-653127345.htm",
		"", 1,
		"jeep mags", "0",
		 0)
	
		Entry[527] = new Element(
		527, "assets/thumb/Megane coupe and cab cat  Dec 2001.jpg",
		178, 250,
		"RC-19", "Megane Coupe and cabriolet range Dec 1996 sales catalogue ",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "137",
		"", "pd1993847829.htm",
		"", 1,
		"sales ren", "0",
		 0)
	
		Entry[528] = new Element(
		528, "assets/thumb/Vauxhall 100 Yr anniversary magazine.jpg",
		178, 250,
		"VM-1", "&quot;A Century in Motion&quot; (100yrs anniversary Magazine)",
		"Calibra....Lotus Carlton.....Firenza....Cavalier etc ", "",
		"9", "0",
		"1", 1,
		"Pieces", "161",
		"", "pd583429195.htm",
		"", 1,
		"Mags8", "0",
		 0)
	
		Entry[529] = new Element(
		529, "assets/thumb/DB7 Vantage green press photo.jpg",
		250, 203,
		"AM10", "Aston Martin DB7 Vantage Press Photo",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "11",
		"", "pd1115749838.htm",
		"", 1,
		"press 27", "0",
		 0)
	
		Entry[530] = new Element(
		530, "assets/thumb/DB7 Vantage Volnate press photo.jpg",
		250, 204,
		"AM11", "Aston Martin DB7 Vantage Volante Press Photo",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "11",
		"", "pd-821194580.htm",
		"", 1,
		"press 27", "0",
		 0)
	
		Entry[531] = new Element(
		531, "assets/thumb/Diamond Jubilee Volante.jpg",
		250, 200,
		"AM12", "Aston Martin Diamond Jubilee Volante Press photo",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "11",
		"", "pd1204950714.htm",
		"", 1,
		"press 27", "0",
		 0)
	
		Entry[532] = new Element(
		532, "assets/thumb/v8 vantage le mans.jpg",
		250, 200,
		"AM13", "Aston Martin V8 Vantage LE Mans Press Photo",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "11",
		"", "pd501646200.htm",
		"", 1,
		"press 27", "0",
		 0)
	
		Entry[533] = new Element(
		533, "assets/thumb/DB7 Vantage Volnate 2.jpg",
		250, 198,
		"AM14", "Aston Martin DB7 Vantage Volante Press Photo",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "11",
		"", "pd1392637542.htm",
		"", 1,
		"press 27", "0",
		 0)
	
		Entry[534] = new Element(
		534, "assets/thumb/V8 Volante.jpg",
		250, 196,
		"AM15", "Aston Martin V8 Volante Press Photo",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "11",
		"", "pd-1648452860.htm",
		"", 1,
		"press 27", "0",
		 0)
	
		Entry[535] = new Element(
		535, "assets/thumb/DB7 Volante PP.jpg",
		250, 200,
		"AM16", "Aston Martin DB7 Volante Press Photo",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "11",
		"", "pd453019858.htm",
		"", 1,
		"press 27", "0",
		 0)
	
		Entry[536] = new Element(
		536, "assets/thumb/DB7 Vantage head.jpg",
		250, 200,
		"AM17", "Aston Martin DB7 Vantage Press Photo",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "11",
		"", "pd2100798288.htm",
		"", 1,
		"press 27", "0",
		 0)
	
		Entry[537] = new Element(
		537, "assets/thumb/twin db7.jpg",
		250, 180,
		"AM18", "Aston Martin DB7 Vantage Press Photo",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "11",
		"", "pd-118195714.htm",
		"", 1,
		"press 27", "0",
		 0)
	
		Entry[538] = new Element(
		538, "assets/thumb/V8 Volante 2.jpg",
		250, 201,
		"AM19", "Aston Martin V8 Volante Press Photo",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "11",
		"", "pd453519452.htm",
		"", 1,
		"press 27", "0",
		 0)
	
		Entry[539] = new Element(
		539, "assets/thumb/500th DB7 Yellow.jpg",
		250, 199,
		"AM22", "500th Aston Martin DB7",
		"", "",
		"8", "0",
		"1", 1,
		"Pieces", "11",
		"", "pd1454434454.htm",
		"", 1,
		"press 27", "0",
		 0)
	
		Entry[540] = new Element(
		540, "assets/thumb/V8 Le mans and DBR1.jpg",
		250, 200,
		"AM23", "Aston Martin V8 Vantage Le Mans &amp; DBR 1",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "11",
		"", "pd1719244980.htm",
		"", 1,
		"press 27", "0",
		 0)
	
		Entry[541] = new Element(
		541, "assets/thumb/MAS Spyder.jpg",
		200, 150,
		"MAS-6", "Maserati Spyder",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "87",
		"", "pd1116310336.htm",
		"", 1,
		"press15", "0",
		 0)
	
		Entry[542] = new Element(
		542, "assets/thumb/MAS NEW QUA.jpg",
		200, 150,
		"MAS-7", "&quot;NEW&quot; Quattroporte",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "87",
		"", "pd434791278.htm",
		"", 1,
		"press15", "0",
		 0)
	
		Entry[543] = new Element(
		543, "assets/thumb/MAS COUPE CAM TROFEO.jpg",
		200, 145,
		"MAS-8", "Maserati &rsquo;Coupe&rsquo; Cambiocorsa Trofeo",
		"", "",
		"7", "0",
		"1", 1,
		"Pieces", "87",
		"", "pd1066921804.htm",
		"", 1,
		"press15", "0",
		 0)
	
		Entry[544] = new Element(
		544, "assets/thumb/MAS QUATT.jpg",
		200, 150,
		"MAS-9", "Maserati Quattroporte",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "87",
		"", "pd673846874.htm",
		"", 1,
		"press15", "0",
		 0)
	
		Entry[545] = new Element(
		545, "assets/thumb/MAS QUATT2.jpg",
		200, 150,
		"MAS-9a", "Maserati Quattroporte No2",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "87",
		"", "pd170462232.htm",
		"", 1,
		"press15", "0",
		 0)
	
		Entry[546] = new Element(
		546, "assets/thumb/MAS 3200GT.jpg",
		200, 150,
		"MAS-10", "Maserati 3200GT (RED)",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "87",
		"", "pd590753798.htm",
		"", 1,
		"press15", "0",
		 0)
	
		Entry[547] = new Element(
		547, "assets/thumb/MAS 3200GT2.jpg",
		200, 150,
		"MAS-11", "Maserati 3200GT (red) No2",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "87",
		"", "pd1759505828.htm",
		"", 1,
		"press15", "0",
		 0)
	
		Entry[548] = new Element(
		548, "assets/thumb/MAS QUAT TECH.jpg",
		200, 149,
		"MAS12", "Maserati Quattroporte prototype techcnical drawing press photo ",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "87",
		"", "pd-652698510.htm",
		"", 1,
		"press15", "0",
		 0)
	
		Entry[549] = new Element(
		549, "assets/thumb/MAS QUAT TECH2.jpg",
		200, 149,
		"MAS-13", "Maserati Quattroporte prototype techcnical drawing press photo No2",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "87",
		"", "pd-1626841104.htm",
		"", 1,
		"press15", "0",
		 0)
	
		Entry[550] = new Element(
		550, "assets/thumb/MAS QUAT TECH3.jpg",
		200, 149,
		"MAS14", "Maserati Quattroporte prototype techcnical drawing press photo No3 ",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "87",
		"", "pd800196510.htm",
		"", 1,
		"press15", "0",
		 0)
	
		Entry[551] = new Element(
		551, "assets/thumb/MAS Coupe.jpg",
		200, 149,
		"MAS-15", "Maserati Coupe",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "87",
		"", "pd245559036.htm",
		"", 1,
		"press15", "0",
		 0)
	
		Entry[552] = new Element(
		552, "assets/thumb/MAS Coupe2.jpg",
		200, 149,
		"MAS-16", "Maserati Coupe (Red)",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "87",
		"", "pd1168498058.htm",
		"", 1,
		"press15", "0",
		 0)
	
		Entry[553] = new Element(
		553, "assets/thumb/Ferrari the story of the man.jpg",
		123, 202,
		"FERV-4", "Ferrari . The Story of the Man, Machine, The Legend",
		"80 minutes approx", "",
		"7", "0",
		"1", 1,
		"Pieces", "38",
		"", "pd1124262445.htm",
		"", 1,
		"video19", "0",
		 0)
	
		Entry[554] = new Element(
		554, "assets/thumb/Ferrari Fury.jpg",
		122, 202,
		"FERV-6", "Ferrari Fury",
		"60 Minutes Approx", "",
		"7.5", "0",
		"1", 1,
		"Pieces", "38",
		"", "pd1792190499.htm",
		"", 1,
		"video19", "0",
		 0)
	
		Entry[555] = new Element(
		555, "assets/thumb/story of ferrari a history.jpg",
		120, 202,
		"FERV-7", "The Story of Ferrari &quot;A History of a Legend&quot;",
		"30 Minutes Approx", "",
		"7.5", "0",
		"1", 1,
		"Pieces", "38",
		"", "pd955184905.htm",
		"", 1,
		"video19", "0",
		 0)
	
		Entry[556] = new Element(
		556, "assets/thumb/story of ferrari.jpg",
		124, 202,
		"FERV-8", "The Story of Ferrari",
		"45 Minutes Approx", "",
		"7", "0",
		"1", 1,
		"Pieces", "38",
		"", "pd484489311.htm",
		"", 1,
		"video19", "0",
		 0)
	
		Entry[557] = new Element(
		557, "assets/thumb/Ferrari Fever.jpg",
		130, 210,
		"FERV-9", "Ferrari Fever &quot;At the Nurburgring&quot;",
		"60 Mins approx", "",
		"9", "0",
		"1", 1,
		"Pieces", "38",
		"", "pd1330704805.htm",
		"", 1,
		"video19", "0",
		 0)
	
		Entry[558] = new Element(
		558, "assets/thumb/Ferrari a story of man machine legend.jpg",
		119, 202,
		"FERV-10", "Ferrari. The Story",
		"80 minutes Approx", "",
		"7", "0",
		"1", 1,
		"Pieces", "38",
		"", "pd1073095771.htm",
		"", 1,
		"video19", "0",
		 0)
	
		Entry[559] = new Element(
		559, "assets/thumb/hotwheels F40.jpg",
		250, 136,
		"FERM-19", "Hotwheels Ferrari F40 Racing 1987 1:43rd Scale ",
		"", "",
		"15", "0",
		"1", 1,
		"Pieces", "37",
		"", "pd1125079480.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[560] = new Element(
		560, "assets/thumb/911 and Porsche World  Jan 2001.jpg",
		250, 342,
		"PORMAG2", "911 and Porsche World  Jan 2001",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "125",
		"", "pd-307937328.htm",
		"", 1,
		"Mags7", "0",
		 0)
	
		Entry[561] = new Element(
		561, "assets/thumb/911 and Porsche World  Jan Feb 1995.jpg",
		250, 355,
		"PORMAG3", "911 and Porsche World  Jan/Feb 1995",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "125",
		"", "pd-394433922.htm",
		"", 1,
		"Mags7", "0",
		 0)
	
		Entry[562] = new Element(
		562, "assets/thumb/911 and Porsche World  Mar Apr 1994.jpg",
		250, 358,
		"PORMAG4", "911 and Porsche World  Mar/Apr 1994",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "125",
		"", "pd99388636.htm",
		"", 1,
		"Mags7", "0",
		 0)
	
		Entry[563] = new Element(
		563, "assets/thumb/911 and Porsche World  Sept 2002.jpg",
		250, 360,
		"PORMAG5", "911 and Porsche World  Sept 2002",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "125",
		"", "pd-937152918.htm",
		"", 1,
		"Mags7", "0",
		 0)
	
// ** 1109
	function SetupSearchEngineForm(){
		mySearchEngine = xmlConfig.getFirstItem("SearchEngine");
		if(mySearchEngine.term!="null") document.SearchEngine.Term.value = mySearchEngine.term;
		for(var i=0;i<document.SearchEngine.Mode.length;i++){
			if(i==mySearchEngine.mode) document.SearchEngine.Mode[i].selected = true;
			};
		if(mySearchEngine.maxPrice>0) document.SearchEngine.Maxprice.value = mySearchEngine.maxPrice;
		else{
			document.SearchEngine.Maxprice.value="";
			mySearchEngine.maxPrice = -1;
			};
		if(xmlConfig.getFirstItem("SearchEngine").ByCategory=="1"){
			for(var i=0;i<document.SearchEngine.navselect.length; i++){
				if(document.SearchEngine.navselect[i].value.split(';;')[2]==mySearchEngine.categoryId){
					xmlConfig.getFirstItem("SearchEngine").categoryIndex = document.SearchEngine.navselect[i].value.split(';;')[0];
					document.SearchEngine.navselect[i].selected = true;
					};
				};
			}
		else{
			xmlConfig.getFirstItem("SearchEngine").categoryIndex = "null";
			};
		};
// enable smartstore to display amount of found products ...
	var counter = 0;
// ** 1111b
	function SearchFor(Term,Mode){
	var foundItems = new Array();
	var itemPrice = 0; var currentCategory = 0;
		mySearchEngine = xmlConfig.getFirstItem("SearchEngine");
		if((Term!="null" && Term!="")||mySearchEngine.maxPrice>=0){
			if(Mode=="") Mode=0;
			Term = Term.toLowerCase();
			var result = "<form name=\"ProductIndex\" onSubmit=\"return false;\">";
			var matchCategory = true;
			var productCategory;
			for(var i=0;i<Entry.length;i++){
				if(xmlConfig.getFirstItem("SearchEngine").ByCategory=="1"){
					// Search for matching categories
					if(xmlConfig.getFirstItem("SearchEngine").categoryIndex!="null"&&xmlConfig.getFirstItem("SearchEngine").categoryIndex!="nada"){
						for(var j=0; j<Entry[i].Category.split(",").length; j++){
							matchCategory = (navigation[mySearchEngine.categoryIndex].categoryId == Entry[i].Category.split(",")[j]) ? true : false;
							if(matchCategory!=true){
								productCategory = getNavElementByCatID(Entry[i].Category.split(",")[j]);
								while(productCategory!=null&&matchCategory==false){
									if(productCategory.parentId!=null){
										if(navigation[productCategory.parentId].categoryId==xmlConfig.getFirstItem("SearchEngine").categoryId){
											currentCategory = Entry[i].Category.split(",")[j];
											matchCategory=true;
											break;
											}
										else productCategory = navigation[productCategory.parentId];
										}
									else{
										currentCategory = Entry[i].Category.split(",")[j];
										productCategory = null;
										};
									};
								}
							else{
								currentCategory = Entry[i].Category.split(",")[j];
								break;
								};
							};
						}
					else{
						currentCategory = Entry[i].Category.split(",")[0];
						matchCategory = true;
						};
					}
				else{
					currentCategory = Entry[i].Category.split(",")[0];
					matchCategory = true;
					};
				// Update current Category
				Entry[i].NavIndex = getNavElementByCatID(currentCategory).id;
				// Continue
				var foundDesc1 = Entry[i].Title.toLowerCase().indexOf(Term)!=-1;
				var foundDesc2 = Entry[i].Subtitle.toLowerCase().indexOf(Term)!=-1;
				var foundProdId = Entry[i].Prod_nr.toLowerCase().indexOf(Term)!=-1;
				var foundManufac = Entry[i].Manufac.toLowerCase().indexOf(Term)!=-1;
				// SearchFor All
				itemPrice = Entry[i].Price
				if(Entry[i].catDiscount!=0&&Entry[i].Discount==""){
					itemPrice = Entry[i].Price * (1 - Entry[i].catDiscount / 100 );
					};
				//
				itemPrice = displPrice(itemPrice, Entry[i].Tax);
				//
				if(Mode==0){
					if((foundDesc1 || foundDesc2 || foundProdId || foundManufac || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				// SearchFor Description
				if(Mode==1){
					if((foundDesc1 || foundDesc2 || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				// SearchFor ProdId
				if(Mode==2){
					if((foundProdId || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				// SearchFor Manufac
				if(Mode==3){
					if((foundManufac || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				};
			// found elements: foundItems.length
			for(var i=0; i<foundItems.length;i++){
				result += foundItems[i].Print();
				};
			result += "</form>";
			if(counter>0){
				mySearchEngine.init="false";
				return result;
				}
			else{
				if(mySearchEngine.init=="false")	return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap>Sorry, no matching product was found. Please try again...</TD></TR>"
				else return("");
				};
			};
		if(mySearchEngine.init=="false") return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap>You did not enter any search criteria. Please enter your search term.</TD></TR>"
		else return("");
		};
// ** 11112
	function chkMaxprice(aPrice,aMaxPrice){
		aMaxPrice = replace(aMaxPrice.toString(),",",".");
		aPrice = calculateCurrencyAmount(aPrice, objPriCurrency);
		if(parseFloat(aMaxPrice)>0){
			if(parseFloat(aPrice)<=parseFloat(aMaxPrice)) return(true)
			else return(false);
			}
		else return(true);
		};
// ** 1111b
	function displPrice(aPrice,aTaxindex){
		var taxamount = taxarea[xmlConfig.taxarea][parseInt(aTaxindex) + 1];
		if(boolDisplTaxIncl){
			if(boolPriceTaxIncl) return(aPrice)
			else return(aPrice * ( 1 + taxamount/100 ) );
			}
		else{
			if(boolPriceTaxIncl) return(aPrice * ( 1 - taxamount/( 100 + taxamount ) ) )
			else return(aPrice);
			};
		};
// ** 1113
	function callpage(address, defValues, NavIndex){
		xmlConfig.getFirstItem("QueryStringData").putValue(defValues);
		xmlConfig.navIndex = NavIndex.toString();
		safeData();
		location.href = address;
		};
// ** 1114
	function newSearch(){
	var queryString = ""; var site = "";
	var xmlSearchEngine = xmlConfig.getFirstItem("SearchEngine");
		xmlSearchEngine.init='false';
		safeData();
		queryString += "mode=" + xmlSearchEngine.mode
			+ "&term=" + escape(xmlSearchEngine.term)
			+ "&maxPrice=" + escape(xmlSearchEngine.maxPrice)
			+ "&categoryId=" + escape(xmlSearchEngine.categoryIndex);
		if(location.href.indexOf("?")==-1) location.href = "search.htm?" + queryString
		else location.href = location.href.substring(0, location.href.indexOf("?")) + "?" + queryString;
		};
// ** 1115
	function searchOnEnter(){
		if(window.event.keyCode==13){
			xmlConfig.getFirstItem('SearchEngine').maxPrice=valNumber(document.SearchEngine.Maxprice.value,'0','');
			xmlConfig.getFirstItem('SearchEngine').term=document.SearchEngine.Term.value;
			newSearch();
			};
		};