	// 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="147" height="18" 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/Siena_Duomo.jpg",
		90, 125,
		"201-001-543", "Siena, Duomo",
		"Different sizes available", "Lidiarte",
		"35", "0",
		"1", 1,
		"piece(s)", "36",
		"Width x Height (in.);27.0 x 39.4@", "pd-1729064893.htm",
		"", 1,
		"201-001", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/Venice_SanMarco.jpg",
		125, 83,
		"201-13-541", "Venice, Bacino di San Marco",
		"Width x Height (in.): 39,4 x 25,7", "Lidiarte",
		"35", "0",
		"1", 1,
		"piece(s)", "36",
		"", "pd291530965.htm",
		"", 1,
		"201-001", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/Rome_BasSanPietro.jpg",
		125, 87,
		"201-13-540", "Rome, Basilica di San Pietro  (St. Peter&rsquo;s Cathedral)",
		"Width x Height (in.): 39,4 x 27", "Lidiarte",
		"35", "0",
		"1", 1,
		"piece(s)", "36",
		"", "pd1557733.htm",
		"", 1,
		"201-001", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/Siena_PavimentoDuomo.jpg",
		89, 135,
		"201-13-537", "Siena, Pavimento del Duomo",
		"Width x Height (in.): 27 x 39,4", "Lidiarte",
		"35", "0",
		"1", 1,
		"piece(s)", "36",
		"", "pd-36913721.htm",
		"", 1,
		"201-001", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/Siena_PalazzoPubblico.jpg",
		87, 125,
		"201-13-536", "Siena, Palazzo Pubblico",
		"Width x Height (in.): 27 x 39,4", "Lidiarte",
		"35", "0",
		"1", 1,
		"piece(s)", "36",
		"", "pd1480554545.htm",
		"", 1,
		"201-001", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/Siena_PiazzaCampo.jpg",
		125, 86,
		"201-13-535", "Siena, Piazza del Campo",
		"Width x Height (in.): 39,4 x 27", "Lidiarte",
		"35", "0",
		"1", 1,
		"piece(s)", "36",
		"", "pd-99805875.htm",
		"", 1,
		"201-001", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/Venice_Basilica.jpg",
		88, 125,
		"201-13-511", "Venice, Basilica di San Marco (1722)",
		"Width x Height (in.): 27 x 39,4", "Lidiarte",
		"35", "0",
		"1", 1,
		"piece(s)", "36",
		"", "pd679030539.htm",
		"", 1,
		"201-001", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/Florence_StCroce.jpg",
		89, 125,
		"201-001-376", "Florence, Santa Croce",
		"Different sizes available", "Lidiarte",
		"29", "0",
		"1", 1,
		"piece(s)", "36",
		"Width x Height (in.);23.4 x 33.1@", "pd570953069.htm",
		"", 1,
		"201-001", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/Florence_Duomo.jpg",
		90, 125,
		"201-001-363", "Florence, Duomo",
		"Different sizes available", "Lidiarte",
		"29", "0",
		"1", 1,
		"piece(s)", "36",
		"Width x Height (in.);23.4 x 33.1@", "pd-1460567833.htm",
		"", 1,
		"201-001", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/Milan_Duomo.jpg",
		90, 125,
		"201-001-361", "Milan, Duomo",
		"Different sizes available", "Lidiarte",
		"29", "0",
		"1", 1,
		"piece(s)", "36",
		"Width x Height (in.);23.4 x 33.1@", "pd-805623611.htm",
		"", 1,
		"201-001", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/Perugia_PalazzoPriori.jpg",
		90, 125,
		"201-13-359", "Perugia, Palazzo dei Priori",
		"Width x Height (in.): 23,4 x 33,1", "Lidiarte",
		"29", "0",
		"1", 1,
		"piece(s)", "36",
		"", "pd-1961519327.htm",
		"", 1,
		"201-001", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/Pisa_Campanile.jpg",
		66, 125,
		"201-13-358", "Pisa, Campanile",
		"Width x Height (in.): 18,5 x 39,4", "Lidiarte",
		"29", "0",
		"1", 1,
		"piece(s)", "36",
		"", "pd1909351039.htm",
		"", 1,
		"201-001", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/Rome_Colosseo.jpg",
		150, 72,
		"201-13-357", "Rome, Colosseo",
		"Width x Height (in.): 39,4 x 18,5", "Lidiarte",
		"29", "0",
		"1", 1,
		"piece(s)", "36",
		"", "pd-348247653.htm",
		"", 1,
		"201-001", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/Rome_VillaBorghese.jpg",
		125, 87,
		"201-13-356", "Rome, Villa Borghese",
		"Width x Height (in.): 33,1 x 23,4", "Lidiarte",
		"29", "0",
		"1", 1,
		"piece(s)", "36",
		"", "pd219873623.htm",
		"", 1,
		"201-001", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/Rome_PiazzadiSpagna.jpg",
		189, 90,
		"201-13-354", "Rome, Piazza di Spagna",
		"Width x Height (in.): 39,4 x 18,5", "Lidiarte",
		"29", "0",
		"1", 1,
		"piece(s)", "36",
		"", "pd-340448865.htm",
		"", 1,
		"201-001", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/Rome_Arco.jpg",
		90, 125,
		"201-13-353", "Rome, Arco di Constantino",
		"Width x Height (in.): 23,4 x 33,1", "Lidiarte",
		"29", "0",
		"1", 1,
		"piece(s)", "36",
		"", "pd-994617783.htm",
		"", 1,
		"201-001", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/Venice_StMaria.jpg",
		90, 125,
		"201-13-350", "Venice, Santa Maria della Salute",
		"Width x Height (in.): 23,4 x 33,1", "Lidiarte",
		"29", "0",
		"1", 1,
		"piece(s)", "36",
		"", "pd-402397169.htm",
		"", 1,
		"201-001", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/Florence_Campanile.jpg",
		42, 125,
		"201-13-347", "Florence, Campanile",
		"Width x Height (in.): 13,4 x 39,4", "Lidiarte",
		"29", "0",
		"1", 1,
		"piece(s)", "36",
		"", "pd1733442805.htm",
		"", 1,
		"201-001", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/Florence_PonteVecchio.jpg",
		233, 90,
		"201-13-345", "Florence, Ponte Vecchio",
		"Width x Height (in.): 39,4 x 14,6", "Lidiarte",
		"29", "0",
		"1", 1,
		"piece(s)", "36",
		"", "pd1328259115.htm",
		"", 1,
		"201-001", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/Florence_PalVecchio.jpg",
		90, 125,
		"201-13-344", "Florence, Palazzo Vecchio",
		"Width x Height (in.): 23,4 x 33,1", "Lidiarte",
		"29", "0",
		"1", 1,
		"piece(s)", "36",
		"", "pd82519855.htm",
		"", 1,
		"201-001", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/Orvieto_Duomo.jpg",
		90, 125,
		"201-13-329", "Orvieto, Duomo",
		"Width x Height (in.): 23,4 x 33,1", "Lidiarte",
		"29", "0",
		"1", 1,
		"piece(s)", "36",
		"", "pd-1539067781.htm",
		"", 1,
		"201-001", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/Pisa_Duomo.jpg",
		90, 125,
		"201-13-328", "Pisa, Duomo",
		"Width x Height (in.): 23,4 x 33,1", "Lidiarte",
		"29", "0",
		"1", 1,
		"piece(s)", "36",
		"", "pd1165728809.htm",
		"", 1,
		"201-001", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/Venice_scuolaSanMarco.jpg",
		91, 125,
		"201-13-326", "Venice, Scuola di San Marco",
		"Width x Height (in.): 23,4 x 33,1", "Lidiarte",
		"29", "0",
		"1", 1,
		"piece(s)", "36",
		"", "pd1630973139.htm",
		"", 1,
		"201-001", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/Florence_MariaNovella.jpg",
		91, 125,
		"201-13-317", "Florence, Santa Maria Novella",
		"Width x Height (in.): 23,4 x 33,1", "",
		"29", "0",
		"1", 1,
		"piece(s)", "36",
		"", "pd836924285.htm",
		"", 1,
		"201-001", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/Florence_San Miniato.jpg",
		91, 125,
		"201-13-316", "Florence, San Miniato",
		"Width x Height (in.): 23,4 x 33,1", "",
		"29", "0",
		"1", 1,
		"piece(s)", "36",
		"", "pd-630728205.htm",
		"", 1,
		"201-001", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/Florence_SanGiovanni.jpg",
		90, 125,
		"201-13-315", "Florence, Battistero di San Giovanni",
		"Width x Height (in.): 23,4 x 33,1", "",
		"29", "0",
		"1", 1,
		"piece(s)", "36",
		"", "pd354729305.htm",
		"", 1,
		"201-001", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/Florence_ChieseFirenze.jpg",
		88, 125,
		"201-13-107", "Florence, Chiese di Firenze (churches of Florence)",
		"Width x Height (in.): 23,4 x 33,1", "",
		"26", "0",
		"1", 1,
		"piece(s)", "36",
		"", "pd1836568145.htm",
		"", 1,
		"201-001", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/Rome_ChieseRoma.jpg",
		88, 125,
		"201-13-105", "Rome, Chiese di Roma (churches of Rome)",
		"Width x Height (in.): 23,4 x 33,1", "",
		"26", "0",
		"1", 1,
		"piece(s)", "36",
		"", "pd1424016739.htm",
		"", 1,
		"201-001", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/Berlin_Brandenburgtor.jpg",
		125, 86,
		"201-13-215", "Berlin, Brandenburger Tor (Brandenburg Gate)",
		"Width x Height (in.): 27 x 19,6", "Lidiarte",
		"27", "0",
		"1", 1,
		"piece(s)", "37",
		"", "pd2035642291.htm",
		"", 1,
		"201-002", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/Dresden_Semperoper.jpg",
		125, 88,
		"201-002-342", "Dresden, Semper Opera House",
		"Different sizes available", "Lidiarte",
		"29", "0",
		"1", 1,
		"piece(s)", "37",
		"Width x Height (in.);33.1 x 23.4@", "pd-1008407897.htm",
		"", 1,
		"201-002", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/Berlin_Reichstag.jpg",
		185, 90,
		"201-002-222", "Berlin, Reichstag",
		"Different sizes available", "Lidiarte",
		"27", "0",
		"1", 1,
		"piece(s)", "37",
		"Width x Height (in.);27.0 x 19.6@", "pd-1597269777.htm",
		"", 1,
		"201-002", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/Berlin1853_UnterLinden.jpg",
		125, 87,
		"201-13-302", "Berlin, Friedrichsforum Unter den Linden (1853)",
		"Width x Height (in.): 39,4 x 27", "Lidiarte",
		"35", "0",
		"1", 1,
		"piece(s)", "37",
		"", "pd-2111092455.htm",
		"", 1,
		"201-002", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/Dresden_Zwinger.jpg",
		90, 125,
		"201-13-332", "Dresden, Zwinger",
		"Width x Height (in.): 23,4 x 33,1", "Lidiarte",
		"29", "0",
		"1", 1,
		"piece(s)", "37",
		"", "pd398765547.htm",
		"", 1,
		"201-002", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/Dresden_Frauenkirche.jpg",
		90, 125,
		"201-13-539", "Dresden, Frauenkirche",
		"Width x Height (in.): 27 x 39,4", "Lidiarte",
		"35", "0",
		"1", 1,
		"piece(s)", "37",
		"", "pd855020049.htm",
		"", 1,
		"201-002", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/Cologne_Cathedral.jpg",
		90, 125,
		"201-13-545", "Cologne, Cathedral",
		"Width x Height (in.): 27 x 39,4", "Lidiarte",
		"35", "0",
		"1", 1,
		"piece(s)", "37",
		"", "pd-1420260051.htm",
		"", 1,
		"201-002", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/Brussels_GrandPlace.jpg",
		90, 125,
		"201-13-373", "Brussels, Grand Place",
		"Width x Height (in.): 23,4 x 33,1", "Lidiarte",
		"29", "0",
		"1", 1,
		"piece(s)", "38",
		"", "pd-2075307511.htm",
		"", 1,
		"201-003", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/Brussels_MaisonRoi.jpg",
		89, 125,
		"201-003-372", "Brussels, Maison du Roi",
		"Different sizes available", "Lidiarte",
		"29", "0",
		"1", 1,
		"piece(s)", "38",
		"Width x Height (in.);23.4 x 33.1@", "pd-1670214817.htm",
		"", 1,
		"201-003", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/Alphabet.jpg",
		89, 125,
		"201-13-202", "J. D. Steingruber, Alphabet (1773)",
		"Width x Height (in.): 23,4 x 33,1", "Lidiarte",
		"27", "0",
		"1", 1,
		"piece(s)", "39",
		"", "pd1888820209.htm",
		"", 1,
		"201-050", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/Perrault1683_CinqOrdres.jpg",
		88, 125,
		"201-13-210", "C. Perrault, Les cinq ordres d&rsquo;architecture (1683)",
		"Width x Height (in.): 23,4 x 33,1", "Lidiarte",
		"27", "0",
		"1", 1,
		"piece(s)", "39",
		"", "pd-179954485.htm",
		"", 1,
		"201-050", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/PalazzoPitti.jpg",
		125, 86,
		"201-13-217", "Giusto Utens, Palazzo Pitti",
		"Width x Height (in.): 27 x 19,6", "Lidiarte",
		"27", "0",
		"1", 1,
		"piece(s)", "39",
		"", "pd1006379667.htm",
		"", 1,
		"201-050", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/VillaPetraia.jpg",
		125, 85,
		"201-13-218", "Giusto Utens, Villa della Petraia",
		"Width x Height (in.): 27 x 19,6", "Lidiarte",
		"27", "0",
		"1", 1,
		"piece(s)", "39",
		"", "pd704689913.htm",
		"", 1,
		"201-050", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/Citta_Ideale.jpg",
		145, 48,
		"201-13-312", "La Cittą Ideale",
		"Width x Height (in.): 39,4 x 14,6", "Lidiarte",
		"29", "0",
		"1", 1,
		"piece(s)", "39",
		"", "pd-2113007467.htm",
		"", 1,
		"201-050", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/VilleMedicee.jpg",
		98, 125,
		"201-13-513", "Giusto Utens, Ville Medicee",
		"Width x Height (in.): 27 x 35,4", "Lidiarte",
		"35", "0",
		"1", 1,
		"piece(s)", "39",
		"", "pd1520841501.htm",
		"", 1,
		"201-050", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/VeduteCittaIdeale.jpg",
		90, 125,
		"201-13-515", "Vedute della Cittą Ideale",
		"Width x Height (in.): 27 x 39,4", "Lidiarte",
		"35", "0",
		"1", 1,
		"piece(s)", "39",
		"", "pd200948175.htm",
		"", 1,
		"201-050", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/Venice_CaFoscari.jpg",
		90, 125,
		"201-13-325", "Venice, Ca Foscari",
		"Width x Height (in.): 23,4 x 33,1", "Lidiarte",
		"29", "0",
		"1", 1,
		"piece(s)", "36",
		"", "pd1507806009.htm",
		"", 1,
		"201-001", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/Venice_CadOro.jpg",
		90, 125,
		"201-13-318", "Venice, Ca d&rsquo;Oro",
		"Width x Height (in.): 23,4 x 33,1", "",
		"29", "0",
		"1", 1,
		"piece(s)", "36",
		"", "pd-1687076003.htm",
		"", 1,
		"201-001", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/150.jpg",
		125, 125,
		"203-08-150", "Tall Carafe",
		"Height (in.): 10,8", "CCAA",
		"219", "0",
		"1", 1,
		"piece(s)", "41",
		"", "pd127402292.htm",
		"", 1,
		"203-001", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/155.jpg",
		125, 125,
		"203-08-155", "Squared bottle",
		"Height (in.): 6,7", "CCAA",
		"129", "0",
		"1", 1,
		"piece(s)", "41",
		"", "pd356194946.htm",
		"", 1,
		"203-001", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/158.jpg",
		125, 125,
		"203-08-158", "Aryballos (bath bottle)",
		"Height (in.): 5,5", "CCAA",
		"229", "0",
		"1", 1,
		"piece(s)", "41",
		"", "pd1064651904.htm",
		"", 1,
		"203-001", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/201.jpg",
		125, 125,
		"203-08-201", "Spherical bottle",
		"Height (in.): 6,7", "CCAA",
		"239", "0",
		"1", 1,
		"piece(s)", "41",
		"", "pd-1445394770.htm",
		"", 1,
		"203-001", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/207.jpg",
		125, 125,
		"203-08-207", "Hexagonal Carafe",
		"Height (in.): 6,7", "CCAA",
		"229", "0",
		"1", 1,
		"piece(s)", "41",
		"", "pd-1819523956.htm",
		"", 1,
		"203-001", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/208.jpg",
		125, 125,
		"203-08-208", "Squared Carafe",
		"Height (in.): 9,6", "CCAA",
		"239", "0",
		"1", 1,
		"piece(s)", "41",
		"", "pd-1708954214.htm",
		"", 1,
		"203-001", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/213.jpg",
		125, 125,
		"203-08-213", "Carafe",
		"Height (in.): 5,9", "CCAA",
		"219", "0",
		"1", 1,
		"piece(s)", "41",
		"", "pd662123864.htm",
		"", 1,
		"203-001", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/220.jpg",
		125, 125,
		"203-08-220", "Carafe",
		"Height (in.): 9,4", "CCAA",
		"199", "0",
		"1", 1,
		"piece(s)", "41",
		"", "pd-1897039034.htm",
		"", 1,
		"203-001", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/222.jpg",
		125, 125,
		"203-08-222", "Carafe with two handles",
		"Height (in.): 8,9", "CCAA",
		"289", "0",
		"1", 1,
		"piece(s)", "41",
		"", "pd-747820316.htm",
		"", 1,
		"203-001", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/264.JPG",
		125, 125,
		"203-08-264", "Dotted beaker",
		"Height (in.): 3,9", "CCAA",
		"159", "0",
		"1", 1,
		"piece(s)", "41",
		"", "pd-846335696.htm",
		"", 1,
		"203-001", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/278.jpg",
		125, 125,
		"203-08-278", "Tall beaker",
		"Height (in.): 4,8", "CCAA",
		"89", "0",
		"1", 1,
		"piece(s)", "41",
		"", "pd-2012284194.htm",
		"", 1,
		"203-001", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/708.jpg",
		125, 125,
		"203-08-708", "Spherical bottle",
		"Height (in.): 7,1", "CCAA",
		"149", "0",
		"1", 1,
		"piece(s)", "42",
		"", "pd-538045380.htm",
		"", 1,
		"203-002", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/713.jpg",
		125, 125,
		"203-08-713", "Tall Carafe",
		"Height (in.): 11", "CCAA",
		"289", "0",
		"1", 1,
		"piece(s)", "42",
		"", "pd101876938.htm",
		"", 1,
		"203-002", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/921.jpg",
		125, 125,
		"203-08-921", "Carafe",
		"Height (in.): 8,1", "CCAA",
		"219", "0",
		"1", 1,
		"piece(s)", "43",
		"", "pd-167114526.htm",
		"", 1,
		"203-003", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/912.jpg",
		125, 125,
		"203-08-912", "Squared bottle",
		"Height (in.): 7,9", "CCAA",
		"239", "0",
		"1", 1,
		"piece(s)", "43",
		"", "pd-1400511114.htm",
		"", 1,
		"203-003", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/907.JPG",
		125, 125,
		"203-08-907", "Double handled bowl",
		"Height (in.): 4,5", "CCAA",
		"199", "0",
		"1", 1,
		"piece(s)", "43",
		"", "pd2002968584.htm",
		"", 1,
		"203-003", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/412.jpg",
		125, 125,
		"203-08-412", "Little Carafe",
		"Height (in.): 6,7", "CCAA",
		"219", "0",
		"1", 1,
		"piece(s)", "44",
		"", "pd2091606496.htm",
		"", 1,
		"203-004", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/414.jpg",
		125, 125,
		"203-08-414", "Squared bottle",
		"Height (in.): 5,7", "CCAA",
		"219", "0",
		"1", 1,
		"piece(s)", "44",
		"", "pd612801294.htm",
		"", 1,
		"203-004", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/416.jpg",
		125, 125,
		"203-08-416", "Spherical bottle",
		"Height (in.): 6,9", "CCAA",
		"139", "0",
		"1", 1,
		"piece(s)", "44",
		"", "pd-2120650772.htm",
		"", 1,
		"203-004", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/421.jpg",
		125, 125,
		"203-08-421", "Carafe",
		"Height (in.): 5,5", "CCAA",
		"209", "0",
		"1", 1,
		"piece(s)", "44",
		"", "pd-1189738502.htm",
		"", 1,
		"203-004", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/SR_01.jpg",
		125, 94,
		"205-11-SR01", "Tall straight vase",
		"Height x Width (in.): 7.5 x 3.1", "Phoenician Glassblowers",
		"124", "0",
		"1", 1,
		"piece(s)", "47",
		"", "pd-743396435.htm",
		"", 1,
		"205-001", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/SR_02.jpg",
		125, 94,
		"205-11-SR02", "Slim vase",
		"Height x Width (in.): 8.3 x 2.4", "Phoenician Glassblowers",
		"119", "0",
		"1", 1,
		"piece(s)", "47",
		"", "pd11242915.htm",
		"", 1,
		"205-001", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/SR_04.jpg",
		125, 101,
		"205-11-SR04", "Small round vase",
		"Height x Width (in.): 3.5 x 3.1", "Phoenician Glassblowers",
		"109", "0",
		"1", 1,
		"piece(s)", "47",
		"", "pd1826117769.htm",
		"", 1,
		"205-001", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/SR_05.jpg",
		125, 101,
		"205-11-SR05", "Round scent bottle",
		"Height x Width (in.): 4.3 x 2.8", "Phoenician Glassblowers",
		"114", "0",
		"1", 1,
		"piece(s)", "47",
		"", "pd-71371297.htm",
		"", 1,
		"205-001", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/WindspielXXL_5420.jpg",
		85, 125,
		"211-01-5420", "Wind chime XXL &quot;Circle&quot;, aluminum/glass",
		"Length x Width (in.):  appr. 15,7 x 11,4", "Raeder",
		"49", "0",
		"1", 1,
		"piece(s)", "62",
		"", "pd-1793814001.htm",
		"", 1,
		"211", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/WindspielXXL_5421.jpg",
		85, 125,
		"211-01-5421", "Wind chime XXL &quot;Heart&quot;, aluminum/glass",
		"Length x Width (in.):  appr. 15,7 x 11,4", "Raeder",
		"49", "0",
		"1", 1,
		"piece(s)", "62",
		"", "pd1682514645.htm",
		"", 1,
		"211", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/Summertwist_5776.jpg",
		47, 125,
		"211-01-5776", "Wind spiral &quot;Summertwist Heart&quot;, hanging, metal/glass",
		"Length (in.): appr. 8,3", "Raeder",
		"36", "0",
		"1", 1,
		"piece(s)", "62",
		"", "pd1127774475.htm",
		"", 1,
		"211", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/Summertwist_5777.jpg",
		48, 125,
		"211-01-5777", "Wind spiral &quot;Summertwist Fish&quot;, hanging, metal/glass",
		"Length (in.): appr. 8,3", "Raeder",
		"36", "0",
		"1", 1,
		"piece(s)", "62",
		"", "pd-688401871.htm",
		"", 1,
		"211", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/Summertwist_5779st.jpg",
		61, 125,
		"211-01-5779", "Wind spiral &quot;Summertwist Heart&quot;, on stick, metal/glass",
		"Length (in.): appr. 39,4", "Raeder",
		"42", "0",
		"1", 1,
		"piece(s)", "62",
		"", "pd-1822119993.htm",
		"", 1,
		"211", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/Summertwist_5780st.jpg",
		61, 125,
		"211-01-5780", "Wind spiral &quot;Summertwist Fish&quot;, on stick, metal/glass",
		"Length (in.): appr. 39,4", "Raeder",
		"42", "0",
		"1", 1,
		"piece(s)", "62",
		"", "pd-573632691.htm",
		"", 1,
		"211", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/Windesbraut_3741.jpg",
		74, 125,
		"204-01-3741", "Candlestick &quot;Bride of the Winds&quot;, metal",
		"Height (in.): appr. 18,1", "Raeder",
		"139", "0",
		"1", 1,
		"piece(s)", "45",
		"", "pd1122147201.htm",
		"", 1,
		"204", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/Flora_4449.jpg",
		56, 125,
		"208-01-4449", "Metal Objekt &quot;Flora&quot;",
		"Height (in.): appr. 18,1", "Raeder",
		"139", "0",
		"1", 1,
		"piece(s)", "59",
		"", "pd618123671.htm",
		"", 1,
		"208-002", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/Folia_4450.jpg",
		104, 125,
		"208-01-4450", "Metal Objekt &quot;Folia&quot;",
		"Height (in.): appr. 18,1", "Raeder",
		"139", "0",
		"1", 1,
		"piece(s)", "59",
		"", "pd-1074557539.htm",
		"", 1,
		"208-002", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/Nike_4451.jpg",
		112, 125,
		"208-01-4451", "Metal Objekt &quot;Nike&quot;",
		"Height (in.): appr. 18,1", "Raeder",
		"139", "0",
		"1", 1,
		"piece(s)", "59",
		"", "pd-2002583277.htm",
		"", 1,
		"208-002", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/engel_stehend_86646.jpg",
		58, 125,
		"208-01-86646", "Guardian Angel, standing, mirror glass",
		"Height (in.): appr. 10,2", "Raeder",
		"39", "0",
		"1", 1,
		"piece(s)", "59",
		"", "pd925677945.htm",
		"", 1,
		"208-002", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/Mann_5657.jpg",
		59, 125,
		"208-01-5657", "Colored Man, Plexiglass",
		"Height (in.): appr. 19,7", "Raeder",
		"89", "0",
		"1", 1,
		"piece(s)", "59",
		"", "pd-1321205681.htm",
		"", 1,
		"208-002", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/schutzengel_86786.jpg",
		74, 125,
		"901-01-86786", "Guardian Angel, dotted, shiny, hanging",
		"Height (in.): appr. 3,5", "Raeder",
		"14", "0",
		"1", 1,
		"piece(s)", "78",
		"", "pd1066613525.htm",
		"", 1,
		"901", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/schutzengel_86790.jpg",
		77, 125,
		"901-01-86790", "Guardian Angel, rain, shiny, hanging",
		"Height (in.): appr. 3,5", "Raeder",
		"14", "0",
		"1", 1,
		"piece(s)", "78",
		"", "pd1244220235.htm",
		"", 1,
		"901", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/Set_S_Homerun.jpg",
		125, 125,
		"100-00-99901", "3-piece SNOOPY breakfast set &quot;Homerun&quot;",
		"Breakfast porcelain set with Snoopy", "Best of Snoopy",
		"74.7", "0",
		"1", 1,
		"Set", "1",
		"", "pd635223552.htm",
		"", 1,
		"01", "10",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/Set_S_Dots.jpg",
		125, 125,
		"100-00-99902", "3-piece SNOOPY breakfast set &quot;Lots of Dots&quot;",
		"Breakfast porcelain set with Snoopy", "Best of Snoopy",
		"74.7", "0",
		"1", 1,
		"Set", "1",
		"", "pd678283045.htm",
		"", 1,
		"01", "10",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/Set_M_PopStar.jpg",
		125, 125,
		"100-00-99903", "3-piece MICKEY breakfast set &quot;Pop Star&quot;",
		"Breakfast porcelain set with Mickey Mouse", "Best of Mickey",
		"74.7", "0",
		"1", 1,
		"Set", "1",
		"", "pd424246190.htm",
		"", 1,
		"01", "10",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/mug_collection_S.jpg",
		125, 125,
		"100-00-99907", "&quot;SNOOPY&rsquo;s Mug Collection&quot;",
		"Set of 4 porcelain mugs with Snoopy, assorted", "Best of Snoopy",
		"99.6", "0",
		"1", 1,
		"Set", "2",
		"", "pd-315144220.htm",
		"", 1,
		"02", "15",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/mug_collection_M.jpg",
		125, 125,
		"100-00-99908", "&quot;MICKEY&rsquo;s Mug Collection&quot;",
		"Set of 4 porcelain mugs with Mickey Mouse, assorted", "Best of Mickey",
		"99.6", "0",
		"1", 1,
		"Set", "2",
		"", "pd-1478274026.htm",
		"", 1,
		"02", "15",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/Pope_2005.jpg",
		125, 125,
		"100-00-99904", "&quot;Acknowlegment of the Pope 2005&quot;",
		"Set of architectural print of St. Peter&rsquo;s Cathedral and Guardian Angel figure", "",
		"74", "0",
		"1", 1,
		"piece(s)", "2",
		"", "pd1018202027.htm",
		"", 1,
		"02", "15",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/visit_to_cologne.jpg",
		125, 125,
		"100-00-99905", "&quot;Visit to Cologne, Germany&quot;",
		"Set of architectural print of Cologne Cathedral and replica of Roman squared carafe", "",
		"274", "0",
		"1", 1,
		"piece(s)", "2",
		"", "pd-1738081252.htm",
		"", 1,
		"02", "15",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/summer_hearts.jpg",
		125, 125,
		"100-00-99906", "&quot;Summer Hearts&quot;",
		"Set of wind spiral on stick and assorted glass Flower Power Hearts", "Raeder",
		"60", "0",
		"1", 1,
		"piece(s)", "1",
		"", "pd372537801.htm",
		"", 1,
		"01", "10",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/Kerzenleuchter_05836.jpg",
		74, 125,
		"204-09-05836-1", "Candlestick &quot;Albero&quot;, porcelain, set of 2 pcs.",
		"H: 9,1 in.", "ArtDecor",
		"44", "0",
		"1", 1,
		"Set", "78",
		"", "pd-1917746963.htm",
		"", 1,
		"901", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/Kerzenleuchter_38809.jpg",
		118, 125,
		"204-09-38809-1", "Candlestick &quot;Quadro&quot;, silverplated, set of 2 pcs.",
		"H: 5,5 in.", "ArtDecor",
		"84", "0",
		"1", 1,
		"Set", "83",
		"", "pd1308295625.htm",
		"", 1,
		"907", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/Vase_05835.jpg",
		125, 125,
		"210-09-05835-1", "Vase &quot;Albero&quot;, porcelain",
		"Ų: 7,9 x H: 10,2 in.", "ArtDecor",
		"49", "0",
		"1", 1,
		"piece(s)", "78",
		"", "pd-336840421.htm",
		"", 1,
		"901", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/Fly_agaric.jpg",
		100, 125,
		"208-05-6482000300-1", "Glass mushroom: fly agaric",
		"Appr. Height (in.): 3,9", "von Poschinger",
		"35", "0",
		"1", 1,
		"piece(s)", "78",
		"", "pd-48246591.htm",
		"", 1,
		"901", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/Windlicht_30890.jpg",
		118, 125,
		"204-09-30890-1", "Storm lantern &quot;Mori&quot;",
		"L x W: 10,6 in.", "ArtDecor",
		"145", "0",
		"1", 1,
		"piece(s)", "80",
		"", "pd1770349795.htm",
		"", 1,
		"903", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/Flowerpot_31249.jpg",
		125, 93,
		"210-09-31249-1", "Flowerpot holder &quot;Leone&quot;, brass antique",
		"H: 8,3 in.", "ArtDecor",
		"74", "0",
		"1", 1,
		"piece(s)", "79",
		"", "pd291422495.htm",
		"", 1,
		"902", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/thumb/Ovalpot_05345.jpg",
		125, 61,
		"210-09-05345-1", "Oval flowerpot &quot;Aline&quot;, porcelain",
		"L x W: 13,8 x 8,3 in.", "ArtDecor",
		"64", "0",
		"1", 1,
		"piece(s)", "79",
		"", "pd-825677723.htm",
		"", 1,
		"902", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/Statuen_30605.jpg",
		125, 78,
		"208-09-30605-1", "Statues &quot;Nanjing&quot;, assorted, bronze, set of 2 pcs.",
		"L x W x H: 5,9 x 4,5 x 5,5 in.", "ArtDecor",
		"99", "0",
		"1", 1,
		"piece(s)", "79",
		"", "pd-1611244392.htm",
		"", 1,
		"902", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/thumb/Mann_5657.jpg",
		59, 125,
		"208-01-5657-1", "Colored Man, Plexiglass",
		"Height (in.): appr. 19,7", "Raeder",
		"89", "0",
		"1", 1,
		"piece(s)", "79",
		"", "pd-2089421690.htm",
		"", 1,
		"902", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/engel_stehend_86646.jpg",
		58, 125,
		"208-01-86646-1", "Guardian Angel, standing, mirror glass",
		"Height (in.): appr. 10,2", "Raeder",
		"39", "0",
		"1", 1,
		"piece(s)", "78",
		"", "pd405227044.htm",
		"", 1,
		"901", "0",
		 0)
	
		Entry[102] = new Element(
		102, "assets/thumb/Schale_05628.jpg",
		113, 125,
		"208-09-05628-1", "Tray &quot;Angeli&quot; nero, porcelain",
		"L x W x H: 8,7 x 4,3 x 11 in.", "ArtDecor",
		"177", "0",
		"1", 1,
		"piece(s)", "80",
		"", "pd1048684786.htm",
		"", 1,
		"903", "0",
		 0)
	
		Entry[103] = new Element(
		103, "assets/thumb/Buchstuetzen_32531.jpg",
		125, 114,
		"208-09-32531-1", "1 Pair of Bookends &quot;Horse&quot;, tobacco",
		"L x W x H: 7,5 x 3,1 x 5,5 in.", "ArtDecor",
		"94", "0",
		"1", 1,
		"piece(s)", "79",
		"", "pd1002061936.htm",
		"", 1,
		"902", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/Haubentaucher_05545.jpg",
		120, 125,
		"208-002-05535", "Crested grebe &quot;Blue/Oro&quot;, porcelain",
		"Different sizes available", "ArtDecor",
		"64", "0",
		"1", 1,
		"piece(s)", "79",
		"Total length (in.);7.9@", "pd-1866999940.htm",
		"", 1,
		"902", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/WindspielXXL_5420.jpg",
		85, 125,
		"211-01-5420-1", "Wind chime XXL &quot;Circle&quot;, aluminum/glass",
		"Length x Width (in.):  appr. 15,7 x 11,4", "Raeder",
		"49", "0",
		"1", 1,
		"piece(s)", "78",
		"", "pd-857329994.htm",
		"", 1,
		"901", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/thumb/WindspielXXL_5421.jpg",
		85, 125,
		"211-01-5421-1", "Wind chime XXL &quot;Heart&quot;, aluminum/glass",
		"Length x Width (in.):  appr. 15,7 x 11,4", "Raeder",
		"49", "0",
		"1", 1,
		"piece(s)", "78",
		"", "pd1621412820.htm",
		"", 1,
		"901", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/Arte_horn.jpg",
		71, 125,
		"206-05-6091500810-2", "Artemis - Drinking horn with engraved deer and pewter lid D",
		"Appr. Capacity (oz): 30", "von Poschinger",
		"189.95", "0",
		"1", 1,
		"piece(s)", "84",
		"", "pd144245024.htm",
		"", 1,
		"908", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/Hal_mug030.jpg",
		104, 125,
		"206-003-5655529030", "Halali - Beer mug with green handle / optional engraving / without pewter lid",
		"Appr. Capacity (oz): 9", "von Poschinger",
		"47.5", "0",
		"1", 1,
		"piece(s)", "82",
		"Engraving;rabbit@", "pd486689870.htm",
		"", 1,
		"906", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/11062.jpg",
		125, 125,
		"301-02-110629-1", "Egypt",
		"Diam. (in.): 8,7", "Puzzleball",
		"47.9", "0",
		"1", 1,
		"piece(s)", "78",
		"", "pd1664590978.htm",
		"", 1,
		"901", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/thumb/17408.jpg",
		125, 83,
		"301-03-174089-1", "Michelangelo: Creation of Adam",
		"Width / Height. (in.): 60,2 / 39,8", "Ravensburger",
		"79", "0",
		"1", 1,
		"piece(s)", "79",
		"", "pd-1330846080.htm",
		"", 1,
		"902", "0",
		 0)
	
		Entry[111] = new Element(
		111, "assets/thumb/65_437.jpg",
		125, 125,
		"105-04-65437-1", "Mug - butterfly white",
		"Height / Diam. (in.): 4,1 / 2,8", "Design House",
		"12.9", "0",
		"1", 1,
		"piece(s)", "78",
		"", "pd-889048914.htm",
		"", 2,
		"901", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/65_527.jpg",
		125, 125,
		"105-04-65527-1", "Mug - daisy blue",
		"Height / Diam. (in.): 4,1 / 2,8", "Design House",
		"12.9", "0",
		"1", 1,
		"piece(s)", "78",
		"", "pd-545048678.htm",
		"", 2,
		"901", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/thumb/Mug_S_PinkLove.jpg",
		125, 108,
		"401-06-0103953-1", "Mug",
		"Appr. Capacity (oz): 9", "Best of Snoopy",
		"24.9", "0",
		"1", 1,
		"piece(s)", "78",
		"", "pd-1104288442.htm",
		"", 1,
		"901", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/thumb/Esp_S_PinkLove.jpg",
		125, 86,
		"401-06-0103965-1", "Espresso Set",
		"Appr. Capacity (oz): 3", "Best of Snoopy",
		"26.9", "0",
		"1", 1,
		"piece(s)", "78",
		"", "pd-83122972.htm",
		"", 1,
		"901", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/thumb/Mug_M_Cocolat.jpg",
		125, 108,
		"501-07-0103936-1", "Mug",
		"Appr. Capacity (oz): 9", "Best of Mickey",
		"24.9", "0",
		"1", 1,
		"piece(s)", "78",
		"", "pd-975697104.htm",
		"", 1,
		"901", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/thumb/Esp_M_Cocolat.jpg",
		125, 86,
		"501-07-0103948-1", "Espresso Set",
		"Appr. Capacity (oz): 3", "Best of Mickey",
		"26.9", "0",
		"1", 1,
		"piece(s)", "78",
		"", "pd9348318.htm",
		"", 1,
		"901", "0",
		 0)
	
		Entry[117] = new Element(
		117, "assets/thumb/Bowl_M_PurpleLife.jpg",
		125, 94,
		"501-07-0103944-1", "Bowl",
		"Appr. Capacity (oz): 12", "Best of Mickey",
		"24.9", "0",
		"1", 1,
		"piece(s)", "78",
		"", "pd-941765060.htm",
		"", 1,
		"901", "0",
		 0)
	
		Entry[118] = new Element(
		118, "assets/thumb/Bowl_S_Homerun.jpg",
		125, 94,
		"401-06-0103964-1", "Bowl",
		"Appr. Capacity (oz): 12", "Best of Snoopy",
		"24.9", "0",
		"1", 1,
		"piece(s)", "78",
		"", "pd62347924.htm",
		"", 1,
		"901", "0",
		 0)
	
		Entry[119] = new Element(
		119, "assets/thumb/Mug_S_Homerun.jpg",
		125, 108,
		"401-06-0103958-2", "Mug",
		"Appr. Capacity (oz): 9", "Best of Snoopy",
		"24.9", "0",
		"1", 1,
		"piece(s)", "82",
		"", "pd-207094816.htm",
		"", 1,
		"906", "0",
		 0)
	
		Entry[120] = new Element(
		120, "assets/thumb/Bowl_S_Homerun.jpg",
		125, 94,
		"401-06-0103964-2", "Bowl",
		"Appr. Capacity (oz): 12", "Best of Snoopy",
		"24.9", "0",
		"1", 1,
		"piece(s)", "82",
		"", "pd888980750.htm",
		"", 1,
		"906", "0",
		 0)
	
		Entry[121] = new Element(
		121, "assets/thumb/Egg_Salt_S_Homerun.jpg",
		124, 125,
		"401-06-0106882-2", "Eggcup with Salt-shaker",
		"", "Best of Snoopy",
		"22.9", "0",
		"1", 1,
		"piece(s)", "82",
		"", "pd1281599980.htm",
		"", 1,
		"906", "0",
		 0)
	
		Entry[122] = new Element(
		122, "assets/thumb/Kerzenleuchter_32479.jpg",
		125, 112,
		"204-09-32479-1", "Candlestick &quot;Mignon&quot; nero antique, set of 2 pcs.",
		"H: 5,9 in.", "ArtDecor",
		"38", "0",
		"1", 1,
		"Set", "82",
		"", "pd-460140038.htm",
		"", 1,
		"906", "0",
		 0)
	
		Entry[123] = new Element(
		123, "assets/thumb/Mug_M_PopStar.jpg",
		125, 108,
		"501-07-0103939-1", "Mug",
		"Appr. Capacity (oz): 9", "Best of Mickey",
		"24.9", "0",
		"1", 1,
		"piece(s)", "82",
		"", "pd1004463526.htm",
		"", 1,
		"906", "0",
		 0)
	
		Entry[124] = new Element(
		124, "assets/thumb/Bowl_M_PopStar.jpg",
		125, 94,
		"501-07-0103945-1", "Bowl",
		"Appr. Capacity (oz): 12", "Best of Mickey",
		"24.9", "0",
		"1", 1,
		"piece(s)", "82",
		"", "pd-1610998716.htm",
		"", 1,
		"906", "0",
		 0)
	
		Entry[125] = new Element(
		125, "assets/thumb/BigFive.jpg",
		115, 125,
		"208-05-6494117207-1", "Vase, light green with 5 engraved African animals",
		"Appr. Height (in.): 8,1", "von Poschinger",
		"250", "0",
		"1", 1,
		"piece(s)", "84",
		"", "pd935652370.htm",
		"", 1,
		"908", "0",
		 0)
	
		Entry[126] = new Element(
		126, "assets/thumb/Loewen_31532.jpg",
		125, 73,
		"208-09-31532-1", "1 Pair of Lions &quot;Lion&quot; on base, brass",
		"L x W x H: 8,7 x 3,5 x 4,3 in.", "ArtDecor",
		"145", "0",
		"1", 1,
		"Set", "84",
		"", "pd-1997031280.htm",
		"", 1,
		"908", "0",
		 0)
	
		Entry[127] = new Element(
		127, "assets/thumb/Tuerstopper_33030.jpg",
		103, 125,
		"208-09-33030-1", "Doorstop &quot;Hippo&quot;, brass, bronze-colored",
		"L x H: 10,6 x 16,5 in.", "ArtDecor",
		"124", "0",
		"1", 1,
		"piece(s)", "84",
		"", "pd-2027333816.htm",
		"", 1,
		"908", "0",
		 0)
	
		Entry[128] = new Element(
		128, "assets/thumb/Hal_030_lid.jpg",
		82, 125,
		"206-003-5655529830", "Halali - Beer mug with green handle / optional engraving / pewter lid L",
		"Appr. Capacity (oz): 9", "von Poschinger",
		"68.9", "0",
		"1", 1,
		"piece(s)", "83",
		"Engraving;ducks@", "pd101420496.htm",
		"", 1,
		"907", "0",
		 0)
	
		Entry[129] = new Element(
		129, "assets/thumb/Buchstuetzen_32531.jpg",
		125, 114,
		"208-09-32531-2", "1 Pair of Bookends &quot;Horse&quot;, tobacco",
		"L x W x H: 7,5 x 3,1 x 5,5 in.", "ArtDecor",
		"94", "0",
		"1", 1,
		"piece(s)", "83",
		"", "pd-1045898210.htm",
		"", 1,
		"907", "0",
		 0)
	
		Entry[130] = new Element(
		130, "assets/thumb/912.jpg",
		125, 125,
		"203-08-912-1", "Squared bottle",
		"Height (in.): 7,9", "CCAA",
		"239", "0",
		"1", 1,
		"piece(s)", "84",
		"", "pd1767587949.htm",
		"", 1,
		"908", "0",
		 0)
	
		Entry[131] = new Element(
		131, "assets/thumb/Marmorherz_5354.jpg",
		125, 114,
		"202-01-5354-1", "Marble heart, colorful with horizontal stripes",
		"Length x Width (in.):  appr. 3,9 x 3,9", "Raeder",
		"26", "0",
		"1", 1,
		"piece(s)", "82",
		"", "pd-541913344.htm",
		"", 1,
		"906", "0",
		 0)
	
		Entry[132] = new Element(
		132, "assets/thumb/metallherz_5729.jpg",
		125, 122,
		"202-01-5729-1", "Heart, &quot;Love&quot;, metal",
		"Length x Width (in.):  appr. 3,5 x 3,5", "Raeder",
		"16", "0",
		"1", 1,
		"piece(s)", "82",
		"", "pd-410612434.htm",
		"", 1,
		"906", "0",
		 0)
	
		Entry[133] = new Element(
		133, "assets/thumb/Folia_4450.jpg",
		104, 125,
		"208-01-4450-1", "Metal Objekt &quot;Folia&quot;",
		"Height (in.): appr. 18,1", "Raeder",
		"139", "0",
		"1", 1,
		"piece(s)", "84",
		"", "pd113192716.htm",
		"", 1,
		"908", "0",
		 0)
	
		Entry[134] = new Element(
		134, "assets/thumb/ST_02.jpg",
		125, 94,
		"205-11-ST02", "Flared barrel vase",
		"Height x Width (in.): 7.5 x 3.5", "Phoenician Glassblowers",
		"99.5", "0",
		"1", 1,
		"piece(s)", "48",
		"", "pd-1776325851.htm",
		"", 1,
		"205-003", "0",
		 0)
	
		Entry[135] = new Element(
		135, "assets/thumb/ST_03.jpg",
		125, 97,
		"205-11-ST03", "Small round vase",
		"Height x Width (in.): 3.5 x 3.1", "Phoenician Glassblowers",
		"99.5", "0",
		"1", 1,
		"piece(s)", "48",
		"", "pd1436498395.htm",
		"", 1,
		"205-003", "0",
		 0)
	
		Entry[136] = new Element(
		136, "assets/thumb/ST_05.jpg",
		125, 97,
		"205-11-ST05", "Flat scent bottle",
		"Height x Width x Depth (in.): 4.3 x 2.8 x 1.2", "Phoenician Glassblowers",
		"99.5", "0",
		"1", 1,
		"piece(s)", "48",
		"", "pd-2118795391.htm",
		"", 1,
		"205-003", "0",
		 0)
	
		Entry[137] = new Element(
		137, "assets/thumb/ST_07.jpg",
		125, 94,
		"205-11-ST07", "Small bowl",
		"Height x Width (in.): 2.8 x 3.5", "Phoenician Glassblowers",
		"97", "0",
		"1", 1,
		"piece(s)", "48",
		"", "pd-605055593.htm",
		"", 1,
		"205-003", "0",
		 0)
	
		Entry[138] = new Element(
		138, "assets/thumb/ST_08.jpg",
		125, 97,
		"205-11-ST08", "Round paperweight",
		"Height x Width (in.): 3.1 x 3.1", "Phoenician Glassblowers",
		"89.9", "0",
		"1", 1,
		"piece(s)", "48",
		"", "pd1197535645.htm",
		"", 1,
		"205-003", "0",
		 0)
	
		Entry[139] = new Element(
		139, "assets/thumb/ST_09.jpg",
		125, 94,
		"205-11-ST09", "Lipped ashtray",
		"Height x Width (in.): 2.0 x 5.1", "Phoenician Glassblowers",
		"99", "0",
		"1", 1,
		"piece(s)", "48",
		"", "pd450823443.htm",
		"", 1,
		"205-003", "0",
		 0)
	
		Entry[140] = new Element(
		140, "assets/thumb/GA_01.jpg",
		125, 94,
		"205-11-GA01", "Tall flat flared bottle",
		"Height x Width (in.): 7.1 x 5.1", "Phoenician Glassblowers",
		"134", "0",
		"1", 1,
		"piece(s)", "49",
		"", "pd1465408889.htm",
		"", 1,
		"205-004", "0",
		 0)
	
		Entry[141] = new Element(
		141, "assets/thumb/GA_02L.jpg",
		125, 94,
		"205-11-GA02L", "Large barrel vase",
		"Height (in.): 10.6", "Phoenician Glassblowers",
		"148", "0",
		"1", 1,
		"piece(s)", "49",
		"", "pd-2098736243.htm",
		"", 1,
		"205-004", "0",
		 0)
	
		Entry[142] = new Element(
		142, "assets/thumb/GA_03.jpg",
		125, 94,
		"205-11-GA03", "Tall straight flared vase",
		"Height x Width (in.): 9.1 x 6.3", "Phoenician Glassblowers",
		"134", "0",
		"1", 1,
		"piece(s)", "49",
		"", "pd-77314993.htm",
		"", 1,
		"205-004", "0",
		 0)
	
		Entry[143] = new Element(
		143, "assets/thumb/GA_04.jpg",
		125, 94,
		"205-11-GA04", "Medium wide vase",
		"Height x Width (in.): 4.3 x 3.1", "Phoenician Glassblowers",
		"115", "0",
		"1", 1,
		"piece(s)", "49",
		"", "pd-1293869291.htm",
		"", 1,
		"205-004", "0",
		 0)
	
		Entry[144] = new Element(
		144, "assets/thumb/GA_05.jpg",
		125, 94,
		"205-11-GA05", "Medium bowl",
		"Height x Width (in.): 3.1 x 4.3", "Phoenician Glassblowers",
		"115", "0",
		"1", 1,
		"piece(s)", "49",
		"", "pd-1657155765.htm",
		"", 1,
		"205-004", "0",
		 0)
	
		Entry[145] = new Element(
		145, "assets/thumb/GA_06.jpg",
		125, 94,
		"205-11-GA06", "Paperweight",
		"Height x Width (in.): 3.1 x 3.1", "Phoenician Glassblowers",
		"112", "0",
		"1", 1,
		"piece(s)", "49",
		"", "pd-961932687.htm",
		"", 1,
		"205-004", "0",
		 0)
	
		Entry[146] = new Element(
		146, "assets/thumb/GA_33L.jpg",
		125, 94,
		"205-11-GA33L", "Large straight vase",
		"Height x Width (in.): 9.1 x 6.3", "Phoenician Glassblowers",
		"148", "0",
		"1", 1,
		"piece(s)", "49",
		"", "pd-1466310137.htm",
		"", 1,
		"205-004", "0",
		 0)
	
		Entry[147] = new Element(
		147, "assets/thumb/TW_01.jpg",
		125, 94,
		"205-11-TW01", "Barrel vase",
		"Height x Width (in.): 6.3 x 3.9", "Phoenician Glassblowers",
		"140", "0",
		"1", 1,
		"piece(s)", "50",
		"", "pd403263167.htm",
		"", 1,
		"205-006", "0",
		 0)
	
		Entry[148] = new Element(
		148, "assets/thumb/TW_15.jpg",
		125, 94,
		"205-11-TW15", "Small half round vase",
		"Height x Width (in.): 5.1 x 5.5", "Phoenician Glassblowers",
		"140", "0",
		"1", 1,
		"piece(s)", "50",
		"", "pd221298281.htm",
		"", 1,
		"205-006", "0",
		 0)
	
		Entry[149] = new Element(
		149, "assets/thumb/TW_15L.jpg",
		125, 94,
		"205-11-TW15L", "Large half round vase",
		"Height x Width (in.): 6.7 x 7.1", "Phoenician Glassblowers",
		"154", "0",
		"1", 1,
		"piece(s)", "50",
		"", "pd330987651.htm",
		"", 1,
		"205-006", "0",
		 0)
	
		Entry[150] = new Element(
		150, "assets/thumb/TW_51.jpg",
		125, 94,
		"205-11-TW51", "Medium straight vase",
		"Height x Width (in.): 5.5 x 3.9", "Phoenician Glassblowers",
		"140", "0",
		"1", 1,
		"piece(s)", "50",
		"", "pd672722693.htm",
		"", 1,
		"205-006", "0",
		 0)
	
		Entry[151] = new Element(
		151, "assets/thumb/TW_53.jpg",
		125, 94,
		"205-11-TW53", "Blown door stopper",
		"Height x Width (in.): 3.9 x 4.3", "Phoenician Glassblowers",
		"109", "0",
		"1", 1,
		"piece(s)", "50",
		"", "pd-752361285.htm",
		"", 1,
		"205-006", "0",
		 0)
	
		Entry[152] = new Element(
		152, "assets/thumb/DW_14L.jpg",
		125, 94,
		"205-11-DW14L", "Fruit bowl",
		"Height x Width (in.): 4.3 x 7.9", "Phoenician Glassblowers",
		"154", "0",
		"1", 1,
		"piece(s)", "51",
		"", "pd821318013.htm",
		"", 1,
		"205-007", "0",
		 0)
	
		Entry[153] = new Element(
		153, "assets/thumb/DW_1L.jpg",
		125, 94,
		"205-11-DW1L", "Large barrel vase",
		"Height x Width (in.): 8.3 x 4.7", "Phoenician Glassblowers",
		"154", "0",
		"1", 1,
		"piece(s)", "51",
		"", "pd747520353.htm",
		"", 1,
		"205-007", "0",
		 0)
	
		Entry[154] = new Element(
		154, "assets/thumb/DW_2L.jpg",
		125, 94,
		"205-11-DW2L", "Large straight bowl",
		"Height x Width (in.): 5.5 x 7.1", "Phoenician Glassblowers",
		"154", "0",
		"1", 1,
		"piece(s)", "51",
		"", "pd-811111817.htm",
		"", 1,
		"205-007", "0",
		 0)
	
		Entry[155] = new Element(
		155, "assets/thumb/DW_71.jpg",
		125, 94,
		"205-11-DW71", "Large bottle",
		"Height x Width (in.): 7.9 x 5.1", "Phoenician Glassblowers",
		"154", "0",
		"1", 1,
		"piece(s)", "51",
		"", "pd1904535539.htm",
		"", 1,
		"205-007", "0",
		 0)
	
		Entry[156] = new Element(
		156, "assets/thumb/PC_02.jpg",
		125, 94,
		"205-11-PC02", "Large straight bowl",
		"Height x Width (in.): 5.1 x 5.9", "Phoenician Glassblowers",
		"122", "0",
		"1", 1,
		"piece(s)", "52",
		"", "pd-1174373543.htm",
		"", 1,
		"205-008", "0",
		 0)
	
		Entry[157] = new Element(
		157, "assets/thumb/PC_03.jpg",
		125, 94,
		"205-11-PC03", "Stopper jar",
		"Height x Width (in.): 7.9 x 2.8", "Phoenician Glassblowers",
		"125", "0",
		"1", 1,
		"piece(s)", "52",
		"", "pd40178991.htm",
		"", 1,
		"205-008", "0",
		 0)
	
		Entry[158] = new Element(
		158, "assets/thumb/914.jpg",
		125, 125,
		"203-08-914", "Tall Carafe",
		"Height (in.): 12,6", "CCAA",
		"329", "0",
		"1", 1,
		"piece(s)", "43",
		"", "pd-1760665452.htm",
		"", 1,
		"203-003", "0",
		 0)
	
		Entry[159] = new Element(
		159, "assets/thumb/17408.jpg",
		125, 83,
		"301-03-174089", "Michelangelo: Creation of Adam",
		"Width / Height. (in.): 60,2 / 39,8", "Ravensburger",
		"79", "0",
		"1", 1,
		"piece(s)", "76",
		"", "pd-1926378202.htm",
		"", 1,
		"301-500", "0",
		 0)
	
		Entry[160] = new Element(
		160, "assets/thumb/17403cat.jpg",
		125, 83,
		"301-03-174034", "Austria, In the Tyrol",
		"Width / Height. (in.): 60,2 / 39,8", "Ravensburger",
		"79", "0",
		"1", 1,
		"piece(s)", "76",
		"", "pd1029123128.htm",
		"", 1,
		"301-500", "0",
		 0)
	
		Entry[161] = new Element(
		161, "assets/thumb/11001.jpg",
		125, 125,
		"301-02-110018", "Penguins",
		"Diam. (in.): 5,9", "Puzzleball",
		"29.9", "0",
		"1", 1,
		"piece(s)", "70",
		"", "pd-1789421192.htm",
		"", 1,
		"301-024", "0",
		 0)
	
		Entry[162] = new Element(
		162, "assets/thumb/11002.jpg",
		125, 125,
		"301-02-110025", "The Bear Family",
		"Diam. (in.): 5,9", "Puzzleball",
		"29.9", "0",
		"1", 1,
		"piece(s)", "70",
		"", "pd1198586982.htm",
		"", 1,
		"301-024", "0",
		 0)
	
		Entry[163] = new Element(
		163, "assets/thumb/11003.jpg",
		125, 125,
		"301-02-110032", "Horses",
		"Diam. (in.): 5,9", "Puzzleball",
		"29.9", "0",
		"1", 1,
		"piece(s)", "70",
		"", "pd1092423940.htm",
		"", 1,
		"301-024", "0",
		 0)
	
		Entry[164] = new Element(
		164, "assets/thumb/11004.jpg",
		125, 125,
		"301-02-110049", "Cats",
		"Diam. (in.): 5,9", "Puzzleball",
		"29.9", "0",
		"1", 1,
		"piece(s)", "70",
		"", "pd110882514.htm",
		"", 1,
		"301-024", "0",
		 0)
	
		Entry[165] = new Element(
		165, "assets/thumb/11005.jpg",
		125, 125,
		"301-02-110056", "Sunflowers",
		"Diam. (in.): 5,9", "Puzzleball",
		"29.9", "0",
		"1", 1,
		"piece(s)", "70",
		"", "pd-249988784.htm",
		"", 1,
		"301-024", "0",
		 0)
	
		Entry[166] = new Element(
		166, "assets/thumb/14113.jpg",
		88, 125,
		"301-03-141135", "Switzerland, In the valley Emmental",
		"Width / Height. (in.): 19,3 / 14,2", "Ravensburger",
		"14.95", "0",
		"1", 1,
		"piece(s)", "72",
		"", "pd1797885620.htm",
		"", 1,
		"301-050", "0",
		 0)
	
		Entry[167] = new Element(
		167, "assets/thumb/14304.jpg",
		125, 94,
		"301-03-143047", "Bavarian Alps",
		"Width / Height. (in.): 19,3 / 14,2", "Ravensburger",
		"14.95", "0",
		"1", 1,
		"piece(s)", "72",
		"", "pd1663919106.htm",
		"", 1,
		"301-050", "0",
		 0)
	
		Entry[168] = new Element(
		168, "assets/thumb/14333.jpg",
		125, 94,
		"301-03-143337", "Landscape in Switzerland",
		"Width / Height. (in.): 19,3 / 14,2", "Ravensburger",
		"14.95", "0",
		"1", 1,
		"piece(s)", "72",
		"", "pd-702107136.htm",
		"", 1,
		"301-050", "0",
		 0)
	
		Entry[169] = new Element(
		169, "assets/thumb/14373.jpg",
		125, 93,
		"301-03-143733", "France, St. Tropez",
		"Width / Height. (in.): 19,3 / 14,2", "Ravensburger",
		"14.95", "0",
		"1", 1,
		"piece(s)", "72",
		"", "pd-1672550354.htm",
		"", 1,
		"301-050", "0",
		 0)
	
		Entry[170] = new Element(
		170, "assets/thumb/14375.jpg",
		125, 94,
		"301-03-143757", "Austria, Montafon Valley",
		"Width / Height. (in.): 19,3 / 14,2", "Ravensburger",
		"14.95", "0",
		"1", 1,
		"piece(s)", "72",
		"", "pd1976238604.htm",
		"", 1,
		"301-050", "0",
		 0)
	
		Entry[171] = new Element(
		171, "assets/thumb/15540.jpg",
		125, 94,
		"301-03-155408", "Michelangelo: Creation of Adam",
		"Width / Height. (in.): 27,6 / 19,7", "Ravensburger",
		"19.95", "0",
		"1", 1,
		"piece(s)", "73",
		"", "pd-2058983654.htm",
		"", 1,
		"301-100", "0",
		 0)
	
		Entry[172] = new Element(
		172, "assets/thumb/15569.jpg",
		125, 93,
		"301-03-155699", "Ascona on the Lake Maggiore",
		"Width / Height. (in.): 27,6 / 19,7", "Ravensburger",
		"19.95", "0",
		"1", 1,
		"piece(s)", "73",
		"", "pd679414982.htm",
		"", 1,
		"301-100", "0",
		 0)
	
		Entry[173] = new Element(
		173, "assets/thumb/15708.jpg",
		95, 125,
		"301-03-157082", "In the Bavarian Alps",
		"Width / Height. (in.): 27,6 / 19,7", "Ravensburger",
		"19.95", "0",
		"1", 1,
		"piece(s)", "73",
		"", "pd451876964.htm",
		"", 1,
		"301-100", "0",
		 0)
	
		Entry[174] = new Element(
		174, "assets/thumb/15712.jpg",
		125, 93,
		"301-03-157129", "Dreaming of Venice",
		"Width / Height. (in.): 27,6 / 19,7", "Ravensburger",
		"19.95", "0",
		"1", 1,
		"piece(s)", "73",
		"", "pd-87112398.htm",
		"", 1,
		"301-100", "0",
		 0)
	
		Entry[175] = new Element(
		175, "assets/thumb/15813.jpg",
		125, 92,
		"301-03-158133", "Gelini: Gummi-Bears at Lunch Break",
		"Width / Height. (in.): 27,6 / 19,7", "Ravensburger",
		"19.95", "0",
		"1", 1,
		"piece(s)", "73",
		"", "pd-1963608400.htm",
		"", 1,
		"301-100", "0",
		 0)
	
		Entry[176] = new Element(
		176, "assets/thumb/15860.jpg",
		94, 125,
		"301-03-158607", "Switzerland, Lago di Como",
		"Width / Height. (in.): 27,6 / 19,7", "Ravensburger",
		"19.95", "0",
		"1", 1,
		"piece(s)", "73",
		"", "pd-308134818.htm",
		"", 1,
		"301-100", "0",
		 0)
	
		Entry[177] = new Element(
		177, "assets/thumb/15869.jpg",
		125, 93,
		"301-03-158690", "Gelinis having breakfast",
		"Width / Height. (in.): 27,6 / 19,7", "Ravensburger",
		"19.95", "0",
		"1", 1,
		"piece(s)", "73",
		"", "pd336146876.htm",
		"", 1,
		"301-100", "0",
		 0)
	
		Entry[178] = new Element(
		178, "assets/thumb/15944.jpg",
		125, 94,
		"301-03-159444", "Morning glory",
		"Width / Height. (in.): 27,6 / 19,7", "Ravensburger",
		"19.95", "0",
		"1", 1,
		"piece(s)", "73",
		"", "pd1541987914.htm",
		"", 1,
		"301-100", "0",
		 0)
	
		Entry[179] = new Element(
		179, "assets/thumb/16002.jpg",
		125, 93,
		"301-03-160020", "Historical map of the world (metallic)",
		"Width / Height. (in.): 27,6 / 19,7", "Ravensburger",
		"49.9", "0",
		"1", 1,
		"", "73",
		"", "pd-1227434616.htm",
		"", 1,
		"301-100", "0",
		 0)
	
		Entry[180] = new Element(
		180, "assets/thumb/16006.jpg",
		93, 125,
		"301-03-160068", "Tutankhamun (metallic)",
		"Width / Height. (in.): 19,7 / 27,6", "Ravensburger",
		"49.9", "0",
		"1", 1,
		"piece(s)", "73",
		"", "pd-37693706.htm",
		"", 1,
		"301-100", "0",
		 0)
	
		Entry[181] = new Element(
		181, "assets/thumb/16027.jpg",
		83, 125,
		"301-03-160273", "White Tiger (metallic)",
		"Width / Height. (in.): 19,7 / 27,6", "Ravensburger",
		"49.9", "0",
		"1", 1,
		"piece(s)", "73",
		"", "pd-1210536428.htm",
		"", 1,
		"301-100", "0",
		 0)
	
		Entry[182] = new Element(
		182, "assets/thumb/16085.jpg",
		125, 83,
		"301-03-160853", "Hong Kong (starline)",
		"Width / Height. (in.): 19,7 / 27,6", "Ravensburger",
		"33.9", "0",
		"1", 1,
		"piece(s)", "73",
		"", "pd-823979422.htm",
		"", 1,
		"301-100", "0",
		 0)
	
		Entry[183] = new Element(
		183, "assets/thumb/16236.jpg",
		125, 93,
		"301-03-162369", "Germany, Neuschwanstein Castle",
		"Width / Height. (in.): 33,1 / 23,6", "Ravensburger",
		"28.5", "0",
		"1", 1,
		"piece(s)", "74",
		"", "pd463570784.htm",
		"", 1,
		"301-150", "0",
		 0)
	
		Entry[184] = new Element(
		184, "assets/thumb/16332.jpg",
		125, 94,
		"301-03-163328", "France, Chateau Sully sur Loire",
		"Width / Height. (in.): 33,1 / 23,6", "Ravensburger",
		"28.5", "0",
		"1", 1,
		"piece(s)", "74",
		"", "pd-1815135090.htm",
		"", 1,
		"301-150", "0",
		 0)
	
		Entry[185] = new Element(
		185, "assets/thumb/16640.jpg",
		125, 93,
		"301-03-166404", "Italy, Riviera, Portofino",
		"Width / Height. (in.): 38,6 / 29,5", "Ravensburger",
		"32.9", "0",
		"1", 1,
		"piece(s)", "75",
		"", "pd-538382996.htm",
		"", 1,
		"301-200", "0",
		 0)
	
		Entry[186] = new Element(
		186, "assets/thumb/16642.jpg",
		125, 94,
		"301-03-166428", "Switzerland, Emmental",
		"Width / Height. (in.): 38,6 / 29,5", "Ravensburger",
		"32.9", "0",
		"1", 1,
		"piece(s)", "75",
		"", "pd1773650298.htm",
		"", 1,
		"301-200", "0",
		 0)
	
		Entry[187] = new Element(
		187, "assets/thumb/11060.jpg",
		125, 125,
		"301-02-110605", "The Earth",
		"Diam. (in.): 8,7", "Puzzleball",
		"47.9", "0",
		"1", 1,
		"piece(s)", "71",
		"", "pd-1438498818.htm",
		"", 1,
		"301-030", "0",
		 0)
	
		Entry[188] = new Element(
		188, "assets/thumb/11062.jpg",
		125, 125,
		"301-02-110629", "Egypt",
		"Diam. (in.): 8,7", "Puzzleball",
		"47.9", "0",
		"1", 1,
		"piece(s)", "71",
		"", "pd694378076.htm",
		"", 1,
		"301-030", "0",
		 0)
	
		Entry[189] = new Element(
		189, "assets/thumb/11063.jpg",
		125, 125,
		"301-02-110636", "Leopards",
		"Diam. (in.): 8,7", "Puzzleball",
		"47.9", "0",
		"1", 1,
		"piece(s)", "71",
		"", "pd-653435926.htm",
		"", 1,
		"301-030", "0",
		 0)
	
		Entry[190] = new Element(
		190, "assets/thumb/11064.jpg",
		125, 125,
		"301-02-110643", "Parrots",
		"Diam. (in.): 8,7", "Puzzleball",
		"47.9", "0",
		"1", 1,
		"piece(s)", "71",
		"", "pd-990770136.htm",
		"", 1,
		"301-030", "0",
		 0)
	
		Entry[191] = new Element(
		191, "assets/thumb/11065.jpg",
		125, 125,
		"301-02-110650", "Fruit",
		"Diam. (in.): 8,7", "Puzzleball",
		"47.9", "0",
		"1", 1,
		"piece(s)", "71",
		"", "pd-1770688874.htm",
		"", 1,
		"301-030", "0",
		 0)
	
		Entry[192] = new Element(
		192, "assets/thumb/19_364.jpg",
		125, 125,
		"105-04-19364", "Espresso cup - coffee cups",
		"Height / Diam. (in.): 2,4 / 2,4", "Design House",
		"12.8", "0",
		"1", 1,
		"piece(s)", "5",
		"", "pd1084654772.htm",
		"", 6,
		"204-001", "0",
		 0)
	
		Entry[193] = new Element(
		193, "assets/thumb/19_543.jpg",
		125, 125,
		"105-04-19543", "Espresso cup - calla orange",
		"Height / Diam. (in.): 2,4 / 2,4", "Design House",
		"12.8", "0",
		"1", 1,
		"piece(s)", "5",
		"", "pd-133477886.htm",
		"", 6,
		"204-001", "0",
		 0)
	
		Entry[194] = new Element(
		194, "assets/thumb/19_932.jpg",
		125, 125,
		"105-04-19932", "Espresso cup - pansy violet",
		"Height / Diam. (in.): 2,4 / 2,4", "Design House",
		"12.8", "0",
		"1", 1,
		"piece(s)", "5",
		"", "pd1326385152.htm",
		"", 6,
		"204-001", "0",
		 0)
	
		Entry[195] = new Element(
		195, "assets/thumb/19_964.jpg",
		125, 125,
		"105-04-19964", "Espresso cup - white",
		"Height / Diam. (in.): 2,4 / 2,4", "Design House",
		"12.8", "0",
		"1", 1,
		"piece(s)", "5",
		"", "pd-1543033298.htm",
		"", 6,
		"204-001", "0",
		 0)
	
		Entry[196] = new Element(
		196, "assets/thumb/65_244.jpg",
		125, 125,
		"105-04-65244", "Mug - love bird blue",
		"Height / Diam. (in.): 4,1 / 2,8", "Design House",
		"12.9", "0",
		"1", 1,
		"piece(s)", "6",
		"", "pd-1701529588.htm",
		"", 2,
		"204-002", "0",
		 0)
	
		Entry[197] = new Element(
		197, "assets/thumb/65_276.jpg",
		125, 125,
		"105-04-65276", "Mug - heart on cushion",
		"Height / Diam. (in.): 4,1 / 2,8", "Design House",
		"12.9", "0",
		"1", 1,
		"piece(s)", "6",
		"", "pd1430195482.htm",
		"", 2,
		"204-002", "0",
		 0)
	
		Entry[198] = new Element(
		198, "assets/thumb/65_325.jpg",
		125, 125,
		"105-04-65325", "Mug - multi pansies",
		"Height / Diam. (in.): 4,1 / 2,8", "Design House",
		"12.9", "0",
		"1", 1,
		"piece(s)", "6",
		"", "pd-1207312168.htm",
		"", 2,
		"204-002", "0",
		 0)
	
		Entry[199] = new Element(
		199, "assets/thumb/65_364.jpg",
		125, 125,
		"105-04-65364", "Mug - coffee cups",
		"Height / Diam. (in.): 4,1 / 2,8", "Design House",
		"12.9", "0",
		"1", 1,
		"piece(s)", "6",
		"", "pd1753092806.htm",
		"", 2,
		"204-002", "0",
		 0)
	
		Entry[200] = new Element(
		200, "assets/thumb/65_409.jpg",
		125, 125,
		"105-04-65409", "Mug - in the sea",
		"Height / Diam. (in.): 4,1 / 2,8", "Design House",
		"12.9", "0",
		"1", 1,
		"piece(s)", "6",
		"", "pd878546532.htm",
		"", 2,
		"204-002", "0",
		 0)
	
		Entry[201] = new Element(
		201, "assets/thumb/65_425.jpg",
		125, 125,
		"105-04-65425", "Mug - Provence",
		"Height / Diam. (in.): 4,1 / 2,8", "Design House",
		"12.9", "0",
		"1", 1,
		"piece(s)", "6",
		"", "pd-1963316430.htm",
		"", 2,
		"204-002", "0",
		 0)
	
		Entry[202] = new Element(
		202, "assets/thumb/65_437.jpg",
		125, 125,
		"105-04-65437", "Mug - butterfly white",
		"Height / Diam. (in.): 4,1 / 2,8", "Design House",
		"12.9", "0",
		"1", 1,
		"piece(s)", "6",
		"", "pd1978109104.htm",
		"", 2,
		"204-002", "0",
		 0)
	
		Entry[203] = new Element(
		203, "assets/thumb/65_462.jpg",
		125, 125,
		"105-04-65462", "Mug - four trees",
		"Height / Diam. (in.): 4,1 / 2,8", "Design House",
		"12.9", "0",
		"1", 1,
		"piece(s)", "6",
		"", "pd746586718.htm",
		"", 2,
		"204-002", "0",
		 0)
	
		Entry[204] = new Element(
		204, "assets/thumb/65_485.jpg",
		125, 125,
		"105-04-65485", "Mug - sea fruits",
		"Height / Diam. (in.): 4,1 / 2,8", "Design House",
		"12.9", "0",
		"1", 1,
		"piece(s)", "6",
		"", "pd-1435211844.htm",
		"", 2,
		"204-002", "0",
		 0)
	
		Entry[205] = new Element(
		205, "assets/thumb/65_490.jpg",
		125, 125,
		"105-04-65490", "Mug - thank you flower",
		"Height / Diam. (in.): 4,1 / 2,8", "Design House",
		"12.9", "0",
		"1", 1,
		"piece(s)", "6",
		"", "pd-866188214.htm",
		"", 2,
		"204-002", "0",
		 0)
	
		Entry[206] = new Element(
		206, "assets/thumb/65_494.jpg",
		125, 125,
		"105-04-65494", "Mug - calla white blue",
		"Height / Diam. (in.): 4,1 / 2,8", "Design House",
		"12.9", "0",
		"1", 1,
		"piece(s)", "6",
		"", "pd236022664.htm",
		"", 2,
		"204-002", "0",
		 0)
	
		Entry[207] = new Element(
		207, "assets/thumb/65_527.jpg",
		125, 125,
		"105-04-65527", "Mug - daisy blue",
		"Height / Diam. (in.): 4,1 / 2,8", "Design House",
		"12.9", "0",
		"1", 1,
		"piece(s)", "6",
		"", "pd1293245686.htm",
		"", 2,
		"204-002", "0",
		 0)
	
		Entry[208] = new Element(
		208, "assets/thumb/65_543.jpg",
		125, 125,
		"105-04-65543", "Mug - calla orange",
		"Height / Diam. (in.): 4,1 / 2,8", "Design House",
		"12.9", "0",
		"1", 1,
		"piece(s)", "6",
		"", "pd-1768381420.htm",
		"", 2,
		"204-002", "0",
		 0)
	
		Entry[209] = new Element(
		209, "assets/thumb/65_629.jpg",
		125, 125,
		"105-04-65629", "Mug - sea hearts red",
		"Height / Diam. (in.): 4,1 / 2,8", "Design House",
		"12.9", "0",
		"1", 1,
		"piece(s)", "6",
		"", "pd985397346.htm",
		"", 2,
		"204-002", "0",
		 0)
	
		Entry[210] = new Element(
		210, "assets/thumb/65_665.jpg",
		125, 125,
		"105-04-65665", "Mug - breakfast blue",
		"Height / Diam. (in.): 4,1 / 2,8", "Design House",
		"12.9", "0",
		"1", 1,
		"piece(s)", "6",
		"", "pd-805511840.htm",
		"", 2,
		"204-002", "0",
		 0)
	
		Entry[211] = new Element(
		211, "assets/thumb/65_691.jpg",
		125, 125,
		"105-0465691", "Mug - multi cats",
		"Height / Diam. (in.): 4,1 / 2,8", "Design House",
		"12.9", "0",
		"1", 1,
		"piece(s)", "6",
		"", "pd-1338867058.htm",
		"", 2,
		"204-002", "0",
		 0)
	
		Entry[212] = new Element(
		212, "assets/thumb/65_822.jpg",
		125, 125,
		"105-04-65822", "Mug - summer tulip blue",
		"Height / Diam. (in.): 4,1 / 2,8", "Design House",
		"12.9", "0",
		"1", 1,
		"piece(s)", "6",
		"", "pd1968546668.htm",
		"", 2,
		"204-002", "0",
		 0)
	
		Entry[213] = new Element(
		213, "assets/thumb/65_902.jpg",
		125, 125,
		"105-04-65902", "Mug - wake up",
		"Height / Diam. (in.): 4,1 / 2,8", "Design House",
		"12.9", "0",
		"1", 1,
		"piece(s)", "6",
		"", "pd1191929722.htm",
		"", 2,
		"204-002", "0",
		 0)
	
		Entry[214] = new Element(
		214, "assets/thumb/65_935.jpg",
		125, 125,
		"105-04-65935", "Mug - Saint Tropez",
		"Height / Diam. (in.): 4,1 / 2,8", "Design House",
		"12.9", "0",
		"1", 1,
		"piece(s)", "6",
		"", "pd313213496.htm",
		"", 2,
		"204-002", "0",
		 0)
	
		Entry[215] = new Element(
		215, "assets/thumb/86_368.jpg",
		140, 180,
		"105-04-86368", "Glass - cafe macchiato",
		"Height / Diam. (in.): 5,7 / 3,5", "Design House",
		"9.4", "0",
		"1", 1,
		"piece(s)", "7",
		"", "pd1043845926.htm",
		"1::1::10;", 2,
		"204-003", "0",
		 0)
	
		Entry[216] = new Element(
		216, "assets/thumb/86_389.jpg",
		140, 180,
		"105-04-86389", "Glass - coffee cups",
		"Height / Diam. (in.): 5,7 / 3,5", "Design House",
		"9.4", "0",
		"1", 1,
		"piece(s)", "7",
		"", "pd-1149057596.htm",
		"", 2,
		"204-003", "0",
		 0)
	
		Entry[217] = new Element(
		217, "assets/thumb/86_476.jpg",
		140, 180,
		"105-04-86476", "Glass - coffee stripes",
		"Height / Diam. (in.): 5,7 / 3,5", "Design House",
		"9.4", "0",
		"1", 1,
		"piece(s)", "7",
		"", "pd-1015828078.htm",
		"", 2,
		"204-003", "0",
		 0)
	
		Entry[218] = new Element(
		218, "assets/thumb/86_498.jpg",
		140, 180,
		"105-04-86498", "Glass - three coffee hearts",
		"Height / Diam. (in.): 5,7 / 3,5", "Design House",
		"9.4", "0",
		"1", 1,
		"piece(s)", "7",
		"", "pd-1574307312.htm",
		"", 2,
		"204-003", "0",
		 0)
	
		Entry[219] = new Element(
		219, "assets/thumb/78_209.jpg",
		180, 180,
		"105-04-78209", "Glass table tile - brown",
		"3.9 x 3.9 in.", "Design House",
		"4.9", "0",
		"1", 1,
		"piece(s)", "7",
		"", "pd191999678.htm",
		"", 2,
		"204-003", "0",
		 0)
	
		Entry[220] = new Element(
		220, "assets/thumb/99_138.jpg",
		180, 180,
		"105-04-99138", "Cafe Macchiato spoon",
		"Length: 7,6 in.", "Design House",
		"2", "0",
		"1", 1,
		"piece(s)", "7",
		"", "pd465791772.htm",
		"", 2,
		"204-003", "0",
		 0)
	
		Entry[221] = new Element(
		221, "assets/thumb/75_457.jpg",
		125, 125,
		"105-04-75457", "Milk mug - fruit shake",
		"Height / Diam. (in.): 4,3 / 3", "Design House",
		"12.25", "0",
		"1", 1,
		"piece(s)", "8",
		"", "pd-1530448214.htm",
		"", 2,
		"204-005", "0",
		 0)
	
		Entry[222] = new Element(
		222, "assets/thumb/75_873.jpg",
		125, 125,
		"105-04-75873", "Milk mug - cafe ole",
		"Height / Diam. (in.): 4,3 / 3", "Design House",
		"12.25", "0",
		"1", 1,
		"piece(s)", "8",
		"", "pd1561486568.htm",
		"", 2,
		"204-005", "0",
		 0)
	
		Entry[223] = new Element(
		223, "assets/thumb/29_935.jpg",
		125, 125,
		"105-04-29935", "Table tile - Saint Tropez",
		"3.9 x 3.9 in.", "Design House",
		"6.75", "0",
		"1", 1,
		"piece(s)", "9",
		"", "pd-2047056606.htm",
		"", 2,
		"204-007", "0",
		 0)
	
		Entry[224] = new Element(
		224, "assets/thumb/29_902.jpg",
		125, 125,
		"105-04-29902", "Table tile - wake up",
		"3.9 x 3.9 in.", "Design House",
		"6.75", "0",
		"1", 1,
		"piece(s)", "9",
		"", "pd1799975636.htm",
		"", 2,
		"204-007", "0",
		 0)
	
		Entry[225] = new Element(
		225, "assets/thumb/29_822.jpg",
		125, 125,
		"105-04-29822", "Table tile - summer tulip blue",
		"3.9 x 3.9 in.", "Design House",
		"6.75", "0",
		"1", 1,
		"piece(s)", "9",
		"", "pd1470119350.htm",
		"", 2,
		"204-007", "0",
		 0)
	
		Entry[226] = new Element(
		226, "assets/thumb/29_691.jpg",
		125, 125,
		"105-04-29691", "Table tile - multi cats",
		"3.9 x 3.9 in.", "Design House",
		"6.75", "0",
		"1", 1,
		"piece(s)", "9",
		"", "pd469012040.htm",
		"", 2,
		"204-007", "0",
		 0)
	
		Entry[227] = new Element(
		227, "assets/thumb/29_665.jpg",
		125, 125,
		"105-04-29665", "Table tile - breakfast blue",
		"3.9 x 3.9 in.", "Design House",
		"6.75", "0",
		"1", 1,
		"piece(s)", "9",
		"", "pd221845770.htm",
		"", 2,
		"204-007", "0",
		 0)
	
		Entry[228] = new Element(
		228, "assets/thumb/29_629.jpg",
		125, 125,
		"105-04-29629", "Table tile - sea hearts red",
		"3.9 x 3.9 in.", "Design House",
		"6.75", "0",
		"1", 1,
		"piece(s)", "9",
		"", "pd-47145348.htm",
		"", 2,
		"204-007", "0",
		 0)
	
		Entry[229] = new Element(
		229, "assets/thumb/29_543.jpg",
		125, 125,
		"105-04-29543", "Table tile - calla orange",
		"3.9 x 3.9 in.", "Design House",
		"6.75", "0",
		"1", 1,
		"piece(s)", "9",
		"", "pd597822238.htm",
		"", 2,
		"204-007", "0",
		 0)
	
		Entry[230] = new Element(
		230, "assets/thumb/29_527.jpg",
		125, 125,
		"105-04-29527", "Table tile - daisy blue",
		"3.9 x 3.9 in.", "Design House",
		"6.75", "0",
		"1", 1,
		"piece(s)", "9",
		"", "pd-2047371408.htm",
		"", 2,
		"204-007", "0",
		 0)
	
		Entry[231] = new Element(
		231, "assets/thumb/29_494.jpg",
		125, 125,
		"105-04-29494", "Table tile - calla white blue",
		"3.9 x 3.9 in.", "Design House",
		"6.75", "0",
		"1", 1,
		"piece(s)", "9",
		"", "pd1578166258.htm",
		"", 2,
		"204-007", "0",
		 0)
	
		Entry[232] = new Element(
		232, "assets/thumb/29_490.jpg",
		125, 125,
		"105-04-29490", "Table tile - thank you flower",
		"3.9 x 3.9 in.", "Design House",
		"6.75", "0",
		"1", 1,
		"piece(s)", "9",
		"", "pd1708141860.htm",
		"", 2,
		"204-007", "0",
		 0)
	
		Entry[233] = new Element(
		233, "assets/thumb/29_485.jpg",
		125, 125,
		"105-04-29485", "Table tile - sea fruits",
		"3.9 x 3.9 in.", "Design House",
		"6.75", "0",
		"1", 1,
		"piece(s)", "9",
		"", "pd-206945402.htm",
		"", 2,
		"204-007", "0",
		 0)
	
		Entry[234] = new Element(
		234, "assets/thumb/29_462.jpg",
		125, 125,
		"105-04-29462", "Table tile - four trees",
		"3.9 x 3.9 in.", "Design House",
		"6.75", "0",
		"1", 1,
		"piece(s)", "9",
		"", "pd759288728.htm",
		"", 2,
		"204-007", "0",
		 0)
	
		Entry[235] = new Element(
		235, "assets/thumb/29_437.jpg",
		125, 125,
		"105-04-29437", "Table tile - butterfly white",
		"3.9 x 3.9 in.", "Design House",
		"6.75", "0",
		"1", 1,
		"piece(s)", "9",
		"", "pd1876259290.htm",
		"", 2,
		"204-007", "0",
		 0)
	
		Entry[236] = new Element(
		236, "assets/thumb/29_425.jpg",
		125, 125,
		"105-04-29425", "Table tile - Provence",
		"3.9 x 3.9 in.", "Design House",
		"6.75", "0",
		"1", 1,
		"piece(s)", "9",
		"", "pd453557964.htm",
		"", 2,
		"204-007", "0",
		 0)
	
		Entry[237] = new Element(
		237, "assets/thumb/29_409.jpg",
		125, 125,
		"105-04-29409", "Table tile - in the sea",
		"3.9 x 3.9 in.", "Design House",
		"6.75", "0",
		"1", 1,
		"piece(s)", "9",
		"", "pd1498449646.htm",
		"", 2,
		"204-007", "0",
		 0)
	
		Entry[238] = new Element(
		238, "assets/thumb/29_364.jpg",
		125, 125,
		"105-04-29364", "Table tile - coffee cups",
		"3.9 x 3.9 in.", "Design House",
		"6.75", "0",
		"1", 1,
		"piece(s)", "9",
		"", "pd34202304.htm",
		"", 2,
		"204-007", "0",
		 0)
	
		Entry[239] = new Element(
		239, "assets/thumb/29_325.jpg",
		125, 125,
		"105-04-29325", "Table tile - multi pansies",
		"3.9 x 3.9 in.", "Design House",
		"6.75", "0",
		"1", 1,
		"piece(s)", "9",
		"", "pd1946441410.htm",
		"", 2,
		"204-007", "0",
		 0)
	
		Entry[240] = new Element(
		240, "assets/thumb/29_276.jpg",
		125, 125,
		"105-04-29276", "Table tile - heart on cushion",
		"3.9 x 3.9 in.", "Design House",
		"6.75", "0",
		"1", 1,
		"piece(s)", "9",
		"", "pd-66653324.htm",
		"", 2,
		"204-007", "0",
		 0)
	
		Entry[241] = new Element(
		241, "assets/thumb/29_244.jpg",
		125, 125,
		"105-04-29244", "Table tile - love bird blue",
		"3.9 x 3.9 in.", "Design House",
		"6.75", "0",
		"1", 1,
		"piece(s)", "9",
		"", "pd832075094.htm",
		"", 2,
		"204-007", "0",
		 0)
	
		Entry[242] = new Element(
		242, "assets/thumb/Ana_beer.jpg",
		125, 125,
		"207-05-5212100106", "Anastasia - Beer",
		"Appr. Height (in.): 6,3", "von Poschinger",
		"79.9", "0",
		"1", 1,
		"piece(s)", "54",
		"", "pd1637114666.htm",
		"", 1,
		"207-001", "0",
		 0)
	
		Entry[243] = new Element(
		243, "assets/thumb/Ana_bottle.jpg",
		125, 125,
		"207-05-5212100075", "Anastasia - Bottle",
		"Appr. Height (in.): 11", "von Poschinger",
		"148", "0",
		"1", 1,
		"piece(s)", "54",
		"", "pd-2005234834.htm",
		"", 1,
		"207-001", "0",
		 0)
	
		Entry[244] = new Element(
		244, "assets/thumb/Ana_champagne.jpg",
		125, 125,
		"207-05-5212100008", "Anastasia - Champagne",
		"Appr. Height (in.): 6,3", "von Poschinger",
		"78.5", "0",
		"1", 1,
		"piece(s)", "54",
		"", "pd1676606452.htm",
		"", 1,
		"207-001", "0",
		 0)
	
		Entry[245] = new Element(
		245, "assets/thumb/Ana_port.jpg",
		125, 125,
		"207-05-5212100004", "Anastasia - Port",
		"Appr. Height (in.): 4,2", "von Poschinger",
		"68.8", "0",
		"1", 1,
		"piece(s)", "54",
		"", "pd1096410012.htm",
		"", 1,
		"207-001", "0",
		 0)
	
		Entry[246] = new Element(
		246, "assets/thumb/Ana_schnaps.jpg",
		125, 125,
		"207-05-5212100105", "Anastasia - Schnaps",
		"Appr. Height (in.): 4", "von Poschinger",
		"52.5", "0",
		"1", 1,
		"piece(s)", "54",
		"", "pd-867867288.htm",
		"", 1,
		"207-001", "0",
		 0)
	
		Entry[247] = new Element(
		247, "assets/thumb/Ana_tumbler.jpg",
		125, 125,
		"207-001-5212100010", "Anastasia - Tumbler",
		"Appr. Height (in.): 4,5", "von Poschinger",
		"63.9", "0",
		"1", 1,
		"piece(s)", "54",
		"", "pd2017948480.htm",
		"", 1,
		"207-001", "0",
		 0)
	
		Entry[248] = new Element(
		248, "assets/thumb/Ana_whisky.jpg",
		125, 125,
		"207-05-5212100020", "Anastasia - Whisky",
		"Appr. Height (in.): 4", "von Poschinger",
		"63.9", "0",
		"1", 1,
		"piece(s)", "54",
		"", "pd532517698.htm",
		"", 1,
		"207-001", "0",
		 0)
	
		Entry[249] = new Element(
		249, "assets/thumb/Ana_wine.jpg",
		125, 125,
		"207-05-5212100002", "Anastasia - Wine",
		"Appr. Height (in.): 4,9", "von Poschinger",
		"77", "0",
		"1", 1,
		"piece(s)", "54",
		"", "pd1517644246.htm",
		"", 1,
		"207-001", "0",
		 0)
	
		Entry[250] = new Element(
		250, "assets/thumb/martini_cock.jpg",
		95, 125,
		"207-05-1868102018", "Martini Glass &quot;Cock&quot;",
		"Appr. Height (in.): 7,6", "von Poschinger",
		"49.9", "0",
		"1", 1,
		"piece(s)", "55",
		"", "pd-733718708.htm",
		"", 1,
		"207-002", "0",
		 0)
	
		Entry[251] = new Element(
		251, "assets/thumb/martini_lobster.jpg",
		94, 125,
		"207-05-1868101018", "Martini Glass &quot;Lobster&quot;",
		"Appr. Height (in.): 7,6", "von Poschinger",
		"49.9", "0",
		"1", 1,
		"piece(s)", "55",
		"", "pd2035072602.htm",
		"", 1,
		"207-002", "0",
		 0)
	
		Entry[252] = new Element(
		252, "assets/thumb/martini_manh.jpg",
		94, 125,
		"207-05-1868103018", "Martini Glass &quot;Manhattan&quot;",
		"Appr. Height (in.): 7,6", "von Poschinger",
		"49.9", "0",
		"1", 1,
		"piece(s)", "55",
		"", "pd-1112804328.htm",
		"", 1,
		"207-002", "0",
		 0)
	
		Entry[253] = new Element(
		253, "assets/thumb/Hal_schnapps_bottom.jpg",
		52, 125,
		"207-003-5650529002", "Halali - Schnapps glass with green bottom / optional engraving",
		"Appr. Height (in.): 3,8", "von Poschinger",
		"32.9", "0",
		"1", 1,
		"piece(s)", "56",
		"Engraving;heath cock@", "pd-1189914618.htm",
		"", 1,
		"207-003", "0",
		 0)
	
		Entry[254] = new Element(
		254, "assets/thumb/Hal_schnapps_handle.jpg",
		111, 125,
		"207-003-5655529002", "Halali - Schnapps glass with green handle / optional engraving",
		"Appr. Height (in.): 1,7", "von Poschinger",
		"34.9", "0",
		"1", 1,
		"piece(s)", "56",
		"Engraving;wood grouse@", "pd161568164.htm",
		"", 1,
		"207-003", "0",
		 0)
	
		Entry[255] = new Element(
		255, "assets/thumb/Arte_stags.jpg",
		83, 125,
		"206-05-5257501850", "Artemis - Beer mug with engraved fighting stags and pewter lid E",
		"Appr. Capacity (oz): 15", "von Poschinger",
		"88.9", "0",
		"1", 1,
		"piece(s)", "66",
		"", "pd338646352.htm",
		"", 1,
		"206-002", "0",
		 0)
	
		Entry[256] = new Element(
		256, "assets/thumb/Arte_grouse.jpg",
		68, 125,
		"206-05-5418503850", "Artemis - Beer mug with engraved grouse and pewter lid F",
		"Appr. Capacity (oz): 15", "von Poschinger",
		"88.9", "0",
		"1", 1,
		"piece(s)", "66",
		"", "pd-1422164994.htm",
		"", 1,
		"206-002", "0",
		 0)
	
		Entry[257] = new Element(
		257, "assets/thumb/Arte_pheasant.jpg",
		88, 125,
		"206-05-5257502850", "Artemis - Beer mug with engraved pheasant shooting and pewter lid E",
		"Appr. Capacity (oz): 15", "von Poschinger",
		"88.9", "0",
		"1", 1,
		"piece(s)", "66",
		"", "pd203778770.htm",
		"", 1,
		"206-002", "0",
		 0)
	
		Entry[258] = new Element(
		258, "assets/thumb/Arte_horn.jpg",
		71, 125,
		"206-05-6091500810", "Artemis - Drinking horn with engraved deer and pewter lid D",
		"Appr. Capacity (oz): 30", "von Poschinger",
		"189.95", "0",
		"1", 1,
		"piece(s)", "66",
		"", "pd1129917700.htm",
		"", 1,
		"206-002", "0",
		 0)
	
		Entry[259] = new Element(
		259, "assets/thumb/Hal_050_lid.jpg",
		83, 125,
		"206-003-5655529850", "Halali - Beer mug with green handle / optional engraving / pewter lid L",
		"Appr. Capacity (oz): 15", "von Poschinger",
		"72.9", "0",
		"1", 1,
		"piece(s)", "67",
		"Engraving;wild boar@", "pd1013906012.htm",
		"", 1,
		"206-003", "0",
		 0)
	
		Entry[260] = new Element(
		260, "assets/thumb/Hal_030_lid.jpg",
		82, 125,
		"206-003-5655529830", "Halali - Beer mug with green handle / optional engraving / pewter lid L",
		"Appr. Capacity (oz): 9", "von Poschinger",
		"68.9", "0",
		"1", 1,
		"piece(s)", "67",
		"Engraving;ducks@", "pd242526900.htm",
		"", 1,
		"206-003", "0",
		 0)
	
		Entry[261] = new Element(
		261, "assets/thumb/Hal_mug050.jpg",
		104, 125,
		"206-003-5655529050", "Halali - Beer mug with green handle / optional engraving / without pewter lid",
		"Appr. Capacity (oz): 15", "von Poschinger",
		"48.9", "0",
		"1", 1,
		"piece(s)", "67",
		"Engraving;wood grouse@", "pd703748074.htm",
		"", 1,
		"206-003", "0",
		 0)
	
		Entry[262] = new Element(
		262, "assets/thumb/Hal_mug030.jpg",
		104, 125,
		"206-003-5655529030", "Halali - Beer mug with green handle / optional engraving / without pewter lid",
		"Appr. Capacity (oz): 9", "von Poschinger",
		"47.5", "0",
		"1", 1,
		"piece(s)", "67",
		"Engraving;rabbit@", "pd1281220610.htm",
		"", 1,
		"206-003", "0",
		 0)
	
		Entry[263] = new Element(
		263, "assets/thumb/Hal_pils.jpg",
		43, 125,
		"206-003-5650529030", "Halali - Pilsner beer glass with green bottom / optional engraving",
		"Appr. Capacity (oz): 9", "von Poschinger",
		"44.5", "0",
		"1", 1,
		"piece(s)", "67",
		"Engraving;roebuck@", "pd-1597020120.htm",
		"", 1,
		"206-003", "0",
		 0)
	
		Entry[264] = new Element(
		264, "assets/thumb/Hal_wheat.jpg",
		46, 125,
		"206-003-5650529050", "Halali - Wheat beer glass with green bottom / optional engraving",
		"Appr. Capacity (oz): 15", "von Poschinger",
		"47.9", "0",
		"1", 1,
		"piece(s)", "67",
		"Engraving;stag@", "pd-1417532778.htm",
		"", 1,
		"206-003", "0",
		 0)
	
		Entry[265] = new Element(
		265, "assets/thumb/snake_blue.jpg",
		125, 125,
		"206-001-4542512850", "Snake - Blue handle",
		"Various designs and sizes available", "von Poschinger",
		"67.9", "0",
		"1", 1,
		"piece(s)", "65",
		"Engraving/Pewter Lid/Capacity (oz);Bavarian rhombus/Lid type B/15@", "pd1431011278.htm",
		"", 1,
		"206-001", "0",
		 0)
	
		Entry[266] = new Element(
		266, "assets/thumb/snake_clear.jpg",
		125, 125,
		"206-001-4542519850", "Snake - Clear handle",
		"Various designs and sizes available", "von Poschinger",
		"66.9", "0",
		"1", 1,
		"piece(s)", "65",
		"Engraving/Pewter Lid/Capacity (oz);Baroque garland/Lid type C/15@", "pd-618803512.htm",
		"", 1,
		"206-001", "0",
		 0)
	
		Entry[267] = new Element(
		267, "assets/thumb/snake_yellow.jpg",
		125, 125,
		"206-001-4542515850", "Snake - Yellow handle",
		"Various designs and sizes available", "von Poschinger",
		"72.9", "0",
		"1", 1,
		"piece(s)", "65",
		"Engraving/Pewter Lid/Capacity (oz);Hop/Lid type A/15@", "pd-933739406.htm",
		"", 1,
		"206-001", "0",
		 0)
	
		Entry[268] = new Element(
		268, "assets/thumb/Mug_S_Dots.jpg",
		125, 108,
		"401-06-0106872", "Mug",
		"Appr. Capacity (oz): 9", "Best of Snoopy",
		"24.9", "0",
		"1", 1,
		"piece(s)", "15",
		"", "pd1060183539.htm",
		"", 1,
		"401-001", "0",
		 0)
	
		Entry[269] = new Element(
		269, "assets/thumb/Bowl_S_Dots.jpg",
		125, 94,
		"401-06-0106873", "Bowl",
		"Appr. Capacity (oz): 12", "Best of Snoopy",
		"24.9", "0",
		"1", 1,
		"piece(s)", "15",
		"", "pd396337497.htm",
		"", 1,
		"401-001", "0",
		 0)
	
		Entry[270] = new Element(
		270, "assets/thumb/Esp_S_Dots.jpg",
		125, 86,
		"401-06-0106874", "Espresso Set",
		"Appr. Capacity (oz): 3", "Best of Snoopy",
		"26.9", "0",
		"1", 1,
		"piece(s)", "15",
		"", "pd-1896830161.htm",
		"", 1,
		"401-001", "0",
		 0)
	
		Entry[271] = new Element(
		271, "assets/thumb/Cappu_S_Dots.jpg",
		125, 74,
		"401-06-0106875", "Cup and Saucer",
		"Appr. Capacity (oz): 6", "Best of Snoopy",
		"34.9", "0",
		"1", 1,
		"piece(s)", "15",
		"", "pd-1167892235.htm",
		"", 1,
		"401-001", "0",
		 0)
	
		Entry[272] = new Element(
		272, "assets/thumb/Plate_S_Dots.jpg",
		125, 125,
		"401-06-0106876", "Small Plate",
		"Diam. (in.): 8,7", "Best of Snoopy",
		"24.9", "0",
		"1", 1,
		"piece(s)", "15",
		"", "pd1823564843.htm",
		"", 1,
		"401-001", "0",
		 0)
	
		Entry[273] = new Element(
		273, "assets/thumb/Egg_Salt_S_Dots.jpg",
		124, 125,
		"401-06-0106877", "Eggcup with Salt-shaker",
		"", "Best of Snoopy",
		"22.9", "0",
		"1", 1,
		"piece(s)", "15",
		"", "pd-1190972847.htm",
		"", 1,
		"401-001", "0",
		 0)
	
		Entry[274] = new Element(
		274, "assets/thumb/Sugar_S_Dots.jpg",
		109, 125,
		"401-06-0106883", "Sugar Bowl",
		"Appr. Capacity (oz): 6", "Best of Snoopy",
		"27.9", "0",
		"1", 1,
		"piece(s)", "15",
		"", "pd1949413741.htm",
		"", 1,
		"401-001", "0",
		 0)
	
		Entry[275] = new Element(
		275, "assets/thumb/Milk_S_Dots.jpg",
		125, 85,
		"401-06-0106889", "Milk Jug",
		"Appr. Capacity (oz): 6", "Best of Snoopy",
		"24.9", "0",
		"1", 1,
		"piece(s)", "15",
		"", "pd1417381095.htm",
		"", 1,
		"401-001", "0",
		 0)
	
		Entry[276] = new Element(
		276, "assets/thumb/Table_S_Dots.jpg",
		125, 90,
		"401-06-0107185", "24 Paper Placemats",
		"Appr. Size (in.): 16 x 11,4", "Best of Snoopy",
		"9.95", "0",
		"1", 1,
		"piece(s)", "15",
		"", "pd1496516963.htm",
		"", 1,
		"401-001", "0",
		 0)
	
		Entry[277] = new Element(
		277, "assets/thumb/Mug_S_Classic.jpg",
		125, 108,
		"401-06-0103954", "Mug",
		"Appr. Capacity (oz): 9", "Best of Snoopy",
		"24.9", "0",
		"1", 1,
		"piece(s)", "16",
		"", "pd1977825865.htm",
		"", 1,
		"401-002", "0",
		 0)
	
		Entry[278] = new Element(
		278, "assets/thumb/Bowl_S_Classic.jpg",
		125, 94,
		"401-06-0103960", "Bowl",
		"Appr. Capacity (oz): 12", "Best of Snoopy",
		"24.9", "0",
		"1", 1,
		"piece(s)", "16",
		"", "pd1741925791.htm",
		"", 1,
		"401-002", "0",
		 0)
	
		Entry[279] = new Element(
		279, "assets/thumb/Esp_S_Classic.jpg",
		125, 86,
		"401-06-0103966", "Espresso Set",
		"Appr. Capacity (oz): 3", "Best of Snoopy",
		"26.9", "0",
		"1", 1,
		"piece(s)", "16",
		"", "pd-689313563.htm",
		"", 1,
		"401-002", "0",
		 0)
	
		Entry[280] = new Element(
		280, "assets/thumb/Cappu_S_Classic.jpg",
		125, 75,
		"401-06-0105761", "Cup and Saucer",
		"Appr. Capacity (oz): 6", "Best of Snoopy",
		"34.9", "0",
		"1", 1,
		"piece(s)", "16",
		"", "pd376237467.htm",
		"", 1,
		"401-002", "0",
		 0)
	
		Entry[281] = new Element(
		281, "assets/thumb/Plate_S_Classic.jpg",
		125, 125,
		"401-06-0105767", "Small Plate",
		"Diam. (in.): 8,7", "Best of Snoopy",
		"24.9", "0",
		"1", 1,
		"piece(s)", "16",
		"", "pd374446401.htm",
		"", 1,
		"401-002", "0",
		 0)
	
		Entry[282] = new Element(
		282, "assets/thumb/Egg_Salt_S_Classic.jpg",
		124, 125,
		"401-06-0106879", "Eggcup with Salt-shaker",
		"", "Best of Snoopy",
		"22.9", "0",
		"1", 1,
		"piece(s)", "16",
		"", "pd987628887.htm",
		"", 1,
		"401-002", "0",
		 0)
	
		Entry[283] = new Element(
		283, "assets/thumb/Sugar_S_Classic.jpg",
		109, 125,
		"401-06-0106885", "Sugar Bowl",
		"Appr. Capacity (oz): 6", "Best of Snoopy",
		"27.9", "0",
		"1", 1,
		"piece(s)", "16",
		"", "pd-860545809.htm",
		"", 1,
		"401-002", "0",
		 0)
	
		Entry[284] = new Element(
		284, "assets/thumb/Milk_S_Classic.jpg",
		125, 85,
		"401-06-0106891", "Milk Jug",
		"Appr. Capacity (oz): 6", "Best of Snoopy",
		"24.9", "0",
		"1", 1,
		"piece(s)", "16",
		"", "pd-25434275.htm",
		"", 1,
		"401-002", "0",
		 0)
	
		Entry[285] = new Element(
		285, "assets/thumb/Table_S_Classic.jpg",
		125, 89,
		"401-06-0107183", "24 Paper Placemats",
		"Appr. Size (in.): 16 x 11,4", "Best of Snoopy",
		"9.95", "0",
		"1", 1,
		"piece(s)", "16",
		"", "pd-301193035.htm",
		"", 1,
		"401-002", "0",
		 0)
	
		Entry[286] = new Element(
		286, "assets/thumb/Mug_S_Homerun.jpg",
		125, 108,
		"401-06-0103958", "Mug",
		"Appr. Capacity (oz): 9", "Best of Snoopy",
		"24.9", "0",
		"1", 1,
		"piece(s)", "17",
		"", "pd1162997971.htm",
		"", 1,
		"401-003", "0",
		 0)
	
		Entry[287] = new Element(
		287, "assets/thumb/Bowl_S_Homerun.jpg",
		125, 94,
		"401-06-0103964", "Bowl",
		"Appr. Capacity (oz): 12", "Best of Snoopy",
		"24.9", "0",
		"1", 1,
		"piece(s)", "17",
		"", "pd-201576647.htm",
		"", 1,
		"401-003", "0",
		 0)
	
		Entry[288] = new Element(
		288, "assets/thumb/Esp_S_Homerun.jpg",
		125, 86,
		"401-06-0103970", "Espresso Set",
		"Appr. Capacity (oz): 3", "Best of Snoopy",
		"26.9", "0",
		"1", 1,
		"piece(s)", "17",
		"", "pd444296207.htm",
		"", 1,
		"401-003", "0",
		 0)
	
		Entry[289] = new Element(
		289, "assets/thumb/Cappu_S_Homerun.jpg",
		125, 75,
		"401-06-0105765", "Cup and Saucer",
		"Appr. Capacity (oz): 6", "Best of Snoopy",
		"34.9", "0",
		"1", 1,
		"piece(s)", "17",
		"", "pd-902591275.htm",
		"", 1,
		"401-003", "0",
		 0)
	
		Entry[290] = new Element(
		290, "assets/thumb/Plate_S_Homerun.jpg",
		125, 125,
		"401-06-0105771", "Small Plate",
		"Diam. (in.): 8,7", "Best of Snoopy",
		"24.9", "0",
		"1", 1,
		"piece(s)", "17",
		"", "pd-376376565.htm",
		"", 1,
		"401-003", "0",
		 0)
	
		Entry[291] = new Element(
		291, "assets/thumb/Egg_Salt_S_Homerun.jpg",
		124, 125,
		"401-06-0106882", "Eggcup with Salt-shaker",
		"", "Best of Snoopy",
		"22.9", "0",
		"1", 1,
		"piece(s)", "17",
		"", "pd-106111951.htm",
		"", 1,
		"401-003", "0",
		 0)
	
		Entry[292] = new Element(
		292, "assets/thumb/Sugar_S_Homerun.jpg",
		109, 125,
		"401-06-0106888", "Sugar Bowl",
		"Appr. Capacity (oz): 6", "Best of Snoopy",
		"27.9", "0",
		"1", 1,
		"piece(s)", "17",
		"", "pd-734480051.htm",
		"", 1,
		"401-003", "0",
		 0)
	
		Entry[293] = new Element(
		293, "assets/thumb/Milk_S_Homerun.jpg",
		125, 85,
		"401-06-0106894", "Milk Jug",
		"Appr. Capacity (oz): 6", "Best of Snoopy",
		"24.9", "0",
		"1", 1,
		"piece(s)", "17",
		"", "pd973652423.htm",
		"", 1,
		"401-003", "0",
		 0)
	
		Entry[294] = new Element(
		294, "assets/thumb/Table_S_Homerun.jpg",
		125, 90,
		"401-06-0107187", "24 Paper Placemats",
		"Appr. Size (in.): 16 x 11,4", "Best of Snoopy",
		"9.95", "0",
		"1", 1,
		"piece(s)", "17",
		"", "pd756339779.htm",
		"", 1,
		"401-003", "0",
		 0)
	
		Entry[295] = new Element(
		295, "assets/thumb/Mug_S_SilverStar.jpg",
		125, 108,
		"401-06-0103957", "Mug",
		"Appr. Capacity (oz): 9", "Best of Snoopy",
		"24.9", "0",
		"1", 1,
		"piece(s)", "18",
		"", "pd315195433.htm",
		"", 1,
		"401-004", "0",
		 0)
	
		Entry[296] = new Element(
		296, "assets/thumb/Bowl_S_SilverStar.jpg",
		125, 94,
		"401-06-0103963", "Bowl",
		"Appr. Capacity (oz): 12", "Best of Snoopy",
		"24.9", "0",
		"1", 1,
		"piece(s)", "18",
		"", "pd-1361123713.htm",
		"", 1,
		"401-004", "0",
		 0)
	
		Entry[297] = new Element(
		297, "assets/thumb/Esp_S_SilverStar.jpg",
		125, 86,
		"401-06-0103969", "Espresso Set",
		"Appr. Capacity (oz): 3", "Best of Snoopy",
		"26.9", "0",
		"1", 1,
		"piece(s)", "18",
		"", "pd-653308731.htm",
		"", 1,
		"401-004", "0",
		 0)
	
		Entry[298] = new Element(
		298, "assets/thumb/Cappu_S_SilverStar.jpg",
		125, 75,
		"401-06-0105764", "Cup and Saucer",
		"Appr. Capacity (oz): 6", "Best of Snoopy",
		"34.9", "0",
		"1", 1,
		"piece(s)", "18",
		"", "pd327447675.htm",
		"", 1,
		"401-004", "0",
		 0)
	
		Entry[299] = new Element(
		299, "assets/thumb/Plate_S_SilverStar.jpg",
		125, 125,
		"401-06-0105770", "Small Plate",
		"Diam. (in.): 8,7", "Best of Snoopy",
		"24.9", "0",
		"1", 1,
		"piece(s)", "18",
		"", "pd181664545.htm",
		"", 1,
		"401-004", "0",
		 0)
	
		Entry[300] = new Element(
		300, "assets/thumb/Egg_Salt_S_SilverStar.jpg",
		124, 125,
		"401-06-0106881", "Eggcup with Salt-shaker",
		"", "Best of Snoopy",
		"22.9", "0",
		"1", 1,
		"piece(s)", "18",
		"", "pd1540536887.htm",
		"", 1,
		"401-004", "0",
		 0)
	
		Entry[301] = new Element(
		301, "assets/thumb/Sugar_S_SilverStar.jpg",
		109, 125,
		"401-06-0106887", "Sugar Bowl",
		"Appr. Capacity (oz): 6", "Best of Snoopy",
		"27.9", "0",
		"1", 1,
		"piece(s)", "18",
		"", "pd499299251.htm",
		"", 1,
		"401-004", "0",
		 0)
	
		Entry[302] = new Element(
		302, "assets/thumb/Milk_S_SilverStar.jpg",
		125, 85,
		"401-06-0106893", "Milk Jug",
		"Appr. Capacity (oz): 6", "Best of Snoopy",
		"24.9", "0",
		"1", 1,
		"piece(s)", "18",
		"", "pd-1894308035.htm",
		"", 1,
		"401-004", "0",
		 0)
	
		Entry[303] = new Element(
		303, "assets/thumb/Table_S_SilverStar.jpg",
		125, 90,
		"401-06-0107186", "24 Paper Placemats",
		"Appr. Size (in.): 16 x 11,4", "Best of Snoopy",
		"9.95", "0",
		"1", 1,
		"piece(s)", "18",
		"", "pd-588632807.htm",
		"", 1,
		"401-004", "0",
		 0)
	
		Entry[304] = new Element(
		304, "assets/thumb/Mug_S_PinkLove.jpg",
		125, 108,
		"401-06-0103953", "Mug",
		"Appr. Capacity (oz): 9", "Best of Snoopy",
		"24.9", "0",
		"1", 1,
		"piece(s)", "19",
		"", "pd-579964437.htm",
		"", 1,
		"401-005", "0",
		 0)
	
		Entry[305] = new Element(
		305, "assets/thumb/Bowl_S_PinkLove.jpg",
		125, 94,
		"401-06-0103959", "Bowl",
		"Appr. Capacity (oz): 12", "Best of Snoopy",
		"24.9", "0",
		"1", 1,
		"piece(s)", "19",
		"", "pd1933964817.htm",
		"", 1,
		"401-005", "0",
		 0)
	
		Entry[306] = new Element(
		306, "assets/thumb/Esp_S_PinkLove.jpg",
		125, 86,
		"401-06-0103965", "Espresso Set",
		"Appr. Capacity (oz): 3", "Best of Snoopy",
		"26.9", "0",
		"1", 1,
		"piece(s)", "19",
		"", "pd30600871.htm",
		"", 1,
		"401-005", "0",
		 0)
	
		Entry[307] = new Element(
		307, "assets/thumb/Cappu_S_PinkLove.jpg",
		125, 75,
		"401-06-0105760", "Cup and Saucer",
		"Appr. Capacity (oz): 6", "Best of Snoopy",
		"34.9", "0",
		"1", 1,
		"piece(s)", "19",
		"", "pd-427413203.htm",
		"", 1,
		"401-005", "0",
		 0)
	
		Entry[308] = new Element(
		308, "assets/thumb/Plate_S_PinkLove.jpg",
		125, 125,
		"401-06-0105766", "Small Plate",
		"Diam. (in.): 8,7", "Best of Snoopy",
		"24.9", "0",
		"1", 1,
		"piece(s)", "19",
		"", "pd2019725091.htm",
		"", 1,
		"401-005", "0",
		 0)
	
		Entry[309] = new Element(
		309, "assets/thumb/Egg_Salt_S_PinkLove.jpg",
		124, 125,
		"401-06-0106878", "Eggcup with Salt-shaker",
		"", "Best of Snoopy",
		"22.9", "0",
		"1", 1,
		"piece(s)", "19",
		"", "pd-692242935.htm",
		"", 1,
		"401-005", "0",
		 0)
	
		Entry[310] = new Element(
		310, "assets/thumb/Sugar_S_PinkLove.jpg",
		109, 125,
		"401-06-0106884", "Sugar Bowl",
		"Appr. Capacity (oz): 6", "Best of Snoopy",
		"27.9", "0",
		"1", 1,
		"piece(s)", "19",
		"", "pd-1988550491.htm",
		"", 1,
		"401-005", "0",
		 0)
	
		Entry[311] = new Element(
		311, "assets/thumb/Milk_S_PinkLove.jpg",
		125, 85,
		"401-06-0106890", "Milk Jug",
		"Appr. Capacity (oz): 6", "Best of Snoopy",
		"24.9", "0",
		"1", 1,
		"piece(s)", "19",
		"", "pd729091935.htm",
		"", 1,
		"401-005", "0",
		 0)
	
		Entry[312] = new Element(
		312, "assets/thumb/Table_S_PinkLove.jpg",
		125, 90,
		"401-06-0107182", "24 Paper Placemats",
		"Appr. Size (in.): 16 x 11,4", "Best of Snoopy",
		"9.95", "0",
		"1", 1,
		"piece(s)", "19",
		"", "pd473295707.htm",
		"", 1,
		"401-005", "0",
		 0)
	
		Entry[313] = new Element(
		313, "assets/thumb/Mug_S_FlowerStrip.jpg",
		125, 108,
		"401-06-0103955", "Mug",
		"Appr. Capacity (oz): 9", "Best of Snoopy",
		"24.9", "0",
		"1", 1,
		"piece(s)", "20",
		"", "pd-834548479.htm",
		"", 1,
		"401-006", "0",
		 0)
	
		Entry[314] = new Element(
		314, "assets/thumb/Bowl_S_FlowerStrip.jpg",
		125, 94,
		"401-06-0103961", "Bowl",
		"Appr. Capacity (oz): 12", "Best of Snoopy",
		"24.9", "0",
		"1", 1,
		"piece(s)", "20",
		"", "pd39173583.htm",
		"", 1,
		"401-006", "0",
		 0)
	
		Entry[315] = new Element(
		315, "assets/thumb/Esp_S_FlowerStrip.jpg",
		125, 86,
		"401-06-0103967", "Espresso Set",
		"Appr. Capacity (oz): 3", "Best of Snoopy",
		"26.9", "0",
		"1", 1,
		"piece(s)", "20",
		"", "pd-1318767467.htm",
		"", 1,
		"401-006", "0",
		 0)
	
		Entry[316] = new Element(
		316, "assets/thumb/Cappu_S_FlowerStrip.jpg",
		125, 75,
		"401-06-0105762", "Cup and Saucer",
		"Appr. Capacity (oz): 6", "Best of Snoopy",
		"34.9", "0",
		"1", 1,
		"piece(s)", "20",
		"", "pd-1602101045.htm",
		"", 1,
		"401-006", "0",
		 0)
	
		Entry[317] = new Element(
		317, "assets/thumb/Plate_S_FlowerStrip.jpg",
		125, 125,
		"401-06-0105768", "Small Plate",
		"Diam. (in.): 8,7", "Best of Snoopy",
		"24.9", "0",
		"1", 1,
		"piece(s)", "20",
		"", "pd415662065.htm",
		"", 1,
		"401-006", "0",
		 0)
	
		Entry[318] = new Element(
		318, "assets/thumb/Egg_Salt_S_FlowerStrip.jpg",
		124, 125,
		"401-06-0106880", "Eggcup with Salt-shaker",
		"", "Best of Snoopy",
		"22.9", "0",
		"1", 1,
		"piece(s)", "20",
		"", "pd-1215165561.htm",
		"", 1,
		"401-006", "0",
		 0)
	
		Entry[319] = new Element(
		319, "assets/thumb/Sugar_S_FlowerStrip.jpg",
		109, 125,
		"401-06-0106886", "Sugar Bowl",
		"Appr. Capacity (oz): 6", "Best of Snoopy",
		"27.9", "0",
		"1", 1,
		"piece(s)", "20",
		"", "pd844380675.htm",
		"", 1,
		"401-006", "0",
		 0)
	
		Entry[320] = new Element(
		320, "assets/thumb/Milk_S_FlowerStrip.jpg",
		125, 85,
		"401-06-0106892", "Milk Jug",
		"Appr. Capacity (oz): 6", "Best of Snoopy",
		"24.9", "0",
		"1", 1,
		"piece(s)", "20",
		"", "pd2106726669.htm",
		"", 1,
		"401-006", "0",
		 0)
	
		Entry[321] = new Element(
		321, "assets/thumb/Table_S_FlowerStrip.jpg",
		125, 90,
		"401-06-0107184", "24 Paper Placemats",
		"Appr. Size (in.): 16 x 11,4", "Best of Snoopy",
		"9.95", "0",
		"1", 1,
		"piece(s)", "20",
		"", "pd1807113193.htm",
		"", 1,
		"401-006", "0",
		 0)
	
		Entry[322] = new Element(
		322, "assets/thumb/Mug_S_Roccoco.jpg",
		125, 109,
		"401-06-0103956", "Mug",
		"Appr. Capacity (oz): 9", "Best of Snoopy",
		"24.9", "0",
		"1", 1,
		"piece(s)", "21",
		"", "pd2018388031.htm",
		"", 1,
		"401-007", "0",
		 0)
	
		Entry[323] = new Element(
		323, "assets/thumb/Bowl_S_Roccoco.jpg",
		125, 94,
		"401-06-0103962", "Bowl",
		"Appr. Capacity (oz): 12", "Best of Snoopy",
		"24.9", "0",
		"1", 1,
		"piece(s)", "21",
		"", "pd-509647739.htm",
		"", 1,
		"401-007", "0",
		 0)
	
		Entry[324] = new Element(
		324, "assets/thumb/Esp_S_Roccoco.jpg",
		125, 86,
		"401-06-0103968", "Espresso Set",
		"Appr. Capacity (oz): 3", "Best of Snoopy",
		"26.9", "0",
		"1", 1,
		"piece(s)", "21",
		"", "pd-1497804229.htm",
		"", 1,
		"401-007", "0",
		 0)
	
		Entry[325] = new Element(
		325, "assets/thumb/Mug_M_Fame.jpg",
		125, 108,
		"501-07-0106849", "Mug",
		"Appr. Capacity (oz): 9", "Best of Mickey",
		"24.9", "0",
		"1", 1,
		"piece(s)", "25",
		"", "pd818738941.htm",
		"", 1,
		"501-001", "0",
		 0)
	
		Entry[326] = new Element(
		326, "assets/thumb/Bowl_M_Fame.jpg",
		125, 94,
		"501-07-0106850", "Bowl",
		"Appr. Capacity (oz): 12", "Best of Mickey",
		"24.9", "0",
		"1", 1,
		"piece(s)", "25",
		"", "pd-428603021.htm",
		"", 1,
		"501-001", "0",
		 0)
	
		Entry[327] = new Element(
		327, "assets/thumb/Esp_M_Fame.jpg",
		125, 86,
		"501-07-0106851", "Espresso Set",
		"Appr. Capacity (oz): 3", "Best of Mickey",
		"26.9", "0",
		"1", 1,
		"piece(s)", "25",
		"", "pd-530941735.htm",
		"", 1,
		"501-001", "0",
		 0)
	
		Entry[328] = new Element(
		328, "assets/thumb/Cappu_M_Fame.jpg",
		125, 74,
		"501-07-0106852", "Cup and Saucer",
		"Appr. Capacity (oz): 6", "Best of Mickey",
		"34.9", "0",
		"1", 1,
		"piece(s)", "25",
		"", "pd336940719.htm",
		"", 1,
		"501-001", "0",
		 0)
	
		Entry[329] = new Element(
		329, "assets/thumb/Plate_M_Fame.jpg",
		125, 125,
		"501-07-0106853", "Small Plate",
		"Diam. (in.): 8,7", "Best of Mickey",
		"24.9", "0",
		"1", 1,
		"piece(s)", "25",
		"", "pd-71913355.htm",
		"", 1,
		"501-001", "0",
		 0)
	
		Entry[330] = new Element(
		330, "assets/thumb/Egg_Salt_M_Fame.jpg",
		124, 125,
		"501-07-0106854", "Eggcup with Salt-shaker",
		"", "Best of Mickey",
		"22.9", "0",
		"1", 1,
		"piece(s)", "25",
		"", "pd1191395243.htm",
		"", 1,
		"501-001", "0",
		 0)
	
		Entry[331] = new Element(
		331, "assets/thumb/Sugar_M_Fame.jpg",
		109, 125,
		"501-07-0106860", "Sugar Bowl",
		"Appr. Capacity (oz): 6", "Best of Mickey",
		"27.9", "0",
		"1", 1,
		"piece(s)", "25",
		"", "pd-486664089.htm",
		"", 1,
		"501-001", "0",
		 0)
	
		Entry[332] = new Element(
		332, "assets/thumb/Milk_M_Fame.jpg",
		125, 85,
		"501-07-0106866", "Milk Jug",
		"Appr. Capacity (oz): 6", "Best of Mickey",
		"24.9", "0",
		"1", 1,
		"piece(s)", "25",
		"", "pd-114918959.htm",
		"", 1,
		"501-001", "0",
		 0)
	
		Entry[333] = new Element(
		333, "assets/thumb/Table_M_Fame.jpg",
		125, 90,
		"501-07-0107179", "24 Paper Placemats",
		"Appr. Size (in.): 16 x 11,4", "Best of Mickey",
		"9.95", "0",
		"1", 1,
		"piece(s)", "25",
		"", "pd1205104877.htm",
		"", 1,
		"501-001", "0",
		 0)
	
		Entry[334] = new Element(
		334, "assets/thumb/Mug_M_PrettyPink.jpg",
		125, 108,
		"501-07-0103935", "Mug",
		"Appr. Capacity (oz): 9", "Best of Mickey",
		"24.9", "0",
		"1", 1,
		"piece(s)", "26",
		"", "pd-1910385437.htm",
		"", 1,
		"501-002", "0",
		 0)
	
		Entry[335] = new Element(
		335, "assets/thumb/Bowl_M_PrettyPink.jpg",
		125, 94,
		"501-07-0103941", "Bowl",
		"Appr. Capacity (oz): 12", "Best of Mickey",
		"24.9", "0",
		"1", 1,
		"piece(s)", "26",
		"", "pd397210057.htm",
		"", 1,
		"501-002", "0",
		 0)
	
		Entry[336] = new Element(
		336, "assets/thumb/Esp_M_PrettyPink.jpg",
		125, 86,
		"501-07-0103947", "Espresso Set",
		"Appr. Capacity (oz): 3", "Best of Mickey",
		"26.9", "0",
		"1", 1,
		"piece(s)", "26",
		"", "pd740438303.htm",
		"", 1,
		"501-002", "0",
		 0)
	
		Entry[337] = new Element(
		337, "assets/thumb/Cappu_M_PrettyPink.jpg",
		125, 75,
		"501-07-0105748", "Cup and Saucer",
		"Appr. Capacity (oz): 6", "Best of Mickey",
		"34.9", "0",
		"1", 1,
		"piece(s)", "26",
		"", "pd922359909.htm",
		"", 1,
		"501-002", "0",
		 0)
	
		Entry[338] = new Element(
		338, "assets/thumb/Plate_M_PrettyPink.jpg",
		125, 125,
		"501-07-0105754", "Small Plate",
		"Diam. (in.): 8,7", "Best of Mickey",
		"24.9", "0",
		"1", 1,
		"piece(s)", "26",
		"", "pd-448354021.htm",
		"", 1,
		"501-002", "0",
		 0)
	
		Entry[339] = new Element(
		339, "assets/thumb/Egg_Salt_M_PrettyPink.jpg",
		124, 125,
		"501-07-0106855", "Eggcup with Salt-shaker",
		"", "Best of Mickey",
		"22.9", "0",
		"1", 1,
		"piece(s)", "26",
		"", "pd-507526975.htm",
		"", 1,
		"501-002", "0",
		 0)
	
		Entry[340] = new Element(
		340, "assets/thumb/Sugar_M_PrettyPink.jpg",
		109, 125,
		"501-07-0106861", "Sugar Bowl",
		"Appr. Capacity (oz): 6", "Best of Mickey",
		"27.9", "0",
		"1", 1,
		"piece(s)", "26",
		"", "pd517441245.htm",
		"", 1,
		"501-002", "0",
		 0)
	
		Entry[341] = new Element(
		341, "assets/thumb/Milk_M_PrettyPink.jpg",
		125, 85,
		"501-07-0106867", "Milk Jug",
		"Appr. Capacity (oz): 6", "Best of Mickey",
		"24.9", "0",
		"1", 1,
		"piece(s)", "26",
		"", "pd1965455575.htm",
		"", 1,
		"501-002", "0",
		 0)
	
		Entry[342] = new Element(
		342, "assets/thumb/Table_M_PrettyPink.jpg",
		125, 90,
		"501-07-0107176", "24 Paper Placemats",
		"Appr. Size (in.): 16 x 11,4", "Best of Mickey",
		"9.95", "0",
		"1", 1,
		"piece(s)", "26",
		"", "pd-1121674157.htm",
		"", 1,
		"501-002", "0",
		 0)
	
		Entry[343] = new Element(
		343, "assets/thumb/Mug_M_Cocolat.jpg",
		125, 108,
		"501-07-0103936", "Mug",
		"Appr. Capacity (oz): 9", "Best of Mickey",
		"24.9", "0",
		"1", 1,
		"piece(s)", "27",
		"", "pd114083513.htm",
		"", 1,
		"501-003", "0",
		 0)
	
		Entry[344] = new Element(
		344, "assets/thumb/Bowl_M_Cocolat.jpg",
		125, 94,
		"501-07-0103942", "Bowl",
		"Appr. Capacity (oz): 12", "Best of Mickey",
		"24.9", "0",
		"1", 1,
		"piece(s)", "27",
		"", "pd1454100367.htm",
		"", 1,
		"501-003", "0",
		 0)
	
		Entry[345] = new Element(
		345, "assets/thumb/Esp_M_Cocolat.jpg",
		125, 86,
		"501-07-0103948", "Espresso Set",
		"Appr. Capacity (oz): 3", "Best of Mickey",
		"26.9", "0",
		"1", 1,
		"piece(s)", "27",
		"", "pd276339797.htm",
		"", 1,
		"501-003", "0",
		 0)
	
		Entry[346] = new Element(
		346, "assets/thumb/Cappu_M_Cocolat.jpg",
		125, 75,
		"501-07-0105749", "Cup and Saucer",
		"Appr. Capacity (oz): 6", "Best of Mickey",
		"34.9", "0",
		"1", 1,
		"piece(s)", "27",
		"", "pd-1591046517.htm",
		"", 1,
		"501-003", "0",
		 0)
	
		Entry[347] = new Element(
		347, "assets/thumb/Plate_M_Cocolat.jpg",
		125, 125,
		"501-07-0105755", "Small Plate",
		"Diam. (in.): 8,7", "Best of Mickey",
		"24.9", "0",
		"1", 1,
		"piece(s)", "27",
		"", "pd1063117745.htm",
		"", 1,
		"501-003", "0",
		 0)
	
		Entry[348] = new Element(
		348, "assets/thumb/Egg_Salt_M_Cocolat.jpg",
		124, 125,
		"501-07-0106856", "Eggcup with Salt-shaker",
		"", "Best of Mickey",
		"22.9", "0",
		"1", 1,
		"piece(s)", "27",
		"", "pd-2016471737.htm",
		"", 1,
		"501-003", "0",
		 0)
	
		Entry[349] = new Element(
		349, "assets/thumb/Sugar_M_Cocolat.jpg",
		109, 125,
		"501-07-0106862", "Sugar Bowl",
		"Appr. Capacity (oz): 6", "Best of Mickey",
		"27.9", "0",
		"1", 1,
		"piece(s)", "27",
		"", "pd-83664957.htm",
		"", 1,
		"501-003", "0",
		 0)
	
		Entry[350] = new Element(
		350, "assets/thumb/Milk_M_Cocolat.jpg",
		125, 85,
		"501-07-0106868", "Milk Jug",
		"Appr. Capacity (oz): 6", "Best of Mickey",
		"24.9", "0",
		"1", 1,
		"piece(s)", "27",
		"", "pd-809158451.htm",
		"", 1,
		"501-003", "0",
		 0)
	
		Entry[351] = new Element(
		351, "assets/thumb/Table_M_Cocolat.jpg",
		125, 90,
		"501-07-0107177", "24 Paper Placemats",
		"Appr. Size (in.): 16 x 11,4", "Best of Mickey",
		"9.95", "0",
		"1", 1,
		"piece(s)", "27",
		"", "pd-1130825815.htm",
		"", 1,
		"501-003", "0",
		 0)
	
		Entry[352] = new Element(
		352, "assets/thumb/Mug_M_GoodMorning.jpg",
		125, 108,
		"501-07-0103937", "Mug",
		"Appr. Capacity (oz): 9", "Best of Mickey",
		"24.9", "0",
		"1", 1,
		"piece(s)", "28",
		"", "pd-643225089.htm",
		"", 1,
		"501-004", "0",
		 0)
	
		Entry[353] = new Element(
		353, "assets/thumb/Bowl_M_Goodmorning.jpg",
		125, 94,
		"501-07-0103943", "Bowl",
		"Appr. Capacity (oz): 12", "Best of Mickey",
		"24.9", "0",
		"1", 1,
		"piece(s)", "28",
		"", "pd989936709.htm",
		"", 1,
		"501-004", "0",
		 0)
	
		Entry[354] = new Element(
		354, "assets/thumb/Esp_M_GoodMorning.jpg",
		125, 86,
		"501-07-0103949", "Espresso Set",
		"Appr. Capacity (oz): 3", "Best of Mickey",
		"26.9", "0",
		"1", 1,
		"piece(s)", "28",
		"", "pd-971640837.htm",
		"", 1,
		"501-004", "0",
		 0)
	
		Entry[355] = new Element(
		355, "assets/thumb/Cappu_M_GoodMorning.jpg",
		125, 75,
		"501-07-0105750", "Cup and Saucer",
		"Appr. Capacity (oz): 6", "Best of Mickey",
		"34.9", "0",
		"1", 1,
		"piece(s)", "28",
		"", "pd130015905.htm",
		"", 1,
		"501-004", "0",
		 0)
	
		Entry[356] = new Element(
		356, "assets/thumb/Plate_M_GoodMorning.jpg",
		125, 125,
		"501-07-0105756", "Small Plate",
		"Diam. (in.): 8,7", "Best of Mickey",
		"24.9", "0",
		"1", 1,
		"piece(s)", "28",
		"", "pd583986615.htm",
		"", 1,
		"501-004", "0",
		 0)
	
		Entry[357] = new Element(
		357, "assets/thumb/Egg_Salt_M_GoodMorning.jpg",
		124, 125,
		"501-07-0106857", "Eggcup with Salt-shaker",
		"", "Best of Mickey",
		"22.9", "0",
		"1", 1,
		"piece(s)", "28",
		"", "pd575440573.htm",
		"", 1,
		"501-004", "0",
		 0)
	
		Entry[358] = new Element(
		358, "assets/thumb/Sugar_M_GoodMorning.jpg",
		109, 125,
		"501-07-0106863", "Sugar Bowl",
		"Appr. Capacity (oz): 6", "Best of Mickey",
		"27.9", "0",
		"1", 1,
		"piece(s)", "28",
		"", "pd1370522777.htm",
		"", 1,
		"501-004", "0",
		 0)
	
		Entry[359] = new Element(
		359, "assets/thumb/Milk_M_GoodMorning.jpg",
		125, 85,
		"501-07-0106869", "Milk Jug",
		"Appr. Capacity (oz): 6", "Best of Mickey",
		"24.9", "0",
		"1", 1,
		"piece(s)", "28",
		"", "pd855973683.htm",
		"", 1,
		"501-004", "0",
		 0)
	
		Entry[360] = new Element(
		360, "assets/thumb/Table_M_Goodmorning.jpg",
		125, 90,
		"501-07-0107178", "24 Paper Placemats",
		"Appr. Size (in.): 16 x 11,4", "Best of Mickey",
		"9.95", "0",
		"1", 1,
		"piece(s)", "28",
		"", "pd449921135.htm",
		"", 1,
		"501-004", "0",
		 0)
	
		Entry[361] = new Element(
		361, "assets/thumb/Mug_M_Glamour.jpg",
		125, 108,
		"501-07-0103940", "Mug",
		"Appr. Capacity (oz): 9", "Best of Mickey",
		"24.9", "0",
		"1", 1,
		"piece(s)", "29",
		"", "pd-1893533643.htm",
		"", 1,
		"501-005", "0",
		 0)
	
		Entry[362] = new Element(
		362, "assets/thumb/Bowl_M_Glamour.jpg",
		125, 94,
		"501-07-0103946", "Bowl",
		"Appr. Capacity (oz): 12", "Best of Mickey",
		"24.9", "0",
		"1", 1,
		"piece(s)", "29",
		"", "pd1432379159.htm",
		"", 1,
		"501-005", "0",
		 0)
	
		Entry[363] = new Element(
		363, "assets/thumb/Esp_M_Glamour.jpg",
		125, 86,
		"501-07-0103952", "Espresso Set",
		"Appr. Capacity (oz): 3", "Best of Mickey",
		"26.9", "0",
		"1", 1,
		"piece(s)", "29",
		"", "pd-1615538403.htm",
		"", 1,
		"501-005", "0",
		 0)
	
		Entry[364] = new Element(
		364, "assets/thumb/Cappu_M_Glamour.jpg",
		125, 75,
		"501-07-0105753", "Cup and Saucer",
		"Appr. Capacity (oz): 6", "Best of Mickey",
		"34.9", "0",
		"1", 1,
		"piece(s)", "29",
		"", "pd1639671443.htm",
		"", 1,
		"501-005", "0",
		 0)
	
		Entry[365] = new Element(
		365, "assets/thumb/Plate_M_Glamour.jpg",
		125, 125,
		"501-07-0105759", "Small Plate",
		"Diam. (in.): 8,7", "Best of Mickey",
		"24.9", "0",
		"1", 1,
		"piece(s)", "29",
		"", "pd-295593223.htm",
		"", 1,
		"501-005", "0",
		 0)
	
		Entry[366] = new Element(
		366, "assets/thumb/Egg_Salt_M_Glamour.jpg",
		124, 125,
		"501-07-0106859", "Eggcup with Salt-shaker",
		"", "Best of Mickey",
		"22.9", "0",
		"1", 1,
		"piece(s)", "29",
		"", "pd992988523.htm",
		"", 1,
		"501-005", "0",
		 0)
	
		Entry[367] = new Element(
		367, "assets/thumb/Sugar_M_Glamour.jpg",
		109, 125,
		"501-07-0106865", "Sugar Bowl",
		"Appr. Capacity (oz): 6", "Best of Mickey",
		"27.9", "0",
		"1", 1,
		"piece(s)", "29",
		"", "pd633143847.htm",
		"", 1,
		"501-005", "0",
		 0)
	
		Entry[368] = new Element(
		368, "assets/thumb/Milk_M_Glamour.jpg",
		125, 85,
		"501-07-0106871", "Milk Jug",
		"Appr. Capacity (oz): 6", "Best of Mickey",
		"24.9", "0",
		"1", 1,
		"piece(s)", "29",
		"", "pd845462929.htm",
		"", 1,
		"501-005", "0",
		 0)
	
		Entry[369] = new Element(
		369, "assets/thumb/Table_M_Glamour.jpg",
		125, 89,
		"501-07-0107181", "24 Paper Placemats",
		"Appr. Size (in.): 16 x 11,4", "Best of Mickey",
		"9.95", "0",
		"1", 1,
		"piece(s)", "29",
		"", "pd2078044333.htm",
		"", 1,
		"501-005", "0",
		 0)
	
		Entry[370] = new Element(
		370, "assets/thumb/Mug_M_PopStar.jpg",
		125, 108,
		"501-07-0103939", "Mug",
		"Appr. Capacity (oz): 9", "Best of Mickey",
		"24.9", "0",
		"1", 1,
		"piece(s)", "30",
		"", "pd607181475.htm",
		"", 1,
		"501-006", "0",
		 0)
	
		Entry[371] = new Element(
		371, "assets/thumb/Bowl_M_PopStar.jpg",
		125, 94,
		"501-07-0103945", "Bowl",
		"Appr. Capacity (oz): 12", "Best of Mickey",
		"24.9", "0",
		"1", 1,
		"piece(s)", "30",
		"", "pd-663589495.htm",
		"", 1,
		"501-006", "0",
		 0)
	
		Entry[372] = new Element(
		372, "assets/thumb/Esp_M_PopStar.jpg",
		125, 86,
		"501-07-0103951", "Espresso Set",
		"Appr. Capacity (oz): 3", "Best of Mickey",
		"26.9", "0",
		"1", 1,
		"piece(s)", "30",
		"", "pd261821151.htm",
		"", 1,
		"501-006", "0",
		 0)
	
		Entry[373] = new Element(
		373, "assets/thumb/Cappu_M_PopStar.jpg",
		125, 75,
		"501-07-0105752", "Cup and Saucer",
		"Appr. Capacity (oz): 6", "Best of Mickey",
		"34.9", "0",
		"1", 1,
		"piece(s)", "30",
		"", "pd-80949211.htm",
		"", 1,
		"501-006", "0",
		 0)
	
		Entry[374] = new Element(
		374, "assets/thumb/Plate_M_PopStar.jpg",
		125, 125,
		"501-07-0105758", "Small Plate",
		"Diam. (in.): 8,7", "Best of Mickey",
		"24.9", "0",
		"1", 1,
		"piece(s)", "30",
		"", "pd-211867941.htm",
		"", 1,
		"501-006", "0",
		 0)
	
		Entry[375] = new Element(
		375, "assets/thumb/Egg_Salt_M_PopStar.jpg",
		124, 125,
		"501-07-0106858", "Eggcup with Salt-shaker",
		"", "Best of Mickey",
		"22.9", "0",
		"1", 1,
		"piece(s)", "30",
		"", "pd-1467255679.htm",
		"", 1,
		"501-006", "0",
		 0)
	
		Entry[376] = new Element(
		376, "assets/thumb/Sugar_M_Popstar.jpg",
		109, 125,
		"501-07-0106864", "Sugar Bowl",
		"Appr. Capacity (oz): 6", "Best of Mickey",
		"27.9", "0",
		"1", 1,
		"piece(s)", "30",
		"", "pd-811338083.htm",
		"", 1,
		"501-006", "0",
		 0)
	
		Entry[377] = new Element(
		377, "assets/thumb/Milk_M_Popstar.jpg",
		125, 85,
		"501-07-0106870", "Milk Jug",
		"Appr. Capacity (oz): 6", "Best of Mickey",
		"24.9", "0",
		"1", 1,
		"piece(s)", "30",
		"", "pd-1208986985.htm",
		"", 1,
		"501-006", "0",
		 0)
	
		Entry[378] = new Element(
		378, "assets/thumb/Table_M_PopStar.jpg",
		125, 90,
		"501-07-0107180", "24 Paper Placemats",
		"Appr. Size (in.): 16 x 11,4", "Best of Mickey",
		"9.95", "0",
		"1", 1,
		"piece(s)", "30",
		"", "pd-783445485.htm",
		"", 1,
		"501-006", "0",
		 0)
	
		Entry[379] = new Element(
		379, "assets/thumb/Mug_M_PurpleLife.jpg",
		125, 108,
		"501-07-0103938", "Mug",
		"Appr. Capacity (oz): 9", "Best of Mickey",
		"24.9", "0",
		"1", 1,
		"piece(s)", "31",
		"", "pd1291694713.htm",
		"", 1,
		"501-007", "0",
		 0)
	
		Entry[380] = new Element(
		380, "assets/thumb/Bowl_M_PurpleLife.jpg",
		125, 94,
		"501-07-0103944", "Bowl",
		"Appr. Capacity (oz): 12", "Best of Mickey",
		"24.9", "0",
		"1", 1,
		"piece(s)", "31",
		"", "pd-1388469937.htm",
		"", 1,
		"501-007", "0",
		 0)
	
		Entry[381] = new Element(
		381, "assets/thumb/Esp_M_PurpleLife.jpg",
		125, 86,
		"501-07-0103950", "Espresso Set",
		"Appr. Capacity (oz): 3", "Best of Mickey",
		"26.9", "0",
		"1", 1,
		"piece(s)", "31",
		"", "pd1932379157.htm",
		"", 1,
		"501-007", "0",
		 0)
	
		Entry[382] = new Element(
		382, "assets/thumb/3607espresso.jpg",
		125, 86,
		"209-001-360701", "Picasso Espresso Set, Design 3607",
		"Also available: Cappuchino and Milky coffee sets!", "Koeniglich Tettau",
		"49", "0",
		"1", 1,
		"piece(s)", "11",
		"Appr. capacity (oz.);3@", "pd1112476001.htm",
		"", 1,
		"209-001", "0",
		 0)
	
		Entry[383] = new Element(
		383, "assets/thumb/3608espresso.jpg",
		125, 82,
		"209-001-360801", "Picasso Espresso Set, Design 3608",
		"Also available: Cappuchino and Milky Coffee sets!", "Koeniglich Tettau",
		"49", "0",
		"1", 1,
		"piece(s)", "11",
		"Appr. capacity (oz.);3@", "pd813920243.htm",
		"", 1,
		"209-001", "0",
		 0)
	
		Entry[384] = new Element(
		384, "assets/thumb/3609espresso.jpg",
		125, 82,
		"209-001-360901", "Picasso Espresso Set, Design 3609",
		"Also available: Cappuchino and Milky coffee sets!", "Koeniglich Tettau",
		"49", "0",
		"1", 1,
		"piece(s)", "11",
		"Appr. capacity (oz.);3@", "pd126100213.htm",
		"", 1,
		"209-001", "0",
		 0)
	
		Entry[385] = new Element(
		385, "assets/thumb/3604_Gedeck.jpg",
		125, 94,
		"209-12-360410", "Picasso Coffee Service (3-piece), Design 3604",
		"", "Koeniglich Tettau",
		"76", "0",
		"1", 1,
		"piece(s)", "12",
		"", "pd-663800089.htm",
		"", 1,
		"209-002", "0",
		 0)
	
		Entry[386] = new Element(
		386, "assets/thumb/3605_Gedeck.jpg",
		125, 94,
		"209-12-360510", "Picasso Coffee Service (3-piece), Design 3605",
		"", "Koeniglich Tettau",
		"76", "0",
		"1", 1,
		"piece(s)", "12",
		"", "pd1272230765.htm",
		"", 1,
		"209-002", "0",
		 0)
	
		Entry[387] = new Element(
		387, "assets/thumb/3606_Gedeck.jpg",
		125, 94,
		"209-12-360610", "Picasso Coffee Service (3-piece), Design 3606",
		"", "Koeniglich Tettau",
		"76", "0",
		"1", 1,
		"piece(s)", "12",
		"", "pd257284963.htm",
		"", 1,
		"209-002", "0",
		 0)
	
		Entry[388] = new Element(
		388, "assets/thumb/3604_vasen.jpg",
		125, 113,
		"209-003-360413", "Picasso Vase 1954, Design 3604",
		"Different sizes available", "Koeniglich Tettau",
		"59", "0",
		"1", 1,
		"piece(s)", "13",
		"Appr. height (in.);6.3@", "pd1137335369.htm",
		"", 1,
		"209-003", "0",
		 0)
	
		Entry[389] = new Element(
		389, "assets/thumb/3604_dose.jpg",
		125, 94,
		"209-003-360416", "Picasso Jar with lid 1954, Design 3604",
		"Appr. Height (in.): 4,7", "Koeniglich Tettau",
		"43", "0",
		"1", 1,
		"piece(s)", "13",
		"Design;3604 (red)@", "pd1453588379.htm",
		"", 1,
		"209-003", "0",
		 0)
	
		Entry[390] = new Element(
		390, "assets/thumb/3604_ascher.jpg",
		125, 94,
		"209-003-360417", "Picasso Ashtray 1955",
		"Different sizes+designs available", "Koeniglich Tettau",
		"29", "0",
		"1", 1,
		"piece(s)", "13",
		"Design / Appr. size (in.);3604 (red) / 5.9@", "pd-2056848575.htm",
		"", 1,
		"209-003", "0",
		 0)
	
		Entry[391] = new Element(
		391, "assets/thumb/3604_schale_tief.jpg",
		125, 94,
		"209-003-360419", "Picasso Bowl 1954, Design 3604",
		"Different designs available", "Koeniglich Tettau",
		"39", "0",
		"1", 1,
		"piece(s)", "13",
		"Design;3604 (red)@", "pd-222598819.htm",
		"", 1,
		"209-003", "0",
		 0)
	
		Entry[392] = new Element(
		392, "assets/thumb/3604_schale_flach.jpg",
		125, 94,
		"209-003-360420", "Picasso Tray 1954, Design 3604",
		"Different designs available", "Koeniglich Tettau",
		"84", "0",
		"1", 1,
		"piece(s)", "13",
		"Design;3604 (red)@", "pd-882556205.htm",
		"", 1,
		"209-003", "0",
		 0)
	
		Entry[393] = new Element(
		393, "assets/thumb/3605_vasen.jpg",
		125, 114,
		"209-003-360513", "Picasso Vase 1954, Design 3605",
		"Different sizes available", "Koeniglich Tettau",
		"59", "0",
		"1", 1,
		"piece(s)", "13",
		"Appr. height (in.);6.3@", "pd1162334521.htm",
		"", 1,
		"209-003", "0",
		 0)
	
		Entry[394] = new Element(
		394, "assets/thumb/3606_vasen.jpg",
		125, 115,
		"209-003-360613", "Picasso Vase 1954, Design 3606",
		"Different sizes available", "Koeniglich Tettau",
		"59", "0",
		"1", 1,
		"piece(s)", "13",
		"Appr. height (in.);6.3@", "pd798597673.htm",
		"", 1,
		"209-003", "0",
		 0)
	
		Entry[395] = new Element(
		395, "assets/thumb/Saltpepper_S_homerun.jpg",
		125, 83,
		"401-06-0108374", "Salt &amp; Pepper Set - Homerun",
		"Appr. Capacity (oz): 1", "Best of Snoopy",
		"21.9", "0",
		"1", 1,
		"piece(s)", "22",
		"", "pd1113426191.htm",
		"", 1,
		"401-008", "0",
		 0)
	
		Entry[396] = new Element(
		396, "assets/thumb/Saltpepper_S_Pinklove.jpg",
		125, 83,
		"401-06-0108375", "Salt &amp; Pepper Set - Pink Love",
		"Appr. Capacity (oz): 1", "Best of Snoopy",
		"21.9", "0",
		"1", 1,
		"piece(s)", "22",
		"", "pd-1162415659.htm",
		"", 1,
		"401-008", "0",
		 0)
	
		Entry[397] = new Element(
		397, "assets/thumb/Saltpepper_S_Palace.jpg",
		125, 83,
		"401-06-0108376", "Salt &amp; Pepper Set - Palace",
		"Appr. Capacity (oz): 1", "Best of Snoopy",
		"21.9", "0",
		"1", 1,
		"piece(s)", "22",
		"", "pd397860875.htm",
		"", 1,
		"401-008", "0",
		 0)
	
		Entry[398] = new Element(
		398, "assets/thumb/Saltpepper_S_points.jpg",
		125, 83,
		"401-06-0108377", "Salt &amp; Pepper Set - Points",
		"Appr. Capacity (oz): 1", "Best of Snoopy",
		"21.9", "0",
		"1", 1,
		"piece(s)", "22",
		"", "pd-10972879.htm",
		"", 1,
		"401-008", "0",
		 0)
	
		Entry[399] = new Element(
		399, "assets/thumb/Jug_S_Homerun.jpg",
		104, 125,
		"401-06-0108360", "Jug - Homerun",
		"Appr. Capacity (oz): 18", "Best of Snoopy",
		"37.5", "0",
		"1", 1,
		"piece(s)", "23",
		"", "pd-1462796601.htm",
		"", 1,
		"401-009", "0",
		 0)
	
		Entry[400] = new Element(
		400, "assets/thumb/Jug_S_PinkLove.jpg",
		93, 125,
		"401-06-0108361", "Jug - Pink Love",
		"Appr. Capacity (oz): 18", "Best of Snoopy",
		"37.5", "0",
		"1", 1,
		"piece(s)", "23",
		"", "pd-2068726195.htm",
		"", 1,
		"401-009", "0",
		 0)
	
		Entry[401] = new Element(
		401, "assets/thumb/Jug_S_Fleuri.jpg",
		97, 125,
		"401-06-0108362", "Jug - Fleuri",
		"Appr. Capacity (oz): 18", "Best of Snoopy",
		"37.5", "0",
		"1", 1,
		"piece(s)", "23",
		"", "pd1588158787.htm",
		"", 1,
		"401-009", "0",
		 0)
	
		Entry[402] = new Element(
		402, "assets/thumb/Jug_S_ClassicMountain.jpg",
		93, 125,
		"401-06-0108363", "Jug - Classic Mountain",
		"Appr. Capacity (oz): 18", "Best of Snoopy",
		"37.5", "0",
		"1", 1,
		"piece(s)", "23",
		"", "pd-804989655.htm",
		"", 1,
		"401-009", "0",
		 0)
	
		Entry[403] = new Element(
		403, "assets/thumb/Saltpepper_M_prettypink.jpg",
		125, 83,
		"501-07-0108364", "Salt &amp; Pepper Set - Pretty Pink",
		"Appr. Capacity (oz): 1", "Best of Mickey",
		"21.9", "0",
		"1", 1,
		"piece(s)", "32",
		"", "pd28504097.htm",
		"", 1,
		"501-008", "0",
		 0)
	
		Entry[404] = new Element(
		404, "assets/thumb/Saltpepper_M_Popstar.jpg",
		125, 83,
		"501-07-0108371", "Salt &amp; Pepper Set - Pop Star",
		"Appr. Capacity (oz): 1", "Best of Mickey",
		"21.9", "0",
		"1", 1,
		"piece(s)", "32",
		"", "pd-1006717129.htm",
		"", 1,
		"501-008", "0",
		 0)
	
		Entry[405] = new Element(
		405, "assets/thumb/Saltpepper_M_black.jpg",
		125, 83,
		"501-07-0108372", "Salt &amp; Pepper Set - Black and White",
		"Appr. Capacity (oz): 1", "Best of Mickey",
		"21.9", "0",
		"1", 1,
		"piece(s)", "32",
		"", "pd74935357.htm",
		"", 1,
		"501-008", "0",
		 0)
	
		Entry[406] = new Element(
		406, "assets/thumb/Saltpepper_M_Dinner.jpg",
		125, 83,
		"501-07-0108373", "Salt &amp; Pepper Set - Mickeys Dinner",
		"Appr. Capacity (oz): 1", "Best of Mickey",
		"21.9", "0",
		"1", 1,
		"piece(s)", "32",
		"", "pd-1819246413.htm",
		"", 1,
		"501-008", "0",
		 0)
	
		Entry[407] = new Element(
		407, "assets/thumb/Jugs_M_PrettyPink.jpg",
		97, 125,
		"501-07-0108356", "Jug - Pretty Pink",
		"Appr. Capacity (oz): 18", "Best of Mickey",
		"37.5", "0",
		"1", 1,
		"piece(s)", "33",
		"", "pd1979761177.htm",
		"", 1,
		"501-009", "0",
		 0)
	
		Entry[408] = new Element(
		408, "assets/thumb/Jug_M_PopStar.jpg",
		95, 125,
		"501-07-0108357", "Jug - Pop Star",
		"Appr. Capacity (oz): 18", "Best of Mickey",
		"37.5", "0",
		"1", 1,
		"piece(s)", "33",
		"", "pd-1402881553.htm",
		"", 1,
		"501-009", "0",
		 0)
	
		Entry[409] = new Element(
		409, "assets/thumb/Jug_M_Dairy.jpg",
		111, 125,
		"501-07-0108358", "Jug - Mickeys Farm",
		"Appr. Capacity (oz): 18", "Best of Mickey",
		"37.5", "0",
		"1", 1,
		"piece(s)", "33",
		"", "pd-1252127307.htm",
		"", 1,
		"501-009", "0",
		 0)
	
		Entry[410] = new Element(
		410, "assets/thumb/Jugs_M_Stripes.jpg",
		95, 125,
		"501-07-0108359", "Jug - Stripes",
		"Appr. Capacity (oz): 18", "Best of Mickey",
		"37.5", "0",
		"1", 1,
		"piece(s)", "33",
		"", "pd-1459167509.htm",
		"", 1,
		"501-009", "0",
		 0)
	
		Entry[411] = new Element(
		411, "assets/thumb/Kerzenleuchter_05836.jpg",
		74, 125,
		"204-09-05836", "Candlestick &quot;Albero&quot;, porcelain, set of 2 pcs.",
		"H: 9,1 in.", "ArtDecor",
		"44", "0",
		"1", 1,
		"Set", "45",
		"", "pd43566181.htm",
		"", 1,
		"204", "0",
		 0)
	
		Entry[412] = new Element(
		412, "assets/thumb/Kerzenhalter_30604.jpg",
		63, 125,
		"204-09-30604", "Candlestick &quot;Wuhan&quot;",
		"H: 9,4 in.", "ArtDecor",
		"59", "0",
		"1", 1,
		"piece(s)", "45",
		"", "pd-1213577131.htm",
		"", 1,
		"204", "0",
		 0)
	
		Entry[413] = new Element(
		413, "assets/thumb/Windlicht_30890.jpg",
		118, 125,
		"204-09-30890", "Storm lantern &quot;Mori&quot;",
		"L x W: 10,6 in.", "ArtDecor",
		"145", "0",
		"1", 1,
		"piece(s)", "45",
		"", "pd1583501233.htm",
		"", 1,
		"204", "0",
		 0)
	
		Entry[414] = new Element(
		414, "assets/thumb/Kerzenleuchter_30994.jpg",
		106, 125,
		"204-09-30994", "Candlestick &quot;Cimia&quot;, set of 2 pcs.",
		"H: 6,3 in.", "ArtDecor",
		"64", "0",
		"1", 1,
		"Set", "45",
		"", "pd-924575093.htm",
		"", 1,
		"204", "0",
		 0)
	
		Entry[415] = new Element(
		415, "assets/thumb/Stormlantern_31100.jpg",
		125, 109,
		"204-09-31100", "Storm lantern &quot;Bristol&quot;, brass antique",
		"H: 7,5 in.", "ArtDecor",
		"79", "0",
		"1", 1,
		"piece(s)", "45",
		"", "pd1598579917.htm",
		"", 1,
		"204", "0",
		 0)
	
		Entry[416] = new Element(
		416, "assets/thumb/Stormlantern_31101.jpg",
		125, 109,
		"204-09-31101", "Storm lantern &quot;Bristol&quot;, brass antique",
		"H: 13,4 in.", "ArtDecor",
		"129", "0",
		"1", 1,
		"piece(s)", "45",
		"", "pd-647337021.htm",
		"", 1,
		"204", "0",
		 0)
	
		Entry[417] = new Element(
		417, "assets/thumb/Kerzenleuchter_32479.jpg",
		125, 112,
		"204-09-32479", "Candlestick &quot;Mignon&quot; nero antique, set of 2 pcs.",
		"H: 5,9 in.", "ArtDecor",
		"38", "0",
		"1", 1,
		"Set", "45",
		"", "pd-1375654719.htm",
		"", 1,
		"204", "0",
		 0)
	
		Entry[418] = new Element(
		418, "assets/thumb/Kerzenleuchter_33442.jpg",
		74, 125,
		"204-001-33440", "Candlestick &quot;Sara&quot;, bronze/tobacco, set of 2 pcs.",
		"Different sizes available", "ArtDecor",
		"39", "0",
		"1", 1,
		"Set", "45",
		"Appr. height (in.);7.9@", "pd1333118167.htm",
		"", 1,
		"204", "0",
		 0)
	
		Entry[419] = new Element(
		419, "assets/thumb/Kerzenleuchter_38400.jpg",
		89, 125,
		"204-09-38400", "Candlestick &quot;Basso&quot;, silverplated, set of 2 pcs.",
		"H: 3,9 in.", "ArtDecor",
		"64", "0",
		"1", 1,
		"Set", "45",
		"", "pd-669535559.htm",
		"", 1,
		"204", "0",
		 0)
	
		Entry[420] = new Element(
		420, "assets/thumb/Kerzenleuchter_38809.jpg",
		118, 125,
		"204-09-38809", "Candlestick &quot;Quadro&quot;, silverplated, set of 2 pcs.",
		"H: 5,5 in.", "ArtDecor",
		"84", "0",
		"1", 1,
		"Set", "45",
		"", "pd857774991.htm",
		"", 1,
		"204", "0",
		 0)
	
		Entry[421] = new Element(
		421, "assets/thumb/Flowerpot_31248.jpg",
		125, 93,
		"210-09-31248", "Flowerpot holder &quot;Leone&quot;, brass antique",
		"H: 7,3 in.", "ArtDecor",
		"59", "0",
		"1", 1,
		"piece(s)", "61",
		"", "pd1348884873.htm",
		"", 1,
		"210", "0",
		 0)
	
		Entry[422] = new Element(
		422, "assets/thumb/Flowerpot_31249.jpg",
		125, 93,
		"210-09-31249", "Flowerpot holder &quot;Leone&quot;, brass antique",
		"H: 8,3 in.", "ArtDecor",
		"74", "0",
		"1", 1,
		"piece(s)", "61",
		"", "pd1994448607.htm",
		"", 1,
		"210", "0",
		 0)
	
		Entry[423] = new Element(
		423, "assets/thumb/Vase_07833_34.jpg",
		74, 125,
		"210-002-07833", "Vase &quot;Anna&quot; rosso, glass",
		"Different sizes available", "ArtDecor",
		"59", "0",
		"1", 1,
		"piece(s)", "61",
		"Appr. height (in.);15.7@", "pd1301773349.htm",
		"", 1,
		"210", "0",
		 0)
	
		Entry[424] = new Element(
		424, "assets/thumb/Flowerpot_05343.jpg",
		125, 61,
		"210-09-05343", "Flowerpot holder &quot;Aline&quot;, porcelain",
		"L x W x H: 7,5 x 5,5 x 7,9 in.", "ArtDecor",
		"48", "0",
		"1", 1,
		"piece(s)", "61",
		"", "pd1616437377.htm",
		"", 1,
		"210", "0",
		 0)
	
		Entry[425] = new Element(
		425, "assets/thumb/Ovalpot_05345.jpg",
		125, 61,
		"210-09-05345", "Oval flowerpot &quot;Aline&quot;, porcelain",
		"L x W: 13,8 x 8,3 in.", "ArtDecor",
		"64", "0",
		"1", 1,
		"piece(s)", "61",
		"", "pd45456915.htm",
		"", 1,
		"210", "0",
		 0)
	
		Entry[426] = new Element(
		426, "assets/thumb/Jar_05346.jpg",
		125, 61,
		"210-09-05346", "Jar &quot;Aline&quot; with lid, porcelain",
		"Ų: 9,1 x H: 10,2 in.", "ArtDecor",
		"54", "0",
		"1", 1,
		"piece(s)", "61",
		"", "pd413900439.htm",
		"", 1,
		"210", "0",
		 0)
	
		Entry[427] = new Element(
		427, "assets/thumb/Vase_05430.jpg",
		95, 125,
		"210-09-05430", "Vase &quot;Wild Rose&quot; with lid, porcelain",
		"H: 31,5 in.", "ArtDecor",
		"188", "0",
		"1", 1,
		"piece(s)", "61",
		"", "pd-145449351.htm",
		"", 1,
		"210", "0",
		 0)
	
		Entry[428] = new Element(
		428, "assets/thumb/Flowerpot_05435.jpg",
		125, 114,
		"210-004-05434", "Flowerpot holder &quot;Wild Rose&quot;, porcelain",
		"Different sizes available", "ArtDecor",
		"109", "0",
		"1", 1,
		"piece(s)", "61",
		"Diameter (in.);11.4@", "pd-340752309.htm",
		"", 1,
		"210", "0",
		 0)
	
		Entry[429] = new Element(
		429, "assets/thumb/Vase_05439.jpg",
		95, 125,
		"210-09-05439", "Vase &quot;Wild Rose&quot; with lid, porcelain",
		"H: 16,9 in.", "ArtDecor",
		"124", "0",
		"1", 1,
		"piece(s)", "61",
		"", "pd-1180799665.htm",
		"", 1,
		"210", "0",
		 0)
	
		Entry[430] = new Element(
		430, "assets/thumb/Flowerpot_05830.jpg",
		125, 125,
		"210-09-05830", "Flowerpot holder &quot;Albero&quot;, porcelain",
		"L x W x H: 6,7 x 6,7 x 7,1 in.", "ArtDecor",
		"55", "0",
		"1", 1,
		"piece(s)", "61",
		"", "pd1254323057.htm",
		"", 1,
		"210", "0",
		 0)
	
		Entry[431] = new Element(
		431, "assets/thumb/Ashtray_05832.jpg",
		125, 125,
		"210-09-05832", "Ashtray &quot;Albero&quot;, porcelain",
		"L x W: 7,1 x 5,9 in.", "ArtDecor",
		"28", "0",
		"1", 1,
		"piece(s)", "61",
		"", "pd1585455773.htm",
		"", 1,
		"210", "0",
		 0)
	
		Entry[432] = new Element(
		432, "assets/thumb/Vase_05835.jpg",
		125, 125,
		"210-09-05835", "Vase &quot;Albero&quot;, porcelain",
		"Ų: 7,9 x H: 10,2 in.", "ArtDecor",
		"49", "0",
		"1", 1,
		"piece(s)", "61",
		"", "pd1488333575.htm",
		"", 1,
		"210", "0",
		 0)
	
		Entry[433] = new Element(
		433, "assets/thumb/Flowerpot_05837.jpg",
		125, 125,
		"210-09-05837", "Flowerpot &quot;Albero&quot;, porcelain",
		"L x W x H: 9,1 x 4,7 x 5,5 in.", "ArtDecor",
		"34", "0",
		"1", 1,
		"piece(s)", "61",
		"", "pd826013671.htm",
		"", 1,
		"210", "0",
		 0)
	
		Entry[434] = new Element(
		434, "assets/thumb/eremitage.jpg",
		103, 125,
		"208-05-1010001310", "Egg object, cobalt blue",
		"Appr. Height (in.): 12,2", "von Poschinger",
		"140", "0",
		"1", 1,
		"piece(s)", "58",
		"", "pd1338610352.htm",
		"", 1,
		"208-001", "0",
		 0)
	
		Entry[435] = new Element(
		435, "assets/thumb/Fly_agaric.jpg",
		100, 125,
		"208-05-6482000300", "Glass mushroom: fly agaric",
		"Appr. Height (in.): 3,9", "von Poschinger",
		"35", "0",
		"1", 1,
		"piece(s)", "58",
		"", "pd-1794558876.htm",
		"", 1,
		"208-001", "0",
		 0)
	
		Entry[436] = new Element(
		436, "assets/thumb/red_cap.jpg",
		86, 125,
		"208-05-6482000301", "Glass mushroom: red cap",
		"Appr. Height (in.): 3,9", "von Poschinger",
		"35", "0",
		"1", 1,
		"piece(s)", "58",
		"", "pd-211402446.htm",
		"", 1,
		"208-001", "0",
		 0)
	
		Entry[437] = new Element(
		437, "assets/thumb/arktis.jpg",
		125, 101,
		"208-05-6493021500", "Fruit bowl with stem, steel-gray",
		"Appr. Diameter (in.): 19,7", "von Poschinger",
		"130", "0",
		"1", 1,
		"piece(s)", "58",
		"", "pd-1635157922.htm",
		"", 1,
		"208-001", "0",
		 0)
	
		Entry[438] = new Element(
		438, "assets/thumb/Diadem_sm_frosted.jpg",
		125, 93,
		"208-001-6494116137", "Frosted glass bowl, light green",
		"2 sizes available", "von Poschinger",
		"71", "0",
		"1", 1,
		"piece(s)", "58",
		"Appr. height (in.);5.4@", "pd1187356172.htm",
		"", 1,
		"208-001", "0",
		 0)
	
		Entry[439] = new Element(
		439, "assets/thumb/BigFive.jpg",
		115, 125,
		"208-05-6494117207", "Vase, light green with 5 engraved African animals",
		"Appr. Height (in.): 8,1", "von Poschinger",
		"250", "0",
		"1", 1,
		"piece(s)", "58",
		"", "pd126011590.htm",
		"", 1,
		"208-001", "0",
		 0)
	
		Entry[440] = new Element(
		440, "assets/thumb/Diadem_sm_clear.jpg",
		125, 93,
		"208-001-6494216137", "Clear glass bowl with fine line cutting, light green",
		"2 sizes available", "von Poschinger",
		"75", "0",
		"1", 1,
		"piece(s)", "58",
		"Appr. height (in.);5.4@", "pd-1582144742.htm",
		"", 1,
		"208-001", "0",
		 0)
	
		Entry[441] = new Element(
		441, "assets/thumb/olymp.jpg",
		67, 125,
		"208-05-6600100210", "Goblet of crystal glass and metal",
		"Appr. Height (in.): 17,7", "von Poschinger",
		"79", "0",
		"1", 1,
		"piece(s)", "58",
		"", "pd-1975179560.htm",
		"", 1,
		"208-001", "0",
		 0)
	
		Entry[442] = new Element(
		442, "assets/thumb/Nonni_05508.jpg",
		125, 119,
		"208-09-05508", "Figures &quot;Nonni&quot;, porcelain, assorted, set of 2 pcs.",
		"H: 13,8 in.", "ArtDecor",
		"149", "0",
		"1", 1,
		"Set", "59",
		"", "pd1492710911.htm",
		"", 1,
		"208-002", "0",
		 0)
	
		Entry[443] = new Element(
		443, "assets/thumb/Statuen_30605.jpg",
		125, 78,
		"208-09-30605", "Statues &quot;Nanjing&quot;, assorted, bronze, set of 2 pcs.",
		"L x W x H: 5,9 x 4,5 x 5,5 in.", "ArtDecor",
		"99", "0",
		"1", 1,
		"piece(s)", "59",
		"", "pd1283844165.htm",
		"", 1,
		"208-002", "0",
		 0)
	
		Entry[444] = new Element(
		444, "assets/thumb/Schale_30891.jpg",
		112, 125,
		"208-09-30891", "Figures with tray &quot;Mori&quot;",
		"L x W: 11 x 9,4 in.", "ArtDecor",
		"129", "0",
		"1", 1,
		"piece(s)", "59",
		"", "pd1280998395.htm",
		"", 1,
		"208-002", "0",
		 0)
	
		Entry[445] = new Element(
		445, "assets/thumb/Elephant_05623.jpg",
		76, 125,
		"208-09-05623", "Obelisk &quot;Elephant&quot;, porcelain",
		"H: 16,9 in.", "ArtDecor",
		"114", "0",
		"1", 1,
		"piece(s)", "60",
		"", "pd-133766231.htm",
		"", 1,
		"208-009", "0",
		 0)
	
		Entry[446] = new Element(
		446, "assets/thumb/Schale_05628.jpg",
		113, 125,
		"208-09-05628", "Tray &quot;Angeli&quot; nero, porcelain",
		"L x W x H: 8,7 x 4,3 x 11 in.", "ArtDecor",
		"177", "0",
		"1", 1,
		"piece(s)", "60",
		"", "pd-1917055889.htm",
		"", 1,
		"208-009", "0",
		 0)
	
		Entry[447] = new Element(
		447, "assets/thumb/Etagere_05629.jpg",
		112, 125,
		"208-09-05629", "Tray &quot;Delfino&quot; nero, porcelain",
		"Ų: 15,7 x H: 15,7 in.", "ArtDecor",
		"340", "0",
		"1", 1,
		"piece(s)", "60",
		"", "pd167866521.htm",
		"", 1,
		"208-009", "0",
		 0)
	
		Entry[448] = new Element(
		448, "assets/thumb/Lion_31005.jpg",
		125, 89,
		"208-09-31005", "Lion &quot;Leone&quot;, brass antique",
		"L: 11,4 in.", "ArtDecor",
		"82", "0",
		"1", 1,
		"piece(s)", "60",
		"", "pd-54568597.htm",
		"", 1,
		"208-009", "0",
		 0)
	
		Entry[449] = new Element(
		449, "assets/thumb/Loewen_31532.jpg",
		125, 73,
		"208-09-31532", "1 Pair of Lions &quot;Lion&quot; on base, brass",
		"L x W x H: 8,7 x 3,5 x 4,3 in.", "ArtDecor",
		"145", "0",
		"1", 1,
		"Set", "60",
		"", "pd-809677273.htm",
		"", 1,
		"208-009", "0",
		 0)
	
		Entry[450] = new Element(
		450, "assets/thumb/Buchstuetzen_32531.jpg",
		125, 114,
		"208-09-32531", "1 Pair of Bookends &quot;Horse&quot;, tobacco",
		"L x W x H: 7,5 x 3,1 x 5,5 in.", "ArtDecor",
		"94", "0",
		"1", 1,
		"piece(s)", "60",
		"", "pd-377119571.htm",
		"", 1,
		"208-009", "0",
		 0)
	
		Entry[451] = new Element(
		451, "assets/thumb/Schale_32628.jpg",
		125, 113,
		"208-09-32628", "Tray &quot;Angeli&quot; tobacco, brass",
		"L x W x H: 9,4 x 6,7 x 11,8 in.", "ArtDecor",
		"145", "0",
		"1", 1,
		"piece(s)", "60",
		"", "pd-910515147.htm",
		"", 1,
		"208-009", "0",
		 0)
	
		Entry[452] = new Element(
		452, "assets/thumb/Lion_33005.jpg",
		125, 89,
		"208-09-33005", "Lion &quot;Leone&quot;, brass (bronze-colored)",
		"L: 11,4 in.", "ArtDecor",
		"82", "0",
		"1", 1,
		"piece(s)", "60",
		"", "pd388966801.htm",
		"", 1,
		"208-009", "0",
		 0)
	
		Entry[453] = new Element(
		453, "assets/thumb/Tuerstopper_33030.jpg",
		103, 125,
		"208-09-33030", "Doorstop &quot;Hippo&quot;, brass, bronze-colored",
		"L x H: 10,6 x 16,5 in.", "ArtDecor",
		"124", "0",
		"1", 1,
		"piece(s)", "60",
		"", "pd-449976669.htm",
		"", 1,
		"208-009", "0",
		 0)
	
		Entry[454] = new Element(
		454, "assets/thumb/Haubentaucher_05543.jpg",
		123, 125,
		"208-002-05533", "Crested grebe &quot;Vanillie&quot;, porcelain",
		"Different sizes available", "ArtDecor",
		"64", "0",
		"1", 1,
		"piece(s)", "60",
		"Total length (in.);7.9@", "pd1950830241.htm",
		"", 1,
		"208-009", "0",
		 0)
	
		Entry[455] = new Element(
		455, "assets/thumb/Haubentaucher_05545.jpg",
		120, 125,
		"208-002-05535", "Crested grebe &quot;Blue/Oro&quot;, porcelain",
		"Different sizes available", "ArtDecor",
		"64", "0",
		"1", 1,
		"piece(s)", "60",
		"Total length (in.);7.9@", "pd-175983939.htm",
		"", 1,
		"208-009", "0",
		 0)
	
		Entry[456] = new Element(
		456, "assets/thumb/Flowerherz_satz.jpg",
		125, 125,
		"202-01-9902", "1 Set of Flower Power Hearts, glass, 3 pcs., assorted",
		"Length x Width (in.):  appr. 2 x 2", "Raeder",
		"18", "0",
		"1", 1,
		"piece(s)", "63",
		"", "pd-1017569785.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[457] = new Element(
		457, "assets/thumb/Heart_5684.jpg",
		125, 116,
		"202-01-5684", "Heart with sound, enamel, red with ovals",
		"Length x Width (in.):  appr. 2,6 x 2,8", "Raeder",
		"19", "0",
		"1", 1,
		"piece(s)", "63",
		"", "pd-1658228851.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[458] = new Element(
		458, "assets/thumb/klangherz_5696.jpg",
		125, 117,
		"202-01-5696", "Heart with sound, enamel, black with stripes",
		"Length x Width (in.):  appr. 2,6 x 2,8", "Raeder",
		"19", "0",
		"1", 1,
		"piece(s)", "63",
		"", "pd2141461097.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[459] = new Element(
		459, "assets/thumb/klangherz_5697.jpg",
		125, 116,
		"202-01-5697", "Heart with sound, enamel, white with circles",
		"Length x Width (in.):  appr. 2,6 x 2,8", "Raeder",
		"19", "0",
		"1", 1,
		"piece(s)", "63",
		"", "pd1033636543.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[460] = new Element(
		460, "assets/thumb/klangherz_5699.jpg",
		125, 111,
		"202-01-5699", "Heart with sound, enamel, beige with notes",
		"Length x Width (in.):  appr. 2,6 x 2,8", "Raeder",
		"19", "0",
		"1", 1,
		"piece(s)", "63",
		"", "pd289299643.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[461] = new Element(
		461, "assets/thumb/klangherz_5700.jpg",
		125, 115,
		"202-01-5700", "Heart with sound, enamel, green with circle",
		"Length x Width (in.):  appr. 2,6 x 2,8", "Raeder",
		"19", "0",
		"1", 1,
		"piece(s)", "63",
		"", "pd-822534815.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[462] = new Element(
		462, "assets/thumb/klangherz_5701.jpg",
		125, 115,
		"202-01-5701", "Heart with sound, enamel, white with hearts",
		"Length x Width (in.):  appr. 2,6 x 2,8", "Raeder",
		"19", "0",
		"1", 1,
		"piece(s)", "63",
		"", "pd335390327.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[463] = new Element(
		463, "assets/thumb/klangherz_5703.jpg",
		125, 114,
		"202-01-5703", "Heart with sound, enamel, black with circles",
		"Length x Width (in.):  appr. 2,6 x 2,8", "Raeder",
		"19", "0",
		"1", 1,
		"piece(s)", "63",
		"", "pd-577313805.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[464] = new Element(
		464, "assets/thumb/klangherz_5705_front.jpg",
		125, 114,
		"202-01-5705", "Heart with sound, enamel, front: red with white heart, back: white with red heart",
		"Length x Width (in.):  appr. 2,6 x 2,8", "Raeder",
		"19", "0",
		"1", 1,
		"piece(s)", "63",
		"", "pd-1485909713.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[465] = new Element(
		465, "assets/thumb/Marmorherz_5351.jpg",
		125, 115,
		"202-01-5351", "Marble heart, black/white with vertical stripes",
		"Length x Width (in.):  appr. 3,9 x 3,9", "Raeder",
		"26", "0",
		"1", 1,
		"piece(s)", "63",
		"", "pd417724149.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[466] = new Element(
		466, "assets/thumb/Marmorherz_5352.jpg",
		125, 121,
		"202-01-5352", "Marble heart, white with grey stripe",
		"Length x Width (in.):  appr. 3,9 x 3,9", "Raeder",
		"26", "0",
		"1", 1,
		"piece(s)", "63",
		"", "pd881715755.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[467] = new Element(
		467, "assets/thumb/Marmorherz_5354.jpg",
		125, 114,
		"202-01-5354", "Marble heart, colorful with horizontal stripes",
		"Length x Width (in.):  appr. 3,9 x 3,9", "Raeder",
		"26", "0",
		"1", 1,
		"piece(s)", "63",
		"", "pd-477419439.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[468] = new Element(
		468, "assets/thumb/metallherz_5721.jpg",
		125, 122,
		"202-01-5721", "Heart, &quot;Only for you&quot;, metal",
		"Length x Width (in.):  appr. 3,5 x 3,5", "Raeder",
		"16", "0",
		"1", 1,
		"piece(s)", "63",
		"", "pd13961069.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[469] = new Element(
		469, "assets/thumb/metallherz_5723.jpg",
		125, 122,
		"202-01-5723", "Heart, &quot;Spiral&quot;, metal",
		"Length x Width (in.):  appr. 3,5 x 3,5", "Raeder",
		"16", "0",
		"1", 1,
		"piece(s)", "63",
		"", "pd656297827.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[470] = new Element(
		470, "assets/thumb/metallherz_5724.jpg",
		125, 122,
		"202-01-5724", "Heart, &quot;Star&quot;, metal",
		"Length x Width (in.):  appr. 3,5 x 3,5", "Raeder",
		"16", "0",
		"1", 1,
		"piece(s)", "63",
		"", "pd941092937.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[471] = new Element(
		471, "assets/thumb/metallherz_5726.jpg",
		125, 122,
		"202-01-5726", "Heart, &quot;Figures&quot;, metal",
		"Length x Width (in.):  appr. 3,5 x 3,5", "Raeder",
		"16", "0",
		"1", 1,
		"piece(s)", "63",
		"", "pd1596937119.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[472] = new Element(
		472, "assets/thumb/metallherz_5727.jpg",
		125, 122,
		"202-01-5725", "Heart, &quot;Golden heart&quot;, metal",
		"Length x Width (in.):  appr. 3,5 x 3,5", "Raeder",
		"16", "0",
		"1", 1,
		"piece(s)", "63",
		"", "pd1971715813.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[473] = new Element(
		473, "assets/thumb/metallherz_5728_back.jpg",
		125, 122,
		"202-01-5728", "Heart, &quot;You&quot;, metal",
		"Length x Width (in.):  appr. 3,5 x 3,5", "Raeder",
		"16", "0",
		"1", 1,
		"piece(s)", "63",
		"", "pd-771820645.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[474] = new Element(
		474, "assets/thumb/metallherz_5729.jpg",
		125, 122,
		"202-01-5729", "Heart, &quot;Love&quot;, metal",
		"Length x Width (in.):  appr. 3,5 x 3,5", "Raeder",
		"16", "0",
		"1", 1,
		"piece(s)", "63",
		"", "pd25890625.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[475] = new Element(
		475, "assets/thumb/metallherz_5730.jpg",
		125, 122,
		"202-01-5730", "Heart, &quot;Dots&quot;, metal",
		"Length x Width (in.):  appr. 3,5 x 3,5", "Raeder",
		"16", "0",
		"1", 1,
		"piece(s)", "63",
		"", "pd-1110676649.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[476] = new Element(
		476, "assets/thumb/metallherz_5731.jpg",
		125, 122,
		"202-01-5731", "Heart, &quot;Silver heart&quot;, metal",
		"Length x Width (in.):  appr. 3,5 x 3,5", "Raeder",
		"16", "0",
		"1", 1,
		"piece(s)", "63",
		"", "pd-974602915.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[477] = new Element(
		477, "assets/thumb/metallherz_5732.jpg",
		125, 122,
		"202-01-5732", "Heart, &quot;Little hearts&quot;, metal",
		"Length x Width (in.):  appr. 3,5 x 3,5", "Raeder",
		"16", "0",
		"1", 1,
		"piece(s)", "63",
		"", "pd1092794067.htm",
		"", 1,
		"20", "0",
		 0)
	
		Entry[478] = new Element(
		478, "assets/thumb/WindspielXXL_5419.jpg",
		85, 125,
		"211-01-5419", "Wind chime XXL &quot;Fish&quot;, aluminum/glass",
		"Length x Width (in.):  appr. 15,7 x 11,4", "Raeder",
		"49", "0",
		"1", 1,
		"piece(s)", "62",
		"", "pd-57514695.htm",
		"", 1,
		"211", "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();
			};
		};