	// 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="94" height="72" 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", "97",
		"", "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", "97",
		"", "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", "97",
		"", "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", "97",
		"", "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", "97",
		"", "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", "97",
		"", "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", "44",
		"", "pd-1903533540.htm",
		"", 1,
		"press 7", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/Mclaren Mercedes small.jpg",
		250, 183,
		"M-1", "Mclaren Team information",
		"McLaren Team Information Very Nice With Magnetic Closure 210mm x 220mm", "",
		"15", "0",
		"1", 1,
		"Pieces", "78",
		"", "pd1961035178.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/Lotus Carlton 1 Small.jpg",
		200, 158,
		"L-1", "Lotus Carlton Press Pic 1",
		"Lotus Carlton Press Pic 1", "",
		"5", "0",
		"1", 1,
		"Pieces", "61",
		"", "pd1091907650.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/Lotus Carlton 2 small.jpg",
		200, 157,
		"L-2", "Lotus Carlton Press Pic 2",
		"Lotus Carlton Press Pic 2", "",
		"5", "0",
		"1", 1,
		"Pieces", "61",
		"", "pd-1522771904.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/Lotus Carlton 3 small.jpg",
		200, 161,
		"L-3", "Lotus Carlton Press Pic 3",
		"Lotus Carlton Press Pic 3", "",
		"5", "0",
		"1", 1,
		"Pieces", "61",
		"", "pd1584265326.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/Lotus V8  black small.jpg",
		200, 153,
		"L-4", "Lotus Esprit V8 BLACK",
		"Lotus Esprit V8 BLACK", "",
		"5", "0",
		"1", 1,
		"Pieces", "61",
		"", "pd-864449460.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/Lotus Esprit GT3 Red small.jpg",
		200, 152,
		"L-5", "Lotus Esprit GT3 Red",
		"Lotus Esprit GT3 Red", "",
		"5", "0",
		"1", 1,
		"Pieces", "61",
		"", "pd-1816593574.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/Lotus Esprit GT Yellow small.jpg",
		200, 153,
		"L-6", "Lotus Esprit GT3 Yellow",
		"Lotus Esprit GT3 Yellow", "",
		"5", "0",
		"1", 1,
		"Pieces", "61",
		"", "pd1749448984.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[14] = new Element(
		14, "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 ", "",
		"5", "0",
		"1", 1,
		"Pieces", "61",
		"", "pd1202021638.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/Lotus Project M250 Concept Car 1 Small.jpg",
		200, 154,
		"L-8", "Lotus Project M250 Concept Car ",
		"Lotus Project M250 Concept Car ", "",
		"5", "0",
		"1", 1,
		"Pieces", "61",
		"", "pd840313508.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[16] = new Element(
		16, "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", "",
		"5", "0",
		"1", 1,
		"Pieces", "61",
		"", "pd-1215487630.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/Lotus  Elise 1 small.jpg",
		200, 152,
		"L-3a", "Lotus Elise 1",
		"Lotus Elise 1", "",
		"5", "0",
		"1", 1,
		"Pieces", "61",
		"", "pd-1392218896.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/Lotus Elise Motorsport small.jpg",
		200, 153,
		"L-9a", "Lotus Motorsport 1",
		"Lotus Motorsport 1", "",
		"5", "0",
		"1", 1,
		"Pieces", "61",
		"", "pd1302387870.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/Lotus Elise Motorsport 2 small.jpg",
		200, 153,
		"L-9b", "Lotus Motorsport 2",
		"Lotus Motorsport 2", "",
		"5", "0",
		"1", 1,
		"Pieces", "61",
		"", "pd-1746809860.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/Exige Small.jpg",
		200, 153,
		"L-9c", "Lotus Exige Silver",
		"Lotus Exige Silver", "",
		"5", "0",
		"1", 1,
		"Pieces", "61",
		"", "pd299106954.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/Elise Red White 2tone Small.jpg",
		200, 154,
		"L-9d", "Lotus Elise 49 red/white",
		"Lotus Elise 49 red/white", "",
		"5", "0",
		"1", 1,
		"Pieces", "61",
		"", "pd-134245432.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/Elise Yellow Small.jpg",
		200, 152,
		"L-9e", "Lotus Elise Yellow",
		"Lotus Elise Yellow", "",
		"5", "0",
		"1", 1,
		"Pieces", "61",
		"", "pd1636351798.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/Elise Silver Small.jpg",
		200, 152,
		"L-9f", "Lotus Elise 111s Silver",
		"Lotus Elise 111s  Silver", "",
		"5", "0",
		"1", 1,
		"Pieces", "61",
		"", "pd-927215532.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/Elise Catalogue Small.jpg",
		250, 243,
		"Elise cat ", "Elise catalogue",
		"3 page fold out sales catalogue English and Italian text", "",
		"10", "0",
		"1", 1,
		"Pieces", "62",
		"", "pd-1231991173.htm",
		"", 1,
		"Sales", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/VX220 Silver Small.jpg",
		200, 147,
		"V-1", "VX220 Silver",
		"VX220 Silver", "",
		"5", "0",
		"1", 1,
		"Pieces", "118",
		"", "pd-1243825197.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[26] = new Element(
		26, "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", "68",
		"", "pd-518328473.htm",
		"", 1,
		"press15", "0",
		 0)
	
		Entry[27] = new Element(
		27, "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", "68",
		"", "pd-1900470291.htm",
		"", 1,
		"press15", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/Masarati spyder silver small.jpg",
		200, 145,
		"MAS-3", "Masarati Spyder silver",
		"Masarati Spyder silver", "",
		"5", "0",
		"1", 1,
		"Pieces", "68",
		"", "pd661789667.htm",
		"", 1,
		"press15", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/Masarati spyder silver 2 small.jpg",
		200, 146,
		"MAS-4", "Masarati Spyder silver",
		"Masarati Spyder silver", "",
		"5", "0",
		"1", 1,
		"Pieces", "68",
		"", "pd-55406391.htm",
		"", 1,
		"press15", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/VX220 Turbo Blue small.jpg",
		200, 146,
		"V-2", "VX 220 Turbo Blue",
		"VX 220 Turbo Blue", "",
		"5", "0",
		"1", 1,
		"Pieces", "118",
		"", "pd-1505957857.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/VX220 Turbo red small.jpg",
		200, 145,
		"V-3", "VX 220 Turbo Red",
		"VX 220 Turbo Red", "",
		"5", "0",
		"1", 1,
		"Pieces", "118",
		"", "pd-175134875.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/VX220 yellow small.jpg",
		200, 146,
		"V-4", "VX 220 Yellow",
		"VX 220 Yellow", "",
		"5", "0",
		"1", 1,
		"Pieces", "118",
		"", "pd-986525669.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/VX220 yellow 2 small.jpg",
		200, 146,
		"V-5", "VX220 Lightning Yellow",
		"VX220 Lightning Yellow", "",
		"5", "0",
		"1", 1,
		"Pieces", "118",
		"", "pd-1035714623.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/VX220 Orange small.jpg",
		200, 148,
		"V-6", "VX 220 Orange",
		"VX 220 Orange", "",
		"5", "0",
		"1", 1,
		"Pieces", "118",
		"", "pd-698675241.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/eco-speedster small.jpg",
		200, 145,
		"V-9", "VAUXHALL ECO-SPEEDSTER",
		"VAUXHALL ECO-SPEEDSTER", "",
		"5", "0",
		"1", 1,
		"Pieces", "118",
		"", "pd-1516636707.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[36] = new Element(
		36, "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", "97",
		"", "pd411607891.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/Maserati Trofeo small.jpg",
		200, 147,
		"MAS-5", "Maserati 3200 Trofeo Press Photo",
		"Maserati 3200 Trofeo", "",
		"5", "0",
		"1", 1,
		"Pieces", "68",
		"", "pd319563193.htm",
		"", 1,
		"press15", "0",
		 0)
	
		Entry[38] = new Element(
		38, "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", "24",
		"", "pd-1181333873.htm",
		"", 1,
		"Press 6", "0",
		 0)
	
		Entry[39] = new Element(
		39, "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", "44",
		"", "pd-345773227.htm",
		"", 1,
		"press 7", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/VX220 00057 Silver small.jpg",
		200, 145,
		"V-1a", "VX220 Silver Press photo",
		"VX220 Silver Press photo ", "",
		"5", "0",
		"1", 1,
		"Pieces", "118",
		"", "pd1415738763.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[41] = new Element(
		41, "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", "118",
		"", "pd-1693179215.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[42] = new Element(
		42, "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", "118",
		"", "pd646671431.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[43] = new Element(
		43, "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", "118",
		"", "pd-1235916851.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[44] = new Element(
		44, "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", "118",
		"", "pd-102029629.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/Enzo 1 small.jpg",
		200, 145,
		"FER-2", "Enzo Press Photo 1",
		"Enzo Press Photo 1", "",
		"10", "0",
		"1", 1,
		"Pieces", "24",
		"", "pd1862407849.htm",
		"", 1,
		"Press 6", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/Enzo 2 small.jpg",
		200, 147,
		"FER-3", "Enzo Press Photo 2",
		"Enzo Press Photo 2", "",
		"10", "0",
		"1", 1,
		"Pieces", "24",
		"", "pd2111004927.htm",
		"", 1,
		"Press 6", "0",
		 0)
	
		Entry[47] = new Element(
		47, "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", "24",
		"", "pd3296069.htm",
		"", 1,
		"Press 6", "0",
		 0)
	
		Entry[48] = new Element(
		48, "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", "24",
		"", "pd-1945528581.htm",
		"", 1,
		"Press 6", "0",
		 0)
	
		Entry[49] = new Element(
		49, "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", "23",
		"", "pd1092252446.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/mod small.jpg",
		150, 75,
		"FERM-2", "Bang Ferrari 348GT Competizione 1993 (Motor Show Special) 1:43rd Scale",
		"Bang Ferrari No 8019", "",
		"9.99", "0",
		"1", 1,
		"Pieces", "23",
		"", "pd808635341.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[51] = new Element(
		51, "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", "23",
		"", "pd1092260186.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/9406 small.jpg",
		150, 74,
		"FERM-4", "Bang Ferrari 348 Challenge 1994 (Roberto Ragazzi) 1:43rd Scale",
		"Bang No 9406", "",
		"9.99", "0",
		"1", 1,
		"Pieces", "23",
		"", "pd-1239810280.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[53] = new Element(
		53, "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", "23",
		"", "pd1694259974.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/9303 small.jpg",
		150, 75,
		"FERM-6", "Bang Ferrai 348 Challenge 1993 (R Ragazzi) 1:43rd Scale",
		"Bang No 9303", "",
		"9.99", "0",
		"1", 1,
		"Pieces", "23",
		"", "pd2052984996.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/9504 small.jpg",
		150, 76,
		"FERM-7", "Bang Ferrari F355 1995 (G  Giraudi) 1:43rd Scale ",
		"Bang No 9504", "",
		"9.99", "0",
		"1", 1,
		"Pieces", "23",
		"", "pd2045736818.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/9511 small.jpg",
		150, 78,
		"FERM-8", "Bang Ferrari F355 1995 (Lehman Knut) 1:43rd Scale",
		"Bang No 9511", "",
		"9.99", "0",
		"1", 1,
		"Pieces", "23",
		"", "pd-1027165456.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/8007small.jpg",
		150, 79,
		"FERM-9", "Bang Ferrari 348tb 1990 (Red) 1:43rd Scale",
		"Bang No 8007", "",
		"9.99", "0",
		"1", 1,
		"Pieces", "23",
		"", "pd394564254.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[58] = new Element(
		58, "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", "23",
		"", "pd-1165725188.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[59] = new Element(
		59, "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", "23",
		"", "pd151984266.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[60] = new Element(
		60, "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", "23",
		"", "pd1497930184.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[61] = new Element(
		61, "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", "23",
		"", "pd1699820854.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[62] = new Element(
		62, "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", "23",
		"", "pd1926313556.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/8001small.jpg",
		150, 81,
		"FERM-15", "Bang Ferrari 348 TS 1:43rd Scale",
		"Bang No 8001", "",
		"9.99", "0",
		"1", 1,
		"Pieces", "23",
		"", "pd-655895390.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[64] = new Element(
		64, "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", "23",
		"", "pd926225312.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/9306small.jpg",
		150, 77,
		"FERM-17", "Bang Ferrari 348 Challenge 1993 (Marco Pietra) 1:43rd Scale",
		"Bang No 9306", "",
		"9.99", "0",
		"1", 1,
		"Pieces", "23",
		"", "pd-814308658.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[66] = new Element(
		66, "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", "23",
		"", "pd1092337471.htm",
		"", 1,
		"Collect 6", "0",
		 0)
	
		Entry[67] = new Element(
		67, "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", "96",
		"", "pd1570952069.htm",
		"", 1,
		"collector5", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/246 video small.jpg",
		121, 200,
		"FERV-1", "Ferrari 246 Video. No4",
		"Approximately 30 minutes ", "",
		"9.99", "0",
		"1", 1,
		"Pieces", "26",
		"", "pd1092866552.htm",
		"", 1,
		"video19", "0",
		 0)
	
		Entry[69] = new Element(
		69, "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", "26",
		"", "pd-731256602.htm",
		"", 1,
		"video19", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/365 Video small.jpg",
		121, 201,
		"FERV-3", "Ferrari 365 Video. No5",
		"Approx 30 Minutes", "",
		"9.99", "0",
		"1", 1,
		"Pieces", "26",
		"", "pd-211693180.htm",
		"", 1,
		"video19", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/F40 Video small.jpg",
		121, 200,
		"FERV-4", "Ferrari F40 Video. No2",
		"Approx 30 minutes", "",
		"9.99", "0",
		"1", 1,
		"Pieces", "26",
		"", "pd-136273070.htm",
		"", 1,
		"video19", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/testarossa Video small.jpg",
		121, 199,
		"FERV-5", "Ferrari Testarossa Video. No3",
		"Approx 30 Minutes", "",
		"9.99", "0",
		"1", 1,
		"Pieces", "26",
		"", "pd1092868364.htm",
		"", 1,
		"video19", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/mondial t press kit small.jpg",
		200, 143,
		"FER-6", "Ferrari Mondial T full Press Kit (rare)",
		"English text contains 6 large format B/W press photographs", "",
		"35", "0",
		"1", 1,
		"Pieces", "24",
		"", "pd1092944746.htm",
		"", 1,
		"Press 6", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/new vectra small.jpg",
		200, 147,
		"V-10", "Vauxhall Vectra Press Photo",
		"", "",
		"3", "0",
		"1", 1,
		"Pieces", "118",
		"", "pd-1222197320.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/new vectra SRI small.jpg",
		200, 149,
		"V-11", "Vaxhall New Vectra SRi Press Photograph",
		"02194", "",
		"3.5", "0",
		"1", 1,
		"Pieces", "118",
		"", "pd-790262618.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/348 Catalogue small.jpg",
		175, 166,
		"FCAT-1", "Ferrari 348 Catalogue",
		"Ferrari 348 catalogue", "",
		"15", "0",
		"1", 1,
		"Pieces", "25",
		"", "pd1093456500.htm",
		"", 1,
		"Sales6", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/360 Modena Catalogue small.jpg",
		181, 200,
		"FCAT-2", "Ferrari 360 Modena 2002 Catalogue",
		"Ferrari 360 Modena 2002 Catalogue", "",
		"20", "0",
		"1", 1,
		"Pieces", "25",
		"", "pd70864322.htm",
		"", 1,
		"Sales6", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/575M catalogue small.jpg",
		200, 187,
		"FCAT-3", "Ferrari 575M 2002 Catalogue",
		"Ferrari 575M 2002 Catalogue", "",
		"20", "0",
		"1", 1,
		"Pieces", "25",
		"", "pd625193408.htm",
		"", 1,
		"Sales6", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/Mondial T Catalogue small.jpg",
		175, 161,
		"FCAT-4", "Ferrari Mondial T 1989 Catalogue",
		"Ferrari Mondial T 1989 Catalogue", "",
		"20", "0",
		"1", 1,
		"Pieces", "25",
		"", "pd2004545006.htm",
		"", 1,
		"Sales6", "0",
		 0)
	
		Entry[80] = new Element(
		80, "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", "25",
		"", "pd-722108980.htm",
		"", 1,
		"Sales6", "0",
		 0)
	
		Entry[81] = new Element(
		81, "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", "25",
		"", "pd564938970.htm",
		"", 1,
		"Sales6", "0",
		 0)
	
		Entry[82] = new Element(
		82, "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", "25",
		"", "pd-160398696.htm",
		"", 1,
		"Sales6", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/Ferrari Issue 129 Spring 2001 small.jpg",
		141, 200,
		"FMAG-1", "Ferrari Magazine ",
		"Issue 129 Spring 2001", "",
		"10", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd-1068201338.htm",
		"", 1,
		"Mags", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/Ferrari Issue 131 Autumn 2001 small.jpg",
		138, 200,
		"FMAG-2", "Ferrari Magazine",
		"issue 131 Autumn 2001", "",
		"10", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd-708850652.htm",
		"", 1,
		"Mags", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/Ferrari Issue 132 Winter 2001 small.jpg",
		138, 200,
		"FMAG-3", "Ferrari Magazine",
		"Issue 132 Winter 2001", "",
		"10", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd-987390222.htm",
		"", 1,
		"Mags", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/Ferrari Issue 137 Sprint 2003 small.jpg",
		138, 200,
		"FMAG-4", "Ferrari Magazine",
		"Issue 137 Spring 2003", "",
		"10", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd-1575541136.htm",
		"", 1,
		"Mags", "0",
		 0)
	
		Entry[87] = new Element(
		87, "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", "22",
		"", "pd-2077740514.htm",
		"", 1,
		"Mags", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/Astra Gsi 2 small.jpg",
		200, 142,
		"V-12", "Vauxhall Astra GSi Press Photo",
		"No1", "",
		"5", "0",
		"1", 1,
		"Pieces", "118",
		"", "pd2011110780.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/Astra Gsi small.jpg",
		148, 200,
		"V-13", "Vauxhall Astra GSi Press Photo",
		"No2", "",
		"5", "0",
		"1", 1,
		"Pieces", "118",
		"", "pd-56119286.htm",
		"", 1,
		"Press12", "0",
		 0)
	
		Entry[90] = new Element(
		90, "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", "55",
		"", "pd1759397046.htm",
		"", 1,
		"press55", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/Merc AClass Blue small.jpg",
		200, 149,
		"M-2", "Mercedes A-Class Press Photo",
		"A-Class", "",
		"5", "0",
		"1", 1,
		"Pieces", "78",
		"", "pd1093762169.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/Merc C Class small.jpg",
		200, 151,
		"M-3", "Mercedes C-Class Press photo",
		"C-Class", "",
		"5", "0",
		"1", 1,
		"Pieces", "78",
		"", "pd1686010703.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[93] = new Element(
		93, "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", "78",
		"", "pd-2038288875.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[94] = new Element(
		94, "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", "78",
		"", "pd-685935029.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/Merc CL Coupe small.jpg",
		151, 200,
		"M-6", "Mercedes CL Coupe Press Photo",
		"CL-Class", "",
		"5", "0",
		"1", 1,
		"Pieces", "78",
		"", "pd-913039.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/Merc CL small.jpg",
		200, 151,
		"M-7", "Mercedes Cl Coupe No2 Press Photo",
		"CL-Class No2", "",
		"5", "0",
		"1", 1,
		"Pieces", "78",
		"", "pd775813383.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/Merc CLK 55 AMG small.jpg",
		200, 149,
		"M-8", "Mercedes CLK 55 AMG Press Photo",
		"CLK-Class", "",
		"5", "0",
		"1", 1,
		"Pieces", "78",
		"", "pd296075917.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[98] = new Element(
		98, "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", "78",
		"", "pd-1249509501.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/Merc CLK Coupe small.jpg",
		200, 150,
		"M-10", "Mercedes CLK Coupe Press photo",
		"CLK Coupe", "",
		"5", "0",
		"1", 1,
		"Pieces", "78",
		"", "pd-198992535.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/thumb/Merc CLK Coupe 2 small.jpg",
		200, 150,
		"M-11", "Mercedes Coupe Press Photo No2",
		"CLK Coupe", "",
		"5", "0",
		"1", 1,
		"Pieces", "78",
		"", "pd-1294776897.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[101] = new Element(
		101, "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", "78",
		"", "pd2000111547.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[102] = new Element(
		102, "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", "78",
		"", "pd-756547487.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[103] = new Element(
		103, "assets/thumb/Merc S Class small.jpg",
		200, 150,
		"M-14", "Mercedes S-Class Press photo",
		"S-Class", "",
		"5", "0",
		"1", 1,
		"Pieces", "78",
		"", "pd1471365495.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/Merc S320 CDi small.jpg",
		200, 152,
		"M-15", "Mercedes S320 CDi Press photo",
		"Merc S320 CDi", "",
		"5", "0",
		"1", 1,
		"Pieces", "78",
		"", "pd-278921091.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/MERC SLK small.jpg",
		200, 148,
		"M-16", "Mercedes SLK Press Photo",
		"Merk SLK", "",
		"5", "0",
		"1", 1,
		"Pieces", "78",
		"", "pd-1984680205.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/thumb/Merc SL55 AMG small.jpg",
		200, 147,
		"M-17", "Mercedes SL55 AMG Press Photo",
		"Merc SL55 AMG", "",
		"5", "0",
		"1", 1,
		"Pieces", "78",
		"", "pd-721610151.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/Merc SL55 AMG 2 small.jpg",
		200, 149,
		"M-18", "Mercedes SL55 AMG Press Photo No2",
		"SL55 Amg No2", "",
		"5", "0",
		"1", 1,
		"Pieces", "78",
		"", "pd-1622225873.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[108] = new Element(
		108, "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", "78",
		"", "pd189950453.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/Merc MClass Silver small.jpg",
		200, 151,
		"M-20", "Mercedes ML Class Press Photo",
		"Merc ML Class", "",
		"5", "0",
		"1", 1,
		"Pieces", "78",
		"", "pd523998507.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[110] = new Element(
		110, "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", "78",
		"", "pd-163787951.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[111] = new Element(
		111, "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", "78",
		"", "pd1955775975.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[112] = new Element(
		112, "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", "78",
		"", "pd-1140925843.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/thumb/bmw 1 series small.jpg",
		200, 148,
		"BMW-1", "BMW 1 Series Press Photo",
		"1 Series", "",
		"5", "0",
		"1", 1,
		"Pieces", "8",
		"", "pd1093771677.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[114] = new Element(
		114, "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", "8",
		"", "pd1172256019.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[115] = new Element(
		115, "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", "8",
		"", "pd1695812985.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[116] = new Element(
		116, "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", "8",
		"", "pd-1471712177.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[117] = new Element(
		117, "assets/thumb/BMW X3 small.jpg",
		200, 147,
		"BMW-5", "BMW X3 Press Photo",
		"BMW X3", "",
		"5", "0",
		"1", 1,
		"Pieces", "8",
		"", "pd1094176533.htm",
		"", 1,
		"press4", "0",
		 0)
	
		Entry[118] = new Element(
		118, "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", "24",
		"", "pd-936378549.htm",
		"", 1,
		"Press 6", "0",
		 0)
	
		Entry[119] = new Element(
		119, "assets/thumb/Mits Shogun Pinin small.jpg",
		200, 144,
		"MIT-2", "Mitsubishi Shogun Pinin Press Photo",
		"", "",
		"3", "0",
		"1", 1,
		"Pieces", "84",
		"", "pd1268779258.htm",
		"", 1,
		"Press 15", "0",
		 0)
	
		Entry[120] = new Element(
		120, "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", "84",
		"", "pd-1414018836.htm",
		"", 1,
		"Press 15", "0",
		 0)
	
		Entry[121] = new Element(
		121, "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", "114",
		"", "pd-948408727.htm",
		"", 1,
		"Press 14", "0",
		 0)
	
		Entry[122] = new Element(
		122, "assets/thumb/Fiesta ST small.jpg",
		200, 145,
		"FOR-1", "Ford Fiesta ST Press Photo",
		"Ford Fiesta ST", "",
		"8", "0",
		"1", 1,
		"Pieces", "32",
		"", "pd-1055297054.htm",
		"", 1,
		"press", "0",
		 0)
	
		Entry[123] = new Element(
		123, "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", "32",
		"", "pd-1949502752.htm",
		"", 1,
		"press", "0",
		 0)
	
		Entry[124] = new Element(
		124, "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", "32",
		"", "pd1638306830.htm",
		"", 1,
		"press", "0",
		 0)
	
		Entry[125] = new Element(
		125, "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", "32",
		"", "pd1367216364.htm",
		"", 1,
		"press", "0",
		 0)
	
		Entry[126] = new Element(
		126, "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", "32",
		"", "pd-1628466950.htm",
		"", 1,
		"press", "0",
		 0)
	
		Entry[127] = new Element(
		127, "assets/thumb/Suzuki Baleno 1996 small.jpg",
		149, 200,
		"SUZ-1", "Suzuki Baleno 1996 Press Photo",
		"Suzuki Baleno 1996", "",
		"3", "0",
		"1", 1,
		"Pieces", "112",
		"", "pd1809066841.htm",
		"", 1,
		"Press 17", "0",
		 0)
	
		Entry[128] = new Element(
		128, "assets/thumb/suzuki swift 1996 small.jpg",
		147, 200,
		"SUZ-2", "Suzuki Swift 1996 Press Photo",
		"Suzuki Swift 1996", "",
		"3", "0",
		"1", 1,
		"Pieces", "112",
		"", "pd1361069359.htm",
		"", 1,
		"Press 17", "0",
		 0)
	
		Entry[129] = new Element(
		129, "assets/thumb/Toyota Prius small.jpg",
		200, 141,
		"TOY-2", "Toyota Prius Press Photo",
		"Toyota Prius", "",
		"3", "0",
		"1", 1,
		"Pieces", "114",
		"", "pd1967426293.htm",
		"", 1,
		"Press 14", "0",
		 0)
	
		Entry[130] = new Element(
		130, "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", "32",
		"", "pd870227499.htm",
		"", 1,
		"press", "0",
		 0)
	
		Entry[131] = new Element(
		131, "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", "44",
		"", "pd-975947620.htm",
		"", 1,
		"press 7", "0",
		 0)
	
		Entry[132] = new Element(
		132, "assets/thumb/kia picanto small.jpg",
		200, 148,
		"KIA-1", "Kia Picanto Press Photo",
		"Kia Picanto", "",
		"3", "0",
		"1", 1,
		"Pieces", "50",
		"", "pd1521945192.htm",
		"", 1,
		"Press 19", "0",
		 0)
	
		Entry[133] = new Element(
		133, "assets/thumb/lotus elan bw small.jpg",
		200, 150,
		"L-10", "Lotus Elan 1989 B/W Press Photo",
		"Lotus Elan 1989", "",
		"8", "0",
		"1", 1,
		"Pieces", "61",
		"", "pd-1993107754.htm",
		"", 1,
		"Press 2", "0",
		 0)
	
		Entry[134] = new Element(
		134, "assets/thumb/Maybach 2 small.jpg",
		200, 149,
		"MAY-1", "Maybach Press Photo",
		"Maybach Press Photo", "",
		"6", "0",
		"1", 1,
		"Pieces", "72",
		"", "pd-160986169.htm",
		"", 1,
		"Press 20", "0",
		 0)
	
		Entry[135] = new Element(
		135, "assets/thumb/Maybach Concept 2001 small.jpg",
		200, 149,
		"MAY-2", "Maybach Concept Press Photo ",
		"Maybach ", "",
		"6", "0",
		"1", 1,
		"Pieces", "72",
		"", "pd-610495667.htm",
		"", 1,
		"Press 20", "0",
		 0)
	
		Entry[136] = new Element(
		136, "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", "84",
		"", "pd-1442553772.htm",
		"", 1,
		"Press 15", "0",
		 0)
	
		Entry[137] = new Element(
		137, "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", "84",
		"", "pd2092371618.htm",
		"", 1,
		"Press 15", "0",
		 0)
	
		Entry[138] = new Element(
		138, "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", "84",
		"", "pd1463737760.htm",
		"", 1,
		"Press 15", "0",
		 0)
	
		Entry[139] = new Element(
		139, "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", "84",
		"", "pd779975886.htm",
		"", 1,
		"Press 15", "0",
		 0)
	
		Entry[140] = new Element(
		140, "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", "84",
		"", "pd142223276.htm",
		"", 1,
		"Press 15", "0",
		 0)
	
		Entry[141] = new Element(
		141, "assets/thumb/nissan 350Z gold small.jpg",
		200, 147,
		"NIS-1", "Nissan 350Z Press Photo",
		"Nissan 350Z", "",
		"6", "0",
		"1", 1,
		"Pieces", "88",
		"", "pd307797427.htm",
		"", 1,
		"Press 22", "0",
		 0)
	
		Entry[142] = new Element(
		142, "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", "93",
		"", "pd-1313254042.htm",
		"", 1,
		"Press 23", "0",
		 0)
	
		Entry[143] = new Element(
		143, "assets/thumb/Peugeot 407 SW small.jpg",
		200, 141,
		"PEU-2", "Peugeot 407 SW Press Photo",
		"Peugeot 407 SW ", "",
		"4", "0",
		"1", 1,
		"Pieces", "93",
		"", "pd-1245723979.htm",
		"", 1,
		"Press 23", "0",
		 0)
	
		Entry[144] = new Element(
		144, "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", "93",
		"", "pd-1452041237.htm",
		"", 1,
		"Press 23", "0",
		 0)
	
		Entry[145] = new Element(
		145, "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", "97",
		"", "pd-1070125039.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[146] = new Element(
		146, "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", "97",
		"", "pd936294567.htm",
		"", 1,
		"press5", "0",
		 0)
	
		Entry[147] = new Element(
		147, "assets/thumb/Renault Avantime small.jpg",
		200, 149,
		"REN-1", "Renault Avantime Press Photograph",
		"3/9/99", "",
		"3", "0",
		"1", 1,
		"Pieces", "104",
		"", "pd-28395989.htm",
		"", 1,
		"Press 24", "0",
		 0)
	
		Entry[148] = new Element(
		148, "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", "104",
		"", "pd-1174472413.htm",
		"", 1,
		"Press 24", "0",
		 0)
	
		Entry[149] = new Element(
		149, "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", "104",
		"", "pd1209511945.htm",
		"", 1,
		"Press 24", "0",
		 0)
	
		Entry[150] = new Element(
		150, "assets/images/nopicture.gif",
		97, 93,
		"REN-4", "Renault Wind Concept Car Interior Press Photo No3",
		"Renault Wind Concept Car No3", "",
		"5", "0",
		"1", 1,
		"Pieces", "104",
		"", "pd-654567073.htm",
		"", 1,
		"Press 24", "0",
		 0)
	
		Entry[151] = new Element(
		151, "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", "78",
		"", "pd1398432524.htm",
		"", 1,
		"press2", "0",
		 0)
	
		Entry[152] = new Element(
		152, "assets/thumb/Suzuki Samaurai small.jpg",
		200, 141,
		"SUZ-3", "Suzuki Samaurai Press photo",
		"Suzki Samaurai", "",
		"5", "0",
		"1", 1,
		"Pieces", "112",
		"", "pd1137225754.htm",
		"", 1,
		"Press 17", "0",
		 0)
	
		Entry[153] = new Element(
		153, "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", "112",
		"", "pd-1160234024.htm",
		"", 1,
		"Press 17", "0",
		 0)
	
		Entry[154] = new Element(
		154, "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", "112",
		"", "pd754968006.htm",
		"", 1,
		"Press 17", "0",
		 0)
	
		Entry[155] = new Element(
		155, "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", "112",
		"", "pd-929064604.htm",
		"", 1,
		"Press 17", "0",
		 0)
	
		Entry[156] = new Element(
		156, "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", "24",
		"", "pd1094106933.htm",
		"", 1,
		"Press 6", "0",
		 0)
	
		Entry[157] = new Element(
		157, "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", "2",
		"", "pd-159639635.htm",
		"", 1,
		"press 27", "0",
		 0)
	
		Entry[158] = new Element(
		158, "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", "15",
		"", "pd-1439833708.htm",
		"", 1,
		"Press 16", "0",
		 0)
	
		Entry[159] = new Element(
		159, "assets/thumb/Hyundai E Concept Car Small.jpg",
		200, 146,
		"Hyu", "Hyundai E - Concept Press Photo",
		"Hyundai E - Concept", "",
		"5", "0",
		"1", 1,
		"Pieces", "39",
		"", "pd3088446.htm",
		"", 1,
		"Press 18", "0",
		 0)
	
		Entry[160] = new Element(
		160, "assets/thumb/2003 discovery small.jpg",
		200, 143,
		"LAND-1", "Land Rover Discovery 2003 Press Photograph",
		"13/03/02", "",
		"3", "0",
		"1", 1,
		"Pieces", "55",
		"", "pd429712117.htm",
		"", 1,
		"press55", "0",
		 0)
	
		Entry[161] = new Element(
		161, "assets/thumb/mazda sakata small.jpg",
		200, 147,
		"MAZ-2", "Mazda Sakata Press Photo",
		"Mazda Sakata", "",
		"5", "0",
		"1", 1,
		"Pieces", "74",
		"", "pd-402469066.htm",
		"", 1,
		"Press 21", "0",
		 0)
	
		Entry[162] = new Element(
		162, "assets/thumb/Mazda 2004 MX5 small.jpg",
		200, 142,
		"MAZ-1", "Mazda 2004 MX5 Press Photo",
		"Mazda 2004 MX5", "",
		"5", "0",
		"1", 1,
		"Pieces", "74",
		"", "pd-491838520.htm",
		"", 1,
		"Press 21", "0",
		 0)
	
		Entry[163] = new Element(
		163, "assets/thumb/Rover 75 2 V8 small.jpg",
		200, 145,
		"ROV-2", "Rover 75 Press Photo No2",
		"Rover 75 ", "",
		"5", "0",
		"1", 1,
		"Pieces", "107",
		"", "pd-611908864.htm",
		"", 1,
		"Press 25", "0",
		 0)
	
		Entry[164] = new Element(
		164, "assets/thumb/Rover 75 V8 small.jpg",
		200, 145,
		"ROV-1", "Rover 75 Press Photo",
		"Rover 75", "",
		"5.25", "0",
		"1", 1,
		"Pieces", "107",
		"", "pd-1660056318.htm",
		"", 1,
		"Press 25", "0",
		 0)
	
		Entry[165] = new Element(
		165, "assets/thumb/Rover 75 V8 interior small.jpg",
		200, 143,
		"ROV-3", "Rover 75 Interior Press Photo",
		"Rover 75 ", "",
		"5", "0",
		"1", 1,
		"Pieces", "107",
		"", "pd-1664376530.htm",
		"", 1,
		"Press 25", "0",
		 0)
	
		Entry[166] = new Element(
		166, "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", "102",
		"", "pd-603756768.htm",
		"", 1,
		"Press13", "0",
		 0)
	
		Entry[167] = new Element(
		167, "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", "102",
		"", "pd-2141135838.htm",
		"", 1,
		"Press13", "0",
		 0)
	
		Entry[168] = new Element(
		168, "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", "128",
		"", "pd-1778170369.htm",
		"", 1,
		"Press 30", "0",
		 0)
	
		Entry[169] = new Element(
		169, "assets/thumb/Lexus !S200 LE lsm.jpg",
		200, 140,
		"LEX-1", "Lexus IS200 Press photo",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "57",
		"", "pd-1532092495.htm",
		"", 1,
		"Press 29", "0",
		 0)
	
		Entry[170] = new Element(
		170, "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", "57",
		"", "pd812725453.htm",
		"", 1,
		"Press 29", "0",
		 0)
	
		Entry[171] = new Element(
		171, "assets/thumb/Lexus RX concept sm.jpg",
		200, 141,
		"LEX-4", "Lexus RX Concept Car Press Photo",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "57",
		"", "pd-1476412477.htm",
		"", 1,
		"Press 29", "0",
		 0)
	
		Entry[172] = new Element(
		172, "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", "57",
		"", "pd319402311.htm",
		"", 1,
		"Press 29", "0",
		 0)
	
		Entry[173] = new Element(
		173, "assets/thumb/stilo maroon small.jpg",
		200, 147,
		"FIA-1", "Fiat Stilo (Maroon) Press Photo",
		"Fiat Stilo", "",
		"4", "0",
		"1", 1,
		"Pieces", "28",
		"", "pd-2017966160.htm",
		"", 1,
		"PRESS 26", "0",
		 0)
	
		Entry[174] = new Element(
		174, "assets/thumb/stilo 3 maroon small.jpg",
		200, 149,
		"FIA-3", "Fiat Stilo (maroon) Press Photo No3",
		"Fiat Stilo", "",
		"4", "0",
		"1", 1,
		"Pieces", "28",
		"", "pd-174140740.htm",
		"", 1,
		"PRESS 26", "0",
		 0)
	
		Entry[175] = new Element(
		175, "assets/thumb/stilo 2 small.jpg",
		200, 143,
		"FIA-5", "Fiat Stilo (silver) Press Photo No2",
		"Fiat Stilo Silver No2", "",
		"0", "0",
		"1", 1,
		"Pieces", "28",
		"", "pd-116357496.htm",
		"", 1,
		"PRESS 26", "0",
		 0)
	
		Entry[176] = new Element(
		176, "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", "28",
		"", "pd-1607077898.htm",
		"", 1,
		"PRESS 26", "0",
		 0)
	
		Entry[177] = new Element(
		177, "assets/thumb/stilo small.jpg",
		200, 147,
		"FIA-4", "Fiat Stilo (silver) Press Photo ",
		"Fiat Stilo ", "",
		"4", "0",
		"1", 1,
		"Pieces", "28",
		"", "pd1323001674.htm",
		"", 1,
		"PRESS 26", "0",
		 0)
	
		Entry[178] = new Element(
		178, "assets/thumb/stilo 2 maroon small.jpg",
		200, 143,
		"FIA-2", "Fiat Stilo (maroon) Press Photo No2",
		"Fiat Stilo", "",
		"4", "0",
		"1", 1,
		"Pieces", "28",
		"", "pd894121310.htm",
		"", 1,
		"PRESS 26", "0",
		 0)
	
		Entry[179] = new Element(
		179, "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)", "",
		"0", "0",
		"1", 1,
		"Pieces", "2",
		"", "pd-57353821.htm",
		"", 1,
		"press 27", "0",
		 0)
	
		Entry[180] = new Element(
		180, "assets/thumb/aston V12 Vanquish (250x200) sm.jpg",
		250, 201,
		"AM-3", "Aston Martin V12 Vanquish Press Photo",
		"Large Size (250mm x 200)", "",
		"7", "0",
		"1", 1,
		"Pieces", "2",
		"", "pd43156617.htm",
		"", 1,
		"press 27", "0",
		 0)
	
		Entry[181] = new Element(
		181, "assets/thumb/ASTON Van Volnate (250x200) sm.jpg",
		250, 200,
		"AM-4", "Aston Martin Vantage Volante Press Photo",
		"Large Size (250mm x 200)", "",
		"7", "0",
		"1", 1,
		"Pieces", "2",
		"", "pd1194656223.htm",
		"", 1,
		"press 27", "0",
		 0)
	
		Entry[182] = new Element(
		182, "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", "2",
		"", "pd1630820133.htm",
		"", 1,
		"press 27", "0",
		 0)
	
		Entry[183] = new Element(
		183, "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", "2",
		"", "pd-1460795941.htm",
		"", 1,
		"press 27", "0",
		 0)
	
		Entry[184] = new Element(
		184, "assets/thumb/aston martin 2 (250x200) sm.jpg",
		250, 203,
		"AM-7", "Aston Martin Works Service Press Photo",
		"Large Size (250mm x 200mm)", "",
		"7", "0",
		"1", 1,
		"Pieces", "2",
		"", "pd-1554945151.htm",
		"", 1,
		"press 27", "0",
		 0)
	
		Entry[185] = new Element(
		185, "assets/thumb/Aston Driving Dynamics (250x200) sm.jpg",
		250, 203,
		"AM-8", "Aston Martin Driving Dynamics Press Photo",
		"large Size (250mm x 200mm)", "",
		"7", "0",
		"1", 1,
		"Pieces", "2",
		"", "pd1814241687.htm",
		"", 1,
		"press 27", "0",
		 0)
	
		Entry[186] = new Element(
		186, "assets/thumb/aston martin sm.jpg",
		250, 203,
		"AM-9", "Aston Martin Works Service Press Photo No2",
		"Large Size (250m x 200mm)", "",
		"7", "0",
		"1", 1,
		"Pieces", "2",
		"", "pd-1418764899.htm",
		"", 1,
		"press 27", "0",
		 0)
	
		Entry[187] = new Element(
		187, "assets/thumb/lotus esprit book.jpg",
		200, 227,
		"LBO-1", "Osprey Lotus Esprit Book",
		"1982, 135 Pages, Hardback with Dustjacket ", "",
		"10", "0",
		"1", 1,
		"Pieces", "59",
		"", "pd1094928432.htm",
		"", 1,
		"Mags5", "0",
		 0)
	
		Entry[188] = new Element(
		188, "assets/thumb/osprey 308 mondial book.jpg",
		200, 233,
		"FBO-1", "Osprey Ferrari 308/Mondial Book",
		"1982 135 Pages, Hardback with dustjacket", "",
		"10", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd272640478.htm",
		"", 1,
		"Mags", "0",
		 0)
	
		Entry[189] = new Element(
		189, "assets/thumb/de tomaso book.jpg",
		200, 228,
		"DBO-1", "Osprey De Tomaso Book ",
		"1982, 135 pages, Hardback with Dustjacket.", "",
		"10", "0",
		"1", 1,
		"Pieces", "19",
		"", "pd631533965.htm",
		"", 1,
		"books", "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", "8",
		"", "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", "8",
		"", "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", "8",
		"", "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", "8",
		"", "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", "8",
		"", "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", "8",
		"", "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", "8",
		"", "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", "8",
		"", "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", "8",
		"", "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", "8",
		"", "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", "8",
		"", "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", "8",
		"", "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", "8",
		"", "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", "8",
		"", "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", "8",
		"", "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", "8",
		"", "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", "8",
		"", "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", "8",
		"", "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", "8",
		"", "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", "8",
		"", "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", "8",
		"", "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", "8",
		"", "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", "8",
		"", "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", "8",
		"", "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", "8",
		"", "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", "8",
		"", "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", "8",
		"", "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", "8",
		"", "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", "8",
		"", "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", "8",
		"", "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", "8",
		"", "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", "13",
		"", "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", "13",
		"", "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", "13",
		"", "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", "13",
		"", "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", "13",
		"", "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", "13",
		"", "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", "32",
		"", "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", "32",
		"", "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", "84",
		"", "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", "84",
		"", "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", "84",
		"", "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", "84",
		"", "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", "84",
		"", "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", "32",
		"", "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", "32",
		"", "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", "32",
		"", "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", "32",
		"", "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", "24",
		"", "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", "24",
		"", "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", "24",
		"", "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", "39",
		"", "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", "39",
		"", "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", "44",
		"", "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", "44",
		"", "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", "44",
		"", "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", "50",
		"", "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", "124",
		"", "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", "124",
		"", "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", "124",
		"", "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", "124",
		"", "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", "118",
		"", "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", "118",
		"", "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", "114",
		"", "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", "114",
		"", "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", "114",
		"", "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", "114",
		"", "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", "114",
		"", "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", "55",
		"", "pd1095867051.htm",
		"", 1,
		"press55", "0",
		 0)
	
		Entry[259] = new Element(
		259, "assets/thumb/Lotus Elise 340R (250mmx195) sm.jpg",
		250, 197,
		"L-11", "Lotus Elise 340R Press Photo",
		"Large Size (250mm x 195mm)", "",
		"6", "0",
		"1", 1,
		"Pieces", "61",
		"", "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)", "",
		"6", "0",
		"1", 1,
		"Pieces", "61",
		"", "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)", "",
		"6", "0",
		"1", 1,
		"Pieces", "61",
		"", "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)", "",
		"7", "0",
		"1", 1,
		"Pieces", "61",
		"", "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)", "",
		"6", "0",
		"1", 1,
		"Pieces", "61",
		"", "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)", "",
		"6", "0",
		"1", 1,
		"Pieces", "61",
		"", "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)", "",
		"6", "0",
		"1", 1,
		"Pieces", "61",
		"", "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)", "",
		"6", "0",
		"1", 1,
		"Pieces", "61",
		"", "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)", "",
		"6", "0",
		"1", 1,
		"Pieces", "61",
		"", "pd-664775743.htm",
		"", 1,
		"Press 2", "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();
			};
		};
