	// 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/artikel merken_bille.gif" width="153" height="21" alt="in den Warenkorb" 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>Preis vorher:&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>Jetzt nur noch:&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 += "<tr><td>Preis inkl. MwSt zzgl. Versandkosten</td></TR>";

			rString += "</table>";
			rString += "</TD></TR>";
			}
		else if(this.displMode==3){
			rString	+= "<TR><TD class=\"PROVIEWPRICE\" nowrap>";
			rString += "Preis auf Anfrage";
			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/Walk The Knifes Edge GRAUcopy.jpg",
		85, 85,
		"KTB001", "KISS THE BLADE - Walk The Knife´s Edge (MCD)",
		"", "Nightbreed",
		"6.58", "100",
		"1", 1,
		"Stück", "119",
		"", "pd819517810.htm",
		"", 1,
		"1.K001", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/kisstb_blackas_re.jpg",
		85, 85,
		"KTB002", "KISS THE BLADE - Re-Release - Black As Disillusion (CD)",
		"", "Upsolution",
		"10.5", "100",
		"1", 1,
		"Stück", "119",
		"", "pd1039903574.htm",
		"", 1,
		"1.K001", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/Headcrash.jpg",
		85, 85,
		"KTB003", "KISS THE BLADE - Headcrash-A Romance (CD)",
		"", "Höllenfeuer",
		"10.75", "100",
		"1", 1,
		"Stück", "119",
		"", "pd-1465097697.htm",
		"", 1,
		"1.K001", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/Heartbeat_Amplified copy.jpg",
		85, 85,
		"KTB004", "KISS THE BLADE - Heartbeat Amplified (CD)",
		"", "UpSolution",
		"10.75", "100",
		"1", 1,
		"Stück", "119",
		"", "pd-1288365708.htm",
		"", 1,
		"1.K001", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/dvd copy.jpg",
		85, 126,
		"KTB005", "KISS THE BLADE - Heartbeat Amplified LIMITED EDITION (CD)",
		"", "UpSolution",
		"14.08", "100",
		"1", 1,
		"Stück", "119",
		"", "pd1312010597.htm",
		"", 1,
		"1.K001", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/single_a copy.jpg",
		85, 85,
		"KTB006", "KISS THE BLADE - Vinyl Single 7&quot;",
		"auf 100 Stück limitiert &amp; handnummeriert", "Skulptur23",
		"6.58", "53",
		"1", 1,
		"Stück", "119",
		"", "pd1354165442.htm",
		"", 1,
		"1.K001", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/thirdsmile_cover copy.jpg",
		85, 77,
		"KTB007", "KISS THE BLADE - The Third Smile EP",
		"", "UpScene",
		"6.58", "100",
		"1", 1,
		"Stück", "119",
		"", "pd1868425755.htm",
		"", 1,
		"1.K001", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/darc_inhate.jpg",
		85, 85,
		"DAR002", "DARC ENTRIES - In Hate, Havoc Or In Haze (CD)",
		"", "UpSolution",
		"10.75", "100",
		"1", 1,
		"Stück", "56",
		"", "pd-512664053.htm",
		"", 1,
		"1.D001", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/darc_opaque.jpg",
		85, 85,
		"DAR003", "DARC ENTRIES - Opaque (CD)",
		"", "UpSolution",
		"10.75", "100",
		"1", 1,
		"Stück", "56",
		"", "pd-1854660194.htm",
		"", 1,
		"1.D001", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/virginpr_sonsf2.jpg",
		85, 85,
		"VIP001", "Virgin Prunes - Sons Find Devils (CD)",
		"UK-Import", "",
		"13.25", "100",
		"1", 1,
		"Stück", "208",
		"", "pd1894469265.htm",
		"", 1,
		"1.V001", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/various_gothr2.jpg",
		85, 85,
		"VAR002", "various artists - GOTHIC ROCK vol. 2 (2CD)",
		"UK-Import", "",
		"12.42", "150",
		"1", 1,
		"Stück", "222",
		"", "pd482829219.htm",
		"", 1,
		"1.28", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/various_gothr1.jpg",
		85, 85,
		"VAR001", "various artists - GOTHIC ROCK vol.1  (2CD)",
		"UK-Import", "",
		"12.42", "150",
		"1", 1,
		"Stück", "222",
		"", "pd1709584348.htm",
		"", 1,
		"1.28", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/marchv_bot.jpg",
		85, 85,
		"MAV001", "March Violets, The - The Botanic Verses (CD)",
		"", "",
		"11.58", "120",
		"1", 1,
		"Stück", "128",
		"", "pd1280266775.htm",
		"", 1,
		"1.M002", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/christdth_rage.jpg",
		85, 85,
		"CHD006", "CHRISTIAN DEATH - The Rage Of Angels (CD)",
		"US-Import", "cleopatra",
		"12.42", "100",
		"1", 1,
		"Stück", "44",
		"", "pd-674038639.htm",
		"", 1,
		"1.C002", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/christdth_path.jpg",
		85, 85,
		"CHD005", "CHRISTIAN DEATH - The Path Of Sorrows (CD)",
		"US-Import", "cleopatra",
		"12.42", "100",
		"1", 1,
		"Stück", "44",
		"", "pd-1683687292.htm",
		"", 1,
		"1.C002", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/christdth_skel.jpg",
		85, 85,
		"CHD004", "CHRISTIAN DEATH - Skeleton Kiss (MCD)",
		"US-Import", "Gravenews",
		"11.58", "100",
		"1", 1,
		"Stück", "44",
		"", "pd950526873.htm",
		"", 1,
		"1.C002", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/christdth_ironm.jpg",
		85, 85,
		"CHD003", "CHRISTIAN DEATH - Iron Mask (CD)",
		"US-Import", "Cleopatra",
		"13.75", "100",
		"1", 1,
		"Stück", "44",
		"", "pd-1417609158.htm",
		"", 1,
		"1.C002", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/christdth_sleepl.jpg",
		85, 85,
		"CHD002", "CHRISTIAN DEATH - Sleepless Nights (CD)",
		"US-Import KULT !", "Cleopatra",
		"13.25", "100",
		"1", 1,
		"Stück", "44",
		"", "pd-1770289993.htm",
		"", 1,
		"1.C002", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/christdth_invoc.jpg",
		85, 85,
		"CHD001", "CHRISTIAN DEATH - Invocations (CD)",
		"US-Import", "Cleopatra",
		"13.75", "100",
		"1", 1,
		"Stück", "44",
		"", "pd-329544672.htm",
		"", 1,
		"1.C002", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/kisstb_headcr_re.jpg",
		85, 85,
		"KTB008", "KISS THE BLADE - Re-Release Headcrash - A Romance  (CD)",
		"", "UpSolution",
		"8.25", "100",
		"1", 1,
		"Stück", "119",
		"", "pd-1068574953.htm",
		"", 1,
		"1.K001", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/various_judge1.jpg",
		85, 85,
		"VAR005", "various artists - JUDGEMENT DAY festival compilation vol. 1",
		"", "Batbeliever",
		"4.08", "100",
		"1", 1,
		"Stück", "222,287",
		"", "pd-2025122839.htm",
		"", 1,
		"1.28,6", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/sprissler_silence.jpg",
		81, 121,
		"SPR002", "Martin Sprissler - Silence Screams (Buch)",
		"", "UpSolution",
		"12.42", "300",
		"2", 1,
		"Stück", "285",
		"", "pd-240221305.htm",
		"", 1,
		"4.02", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/sprissler_essence.jpg",
		81, 121,
		"SPR001", "Martin Sprissler - Essence (Buch)",
		"", "UpSolution",
		"10.75", "200",
		"2", 1,
		"Stück", "285",
		"", "pd854752688.htm",
		"", 1,
		"4.02", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/video_chamlive.jpg",
		73, 121,
		"CHAM001", "Chameleons, The - Live at the Gallery Club Manchester 1982 (Video-VHS)",
		"US-Import", "cleopatra",
		"8.25", "200",
		"1", 1,
		"Stück", "260,39",
		"", "pd726073511.htm",
		"", 1,
		"2,1.C014", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/corpusd_bestof.jpg",
		85, 85,
		"COR001", "Corpus Delicti - The Best Of  (CD)",
		"US-Import", "Cleopatra",
		"12.08", "100",
		"1", 1,
		"Stück", "52",
		"", "pd-222262868.htm",
		"", 1,
		"1.C004", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/southerndc_card.jpg",
		126, 85,
		"SDC001", "THE SOUTHERN DEATH CULT - Postkarte",
		"", "",
		"4.08", "15",
		"1", 1,
		"Stück", "270,192",
		"", "pd-13874356.htm",
		"", 1,
		"3.P001,1.S006", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/nitzerebb_card.jpg",
		85, 119,
		"NIT001", "NITZER EBB - Postkarte",
		"", "",
		"4.08", "15",
		"1", 1,
		"Stück", "270",
		"", "pd-1010445734.htm",
		"", 1,
		"3.P001", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/mission_card.jpg",
		85, 129,
		"MSS002", "THE MISSION - Postkarte",
		"ultrarar (1987)", "",
		"4.08", "15",
		"1", 1,
		"Stück", "270,134",
		"", "pd-555997376.htm",
		"", 1,
		"3.P001,1.M014", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/thecult_card.jpg",
		85, 133,
		"CUL001", "THE CULT - Postkarte",
		"", "",
		"4.08", "15",
		"1", 1,
		"Stück", "270,54",
		"", "pd1366187886.htm",
		"", 1,
		"3.P001,1.C009", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/franktb_diff.jpg",
		85, 85,
		"FTB001", "Frank The Baptist - Different Degrees Of Empty (CD)",
		"", "Strobelight",
		"6.25", "100",
		"1", 1,
		"Stück", "95",
		"", "pd-1526199167.htm",
		"", 1,
		"1.F003", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/murderatr_filed.jpg",
		85, 85,
		"MUR001", "MURDER AT THE REGISTRY - Filed: ´93 - ´03  (CD)",
		"", "Strobelight",
		"8.25", "100",
		"1", 1,
		"Stück", "139",
		"", "pd-446191988.htm",
		"", 1,
		"1.M005", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/ktb_tshirt_wgt02.jpg",
		170, 153,
		"KTB015L", "KISS THE BLADE - 11.WGT-T-Shirt",
		"mit Backprint", "",
		"9.9", "120",
		"1", 1,
		"Stück", "266",
		"Grösse;L@Farbe;Schwarz@", "pd469028195.htm",
		"", 1,
		"3.K001", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/ktb_tshirt_amptour.jpg",
		170, 153,
		"KTB014L", "KISS THE BLADE - Amplified-Tour-T-Shirt",
		"mit Backprint", "",
		"11.9", "120",
		"1", 1,
		"Stück", "266",
		"Grösse;L@Farbe;Schwarz@", "pd-1457597075.htm",
		"", 1,
		"3.K001", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/ktb_tshirt_aural.jpg",
		170, 153,
		"KTB013XL", "KISS THE BLADE - Aural Delight - T-Shirt",
		"mit Backprint", "",
		"11.9", "120",
		"1", 1,
		"Stück", "266",
		"Grösse;XL@Farbe;Schwarz@", "pd1409091815.htm",
		"", 1,
		"3.K001", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/ktb_tshirt_real.jpg",
		170, 153,
		"KTB012L", "KISS THE BLADE - &quot;Realized &amp; Despised&quot;-T-Shirt",
		"mit Backprint", "",
		"11.9", "120",
		"1", 1,
		"Stück", "266",
		"Grösse;L@Farbe;Schwarz@", "pd60429905.htm",
		"", 1,
		"3.K001", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/foto_set.jpg",
		120, 79,
		"KTB011", "KISS THE BLADE - Foto-Set",
		"", "",
		"2.42", "0",
		"1", 1,
		"Stück", "266",
		"", "pd-751392725.htm",
		"", 1,
		"3.K001", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/sticker.jpg",
		120, 85,
		"KTB010", "KISS THE BLADE - Sticker-Set",
		"", "",
		"1.58", "0",
		"1", 1,
		"Stück", "266",
		"", "pd1548223733.htm",
		"", 1,
		"3.K001", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/strobelight_002.jpg",
		138, 196,
		"STRO002", "Strobelight Magazine #2",
		"", "",
		"3.18", "100",
		"2", 1,
		"Stück", "283",
		"", "pd1039916476.htm",
		"", 1,
		"4.01strob", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/strobelight_003.jpg",
		138, 196,
		"STRO003", "Strobelight Magazine #3",
		"", "",
		"3.18", "100",
		"2", 1,
		"Stück", "283",
		"", "pd-243473907.htm",
		"", 1,
		"4.01strob", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/strobelight_004.jpg",
		138, 196,
		"STRO004", "Strobelight Magazine #4",
		"", "",
		"3.18", "100",
		"2", 1,
		"Stück", "283",
		"", "pd-1471452598.htm",
		"", 1,
		"4.01strob", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/gothic_39.jpg",
		138, 198,
		"GOT039", "GOTHIC MAGAZINE Nr. 39",
		"inkl. CD im Digipack", "Dark Media",
		"8.29", "300",
		"1", 1,
		"Stück", "282",
		"", "pd1524336978.htm",
		"", 1,
		"4.01gothic", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/burningg_aurora.jpg",
		85, 85,
		"BUR001", "Burning Gates - Aurora Borealis  (CD)",
		"", "ENDE",
		"11.58", "100",
		"1", 1,
		"Stück", "29",
		"", "pd1104818885.htm",
		"", 1,
		"1.B002", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/burningg_wounds.jpg",
		85, 85,
		"BUR003", "Burning Gates - Wounds  (CD)",
		"Italien-Import", "ENDE",
		"11.58", "100",
		"1", 1,
		"Gramm", "29",
		"", "pd-1049334276.htm",
		"", 1,
		"1.B002", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/christdth_script.jpg",
		85, 85,
		"CHD007", "CHRISTIAN DEATH - The Scriptures  (CD)",
		"US-Import", "",
		"10.75", "100",
		"1", 1,
		"Stück", "44",
		"", "pd1939392947.htm",
		"", 1,
		"1.C002", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/fliehendes_priesth.jpg",
		85, 85,
		"FLI001", "FLIEHENDE STÜRME - Priesthill  (CD)",
		"", "Sturmhöhe",
		"10.75", "100",
		"1", 1,
		"Stück", "92",
		"", "pd-1451265690.htm",
		"", 1,
		"1.F004", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/fliehendes_himmel.jpg",
		85, 85,
		"FLI004", "FLIEHENDE STÜRME -  Himmel Steht Still  (CD)",
		"", "Sturmhöhe",
		"10.75", "100",
		"1", 1,
		"Stück", "92",
		"", "pd-1232919385.htm",
		"", 1,
		"1.F004", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/special_package.jpg",
		142, 142,
		"KTB016", "KISS THE BLADE - Re-Release-Special  (2 CDs)",
		"", "Strobelight",
		"13.25", "200",
		"1", 1,
		"Stück", "119,287",
		"", "pd-1972355315.htm",
		"", 1,
		"1.K001,6", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/various_gothiswhat2.jpg",
		85, 85,
		"VAR013", "various artists - GOTH IS WHAT YOU MAKE IT  2  (CD)",
		"zum MIDPRICE ! support your scene !", "batbeliever",
		"8.25", "100",
		"1", 1,
		"Stück", "222",
		"", "pd-1592019253.htm",
		"", 1,
		"1.28", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/v.a._ghostriders_kl.jpg",
		85, 85,
		"VAR011", "various artists - Ghostriders Of German Gothic Vol. 2 (CD)",
		"", "",
		"9.92", "120",
		"1", 1,
		"Stück", "222",
		"", "pd-1219976967.htm",
		"", 1,
		"1.28", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/blackice_ep.jpg",
		85, 85,
		"BLA001", "Black Ice - Eve EP (Vinyl)",
		"(Vinyl 10&quot;)", "Atakra Records",
		"12.42", "200",
		"1", 1,
		"Gramm", "20",
		"", "pd35407959.htm",
		"", 1,
		"1.B004", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/chantsofmald_thyhurt.jpg",
		85, 85,
		"COM001", "Chants Of Maldoror - Thy Hurting Heaven (CD)",
		"", "Radio Luxor",
		"12.42", "120",
		"1", 1,
		"Stück", "40",
		"", "pd790742215.htm",
		"", 1,
		"1.C007", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/casual_figura11.jpg",
		85, 85,
		"CAS001", "CasualL - Figura 11 (CD)",
		"", "Vel Records",
		"10.75", "120",
		"1", 1,
		"", "33",
		"", "pd-1152390359.htm",
		"", 1,
		"1.C008", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/morssyph_prim.jpg",
		85, 85,
		"MOS", "MORS SYPHILITICA - Primrose (CD)",
		"", "Darkside Distribution",
		"9.92", "120",
		"1", 1,
		"", "137",
		"", "pd901175699.htm",
		"", 1,
		"1.M008", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/rozzwill_accept.jpg",
		85, 85,
		"ROZ001", "ROZZ WILLIAMS - Accept the Gift of Sin (CD)",
		"Live in Philadelphia 1996", "Hollows Hill Sound Rec.",
		"11.58", "120",
		"1", 1,
		"", "216",
		"", "pd-614042994.htm",
		"", 1,
		"1.W002", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/various_newdar.jpg",
		85, 85,
		"VAR000", "various artists - NEW DARK AGE vol. 1 (DCD)",
		"", "Strobelight Records",
		"9.08", "250",
		"1", 1,
		"Stück", "222",
		"", "pd-279651556.htm",
		"", 1,
		"1.28", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/equinoxe_21.jpg",
		85, 126,
		"EQU001", "EQUINOXE MAG. - Nr. 21",
		"", "",
		"2.92", "200",
		"2", 1,
		"Stück", "281",
		"", "pd-1474636568.htm",
		"", 1,
		"4.01equ", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/equinoxe_22.jpg",
		85, 126,
		"EQU002", "EQUINOXE MAG. - Nr. 22",
		"", "",
		"2.92", "200",
		"2", 1,
		"Stück", "281",
		"", "pd-1214880426.htm",
		"", 1,
		"4.01equ", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/deathcult_gh.jpg",
		85, 85,
		"DC001", "DEATH CULT - Ghost Dance (CD)",
		"", "Beggars Banquett",
		"11.58", "120",
		"1", 1,
		"Stück", "64",
		"", "pd-864604122.htm",
		"", 1,
		"1.D005", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/southerndc_same.jpg",
		85, 85,
		"TSDC001", "THE SOUTHERN DEATH CULT (CD)",
		"The Southern Death Cult", "Beggars Banquet",
		"11.58", "120",
		"1", 1,
		"", "192",
		"", "pd575331986.htm",
		"", 1,
		"1.S006", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/christdth_deathdetr.jpg",
		85, 85,
		"CHD008", "CHRISTIAN DEATH - Death in Detroit (MCD)",
		"US Import", "cleopetra",
		"11.58", "120",
		"1", 1,
		"", "44",
		"", "pd2036097251.htm",
		"", 1,
		"1.C002", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/passion_cd.jpg",
		85, 85,
		"PP001", "Passion Play - Dreaming Spikes (CD)",
		"", "Perimeter Rec.",
		"11.58", "120",
		"1", 1,
		"Stück", "153",
		"", "pd1009062486.htm",
		"", 1,
		"1.P001", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/wipers_thsirtyou$.jpg",
		170, 153,
		"WIP004L", "WIPERS - T-Shirt",
		"Blau / Youth of America", "",
		"15.9", "350",
		"1", 1,
		"", "274",
		"Grösse;L@Farbe;Schwarz@", "pd1795467665.htm",
		"", 1,
		"3.W001", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/wipers_thsirtw.jpg",
		170, 153,
		"WIP003L", "WIPERS - T-Shirt",
		"Schwarz / Weißes Logo", "",
		"15.9", "350",
		"1", 1,
		"", "274",
		"Grösse;L@Farbe;Schwarz@", "pd1370692781.htm",
		"", 1,
		"3.W001", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/astro_cd.jpg",
		85, 85,
		"ASTRO001", "Astrovamps - Manifesto (MCD)",
		"", "Alice Inn ...",
		"5.75", "100",
		"1", 1,
		"Stück", "10",
		"", "pd-718657453.htm",
		"", 1,
		"1.A004", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/one_walkthe.jpg",
		85, 85,
		"ONE001", "ONE - Walk The Mercy Mile (CD)",
		"UK Import", "Nightbreed Records",
		"8.25", "120",
		"1", 1,
		"", "147",
		"", "pd-1517920049.htm",
		"", 1,
		"1.O003", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/PhantomLimbs_cd.jpg",
		85, 85,
		"TPL001-1", "Phantom Limbs - Displacement (LP)",
		"", "Transsolar Records",
		"13.25", "120",
		"1", 1,
		"Stück", "155",
		"", "pd2031138485.htm",
		"", 1,
		"1.P002", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/aliensf_bestof.jpg",
		85, 85,
		"ASF001", "Alien Sex Fiend - The Very Best Of  (CD)",
		"", "",
		"11.58", "130",
		"1", 1,
		"Stück", "5",
		"", "pd1325769615.htm",
		"", 1,
		"1.A005", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/Balaam.jpg",
		85, 85,
		"BATA1", "Balaam and the Angel - Sun Family (CD)",
		"", "GOTH",
		"11.58", "120",
		"1", 1,
		"Stück", "15",
		"", "pd1281575804.htm",
		"", 1,
		"1.B005", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/Dance_Heaven.jpg",
		85, 85,
		"TDS001", "Danse Society, The - Heaven Is Waiting (CD)",
		"", "GOTH",
		"11.58", "120",
		"1", 1,
		"Stück", "58",
		"", "pd-74449409.htm",
		"", 1,
		"1.D007", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/dansesoc_seduc.jpg",
		85, 85,
		"TDS002", "Danse Society, The - Seduction (CD)",
		"", "GOTH",
		"11.58", "120",
		"1", 1,
		"Stück", "58",
		"", "pd-736874427.htm",
		"", 1,
		"1.D007", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/tldoj_arm.jpg",
		85, 85,
		"LDOJ002", "The Last Days of Jesus - Arma Christi (CD)",
		"", "Alic in ...",
		"11.58", "120",
		"1", 1,
		"Stück", "122",
		"", "pd-1117200021.htm",
		"", 1,
		"1.L003", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/militia_christi.jpg",
		85, 85,
		"MC001", "Milita Christi - Ordo Militia Templi (CD)",
		"", "Decadance Rec.",
		"11.58", "120",
		"1", 1,
		"Stück", "133",
		"", "pd639184604.htm",
		"", 1,
		"1.M009", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/trans_01.jpg",
		85, 118,
		"trans1", "Transmission - Ausgabe 1",
		"", "",
		"2.64", "150",
		"2", 1,
		"Stück", "284",
		"", "pd347721214.htm",
		"", 1,
		"4.06transm", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/v.a.-maschinentrauma.jpg",
		85, 84,
		"VAR015", "various artists - MASCHINENTRAUMA (CD)",
		"", "Sturmhöhe",
		"8.25", "120",
		"1", 1,
		"Stück", "222",
		"", "pd-1262383948.htm",
		"", 1,
		"1.28", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/bmovie_bbc.jpg",
		85, 85,
		"BMV001", "B-Movie - BBC Radio Sessions 1981 - 84 (CD)",
		"", "Cherry Red Records",
		"11.58", "120",
		"1", 1,
		"Stück", "14",
		"", "pd743899109.htm",
		"", 1,
		"1.B008", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/redlorry_bestof.jpg",
		85, 85,
		"RLYL001", "Red Lorry Yellow Lorry - The Very Best Of (CD)",
		"", "Cherry Red Records",
		"11.58", "120",
		"1", 1,
		"Stück", "163",
		"", "pd1773472676.htm",
		"", 1,
		"1.R003", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/shockth_nof.jpg",
		85, 85,
		"SHT001", "Shock Therapy - No Fear Of Death (CD)",
		"", "Psycho Clown",
		"11.58", "120",
		"1", 1,
		"Stück", "181",
		"", "pd209003313.htm",
		"", 1,
		"1.S009", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/burningg_risv.jpg",
		85, 85,
		"BUR004", "Burning Gates - Risvegli (CD)",
		"", "Northern Darkness Rec.",
		"11.58", "120",
		"1", 1,
		"Stück", "29",
		"", "pd-2028876548.htm",
		"", 1,
		"1.B002", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/phantoml_split.jpg",
		85, 85,
		"TPL003", "Phantom Limbs - Patience (7inch)",
		"Split Single mit THE VANISHING", "Hungry Eye Records",
		"6.58", "250",
		"1", 1,
		"Stück", "155",
		"", "pd1969382211.htm",
		"", 1,
		"1.P002", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/lastdan_perf.jpg",
		85, 85,
		"TLD003", "The Last Dance - Perfect (CD)",
		"", "",
		"11.58", "120",
		"1", 1,
		"Stück", "121",
		"", "pd-247402156.htm",
		"", 1,
		"1.L002", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/lastdan_now.jpg",
		85, 85,
		"TLD004", "The Last Dance - Now &amp; Forever (CD)",
		"", "",
		"11.58", "120",
		"1", 1,
		"Stück", "121",
		"", "pd-1150679134.htm",
		"", 1,
		"1.L002", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/chameleons_dvd.jpg",
		80, 110,
		"CHAM002", "Chameleons, The - Live at the Gallery Club Manchester (DVD)",
		"", "",
		"18.25", "150",
		"1", 1,
		"Stück", "260,39",
		"", "pd1084566094.htm",
		"", 1,
		"2,1.C014", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/buzzcocks.jpg",
		80, 122,
		"BUZZ001", "Buzzcocks - Auf Wiedersehen (DVD)",
		"", "",
		"18.25", "150",
		"1", 1,
		"Stück", "260",
		"", "pd-613445332.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/asf_dvd.jpg",
		80, 114,
		"ASF002", "Alien Sex Fiend - Edit Overdose! (DVD)",
		"", "",
		"18.25", "150",
		"1", 1,
		"Stück", "260,5",
		"", "pd762710842.htm",
		"", 1,
		"2,1.A005", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/ingothdaze_dvd.jpg",
		80, 114,
		"INGO001", "IN GOTH DAZE - The Gothic Video Collection (DVD)",
		"", "",
		"18.25", "150",
		"1", 1,
		"Stück", "260",
		"", "pd1307718374.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/celldivision_tsunami.jpg",
		85, 85,
		"CEL002", "Cell Division - Tsunami (CD)",
		"", "",
		"11.58", "120",
		"1", 1,
		"Stück", "37",
		"", "pd1077487139.htm",
		"", 1,
		"1.C006", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/Jacquy-Bitch_haine.jpg",
		85, 85,
		"BIT002", "Jacquy Bitch - Haine (CD)",
		"", "",
		"11.58", "120",
		"1", 1,
		"Stück", "19",
		"", "pd1111299613.htm",
		"", 1,
		"B.003", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/Scary-Bitches_lesbian.jpg",
		85, 85,
		"SCBI001", "Scary Bitches - Lesbian Vampyres From Outer Space (CD)",
		"", "",
		"11.58", "120",
		"1", 1,
		"Stück", "175",
		"", "pd270034136.htm",
		"", 1,
		"1.S010", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/ftb_begg.jpg",
		85, 84,
		"FTB002", "Frank The Baptist - Beggars would ride (CD)",
		"", "",
		"6.25", "120",
		"1", 1,
		"Stück", "95",
		"", "pd1077565885.htm",
		"", 1,
		"1.F003", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/various_releasetherats.jpg",
		75, 75,
		"VAR021", "various artists- RELEASE THE RATS (CD)",
		"", "",
		"11.58", "100",
		"1", 1,
		"Stück", "222",
		"", "pd-998269056.htm",
		"", 1,
		"1.28", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/Equinoxe23.jpg",
		85, 120,
		"EQU003", "EQUINOXE Mag. - Nr.  23",
		"", "",
		"2.92", "200",
		"2", 1,
		"Stück", "281",
		"", "pd-239697081.htm",
		"", 1,
		"4.01equ", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/Funhouse_Flames.jpg",
		75, 75,
		"FUN001", "Funhouse - Flames Of Love (CD)",
		"", "",
		"11.58", "120",
		"1", 1,
		"Stück", "98",
		"", "pd2039291462.htm",
		"", 1,
		"1.F005", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/v.a.---stobelights1.jpg",
		85, 85,
		"VAR022", "various artists- STROBELIGHTS vol. 1 (CD)",
		"", "",
		"6.25", "120",
		"1", 1,
		"Stück", "222",
		"", "pd1080344677.htm",
		"", 1,
		"1.28", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/graphicmag_tapered.jpg",
		85, 85,
		"GRA002-1", "Graphik Magazin - Tape Recordings/Stadt Imperia (MCD)",
		"", "GraphikMag",
		"7.42", "100",
		"1", 1,
		"Stück", "237",
		"", "pd303054831.htm",
		"", 1,
		"1.MG001", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/graphicmag_reklame.jpg",
		85, 85,
		"GRA003", "Graphik Magazin - Reklame und Schatten (CD)",
		"", "",
		"11.58", "110",
		"1", 1,
		"Stück", "237",
		"", "pd-2073761599.htm",
		"", 1,
		"1.MG001", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/passionplay_stress.jpg",
		85, 85,
		"PP002", "Passion Play - Stress Fractures (CD)",
		"", "",
		"11.58", "110",
		"1", 1,
		"Stück", "153",
		"", "pd-325065659.htm",
		"", 1,
		"1.P001", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/skabs.jpg",
		85, 85,
		"SKAB001", "The Skabs - Aged To Perfection (CD)",
		"US Import", "",
		"12.42", "110",
		"1", 1,
		"Stück", "185,257",
		"", "pd1280669984.htm",
		"", 1,
		"1.S11,P88", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/jday_kl.jpg",
		170, 155,
		"JDAY007G", "Judgement Day Festival 7",
		"mit Backprint", "",
		"9.9", "220",
		"1", 1,
		"Stück", "269",
		"Grösse;Girlie@Farbe;Schwarz@", "pd-155324866.htm",
		"", 1,
		"3.P002", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/thumb/tldoj_alien_kl.jpg",
		85, 85,
		"LDOJ004", "The Last Days of Jesus - Alien Road (CD)",
		"", "",
		"10.42", "120",
		"1", 1,
		"Stück", "122",
		"", "pd1083960304.htm",
		"", 1,
		"1.L003", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/various_newdark_vol2_kl.jpg",
		85, 85,
		"VAR023", "various artists- NEW DARK AGE vol. 2 (2CD)",
		"", "",
		"9.08", "150",
		"1", 1,
		"Stück", "222",
		"", "pd-1058587908.htm",
		"", 1,
		"1.28", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/thumb/A-Flock-of-Seagulls_kl.jpg",
		85, 85,
		"AFOS001", "A Flock Of Seagulls - I ran: Best Of",
		"UK Import", "",
		"11.58", "120",
		"1", 1,
		"Stück", "3",
		"", "pd-693594469.htm",
		"", 1,
		"1.A007", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/bolshoi_kl.jpg",
		85, 85,
		"TBO001", "The Bolshoi - Away: The Best Of",
		"UK Import", "",
		"11.58", "120",
		"1", 1,
		"Stück", "27",
		"", "pd924826067.htm",
		"", 1,
		"1.A010", "0",
		 0)
	
		Entry[102] = new Element(
		102, "assets/thumb/cult-_love_kl.jpg",
		85, 85,
		"CULT001", "The Cult - Love (CD)",
		"", "",
		"9.92", "120",
		"1", 1,
		"Stück", "54",
		"", "pd-100678385.htm",
		"", 1,
		"1.C009", "0",
		 0)
	
		Entry[103] = new Element(
		103, "assets/thumb/cult_dreamtime_kl.jpg",
		85, 85,
		"CULT002", "The Cult - Dreamtime (CD)",
		"", "",
		"9.92", "120",
		"1", 1,
		"Stück", "54",
		"", "pd-392983083.htm",
		"", 1,
		"1.C009", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/cd_cult_rare_kl.jpg",
		85, 85,
		"CULT003", "The Cult - Rare Cult (CD)",
		"", "",
		"9.92", "120",
		"1", 1,
		"Stück", "54",
		"", "pd601152523.htm",
		"", 1,
		"1.C009", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/pure_cult.jpg",
		73, 121,
		"CULT004", "The Cult - Pure Cult 1984 - 1995 (DVD)",
		"", "",
		"16.25", "220",
		"1", 1,
		"Stück", "54,260",
		"", "pd-854135503.htm",
		"", 1,
		"1.C009,2", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/thumb/fields_fields_kl.jpg",
		85, 85,
		"FOTH001", "Fields Of The Nephilim - The Nephilim (CD)",
		"", "",
		"9.92", "120",
		"1", 1,
		"Stück", "91",
		"", "pd-1936056580.htm",
		"", 1,
		"1.F006", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/fields_revelations_kl.jpg",
		85, 85,
		"FOTH002", "Fields Of The Nephilim - Revelations (CD)",
		"", "",
		"9.92", "120",
		"1", 1,
		"Stück", "91",
		"", "pd-617575030.htm",
		"", 1,
		"1.F006", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/fields_fallen_kl.jpg",
		85, 85,
		"FOTH003", "Fields Of The Nephilim - Fallen (CD)",
		"limited Editon - inkl. Bonus CD und Postkarten", "",
		"11.58", "220",
		"1", 1,
		"Stück", "91",
		"", "pd1216026312.htm",
		"", 1,
		"1.F006", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/fields_dvd.jpg",
		73, 121,
		"FOTH004", "Fields Of The Nephilim - Revelations (DVD)",
		"", "",
		"18.25", "220",
		"1", 1,
		"Stück", "91",
		"", "pd-2095318474.htm",
		"", 1,
		"1.F006", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/thumb/fallenap_hegemony_kl.jpg",
		85, 85,
		"THOU001", "House of Usher, The - Hegemony (7inch)",
		"Split Single mit FALLEN APART", "",
		"8.33", "150",
		"1", 1,
		"Stück", "109",
		"", "pd559458741.htm",
		"", 1,
		"1.H002", "0",
		 0)
	
		Entry[111] = new Element(
		111, "assets/thumb/Alan-Woxx_Daemonolatreia_kl.jpg",
		85, 85,
		"ALWO002", "Alan Woxx - Daemonolatreia E.P. (Vinyl)",
		"Vinyl mit booklet, limitiert auf 666 Stück", "",
		"8.75", "350",
		"1", 1,
		"Stück", "4",
		"", "pd1948458828.htm",
		"", 1,
		"1.A008", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/Alan-Woxx_bloodrain_kl.jpg",
		85, 85,
		"ALWO001", "Alan Woxx - Blood Rain (MCD)",
		"limitiert auf 666 Stück", "",
		"7.08", "120",
		"1", 1,
		"Stück", "4",
		"", "pd-250735762.htm",
		"", 1,
		"1.A008", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/thumb/deep_kleber1_kl.jpg",
		85, 85,
		"TDE009", "The Deep Eynde - Aufkleber ´´Monsterboy´´",
		"US Import", "",
		"0.63", "5",
		"1", 1,
		"Stück", "264",
		"", "pd-1078506703.htm",
		"", 1,
		"3.D001", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/thumb/deep_stick_vampskull.jpg",
		71, 85,
		"TDE010", "The Deep Eynde - Aufkleber ´´Skeleton Stairs´´",
		"US Import", "",
		"0.63", "0",
		"1", 1,
		"Stück", "264",
		"", "pd99928263.htm",
		"", 1,
		"3.D001", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/thumb/deep_stick_skeleton.jpg",
		153, 85,
		"TDE011", "The Deep Eynde - Aufkleber ´´Vamp Skull´´",
		"US Import", "",
		"0.63", "10",
		"1", 1,
		"Stück", "264",
		"", "pd-465561523.htm",
		"", 1,
		"3.D001", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/thumb/deep_stick_franken.jpg",
		96, 85,
		"TDE012", "The Deep Eynde - Aufkleber: ´´Frankencash´´",
		"US Import", "",
		"0.63", "20",
		"1", 1,
		"Stück", "264",
		"", "pd1493650243.htm",
		"", 1,
		"3.D001", "0",
		 0)
	
		Entry[117] = new Element(
		117, "assets/thumb/Dronning-Maud-Land_kl.jpg",
		85, 85,
		"DRMA001", "Dronning Maud Land - The Essence Of A Decade Part I",
		"", "",
		"11.58", "120",
		"1", 1,
		"Stück", "75",
		"", "pd-247915033.htm",
		"", 1,
		"1.D11", "0",
		 0)
	
		Entry[118] = new Element(
		118, "assets/thumb/mephistowalz_insid_kl.jpg",
		85, 85,
		"MEP002", "Mephisto Walz - Insidious (CD)",
		"", "",
		"11.58", "120",
		"1", 1,
		"Stück", "130",
		"", "pd1379175210.htm",
		"", 1,
		"1.M006", "0",
		 0)
	
		Entry[119] = new Element(
		119, "assets/thumb/marquee_dessert_kl.jpg",
		85, 85,
		"MARQ002", "Marquee Moon - Dessert House (MCD)",
		"+ 2 Live Bonus Tracks", "",
		"6.25", "120",
		"1", 1,
		"Stück", "129",
		"", "pd473857512.htm",
		"", 1,
		"1.M11", "0",
		 0)
	
		Entry[120] = new Element(
		120, "assets/thumb/Cauda_initiation_kl.jpg",
		85, 85,
		"CAPA003", "Cauda Pavonis - Initiation (MCD)",
		"UK Import", "",
		"5.75", "120",
		"1", 1,
		"Stück", "35",
		"", "pd-2147317812.htm",
		"", 1,
		"1.C10", "0",
		 0)
	
		Entry[121] = new Element(
		121, "assets/thumb/goetter_morphia_kl.jpg",
		85, 85,
		"GOTT001", "Götterdämmerung - Morphia (CD)",
		"", "",
		"11.58", "120",
		"1", 1,
		"Stück", "104",
		"", "pd601939312.htm",
		"", 1,
		"1.G003", "0",
		 0)
	
		Entry[122] = new Element(
		122, "assets/thumb/astrovamps_american_kl.jpg",
		85, 85,
		"ASTRO002", "Astrovamps - American Gothick (CD)",
		"", "",
		"11.58", "120",
		"1", 1,
		"Stück", "10",
		"", "pd1845805342.htm",
		"", 1,
		"1.A004", "0",
		 0)
	
		Entry[123] = new Element(
		123, "assets/thumb/sunshine_liquid_kl.jpg",
		85, 85,
		"SUN001", "Sunshine Blind - Liquid (CD)",
		"", "",
		"10.42", "120",
		"1", 1,
		"Stück", "195",
		"", "pd-2099040502.htm",
		"", 1,
		"1.S14", "0",
		 0)
	
		Entry[124] = new Element(
		124, "assets/thumb/sensorium_jahazralah_kl.jpg",
		85, 85,
		"SENS001", "Sensorium - Jahazralah (CD)",
		"", "",
		"10.42", "120",
		"1", 1,
		"Stück", "177",
		"", "pd-45837240.htm",
		"", 1,
		"1.S13", "0",
		 0)
	
		Entry[125] = new Element(
		125, "assets/thumb/pinkturn_reunion_kl.jpg",
		85, 85,
		"PINK001", "Pink Turns Blue - Re-Union (CD)",
		"", "",
		"11.58", "120",
		"1", 1,
		"Stück", "156",
		"", "pd2078526369.htm",
		"", 1,
		"1.P04", "0",
		 0)
	
		Entry[126] = new Element(
		126, "assets/thumb/Queen of Swords.jpg",
		85, 86,
		"DIE004", "Die Laughing - Queen Of Swords (7&quot;)",
		"UK Import", "",
		"6.25", "100",
		"1", 1,
		"Stück", "71",
		"", "pd1125711543.htm",
		"", 1,
		"1.D002", "0",
		 0)
	
		Entry[127] = new Element(
		127, "assets/thumb/birthday_kl.jpg",
		85, 85,
		"TBP001", "The Birthday Party - Hits (CD)",
		"", "",
		"11.58", "120",
		"1", 1,
		"Stück", "18",
		"", "pd-15300568.htm",
		"", 1,
		"1.B12", "0",
		 0)
	
		Entry[128] = new Element(
		128, "assets/thumb/MSchuster_cover.jpg",
		80, 115,
		"MASC001", "Matthias Schuster - Atemlos (CD)",
		"DVD Box mit Bonus Material (Ritual + Im Namen des Volkes)", "",
		"11.58", "250",
		"1", 1,
		"Stück", "243",
		"", "pd-1862061423.htm",
		"", 1,
		"1.MM001", "0",
		 0)
	
		Entry[129] = new Element(
		129, "assets/thumb/human_cover_kl.jpg",
		85, 85,
		"HDIS001", "Human Disease - Our Flesh Deception (CD)",
		"", "",
		"11.25", "120",
		"1", 1,
		"Stück", "110",
		"", "pd61846326.htm",
		"", 1,
		"1.H04", "0",
		 0)
	
		Entry[130] = new Element(
		130, "assets/thumb/waste_remn_kl.jpg",
		85, 85,
		"WAST002", "Wasteland - The Remnants of a Dying Age (MCD)",
		"", "",
		"6.58", "100",
		"1", 1,
		"Stück", "213",
		"", "pd2017995194.htm",
		"", 1,
		"1.W004", "0",
		 0)
	
		Entry[131] = new Element(
		131, "assets/thumb/skeletal_burning_kl.jpg",
		85, 85,
		"SKEL003", "Skeletal Family - Burning Oil (CD)",
		"+ Bonus Tracks", "",
		"11.58", "120",
		"1", 1,
		"Stück", "186",
		"", "pd-387361136.htm",
		"", 1,
		"1.S007", "0",
		 0)
	
		Entry[132] = new Element(
		132, "assets/thumb/obf_t-shirt.jpg",
		185, 185,
		"ORD003", "Ordeal By Fire - Tour T-Shirt 04 (T-Shirt)",
		"Front: Ordeal Logo // Back: Tour Dates 04", "",
		"9.9", "350",
		"1", 1,
		"Stück", "148,268",
		"Grösse;XL@Farbe;Schwarz@", "pd862449450.htm",
		"", 1,
		"1.O002,3.O001", "0",
		 0)
	
		Entry[133] = new Element(
		133, "assets/thumb/skeletal_longsleeve_logo.jpg",
		94, 85,
		"SKE005", "Skeletal Family - Kapuzen Pulli",
		"", "",
		"24.92", "0",
		"1", 1,
		"Stück", "273,186",
		"", "pd1908156404.htm",
		"", 1,
		"3.S001,1.S007", "0",
		 0)
	
		Entry[134] = new Element(
		134, "assets/thumb/lords_lordsprayer1_kl.jpg",
		85, 85,
		"LORD002", "Lords Of The New Church - The Lords Prayer (2CD)",
		"2 CD Live Set", "",
		"13.25", "140",
		"1", 1,
		"Stück", "124",
		"", "pd338131510.htm",
		"", 1,
		"1.L005", "0",
		 0)
	
		Entry[135] = new Element(
		135, "assets/thumb/pagan_shirt_kl.jpg",
		175, 155,
		"PALO001GR", "Pagan Love Songs - T-Shirt",
		"", "",
		"10.9", "250",
		"1", 1,
		"Stück", "269",
		"Grösse;Girlie@Farbe;Schwarz@Aufdruck;rot@", "pd1096918095.htm",
		"", 1,
		"3.P002", "0",
		 0)
	
		Entry[136] = new Element(
		136, "assets/thumb/zadera_cover_kl.jpg",
		85, 85,
		"ZAD001", "Zadera - Something Red (CD)",
		"", "",
		"6.25", "130",
		"1", 1,
		"Stück", "218",
		"", "pd-1666405194.htm",
		"", 1,
		"1.Z001", "0",
		 0)
	
		Entry[137] = new Element(
		137, "assets/thumb/dark_livingend_kl.jpg",
		85, 85,
		"DARK001", "The Dark - The Living End (LP)",
		"Live Album", "",
		"12.42", "250",
		"1", 1,
		"Stück", "59",
		"", "pd2106170259.htm",
		"", 1,
		"1.D13", "0",
		 0)
	
		Entry[138] = new Element(
		138, "assets/thumb/v.a._gothicrock_3_kl.jpg",
		85, 85,
		"VAR030", "various artists - GOTHIC ROCK vol. 3 (2CD)",
		"UK Import", "",
		"12.42", "150",
		"1", 1,
		"Stück", "222",
		"", "pd1396095076.htm",
		"", 1,
		"1.28", "0",
		 0)
	
		Entry[139] = new Element(
		139, "assets/thumb/dessert_cover_kl.jpg",
		85, 85,
		"DEFO001", "Desert + Fortune - Truth Wins Out (CD)",
		"limitierte Edition im Digipak", "",
		"12.42", "130",
		"1", 1,
		"Stück", "69",
		"", "pd1740956229.htm",
		"", 1,
		"1.D12", "0",
		 0)
	
		Entry[140] = new Element(
		140, "assets/thumb/formfleisch_cover_kl.jpg",
		85, 85,
		"FORM001", "Formfleisch - Grip (MCD)",
		"", "",
		"5.75", "0",
		"1", 1,
		"Stück", "93",
		"", "pd274072578.htm",
		"", 1,
		"1.F08", "0",
		 0)
	
		Entry[141] = new Element(
		141, "assets/thumb/Frankstein_cover_kl.jpg",
		85, 85,
		"FRAN001", "Frankenstein - Display Of Self-Preservation (CD)",
		"", "",
		"11.58", "120",
		"1", 1,
		"Stück", "94",
		"", "pd599833972.htm",
		"", 1,
		"1.F009", "0",
		 0)
	
		Entry[142] = new Element(
		142, "assets/thumb/ghostoflemora_reach_kl.jpg",
		85, 85,
		"GHOST001", "The Ghost of Lemora - Reach For The Ground (CD)",
		"", "",
		"11.58", "120",
		"1", 1,
		"Stück", "102",
		"", "pd-659169765.htm",
		"", 1,
		"1.G004", "0",
		 0)
	
		Entry[143] = new Element(
		143, "assets/thumb/scaryb_creepy_kl.jpg",
		85, 85,
		"SCBI002", "Scary Bitches - Creepy Crawlies (CD)",
		"", "",
		"11.58", "120",
		"1", 1,
		"Stück", "175",
		"", "pd301333953.htm",
		"", 1,
		"1.S010", "0",
		 0)
	
		Entry[144] = new Element(
		144, "assets/thumb/alienskull_nobody_kl.jpg",
		85, 85,
		"ALI003", "Alien Skull Paint - Nobody dies twice (12&quot;)",
		"", "",
		"8.25", "250",
		"1", 1,
		"Stück", "226",
		"", "pd64197597.htm",
		"", 1,
		"1.MA001", "0",
		 0)
	
		Entry[145] = new Element(
		145, "assets/thumb/sleeping_cover_kl.jpg",
		85, 85,
		"SLEE001", "Sleeping Children - Lullabies For Debauchery (CD)",
		"", "",
		"11.25", "120",
		"1", 1,
		"Stück", "187",
		"", "pd-1292141160.htm",
		"", 1,
		"1.S018", "0",
		 0)
	
		Entry[146] = new Element(
		146, "assets/thumb/lords_lordsprayer2_kl.jpg",
		85, 85,
		"LORD004", "Lords Of The New Church - The Lords Prayer (2CD)",
		"", "",
		"13.25", "150",
		"1", 1,
		"Stück", "124",
		"", "pd1842962609.htm",
		"", 1,
		"1.L005", "0",
		 0)
	
		Entry[147] = new Element(
		147, "assets/thumb/vom_cover_kl.jpg",
		85, 85,
		"VOM001", "Voices of Masada - Four Corners (CD)",
		"exkl. bei Strobelight Records", "",
		"10.42", "130",
		"1", 1,
		"Stück", "209",
		"", "pd454587459.htm",
		"", 1,
		"1.V006", "0",
		 0)
	
		Entry[148] = new Element(
		148, "assets/thumb/cos_Mondo_kl.jpg",
		85, 85,
		"COS004", "Children on Stun - Mondo Weird (CD)",
		"", "",
		"11.58", "130",
		"1", 1,
		"Stück", "43",
		"", "pd-2043379314.htm",
		"", 1,
		"1.C003", "0",
		 0)
	
		Entry[149] = new Element(
		149, "assets/thumb/trans_02.jpg",
		85, 118,
		"trans2", "Transmission - Ausgabe 2",
		"", "",
		"2.64", "200",
		"2", 1,
		"Stück", "284",
		"", "pd1107723024.htm",
		"", 1,
		"4.06transm", "0",
		 0)
	
		Entry[150] = new Element(
		150, "assets/thumb/trans_03.jpg",
		85, 113,
		"trans3", "Transmission - Ausgabe 3",
		"", "",
		"2.64", "250",
		"2", 1,
		"Stück", "284",
		"", "pd749035454.htm",
		"", 1,
		"4.06transm", "0",
		 0)
	
		Entry[151] = new Element(
		151, "assets/thumb/eqinoxe25.jpg",
		85, 126,
		"EQU004", "EQUINOXE Mag. - Nr. 25",
		"", "",
		"2.92", "200",
		"2", 1,
		"Stück", "281",
		"", "pd1573028892.htm",
		"", 1,
		"4.01equ", "0",
		 0)
	
		Entry[152] = new Element(
		152, "assets/thumb/deepeynde_shadowland_smal.jpg",
		85, 85,
		"TDE013", "The Deep Eynde - Shadowlands (CD)",
		"", "",
		"11.58", "120",
		"1", 1,
		"Stück", "67",
		"", "pd847919042.htm",
		"", 1,
		"1.D008", "0",
		 0)
	
		Entry[153] = new Element(
		153, "assets/thumb/redlorry_singles_kl.jpg",
		85, 85,
		"RLYL002", "Red Lorry Yellow Lorry - The Singles 1982 - 87 (CD)",
		"", "",
		"11.58", "120",
		"1", 1,
		"Stück", "163",
		"", "pd-969241201.htm",
		"", 1,
		"1.R003", "0",
		 0)
	
		Entry[154] = new Element(
		154, "assets/thumb/faith_Elyria_kl.jpg",
		85, 85,
		"FAITH002", "Faith and the Muse - Elyria (CD)",
		"", "",
		"12.42", "135",
		"1", 1,
		"Stück", "89",
		"", "pd1116789204.htm",
		"", 1,
		"1.F010", "0",
		 0)
	
		Entry[155] = new Element(
		155, "assets/thumb/faith_Annwyn_kl.jpg",
		85, 85,
		"FAITH004", "Faith and the Muse - Annwyn, Beneath the Waves (CD)",
		"", "",
		"12.42", "130",
		"1", 1,
		"Stück", "89",
		"", "pd-289558834.htm",
		"", 1,
		"1.F010", "0",
		 0)
	
		Entry[156] = new Element(
		156, "assets/thumb/faith_vera_kl.jpg",
		85, 85,
		"FAITH003", "Faith and the Muse - Vera Causa (2CD)",
		"", "",
		"13.25", "150",
		"1", 1,
		"Stück", "89",
		"", "pd-1757566548.htm",
		"", 1,
		"1.F010", "0",
		 0)
	
		Entry[157] = new Element(
		157, "assets/thumb/wallenberg_cover_kl.jpg",
		85, 85,
		"WALL001", "Wallenberg - Sea of Sins (CD)",
		"", "",
		"11.58", "130",
		"1", 1,
		"Stück", "212",
		"", "pd-1359530262.htm",
		"", 1,
		"1.W005", "0",
		 0)
	
		Entry[158] = new Element(
		158, "assets/thumb/deadchovsky_cover_kl.jpg",
		85, 85,
		"DEAD001", "Deadchovsky - Decadence Revolution (CD)",
		"", "",
		"11.58", "120",
		"1", 1,
		"Stück", "61",
		"", "pd-1465013751.htm",
		"", 1,
		"1.D015", "0",
		 0)
	
		Entry[159] = new Element(
		159, "assets/thumb/altered_designer_kl.jpg",
		85, 85,
		"ALT003", "Altered States - Designer Gene Pool (CD)",
		"", "",
		"11.58", "130",
		"1", 1,
		"Stück", "8",
		"", "pd-1426533211.htm",
		"", 1,
		"1.A003", "0",
		 0)
	
		Entry[160] = new Element(
		160, "assets/thumb/bloody_limited_kl.jpg",
		85, 85,
		"BLD004", "Bloody Dead and Sexy - Narcotic Room (2CD)",
		"limitierte Auflage", "Alice In",
		"13.75", "180",
		"1", 1,
		"Stück", "24",
		"", "pd-1866153727.htm",
		"", 1,
		"1.B001", "0",
		 0)
	
		Entry[161] = new Element(
		161, "assets/thumb/bloody_limited_kl.jpg",
		85, 85,
		"BLD005", "Bloody Dead and Sexy - Narcotic Room (CD)",
		"", "Alice In",
		"11.58", "130",
		"1", 1,
		"Stück", "24",
		"", "pd216822551.htm",
		"", 1,
		"1.B001", "0",
		 0)
	
		Entry[162] = new Element(
		162, "assets/thumb/evao_damna_kl.jpg",
		85, 85,
		"EVAO003", "EVA O - Damnation - Ride the Madness (CD)",
		"", "",
		"11.58", "120",
		"1", 1,
		"Stück", "85",
		"", "pd-202437859.htm",
		"", 1,
		"1.E005", "0",
		 0)
	
		Entry[163] = new Element(
		163, "assets/thumb/shadowproject_orig_kl.jpg",
		85, 85,
		"SHPR002", "Shadow Project - The Original (EP)",
		"", "",
		"8.25", "130",
		"1", 1,
		"Stück", "179",
		"", "pd919648915.htm",
		"", 1,
		"1.S12", "0",
		 0)
	
		Entry[164] = new Element(
		164, "assets/thumb/scarlets_kl.jpg",
		85, 85,
		"SCAR001", "Scarlet´s Remains - Scarlet`s Remains (CD)",
		"", "",
		"11.58", "130",
		"1", 1,
		"Stück", "173",
		"", "pd2100385734.htm",
		"", 1,
		"1.S020", "0",
		 0)
	
		Entry[165] = new Element(
		165, "assets/thumb/soulscape_cover_kl.jpg",
		85, 85,
		"SOUL001", "Soulscape - Grave New World (CD)",
		"US-Impoort", "",
		"11.58", "130",
		"1", 1,
		"Stück", "190",
		"", "pd-64362347.htm",
		"", 1,
		"1.S021", "0",
		 0)
	
		Entry[166] = new Element(
		166, "assets/thumb/heartsfail_cover_kl.jpg",
		85, 85,
		"HEART001", "Hearts Fail - The Empty Promise (EP)",
		"US Import", "",
		"8.25", "130",
		"1", 1,
		"Stück", "107",
		"", "pd399452592.htm",
		"", 1,
		"1.H005", "0",
		 0)
	
		Entry[167] = new Element(
		167, "assets/thumb/specimen_Atoc_kl.jpg",
		85, 85,
		"SPEC002", "Specimen - Azoic (CD)",
		"UK Import", "",
		"12.08", "130",
		"1", 1,
		"Stück", "193",
		"", "pd-1962039160.htm",
		"", 1,
		"1.S008", "0",
		 0)
	
		Entry[168] = new Element(
		168, "assets/thumb/zombina_cd_kl.jpg",
		85, 85,
		"ZOMB001", "Zombina and the Skeletones - Taste The Blood Of Zombina and The Skeletones",
		"UK Import", "",
		"11.58", "130",
		"1", 1,
		"Stück", "220",
		"", "pd-499270593.htm",
		"", 1,
		"1.Z002", "0",
		 0)
	
		Entry[169] = new Element(
		169, "assets/thumb/manuskript_natural_kl.jpg",
		85, 85,
		"MANU001", "Manuskript - Natural High (CD)",
		"", "",
		"11.25", "120",
		"1", 1,
		"Stück", "127",
		"", "pd-556708276.htm",
		"", 1,
		"1.M12", "0",
		 0)
	
		Entry[170] = new Element(
		170, "assets/thumb/manuskript_Icant_kl.jpg",
		85, 85,
		"MANU002", "Manuskript - I Can`t Belive It`s Not Goth! (MCD)",
		"", "",
		"5.75", "120",
		"1", 1,
		"Stück", "127",
		"", "pd-23163558.htm",
		"", 1,
		"1.M12", "0",
		 0)
	
		Entry[171] = new Element(
		171, "assets/thumb/bauhaus_gotham_kl.jpg",
		85, 140,
		"BAU001", "Bauhaus - Gotham (DVD)",
		"", "",
		"18.25", "250",
		"1", 1,
		"Stück", "16,260",
		"", "pd-511864007.htm",
		"", 1,
		"1.B014,2", "0",
		 0)
	
		Entry[172] = new Element(
		172, "assets/thumb/lords_kl.jpg",
		85, 140,
		"LORD005", "Lords Of The New Church - Live from London 1984 (DVD)",
		"", "",
		"15.42", "200",
		"1", 1,
		"Stück", "124,260",
		"", "pd2041786581.htm",
		"", 1,
		"1.L005,2", "0",
		 0)
	
		Entry[173] = new Element(
		173, "assets/thumb/playdead_company_kl.jpg",
		85, 85,
		"PLAY002", "Play Dead - Company of Justice (CD)",
		"", "",
		"12.92", "130",
		"1", 1,
		"Stück", "158",
		"", "pd1119471853.htm",
		"", 1,
		"1.P6", "0",
		 0)
	
		Entry[174] = new Element(
		174, "assets/thumb/playdead_firstflower_kl.jpg",
		85, 85,
		"PLAY003", "Play Dead - The First Flower (CD)",
		"", "",
		"12.92", "130",
		"1", 1,
		"Stück", "158",
		"", "pd635890915.htm",
		"", 1,
		"1.P6", "0",
		 0)
	
		Entry[175] = new Element(
		175, "assets/thumb/tonesontails_everythinglp_k.jpg",
		85, 85,
		"TONES001", "Tones on Tail - Everything (2CD)",
		"", "",
		"12.42", "160",
		"1", 1,
		"Stück", "202",
		"", "pd972623446.htm",
		"", 1,
		"1.T004", "0",
		 0)
	
		Entry[176] = new Element(
		176, "assets/thumb/claire_inout_kl.jpg",
		85, 85,
		"CLAIR002", "Clair Obscur - In Out (CD)",
		"", "",
		"11.58", "130",
		"1", 1,
		"Stück", "46",
		"", "pd-1082287935.htm",
		"", 1,
		"1.C013", "0",
		 0)
	
		Entry[177] = new Element(
		177, "assets/thumb/morticia_exhumed_kl.jpg",
		85, 85,
		"MORT001", "Morticia - Exhumed (CD)",
		"Italian Import", "",
		"11.58", "120",
		"1", 1,
		"Stück", "138",
		"", "pd209429266.htm",
		"", 1,
		"1.M013", "0",
		 0)
	
		Entry[178] = new Element(
		178, "assets/thumb/virginp_here_kl.jpg",
		85, 85,
		"VIP003", "Virgin Prunes - Heresie (CD)",
		"", "",
		"12.08", "130",
		"1", 1,
		"Stück", "208",
		"", "pd-306760161.htm",
		"", 1,
		"1.V001", "0",
		 0)
	
		Entry[179] = new Element(
		179, "assets/thumb/miguel_alarm_kl.jpg",
		85, 85,
		"MATLD001", "Miguel And The Living Dead - Alarm !!! (CD)",
		"", "",
		"8.25", "130",
		"1", 1,
		"Stück", "132",
		"", "pd728804058.htm",
		"", 1,
		"1.M012", "0",
		 0)
	
		Entry[180] = new Element(
		180, "assets/thumb/aexvoto_annodomini_kl.jpg",
		85, 85,
		"EXVO001", "Ex-Voto - Anno Domini (CD)",
		"US-Import", "",
		"11.58", "130",
		"1", 1,
		"Stück", "86",
		"", "pd2042206095.htm",
		"", 1,
		"1.E007", "0",
		 0)
	
		Entry[181] = new Element(
		181, "assets/thumb/exvoto_light_kl.jpg",
		85, 85,
		"EXVO002", "Ex-Voto - The Light Of Day (CD)",
		"US-Import", "",
		"11.58", "130",
		"1", 1,
		"Stück", "86",
		"", "pd-799300523.htm",
		"", 1,
		"1.E007", "0",
		 0)
	
		Entry[182] = new Element(
		182, "assets/thumb/quidam_cd_kl.jpg",
		85, 85,
		"QUID001", "Quidam - Barking, Mewing, Hissing and Mocking (CD)",
		"Spanien Import / Digipack", "",
		"11.58", "130",
		"1", 1,
		"Stück", "161",
		"", "pd1887477172.htm",
		"", 1,
		"1.Q001", "0",
		 0)
	
		Entry[183] = new Element(
		183, "assets/thumb/bmovie_remembrance_kl.jpg",
		85, 85,
		"BMV002", "B-Movie - Volume 1 / Remembrance Days (CD)",
		"", "",
		"9.92", "130",
		"1", 1,
		"Stück", "14",
		"", "pd1122063274.htm",
		"", 1,
		"1.B008", "0",
		 0)
	
		Entry[184] = new Element(
		184, "assets/thumb/cinema_pressed.jpg",
		85, 140,
		"CIN002", "Cinema Strange - Pressed Flowers/Squashed Blossoms (DVD)",
		"", "",
		"13.75", "300",
		"1", 1,
		"Stück", "260,45",
		"", "pd-2140166029.htm",
		"", 1,
		"2,1.C015", "0",
		 0)
	
		Entry[185] = new Element(
		185, "assets/thumb/chamelons_SingingDVD_kl.jpg",
		85, 140,
		"CHAM004", "Chameleons, The - Singing Rule Britannia (DVD)",
		"", "",
		"18.25", "250",
		"1", 1,
		"Stück", "260,39",
		"", "pd759159729.htm",
		"", 1,
		"2,1.C014", "0",
		 0)
	
		Entry[186] = new Element(
		186, "assets/thumb/virginp_over_kl.jpg",
		85, 85,
		"VIP002", "Virgin Prunes - Over the Rainbow (2CD)",
		"UK Import", "",
		"14.92", "150",
		"1", 1,
		"Stück", "208",
		"", "pd1764732617.htm",
		"", 1,
		"1.V001", "0",
		 0)
	
		Entry[187] = new Element(
		187, "assets/thumb/virginp_anew_kl.jpg",
		85, 85,
		"VIP004", "Virgin Prunes - A new form of beauty (2CD)",
		"", "",
		"14.92", "130",
		"1", 1,
		"Stück", "208",
		"", "pd-821385883.htm",
		"", 1,
		"1.V001", "0",
		 0)
	
		Entry[188] = new Element(
		188, "assets/thumb/virginp_themoon_kl.jpg",
		85, 85,
		"VIP006", "Virgin Prunes - The moon looked down and laughed (CD)",
		"", "",
		"12.42", "130",
		"1", 1,
		"Stück", "208",
		"", "pd-480567871.htm",
		"", 1,
		"1.V001", "0",
		 0)
	
		Entry[189] = new Element(
		189, "assets/thumb/echowest_kl.jpg",
		85, 85,
		"EW002", "Echo West - Echoes of the west (CD)",
		"", "",
		"11.58", "0",
		"1", 1,
		"Stück", "230",
		"", "pd1690681249.htm",
		"", 1,
		"1.ME001", "0",
		 0)
	
		Entry[190] = new Element(
		190, "assets/thumb/ilgiardino_kl.jpg",
		85, 85,
		"ILGIO001", "Il Giardino Violetto - Danse Macabre (CD)",
		"Italian Import", "",
		"10.75", "130",
		"1", 1,
		"Stück", "112",
		"", "pd-1671569672.htm",
		"", 1,
		"1.I002", "0",
		 0)
	
		Entry[191] = new Element(
		191, "assets/thumb/BlackIce_cover_kl.jpg",
		85, 85,
		"BLA002", "Black Ice - Terrible Birds (CD)",
		"", "",
		"11.58", "130",
		"1", 1,
		"Stück", "20",
		"", "pd1406221505.htm",
		"", 1,
		"1.B004", "0",
		 0)
	
		Entry[192] = new Element(
		192, "assets/thumb/doppelgaenger_dancing_kl.jpg",
		85, 85,
		"DOPP001", "Doppelgänger - Dancing (CD)",
		"Russland Import", "",
		"11.25", "150",
		"1", 1,
		"Stück", "73",
		"", "pd-59230125.htm",
		"", 1,
		"1.D014", "0",
		 0)
	
		Entry[193] = new Element(
		193, "assets/thumb/einstuerzende_halber_kl.jpg",
		85, 85,
		"EIST001", "Einstürzende Neubauten - 1/2 Mensch (CD)",
		"Digi-Pack + Bonus Tracks", "",
		"12.08", "150",
		"1", 1,
		"Stück", "82",
		"", "pd-212784241.htm",
		"", 1,
		"1.E008", "0",
		 0)
	
		Entry[194] = new Element(
		194, "assets/thumb/einstuerzende_yuegung_kl.jpg",
		85, 85,
		"EIST002", "Einstürzende Neubauten - Yü-Gung (MCD)",
		"", "",
		"6.58", "80",
		"1", 1,
		"Stück", "82",
		"", "pd-208840619.htm",
		"", 1,
		"1.E008", "0",
		 0)
	
		Entry[195] = new Element(
		195, "assets/thumb/einstuerzende_halber_kl.jpg",
		85, 140,
		"EIST003", "Einstürzende Neubauten - 1/2 Mensch (DVD)",
		"", "",
		"18.75", "250",
		"1", 1,
		"Stück", "82",
		"", "pd-507663733.htm",
		"", 1,
		"1.E008", "0",
		 0)
	
		Entry[196] = new Element(
		196, "assets/thumb/garden_apocryphal_kl.jpg",
		85, 85,
		"GOD001", "Garden of Delight - Apocryphal I (CD)",
		"", "",
		"8.25", "130",
		"1", 1,
		"Stück", "100",
		"", "pd-1894826727.htm",
		"", 1,
		"1.G005", "0",
		 0)
	
		Entry[197] = new Element(
		197, "assets/thumb/chamelons_thefan_kl.jpg",
		85, 85,
		"CHAM003", "Chameleons, The - The Fan And The Bellows (CD)",
		"", "",
		"11.58", "130",
		"1", 1,
		"Stück", "39",
		"", "pd-1684420981.htm",
		"", 1,
		"1.C014", "0",
		 0)
	
		Entry[198] = new Element(
		198, "assets/thumb/lords_killerlords_kl.jpg",
		85, 85,
		"LORD006", "Lords Of The New Chruch - Killer Lords (CD)",
		"inkl. 7 Bouns Tracks", "",
		"9.08", "130",
		"1", 1,
		"Stück", "124",
		"", "pd1444016041.htm",
		"", 1,
		"1.L005", "0",
		 0)
	
		Entry[199] = new Element(
		199, "assets/thumb/cinema_ltd_kl.jpg",
		85, 140,
		"CIN001", "Cinema Strange - 10th Anniversary Novelty Product (CD)",
		"limited Edition", "",
		"23.25", "250",
		"1", 1,
		"Stück", "45",
		"", "pd1438611842.htm",
		"", 1,
		"1.C015", "0",
		 0)
	
		Entry[200] = new Element(
		200, "assets/thumb/fields_from_kl.jpg",
		85, 85,
		"FOTH005", "Fields Of The Nephilim - From The Fire 1 (MCD)",
		"", "",
		"5.75", "150",
		"1", 1,
		"Stück", "91",
		"", "pd660679564.htm",
		"", 1,
		"1.F006", "0",
		 0)
	
		Entry[201] = new Element(
		201, "assets/thumb/fields_from_kl.jpg",
		85, 85,
		"FOTH006", "Fields Of The Nephilim - From The Fire 2 (MCD)",
		"", "",
		"5.75", "130",
		"1", 1,
		"Stück", "91",
		"", "pd-1682002790.htm",
		"", 1,
		"1.F006", "0",
		 0)
	
		Entry[202] = new Element(
		202, "assets/thumb/nickcave_videos_kl.jpg",
		85, 140,
		"CAVE002", "Nick Cave and The Bad Seeds - The Videos (DVD)",
		"", "",
		"18.25", "250",
		"1", 1,
		"Stück", "260",
		"", "pd-2080138805.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[203] = new Element(
		203, "assets/thumb/wipers_kl.jpg",
		85, 140,
		"WIP001", "Wipers - Melkweg Amsterdam (DVD)",
		"", "",
		"18.25", "250",
		"1", 1,
		"Stück", "260",
		"", "pd81977585.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[204] = new Element(
		204, "assets/thumb/pinkturn_phoenix_kl.jpg",
		85, 85,
		"PINK002", "Pink Turns Blue - Phoenix (CD)",
		"Digipak inkl. Aufkleber", "",
		"11.58", "150",
		"1", 1,
		"Stück", "156",
		"", "pd-1150724985.htm",
		"", 1,
		"1.P04", "0",
		 0)
	
		Entry[205] = new Element(
		205, "assets/thumb/asf_anotherplanet_kl.jpg",
		85, 85,
		"ASF005", "Alien Sex Fiend - Another Planet (CD)",
		"", "",
		"12.08", "130",
		"1", 1,
		"Stück", "5",
		"", "pd-1714913544.htm",
		"", 1,
		"1.A005", "0",
		 0)
	
		Entry[206] = new Element(
		206, "assets/thumb/asf_herecumgerms_kl.jpg",
		85, 85,
		"ASF009", "Alien Sex Fiend - Here Cum Germs (CD)",
		"", "",
		"12.08", "130",
		"1", 1,
		"Stück", "5",
		"", "pd-1067807024.htm",
		"", 1,
		"1.A005", "0",
		 0)
	
		Entry[207] = new Element(
		207, "assets/thumb/asf_liquidheadintokio_kl.jpg",
		85, 85,
		"ASF012", "Alien Sex Fiend - Liquid Head In Tokio (Live) (CD)",
		"", "",
		"9.08", "130",
		"1", 1,
		"Stück", "5",
		"", "pd-581270166.htm",
		"", 1,
		"1.A005", "0",
		 0)
	
		Entry[208] = new Element(
		208, "assets/thumb/asf_singles83-95_kl.jpg",
		85, 85,
		"ASF016", "Alien Sex Fiend - The Singles 1983-1995 (2CD)",
		"", "",
		"12.92", "180",
		"1", 1,
		"Stück", "5",
		"", "pd-1670955646.htm",
		"", 1,
		"1.A005", "0",
		 0)
	
		Entry[209] = new Element(
		209, "assets/thumb/cocteau_garlands_kl.jpg",
		85, 85,
		"COC001", "Cocteau Twins - Garlands (CD)",
		"", "",
		"8.25", "130",
		"1", 1,
		"Stück", "47",
		"", "pd-324036734.htm",
		"", 1,
		"1.C016", "0",
		 0)
	
		Entry[210] = new Element(
		210, "assets/thumb/cocteau_head_kl.jpg",
		85, 85,
		"COC002", "Cocteau Twins - Head Over Heels  (CD)",
		"", "",
		"8.25", "120",
		"1", 1,
		"Stück", "47",
		"", "pd1196560768.htm",
		"", 1,
		"1.C016", "0",
		 0)
	
		Entry[211] = new Element(
		211, "assets/thumb/cocteau_treasure_kl.jpg",
		85, 85,
		"COC003", "Cocteau Twins - Treasure (CD)",
		"", "",
		"8.25", "120",
		"1", 1,
		"Stück", "47",
		"", "pd-663268434.htm",
		"", 1,
		"1.C016", "0",
		 0)
	
		Entry[212] = new Element(
		212, "assets/thumb/cocteau_victorialand_kl.jpg",
		85, 85,
		"COC004", "Cocteau Twins - Victorialand (CD)",
		"", "",
		"8.25", "120",
		"1", 1,
		"Stück", "47",
		"", "pd1139235212.htm",
		"", 1,
		"1.C016", "0",
		 0)
	
		Entry[213] = new Element(
		213, "assets/thumb/cocteau_bluebellknoll_kl.jpg",
		85, 85,
		"COC005", "Cocteau Twins - Blue Bell Knoll (CD)",
		"", "",
		"8.25", "120",
		"1", 1,
		"Stück", "47",
		"", "pd1688767130.htm",
		"", 1,
		"1.C016", "0",
		 0)
	
		Entry[214] = new Element(
		214, "assets/thumb/cocteau_heaven_kl.jpg",
		85, 85,
		"COC006", "Cocteau Twins - Heaven Or Las Vegas (CD)",
		"", "",
		"8.25", "120",
		"1", 1,
		"Stück", "47",
		"", "pd-1487562152.htm",
		"", 1,
		"1.C016", "0",
		 0)
	
		Entry[215] = new Element(
		215, "assets/thumb/cocteau_starsandtopsoil_kl.jpg",
		85, 85,
		"COC007", "Cocteau Twins - Stars And Topsoil: A Collection (1982-1990)",
		"", "",
		"11.58", "130",
		"1", 1,
		"Stück", "47",
		"", "pd-404330426.htm",
		"", 1,
		"1.C016", "0",
		 0)
	
		Entry[216] = new Element(
		216, "assets/thumb/chemelons_livefromlondon_kl.jpg",
		85, 140,
		"CHAM005", "Chameleons, The - Live From London (DVD)",
		"", "",
		"15.75", "250",
		"1", 1,
		"Stück", "39,260",
		"", "pd-333193244.htm",
		"", 1,
		"1.C014,2", "0",
		 0)
	
		Entry[217] = new Element(
		217, "assets/thumb/chamelons_whatdoes_kl.jpg",
		85, 85,
		"CHAM006", "Chameleons, The - What Does Anything Mean? Basically (CD)",
		"", "",
		"11.58", "130",
		"1", 1,
		"Stück", "39",
		"", "pd381606066.htm",
		"", 1,
		"1.C014", "0",
		 0)
	
		Entry[218] = new Element(
		218, "assets/thumb/chamelons_strange_kl.jpg",
		85, 85,
		"CHAM007", "Chameleons, The - Strange Times (CD)",
		"Limited Editon Free Bonus Album", "",
		"11.58", "120",
		"1", 1,
		"Stück", "39",
		"", "pd801240624.htm",
		"", 1,
		"1.C014", "0",
		 0)
	
		Entry[219] = new Element(
		219, "assets/thumb/ikonpsychicvampire_ep_kl.jpg",
		85, 85,
		"IKON004", "Ikon - Psychic Vampire (CD)",
		"", "",
		"11.58", "130",
		"1", 1,
		"Stück", "111",
		"", "pd1124913682.htm",
		"", 1,
		"1.I001", "0",
		 0)
	
		Entry[220] = new Element(
		220, "assets/thumb/violetstig_progen_kl.jpg",
		85, 85,
		"VIO001", "Violet Stigmata - Progénitures Suite &amp; Fin (CD)",
		"", "",
		"11.58", "130",
		"1", 1,
		"Stück", "207",
		"", "pd-2133924054.htm",
		"", 1,
		"1.V008", "0",
		 0)
	
		Entry[221] = new Element(
		221, "assets/thumb/Dance_Heaven.jpg",
		85, 85,
		"TDS003", "Danse Society, The - Heaven Is Waiting (CD)",
		"Japan Import", "",
		"16.25", "130",
		"1", 1,
		"Stück", "58",
		"", "pd-342652568.htm",
		"", 1,
		"1.D007", "0",
		 0)
	
		Entry[222] = new Element(
		222, "assets/thumb/ikon_destroying_kl.jpg",
		85, 85,
		"IKON005", "Ikon - Destroying The World To Save It (CD)",
		"Import", "",
		"14.08", "130",
		"1", 1,
		"Stück", "111",
		"", "pd1921002966.htm",
		"", 1,
		"1.I001", "0",
		 0)
	
		Entry[223] = new Element(
		223, "assets/thumb/chants_every_kl.jpg",
		85, 85,
		"COM002", "Chants Of Maldoror - Every Mask Tells The Truth (CD)",
		"", "",
		"8.25", "130",
		"1", 1,
		"Stück", "40",
		"", "pd103827570.htm",
		"", 1,
		"1.C007", "0",
		 0)
	
		Entry[224] = new Element(
		224, "assets/thumb/vanishing_songsfor.jpg",
		85, 85,
		"TVAN004", "Vanishing, The - Songs For Psychotic Children (CD)",
		"", "",
		"11.58", "130",
		"1", 1,
		"Stück", "205",
		"", "pd1815996110.htm",
		"", 1,
		"1.V009", "0",
		 0)
	
		Entry[225] = new Element(
		225, "assets/thumb/asf_firstASF_kl.jpg",
		85, 85,
		"ASF021", "Alien Sex Fiend - First Alien Sex Fiend (CD)",
		"", "",
		"11.58", "130",
		"1", 1,
		"Stück", "5",
		"", "pd-1866680039.htm",
		"", 1,
		"1.A005", "0",
		 0)
	
		Entry[226] = new Element(
		226, "assets/thumb/nma_bsides.jpg",
		85, 85,
		"NMA001", "New Model Army - B Sides And Abandoned Tracks (CD)",
		"", "",
		"8.25", "0",
		"1", 1,
		"Stück", "142",
		"", "pd-1613306800.htm",
		"", 1,
		"1.N003", "0",
		 0)
	
		Entry[227] = new Element(
		227, "assets/thumb/nma_raw.jpg",
		85, 85,
		"NMA002", "New Model Army - Raw Melody Men (CD)",
		"", "",
		"7.42", "130",
		"1", 1,
		"Stück", "142",
		"", "pd760922633.htm",
		"", 1,
		"1.N003", "0",
		 0)
	
		Entry[228] = new Element(
		228, "assets/thumb/nma_History.jpg",
		85, 85,
		"NMA003", "New Model Army - History - The Singles 85-91 (CD)",
		"", "",
		"9.08", "130",
		"1", 1,
		"Stück", "142",
		"", "pd603814751.htm",
		"", 1,
		"1.N003", "0",
		 0)
	
		Entry[229] = new Element(
		229, "assets/thumb/nma_cain.jpg",
		85, 85,
		"NMA004", "New Model Army - The Ghost Of Cain (CD)",
		"", "",
		"7.42", "130",
		"1", 1,
		"Stück", "142",
		"", "pd-1519948635.htm",
		"", 1,
		"1.N003", "0",
		 0)
	
		Entry[230] = new Element(
		230, "assets/thumb/nma_collection.jpg",
		85, 85,
		"NMA005", "New Model Army - The Collection (CD)",
		"", "",
		"8.25", "130",
		"1", 1,
		"Stück", "142",
		"", "pd1165825883.htm",
		"", 1,
		"1.N003", "0",
		 0)
	
		Entry[231] = new Element(
		231, "assets/thumb/nma_smalltown.jpg",
		85, 85,
		"NMA006", "New Model Army - Small Town England (2 CD)",
		"", "",
		"10.42", "180",
		"1", 1,
		"Stück", "142",
		"", "pd1812781313.htm",
		"", 1,
		"1.N003", "0",
		 0)
	
		Entry[232] = new Element(
		232, "assets/thumb/nma_liveDVD.jpg",
		85, 140,
		"NMA007", "New Model Army - 161203 - Live in London ( DVD)",
		"", "",
		"14.92", "250",
		"1", 1,
		"Stück", "142,260",
		"", "pd66329313.htm",
		"", 1,
		"1.N003,2", "0",
		 0)
	
		Entry[233] = new Element(
		233, "assets/thumb/nosferatu_bestof.jpg",
		85, 85,
		"NOS001", "Nosferatu - The Best Of vol. 1 (The Hades Years) (CD)",
		"US Import", "",
		"11.25", "130",
		"1", 1,
		"Stück", "145",
		"", "pd418807241.htm",
		"", 1,
		"1.N005", "0",
		 0)
	
		Entry[234] = new Element(
		234, "assets/thumb/nickcave_bestof.jpg",
		85, 85,
		"NICK001", "Cave, Nick &amp; The Bad Seeds - The Best Of (CD) ",
		"", "",
		"6.58", "130",
		"1", 1,
		"Stück", "36",
		"", "pd-628918156.htm",
		"", 1,
		"1.C018", "0",
		 0)
	
		Entry[235] = new Element(
		235, "assets/thumb/nickcave_video.jpg",
		85, 140,
		"NICK003", "Cave, Nick &amp; The Bad Seeds - The Videos (DVD)",
		"", "",
		"14.92", "250",
		"1", 1,
		"Stück", "36,260",
		"", "pd1887483840.htm",
		"", 1,
		"1.C018,2", "0",
		 0)
	
		Entry[236] = new Element(
		236, "assets/thumb/45grave_sleepin_kl.jpg",
		85, 85,
		"FFGR001", "45 Grave - Sleep In Safety (CD)",
		"US Import", "",
		"12.08", "130",
		"1", 1,
		"Stück", "0",
		"", "pd-1074937722.htm",
		"", 1,
		"1.27", "0",
		 0)
	
		Entry[237] = new Element(
		237, "assets/thumb/mission_godsown.jpg",
		85, 85,
		"MISS001", "Mission, The - Gods Own Medicine (CD)",
		"", "",
		"9.92", "130",
		"1", 1,
		"Stück", "134",
		"", "pd1930291285.htm",
		"", 1,
		"1.M014", "0",
		 0)
	
		Entry[238] = new Element(
		238, "assets/thumb/mission_children.jpg",
		85, 85,
		"MISS002", "Mission, The  - Children (CD)",
		"", "",
		"9.92", "0",
		"1", 1,
		"Stück", "134",
		"", "pd762362507.htm",
		"", 1,
		"1.M014", "0",
		 0)
	
		Entry[239] = new Element(
		239, "assets/thumb/mission_firstchapter.jpg",
		85, 85,
		"MISS003", "Mission, The - The First Chapter (CD)",
		"", "",
		"9.92", "130",
		"1", 1,
		"Stück", "134",
		"", "pd339734449.htm",
		"", 1,
		"1.M014", "0",
		 0)
	
		Entry[240] = new Element(
		240, "assets/thumb/fields_fromghenna_kl.jpg",
		85, 85,
		"FOTH007", "Fields Of The Nephilim - From Gehenna To Here (Digipak-CD)",
		"", "",
		"13.75", "0",
		"1", 1,
		"Stück", "91",
		"", "pd707789127.htm",
		"", 1,
		"1.F006", "0",
		 0)
	
		Entry[241] = new Element(
		241, "assets/thumb/Extended Play_kl.jpg",
		85, 85,
		"VIP008", "Virgin Prunes - An Extended Play (12inch)",
		"", "",
		"8.25", "300",
		"1", 1,
		"Stück", "208",
		"", "pd1702406796.htm",
		"", 1,
		"1.V001", "0",
		 0)
	
		Entry[242] = new Element(
		242, "assets/thumb/fields_elizium.jpg",
		85, 85,
		"FOTH008", "Fields Of The Nephilim - Elizium (CD)",
		"", "",
		"9.92", "130",
		"1", 1,
		"Stück", "91",
		"", "pd1128455732.htm",
		"", 1,
		"1.F006", "0",
		 0)
	
		Entry[243] = new Element(
		243, "assets/thumb/fields_dawnrazor.jpg",
		85, 85,
		"FOTH009", "Fields Of The Nephilim - Dawnrazer (CD)",
		"", "",
		"9.92", "130",
		"1", 1,
		"Stück", "91",
		"", "pd162873218.htm",
		"", 1,
		"1.F006", "0",
		 0)
	
		Entry[244] = new Element(
		244, "assets/thumb/fields_earthinferno.jpg",
		85, 85,
		"FOTH010", "Fields Of The Nephilim - Earth Inferno &quot;Live&quot; (CD)",
		"", "",
		"9.92", "130",
		"1", 1,
		"Stück", "91",
		"", "pd-714081920.htm",
		"", 1,
		"1.F006", "0",
		 0)
	
		Entry[245] = new Element(
		245, "assets/thumb/smiths_bestof1.jpg",
		85, 85,
		"SMITH001", "Smiths, The  - Best of Vol. 1 (CD)",
		"", "",
		"8.75", "130",
		"1", 1,
		"Stück", "188",
		"", "pd1912715002.htm",
		"", 1,
		"1.S022", "0",
		 0)
	
		Entry[246] = new Element(
		246, "assets/thumb/smiths_singles_gr.jpg",
		185, 185,
		"SMITH002", "Smiths, The - Singles (CD)",
		"", "",
		"8.75", "130",
		"1", 1,
		"Stück", "188",
		"", "pd458759608.htm",
		"", 1,
		"1.S022", "0",
		 0)
	
		Entry[247] = new Element(
		247, "assets/thumb/killingjoke_killingjoke_kl.jpg",
		85, 85,
		"KILL001", "Killing Joke - Killing Joke (CD)mit Bonus Tracks",
		"", "",
		"8.25", "130",
		"1", 1,
		"Stück", "118",
		"", "pd739428597.htm",
		"", 1,
		"1.K002", "0",
		 0)
	
		Entry[248] = new Element(
		248, "assets/thumb/Lords_farwell.jpg",
		85, 85,
		"LORD007", "Lords Of The New Chruch - Farwell Tour 1988 (Live-Vinyl)",
		"", "",
		"9.92", "250",
		"1", 1,
		"Stück", "124",
		"", "pd-505113189.htm",
		"", 1,
		"1.L005", "0",
		 0)
	
		Entry[249] = new Element(
		249, "assets/thumb/hatesex_unwant.jpg",
		85, 85,
		"HATE001", "Hatesex - Unwant (CD)",
		"", "",
		"11.58", "130",
		"1", 1,
		"Stück", "106",
		"", "pd847681747.htm",
		"", 1,
		"1.H007", "0",
		 0)
	
		Entry[250] = new Element(
		250, "assets/thumb/casual_hores.jpg",
		85, 85,
		"CAS003", "Casual - Hores Lentes (MCD)",
		"", "",
		"6.25", "100",
		"1", 1,
		"Stück", "33",
		"", "pd1735849173.htm",
		"", 1,
		"1.C008", "0",
		 0)
	
		Entry[251] = new Element(
		251, "assets/thumb/mission_lighting.jpg",
		85, 140,
		"MISS004", "Mission, The - Lighting The Candles (2DVD+CD)",
		"", "",
		"19.92", "350",
		"1", 1,
		"Stück", "134,260",
		"", "pd-1670001787.htm",
		"", 1,
		"1.M014,2", "0",
		 0)
	
		Entry[252] = new Element(
		252, "assets/thumb/siuxsue_seven.jpg",
		85, 140,
		"SIOUX001", "Siouxsie and The Banshees - The Seven Years Itch (Live) (DVD)",
		"", "",
		"9.92", "250",
		"1", 1,
		"Stück", "260,182",
		"", "pd1268989437.htm",
		"", 1,
		"2,P26", "0",
		 0)
	
		Entry[253] = new Element(
		253, "assets/thumb/AGD_fallen_kl.jpg",
		85, 85,
		"AGD001", "All Gone Dead - Fallen &amp; Forgotten (CD)",
		"", "",
		"8.25", "0",
		"1", 1,
		"Stück", "6",
		"", "pd1190325776.htm",
		"", 1,
		"P1", "0",
		 0)
	
		Entry[254] = new Element(
		254, "assets/thumb/bauhaus_vol1.jpg",
		85, 85,
		"BAU003", "Bauhaus - Volume One 1979 - 1983 (CD)",
		"", "",
		"10.75", "0",
		"1", 1,
		"Stück", "16",
		"", "pd1156143375.htm",
		"", 1,
		"1.B014", "0",
		 0)
	
		Entry[255] = new Element(
		255, "assets/thumb/bauhaus_vol2.jpg",
		85, 85,
		"BAU002", "Bauhaus - Volume Two 1979 - 1983 (CD)",
		"", "",
		"10.75", "0",
		"1", 1,
		"Stück", "16",
		"", "pd1164394965.htm",
		"", 1,
		"1.B014", "0",
		 0)
	
		Entry[256] = new Element(
		256, "assets/thumb/bauhaus_shadowDVD.jpg",
		85, 140,
		"BAU004", "Bauhaus - Shadow Of Light Archive (DVD)",
		"", "",
		"14.58", "0",
		"1", 1,
		"Stück", "16,260",
		"", "pd-383799285.htm",
		"", 1,
		"1.B014,2", "0",
		 0)
	
		Entry[257] = new Element(
		257, "assets/thumb/bauhaus_crackle.jpg",
		85, 85,
		"BAU005", "Bauhaus - Crackle / Best Of (CD)",
		"", "",
		"10.75", "0",
		"1", 1,
		"Stück", "16",
		"", "pd-936517327.htm",
		"", 1,
		"1.B014", "0",
		 0)
	
		Entry[258] = new Element(
		258, "assets/thumb/bloody_paintre.jpg",
		85, 85,
		"BLD006", "Bloody Dead And Sexy - Paint It Red Re-Release (CD)",
		"Re-Release im Digipak mit 4 Bonustracks", "Alice In",
		"11.58", "0",
		"1", 1,
		"Stück", "24",
		"", "pd-656060729.htm",
		"", 1,
		"1.B001", "0",
		 0)
	
		Entry[259] = new Element(
		259, "assets/thumb/bmovie_platinum.jpg",
		85, 85,
		"BMV003", "B-Movie - The Platinum Collection (CD)",
		"", "",
		"8.25", "0",
		"1", 1,
		"Stück", "14",
		"", "pd-537129395.htm",
		"", 1,
		"1.B008", "0",
		 0)
	
		Entry[260] = new Element(
		260, "assets/thumb/bohemien_ep.jpg",
		85, 85,
		"BOH002", "Bohemien - La Parata Del Circo (CD-E.P.)",
		"", "",
		"8.25", "0",
		"1", 1,
		"Stück", "26",
		"", "pd-1707331261.htm",
		"", 1,
		"1.B007", "0",
		 0)
	
		Entry[261] = new Element(
		261, "assets/thumb/Bolshoi_lindys.jpg",
		85, 85,
		"TBO002", "Bolshoi, The - Lindy`s Party (CD)",
		"", "",
		"10.75", "0",
		"1", 1,
		"Stück", "27",
		"", "pd1997808937.htm",
		"", 1,
		"1.A010", "0",
		 0)
	
		Entry[262] = new Element(
		262, "assets/thumb/Bolshoi_friends.jpg",
		85, 85,
		"TBO003", "Bolshoi, The - Friends (CD)",
		"", "",
		"10.75", "0",
		"1", 1,
		"Stück", "27",
		"", "pd-350350465.htm",
		"", 1,
		"1.A010", "0",
		 0)
	
		Entry[263] = new Element(
		263, "assets/thumb/Bolshoi_bigger.jpg",
		85, 85,
		"TBO004", "Bolshoi, The - Bigger Giants (CD)",
		"", "",
		"10.75", "0",
		"1", 1,
		"Stück", "27",
		"", "pd393626053.htm",
		"", 1,
		"1.A010", "0",
		 0)
	
		Entry[264] = new Element(
		264, "assets/thumb/ChristianDeath_DeathClub.jpg",
		85, 85,
		"CHD009", "Christian Death - Death Club 1981-1993 (CD + DVD)",
		"US-Import", "",
		"14.58", "0",
		"1", 1,
		"Stück", "44",
		"", "pd-2001355715.htm",
		"", 1,
		"1.C002", "0",
		 0)
	
		Entry[265] = new Element(
		265, "assets/thumb/ChristianDeath_LiveDVD.jpg",
		85, 140,
		"CHD011", "Christian Death - Live (DVD)",
		"Featuring: Rozz Williams", "",
		"12.42", "0",
		"1", 1,
		"Stück", "44",
		"", "pd1564742169.htm",
		"", 1,
		"1.C002", "0",
		 0)
	
		Entry[266] = new Element(
		266, "assets/thumb/Cinema_cinema.jpg",
		85, 85,
		"CIN003", "Cinema Strange - Cinema Strange (CD)",
		"", "",
		"12.08", "0",
		"1", 1,
		"Stück", "45",
		"", "pd244821739.htm",
		"", 1,
		"1.C015", "0",
		 0)
	
		Entry[267] = new Element(
		267, "assets/thumb/Cinema_astonished.jpg",
		85, 85,
		"CIN004", "Cinema Strange - The Astonished Eyes Of Evening (CD)",
		"", "",
		"13.75", "0",
		"1", 1,
		"Stück", "45",
		"", "pd1726315281.htm",
		"", 1,
		"1.C015", "0",
		 0)
	
		Entry[268] = new Element(
		268, "assets/thumb/Cauda_carnival.jpg",
		85, 85,
		"CAPA005", "Cauda Pavonis - Carnival Noir (MCD)",
		"", "",
		"7.08", "0",
		"1", 1,
		"Stück", "35",
		"", "pd-270695446.htm",
		"", 1,
		"1.C10", "0",
		 0)
	
		Entry[269] = new Element(
		269, "assets/thumb/darcentries_pack.jpg",
		125, 85,
		"DAR004", "Darc Entries - special (2CD)",
		"", "",
		"8.25", "0",
		"1", 1,
		"Stück", "56",
		"", "pd1004434472.htm",
		"", 1,
		"1.D001", "0",
		 0)
	
		Entry[270] = new Element(
		270, "assets/thumb/damned_phantasmagoria.jpg",
		85, 85,
		"THDA002", "Damned, The - Phantasmagoria (CD)",
		"", "",
		"10.42", "0",
		"1", 1,
		"Stück", "57",
		"", "pd-1814554986.htm",
		"", 1,
		"1.D009", "0",
		 0)
	
		Entry[271] = new Element(
		271, "assets/thumb/deadfly_CD.jpg",
		85, 85,
		"DEEN001", "Deadfly Ensemble - An Entire Wardrobe of Doubt and Uncertainty (2CD)",
		"Limited 2CD Edition incl. Bonus CD", "",
		"14.08", "0",
		"1", 1,
		"Stück", "63",
		"", "pd1458760204.htm",
		"", 1,
		"P6", "0",
		 0)
	
		Entry[272] = new Element(
		272, "assets/thumb/fliehende_licht.jpg",
		85, 85,
		"FLI006", "Fliehende Stürme - Licht vergeht (CD)",
		"", "",
		"11.58", "0",
		"1", 1,
		"Stück", "92",
		"", "pd-700501288.htm",
		"", 1,
		"1.F004", "0",
		 0)
	
		Entry[273] = new Element(
		273, "assets/thumb/funhouse_second.jpg",
		85, 85,
		"FUN003", "Funhouse - Second Coming (CD)",
		"", "",
		"11.25", "0",
		"1", 1,
		"Stück", "98",
		"", "pd1455142086.htm",
		"", 1,
		"1.F005", "0",
		 0)
	
		Entry[274] = new Element(
		274, "assets/thumb/gotter_nationhad.jpg",
		85, 85,
		"GOTT003", "Götterdämmerung - The Nation Had ... (Vinyl)",
		"limited edition picture vinyl", "",
		"16.58", "0",
		"1", 1,
		"Stück", "104",
		"", "pd1130753330.htm",
		"", 1,
		"1.G003", "0",
		 0)
	
		Entry[275] = new Element(
		275, "assets/thumb/lastdance_reflections.jpg",
		85, 85,
		"TLD005", "Last Dance, The - ... Reflections Of Rage ... (CD)",
		"", "",
		"13.33", "0",
		"1", 1,
		"Stück", "121",
		"", "pd1654652648.htm",
		"", 1,
		"1.L002", "0",
		 0)
	
		Entry[276] = new Element(
		276, "assets/thumb/mission_masque.jpg",
		85, 85,
		"MISS006", "Mission, The - Masque (CD)",
		"", "",
		"7.42", "0",
		"1", 1,
		"Stück", "134",
		"", "pd-395170444.htm",
		"", 1,
		"1.M014", "0",
		 0)
	
		Entry[277] = new Element(
		277, "assets/thumb/malaise_hypno.jpg",
		85, 85,
		"MAL001", "Malaise - Hypnotizen By Forgotten Lies (CD-EP)",
		"", "",
		"8.25", "0",
		"1", 1,
		"Stück", "126",
		"", "pd-1481241061.htm",
		"", 1,
		"P7", "0",
		 0)
	
		Entry[278] = new Element(
		278, "assets/thumb/monozid_cd.jpg",
		85, 85,
		"MONO001", "Monozid - :Erstens (MCDr)",
		"", "",
		"5.75", "0",
		"1", 1,
		"Stück", "135",
		"", "pd371868637.htm",
		"", 1,
		"P9", "0",
		 0)
	
		Entry[279] = new Element(
		279, "assets/thumb/normaloy_shirt_kl.jpg",
		85, 85,
		"NL002", "Norma Loy - T-Shirt",
		"", "",
		"14.92", "100",
		"1", 1,
		"Stück", "146,267",
		"", "pd-653680301.htm",
		"", 1,
		"1.N004,P24", "0",
		 0)
	
		Entry[280] = new Element(
		280, "assets/thumb/nosferatu_lordof.jpg",
		85, 85,
		"NOS002", "Nosferatu - Lord Of The Flies (CD)",
		"", "",
		"10.75", "0",
		"1", 1,
		"Stück", "145",
		"", "pd-1045605447.htm",
		"", 1,
		"1.N005", "0",
		 0)
	
		Entry[281] = new Element(
		281, "assets/thumb/nosferatu_savage.jpg",
		85, 85,
		"NOS003", "Nosferatu - Savage Kiss (12&quot;-Vinyl)",
		"", "",
		"7.42", "0",
		"1", 1,
		"Stück", "145",
		"", "pd1846748303.htm",
		"", 1,
		"1.N005", "0",
		 0)
	
		Entry[282] = new Element(
		282, "assets/thumb/nosferatu_diva.jpg",
		85, 85,
		"NOS004", "Nosferatu - Diva (12&quot;-Vinyl)",
		"", "",
		"7.42", "0",
		"1", 1,
		"Stück", "145",
		"", "pd-2115765931.htm",
		"", 1,
		"1.N005", "0",
		 0)
	
		Entry[283] = new Element(
		283, "assets/thumb/nosferatu_prophecy.jpg",
		85, 85,
		"NOS005", "Nosferatu - The Prophecy (CD)",
		"", "",
		"10.75", "0",
		"1", 1,
		"Stück", "145",
		"", "pd861483915.htm",
		"", 1,
		"1.N005", "0",
		 0)
	
		Entry[284] = new Element(
		284, "assets/thumb/nosferatu_prophecy.jpg",
		85, 85,
		"NOS006", "Nosferatu - The Prophecy (2LP)",
		"", "",
		"11.25", "0",
		"1", 1,
		"Stück", "145",
		"", "pd1814106289.htm",
		"", 1,
		"1.N005", "0",
		 0)
	
		Entry[285] = new Element(
		285, "assets/thumb/nosferatu_Princeof.jpg",
		85, 85,
		"NOS007", "Nosferatu - Prince Of Darkness (CD)",
		"", "",
		"10.75", "0",
		"1", 1,
		"Stück", "145",
		"", "pd-1168504249.htm",
		"", 1,
		"1.N005", "0",
		 0)
	
		Entry[286] = new Element(
		286, "assets/thumb/nosferatu_somebody.jpg",
		85, 85,
		"NOS008", "Nosferatu - Somebody Put Something In My Drink (MCD)",
		"", "",
		"4.92", "0",
		"1", 1,
		"Stück", "145",
		"", "pd192755149.htm",
		"", 1,
		"1.N005", "0",
		 0)
	
		Entry[287] = new Element(
		287, "assets/thumb/Curios_intimate.jpg",
		85, 85,
		"Curi001", "Curious - The Intimate Stranger (CD)",
		"", "",
		"10.75", "0",
		"1", 1,
		"Stück", "53",
		"", "pd-580827556.htm",
		"", 1,
		"P4", "0",
		 0)
	
		Entry[288] = new Element(
		288, "assets/thumb/scarletsremains_shirt.jpg",
		270, 242,
		"SCAR006", "Scarlet´s Remains - T-Shirt",
		"", "",
		"9.92", "0",
		"1", 1,
		"Stück", "272",
		"", "pd-1639752218.htm",
		"", 1,
		"P25", "0",
		 0)
	
		Entry[289] = new Element(
		289, "assets/thumb/other_wearewho.jpg",
		85, 85,
		"OTH002", "Other, The - We Are Who We Eat (CD)",
		"", "",
		"11.25", "0",
		"1", 1,
		"Stück", "149",
		"", "pd1156761037.htm",
		"", 1,
		"1.O004", "0",
		 0)
	
		Entry[290] = new Element(
		290, "assets/thumb/OtherVoices_anatomy.jpg",
		85, 85,
		"OTVO001", "Other Voices - Anatomy Of Pain (CD)",
		"Italien Import", "",
		"10.75", "0",
		"1", 1,
		"Stück", "150",
		"", "pd1771698248.htm",
		"", 1,
		"P10", "0",
		 0)
	
		Entry[291] = new Element(
		291, "assets/thumb/phantom_random.jpg",
		85, 85,
		"TPL006", "Phantom Limbs - Random Hymns (Vinyl)",
		"", "",
		"8.25", "0",
		"1", 1,
		"Stück", "155,254",
		"", "pd-1205094474.htm",
		"", 1,
		"1.P002,P85", "0",
		 0)
	
		Entry[292] = new Element(
		292, "assets/thumb/pins_cover.jpg",
		85, 85,
		"PINS001", "Pins And Needles - Pins And Needles (CD)",
		"", "",
		"11.25", "0",
		"1", 1,
		"Stück", "157",
		"", "pd-55482043.htm",
		"", 1,
		"P11", "0",
		 0)
	
		Entry[293] = new Element(
		293, "assets/thumb/resurex_beyond.jpg",
		85, 85,
		"Rezu001", "Rezurex - Beyond The Grave (CD)",
		"", "",
		"11.25", "0",
		"1", 1,
		"Stück", "168",
		"", "pd-510475744.htm",
		"", 1,
		"P12", "0",
		 0)
	
		Entry[294] = new Element(
		294, "assets/thumb/scarletsremains_dvd.jpg",
		85, 140,
		"SCAR002", "Scarlet´s Remains - Live At The Key Club (DVD)",
		"", "",
		"11.67", "0",
		"1", 1,
		"Stück", "173,260",
		"", "pd-2106198706.htm",
		"", 1,
		"1.S020,2", "0",
		 0)
	
		Entry[295] = new Element(
		295, "assets/thumb/16s_fendi.jpg",
		85, 85,
		"SIXT002", "Sixteens - Fendi (12inch Vinyl)",
		"", "",
		"8.25", "0",
		"1", 1,
		"Stück", "184",
		"", "pd-902626709.htm",
		"", 1,
		"P13", "0",
		 0)
	
		Entry[296] = new Element(
		296, "assets/thumb/shadowp_andthen.jpg",
		85, 140,
		"SHPR003", "Shadow Project - And Then There Was Death (DVD)",
		"", "",
		"10.75", "0",
		"1", 1,
		"Stück", "179",
		"", "pd-119190903.htm",
		"", 1,
		"1.S12", "0",
		 0)
	
		Entry[297] = new Element(
		297, "assets/thumb/thelema_CD.jpg",
		85, 85,
		"THEL001", "Thelema - Tantra (CD)",
		"", "",
		"11.25", "0",
		"1", 1,
		"Stück", "200",
		"", "pd-1468848256.htm",
		"", 1,
		"P16", "0",
		 0)
	
		Entry[298] = new Element(
		298, "assets/thumb/tragic_decadent.jpg",
		85, 85,
		"TBLA002", "Tragic Black - The Decadent Requiem (CD)",
		"", "",
		"6.25", "0",
		"1", 1,
		"Stück", "203",
		"", "pd-1911137874.htm",
		"", 1,
		"1.T03", "0",
		 0)
	
		Entry[299] = new Element(
		299, "assets/thumb/vanishing_bathouse.jpg",
		85, 85,
		"TVAN003", "Vanishing, The - In The Bat House (EP/CD)",
		"US-Import", "",
		"8.75", "0",
		"1", 1,
		"Stück", "205",
		"", "pd1274400652.htm",
		"", 1,
		"1.V009", "0",
		 0)
	
		Entry[300] = new Element(
		300, "assets/thumb/violet_decomp.jpg",
		85, 85,
		" VIO003", "Violet Stigmata - Decompositions &amp; Reliques",
		"", "",
		"11.58", "0",
		"1", 1,
		"Stück", "207",
		"", "pd-1427673000.htm",
		"", 1,
		"1.V008", "0",
		 0)
	
		Entry[301] = new Element(
		301, "assets/thumb/vendemmian_open.jpg",
		85, 85,
		"VEND001", "Vendemmian - One Eye Open (CD)",
		"", "",
		"10.42", "0",
		"1", 1,
		"Stück", "206",
		"", "pd1991181903.htm",
		"", 1,
		"P17", "0",
		 0)
	
		Entry[302] = new Element(
		302, "assets/thumb/vendemmian_tracherous.jpg",
		85, 85,
		"VEND003", "Vendemmian - Treacherous (CD)",
		"", "",
		"10.42", "0",
		"1", 1,
		"Stück", "206",
		"", "pd381989195.htm",
		"", 1,
		"P17", "0",
		 0)
	
		Entry[303] = new Element(
		303, "assets/thumb/strob3.jpg",
		85, 85,
		"VAR039", "various artists - STROBELIGHTS vol. 3",
		"", "",
		"10.75", "0",
		"1", 1,
		"Stück", "222",
		"", "pd163306248.htm",
		"", 1,
		"1.28", "0",
		 0)
	
		Entry[304] = new Element(
		304, "assets/thumb/nda4_kl.jpg",
		85, 85,
		"VAR043", "various artists - NEW DARK AGE vol. 4 (2CD)",
		"", "",
		"10.75", "0",
		"1", 1,
		"Stück", "222",
		"", "pd-2112661386.htm",
		"", 1,
		"1.28", "0",
		 0)
	
		Entry[305] = new Element(
		305, "assets/thumb/ghostriders1.jpg",
		85, 85,
		"VAR040", "various artists - Ghostriders Of German Gothic vol. 1 (CD)",
		"", "",
		"13.75", "0",
		"1", 1,
		"Stück", "222",
		"", "pd2110065556.htm",
		"", 1,
		"1.28", "0",
		 0)
	
		Entry[306] = new Element(
		306, "assets/thumb/Judith_laReveuse.jpg",
		85, 85,
		"JUDI003", "Judith - La Reveuse (CD)",
		"US-Import", "",
		"13.25", "0",
		"1", 1,
		"Stück", "115",
		"", "pd65583504.htm",
		"", 1,
		"P19", "0",
		 0)
	
		Entry[307] = new Element(
		307, "assets/thumb/Closer.jpg",
		85, 85,
		"JOY001", "Joy Division - Closer (CD)",
		"", "",
		"8.25", "0",
		"1", 1,
		"Stück", "114",
		"", "pd-451596057.htm",
		"", 1,
		"P20", "0",
		 0)
	
		Entry[308] = new Element(
		308, "assets/thumb/JoyDivison_unknown_kl.jpg",
		85, 85,
		"JOY002", "Joy Division - Unknown Pleasure (CD)",
		"", "",
		"8.25", "0",
		"1", 1,
		"Stück", "114",
		"", "pd1133722989.htm",
		"", 1,
		"P20", "0",
		 0)
	
		Entry[309] = new Element(
		309, "assets/thumb/JoyDivison_still_kl.jpg",
		85, 85,
		"JOY003", "Joy Division - Still (CD)",
		"", "",
		"8.25", "0",
		"1", 1,
		"Stück", "114",
		"", "pd136279395.htm",
		"", 1,
		"P20", "0",
		 0)
	
		Entry[310] = new Element(
		310, "assets/thumb/JoyDivison_permanent_kl.jpg",
		85, 85,
		"JOY004", "Joy Division - Permanent (CD)",
		"", "",
		"8.75", "0",
		"1", 1,
		"Stück", "114",
		"", "pd1054180937.htm",
		"", 1,
		"P20", "0",
		 0)
	
		Entry[311] = new Element(
		311, "assets/thumb/katzenjammer_cd.jpg",
		85, 85,
		"KATZ001", "Katzenjammer Kabarett - Katzenjammer Kabarett (CD)",
		"limited edition digipak", "",
		"12.08", "0",
		"1", 1,
		"Stück", "117",
		"", "pd1456544500.htm",
		"", 1,
		"P21", "0",
		 0)
	
		Entry[312] = new Element(
		312, "assets/thumb/frustration_frust.jpg",
		85, 85,
		"FRUST001", "Frustration - Frustration (MCD)",
		"", "",
		"7.08", "0",
		"1", 1,
		"Stück", "97",
		"", "pd-724998847.htm",
		"", 1,
		"P22", "0",
		 0)
	
		Entry[313] = new Element(
		313, "assets/thumb/frustration_fullof.jpg",
		85, 85,
		"FRUST002", "Frustration - Full Of Sorrow (MCD)",
		"", "",
		"7.08", "0",
		"1", 1,
		"Stück", "97",
		"", "pd1070248279.htm",
		"", 1,
		"P22", "0",
		 0)
	
		Entry[314] = new Element(
		314, "assets/thumb/rvb.jpg",
		85, 140,
		"RVB001", "various artists - RVB - Transfert (DVD)",
		"La Scene Independante Francaise 1979 - 1991", "",
		"15.75", "0",
		"1", 1,
		"Stück", "260",
		"", "pd1117426104.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[315] = new Element(
		315, "assets/thumb/Gang Of Four entertainment_kl.jpg",
		85, 85,
		"GANG001", "Gang Of Four - Entertainment (CD)",
		"", "",
		"11.25", "0",
		"1", 1,
		"Stück", "99",
		"", "pd-1745133891.htm",
		"", 1,
		"P23", "0",
		 0)
	
		Entry[316] = new Element(
		316, "assets/thumb/album_punk.jpg",
		85, 86,
		"OLMS001", "Tha Album Cover Art of Punk ",
		"", "",
		"10", "500",
		"2", 1,
		"Stück", "285",
		"", "pd-2131124675.htm",
		"", 1,
		"4.02", "0",
		 0)
	
		Entry[317] = new Element(
		317, "assets/thumb/vanish_split.jpg",
		85, 85,
		"TVAN001", "The Vanishing - Paralyzed (7inch)",
		"Split Single mit THE PHANTOM LIMBS", "Hungry Eye Records",
		"6.58", "250",
		"1", 1,
		"Stück", "205,258",
		"", "pd-844103135.htm",
		"", 1,
		"1.V009,P84", "0",
		 0)
	
		Entry[318] = new Element(
		318, "assets/thumb/deep_666bat.jpg",
		95, 85,
		"TDE005", "Deep Eynde, The - T-Shirt ´´666 Bat´´",
		"US Import", "",
		"10.75", "300",
		"1", 1,
		"Stück", "264,67",
		"", "pd-1847494794.htm",
		"", 1,
		"3.D001,1.D008", "0",
		 0)
	
		Entry[319] = new Element(
		319, "assets/thumb/deep_skull_zombies.jpg",
		95, 85,
		"TDE006", "Deep Eynde, The - T-Shirt ´´Zombie´´",
		"US Import", "",
		"10.75", "300",
		"1", 1,
		"Stück", "264,67",
		"", "pd-1831965426.htm",
		"", 1,
		"3.D001,1.D008", "0",
		 0)
	
		Entry[320] = new Element(
		320, "assets/thumb/deep_1_kl.jpg",
		94, 85,
		"TDE007", "Deep Eynde, The - T-Shirt ´´Skeleton Stairs´´",
		"US Import", "",
		"10.75", "300",
		"1", 1,
		"Stück", "264,67",
		"", "pd-1303336871.htm",
		"", 1,
		"3.D001,1.D008", "0",
		 0)
	
		Entry[321] = new Element(
		321, "assets/thumb/deep_skull_bones.jpg",
		95, 85,
		"TDE008", "Deep Eynde, The - T-Shirt ´´Skull &amp; Bones´´",
		"US Import", "",
		"10.75", "300",
		"1", 1,
		"Stück", "264,67",
		"", "pd-1676798958.htm",
		"", 1,
		"3.D001,1.D008", "0",
		 0)
	
		Entry[322] = new Element(
		322, "assets/thumb/deep_stick_666bat.jpg",
		96, 85,
		"TDE014", "Deep Eynde, The - Aufkleber ´´666 Bat´´",
		"US Import", "",
		"0.63", "20",
		"1", 1,
		"Stück", "264",
		"", "pd-838524784.htm",
		"", 1,
		"3.D001", "0",
		 0)
	
		Entry[323] = new Element(
		323, "assets/thumb/deep_muetze.jpg",
		85, 85,
		"TDE015", "Deep Eynde, The - Kappe",
		"US Import", "",
		"12.08", "20",
		"1", 1,
		"Stück", "264",
		"", "pd990591294.htm",
		"", 1,
		"3.D001", "0",
		 0)
	
		Entry[324] = new Element(
		324, "assets/thumb/deep_button_monster.jpg",
		85, 85,
		"TDE016", "Deep Eynde, The - Button ´´Monsterboy´´",
		"US Import", "",
		"1.25", "20",
		"1", 1,
		"Stück", "264",
		"", "pd-699270756.htm",
		"", 1,
		"3.D001", "0",
		 0)
	
		Entry[325] = new Element(
		325, "assets/thumb/deep_patch_monsterboy.jpg",
		96, 85,
		"TDE017", "Deep Eynde, The - Aufnäher klein ´´Monsterboy´´",
		"US Import", "",
		"3.25", "20",
		"1", 1,
		"Stück", "264",
		"", "pd-354260694.htm",
		"", 1,
		"3.D001", "0",
		 0)
	
		Entry[326] = new Element(
		326, "assets/thumb/deep_patch_hellcat.jpg",
		96, 85,
		"TDE018", "Deep Eynde, The - Aufnäher klein ´´Hellcat´´",
		"US Import", "",
		"3.25", "20",
		"1", 1,
		"Stück", "264",
		"", "pd-1415914648.htm",
		"", 1,
		"3.D001", "0",
		 0)
	
		Entry[327] = new Element(
		327, "assets/thumb/deep_patch_emblem.jpg",
		96, 85,
		"TDE019", "Deep Eynde, The - Aufnäher klein ´´Emblem´´",
		"", "",
		"3.25", "20",
		"1", 1,
		"Stück", "264",
		"", "pd-555757610.htm",
		"", 1,
		"3.D001", "0",
		 0)
	
		Entry[328] = new Element(
		328, "assets/thumb/deep_patch_stribes.jpg",
		96, 85,
		"TDE020", "Deep Eynde, The - Aufnäher klein ´´Stripes´´",
		"", "",
		"3.25", "20",
		"1", 1,
		"Stück", "264",
		"", "pd2033701364.htm",
		"", 1,
		"3.D001", "0",
		 0)
	
		Entry[329] = new Element(
		329, "assets/thumb/deep_patch_eagles.jpg",
		96, 85,
		"TDE021", "Deep Eynde, The - Aufnäher klein ´´Eagles´´",
		"", "",
		"3.25", "20",
		"1", 1,
		"Stück", "264",
		"", "pd214587714.htm",
		"", 1,
		"3.D001", "0",
		 0)
	
		Entry[330] = new Element(
		330, "assets/thumb/deep_patch_jewelgirl.jpg",
		51, 85,
		"TDE022", "Deep Eynde, The - Aufnäher groß ´´Jewel Girl´´",
		"", "",
		"6.58", "20",
		"1", 1,
		"Stück", "264",
		"", "pd1148823872.htm",
		"", 1,
		"3.D001", "0",
		 0)
	
		Entry[331] = new Element(
		331, "assets/thumb/deep_stick_vampskull.jpg",
		71, 85,
		"TDE023", "Deep Eynde, The - Aufnäher groß ´´Skeleton Stairs´´",
		"", "",
		"6.58", "20",
		"1", 1,
		"Stück", "264",
		"", "pd1611641198.htm",
		"", 1,
		"3.D001", "0",
		 0)
	
		Entry[332] = new Element(
		332, "assets/thumb/gothic52.jpg",
		138, 198,
		"GOT052", "Gothic Nr. 52 incl. Doppel-CD",
		"", "",
		"8.29", "350",
		"1", 1,
		"Stück", "282",
		"", "pd-2085229236.htm",
		"", 1,
		"4.01gothic", "0",
		 0)
	
		Entry[333] = new Element(
		333, "assets/thumb/chameleons_scriptof_kl.jpg",
		85, 85,
		"CHAM008", "Chameleons, The - Script Of The Bridge (CD)",
		"", "",
		"11.25", "150",
		"1", 1,
		"Stück", "39",
		"", "pd1062660323.htm",
		"", 1,
		"1.C014", "0",
		 0)
	
		Entry[334] = new Element(
		334, "assets/thumb/cult_purecult_kl.jpg",
		85, 85,
		"CULT005", "The Cult - Pure Cult (The Singles 1984-1995) (CD)",
		"", "",
		"10.75", "120",
		"1", 1,
		"Stück", "54",
		"", "pd1158411984.htm",
		"", 1,
		"1.C009", "0",
		 0)
	
		Entry[335] = new Element(
		335, "assets/thumb/damned_bestof_kl.jpg",
		85, 85,
		"THDA003", "Damned, The - The Best Of (CD)",
		"", "",
		"10.42", "120",
		"1", 1,
		"Stück", "57",
		"", "pd1967061374.htm",
		"", 1,
		"1.D009", "0",
		 0)
	
		Entry[336] = new Element(
		336, "assets/thumb/datafreq_kl.jpg",
		85, 85,
		"DAFR001", "Datafreq - Fun For The Whole Family (CD)",
		"", "",
		"8.25", "120",
		"1", 1,
		"Stück", "228",
		"", "pd1875592621.htm",
		"", 1,
		"P29", "0",
		 0)
	
		Entry[337] = new Element(
		337, "assets/thumb/elusive_destination_kl.jpg",
		85, 85,
		"ELU001", "Elusive - Destination Zero (CD)",
		"", "",
		"11.25", "120",
		"1", 1,
		"Stück", "83",
		"", "pd-1554007640.htm",
		"", 1,
		"P30", "0",
		 0)
	
		Entry[338] = new Element(
		338, "assets/thumb/weegs_millionsounds_kl.jpg",
		85, 85,
		"WEEG001", "Weegs, The - The Million Sounds Of Black (CD)",
		"US Import", "",
		"11.25", "120",
		"1", 1,
		"Stück", "214,259",
		"", "pd523134338.htm",
		"", 1,
		"P32,P86", "0",
		 0)
	
		Entry[339] = new Element(
		339, "assets/thumb/asf_liquidheadDVD.jpg",
		85, 118,
		"ASF022", "Alien Sex Fiend - Liquid Head In Tokyo (DVD)",
		"", "",
		"18.25", "200",
		"1", 1,
		"Stück", "5,260",
		"", "pd90541952.htm",
		"", 1,
		"1.A005,2", "0",
		 0)
	
		Entry[340] = new Element(
		340, "assets/thumb/normaloy_sacrifice_kl.jpg",
		85, 85,
		"NL003", "Norma Loy - Sacrifice (CD)",
		"", "",
		"14.58", "200",
		"1", 1,
		"Stück", "146",
		"", "pd1955434063.htm",
		"", 1,
		"1.N004", "0",
		 0)
	
		Entry[341] = new Element(
		341, "assets/thumb/shadow project shadow project kl.jpg",
		85, 85,
		"SHPR004", "Shadow Project - Shadow Project (CD)",
		"", "",
		"14.08", "120",
		"1", 1,
		"Stück", "179",
		"", "pd1158782929.htm",
		"", 1,
		"1.S12", "0",
		 0)
	
		Entry[342] = new Element(
		342, "assets/thumb/shadow project dreams for the dying kl.jpg",
		85, 85,
		"SHPR005", "Shadow Project - Dreams For The Dying (CD)",
		"", "",
		"14.08", "120",
		"1", 1,
		"Stück", "179",
		"", "pd-1229607321.htm",
		"", 1,
		"1.S12", "0",
		 0)
	
		Entry[343] = new Element(
		343, "assets/thumb/shadow project in tuned out kl.jpg",
		85, 85,
		"SHPR006", "Shadow Project - In Tuned Out Live ´93 (CD)",
		"", "",
		"14.08", "120",
		"1", 1,
		"Stück", "179",
		"", "pd-1142032659.htm",
		"", 1,
		"1.S12", "0",
		 0)
	
		Entry[344] = new Element(
		344, "assets/thumb/mamoynia_mono.jpg",
		85, 85,
		"LAMA001", "La Mamoynia - Mono Ego (CD)",
		"", "",
		"10.42", "0",
		"1", 1,
		"Stück", "120",
		"", "pd-1818824466.htm",
		"", 1,
		"P31", "0",
		 0)
	
		Entry[345] = new Element(
		345, "assets/thumb/echosofsilence_kl.jpg",
		85, 85,
		"EOSI001", "Echoes Of Silence - Echoes Of Silence (CD)",
		"", "",
		"7.42", "120",
		"1", 1,
		"Stück", "80",
		"", "pd1796742400.htm",
		"", 1,
		"P35", "0",
		 0)
	
		Entry[346] = new Element(
		346, "assets/thumb/vanishing_songsfor.jpg",
		85, 85,
		"TVAN005", "Vanishing, The - Songs For Psychotic Children (Vinyl)",
		"", "",
		"11.58", "200",
		"1", 1,
		"Stück", "205",
		"", "pd-1175827666.htm",
		"", 1,
		"1.V009", "0",
		 0)
	
		Entry[347] = new Element(
		347, "assets/thumb/echowest_inpopwetrust_kl.jpg",
		85, 85,
		"EW003", "Echo West - In Pop We Trust (CD)	",
		"", "",
		"12.08", "120",
		"1", 1,
		"Stück", "230",
		"", "pd1534458394.htm",
		"", 1,
		"1.ME001", "0",
		 0)
	
		Entry[348] = new Element(
		348, "assets/thumb/Voices Of Masada Another Day.jpg",
		85, 85,
		"VOM002", "Voices Of Masada - Another Day (CD)",
		"", "",
		"8.25", "130",
		"1", 1,
		"Stück", "209",
		"", "pd1161772029.htm",
		"", 1,
		"1.V006", "0",
		 0)
	
		Entry[349] = new Element(
		349, "assets/thumb/Kaliffornian Deathrock.jpg",
		85, 85,
		"VAR044", "various artists - Kaliffornian Deathrock (CD)",
		"", "",
		"11.25", "150",
		"1", 1,
		"Stück", "222",
		"", "pd430167667.htm",
		"", 1,
		"1.28", "0",
		 0)
	
		Entry[350] = new Element(
		350, "assets/thumb/KalifornianDeath-special_kl.jpg",
		97, 85,
		"VAR044S", "various artists - Kaliffornian Deathrock (CD)",
		"super Special edition", "",
		"15.42", "200",
		"1", 1,
		"Stück", "222",
		"", "pd1162041793.htm",
		"", 1,
		"1.28", "0",
		 0)
	
		Entry[351] = new Element(
		351, "assets/thumb/salvation_collection_kl.jpg",
		85, 85,
		"SALV001", "Salvation - The Complete Collection (1985-1989) (CD)",
		"", "",
		"12.42", "120",
		"1", 1,
		"Stück", "171",
		"", "pd174249164.htm",
		"", 1,
		"P37", "0",
		 0)
	
		Entry[352] = new Element(
		352, "assets/thumb/fields_genesis_kl.jpg",
		85, 85,
		"FOTH011", "Fields Of The Nephilim - Genesis and Revelation (2x CD + 1x DVD)",
		"", "",
		"18.75", "250",
		"1", 1,
		"Stück", "91",
		"", "pd576026586.htm",
		"", 1,
		"1.F006", "0",
		 0)
	
		Entry[353] = new Element(
		353, "assets/thumb/lords_stories_kl.jpg",
		85, 85,
		"LORD008", "Lords Of The New Church - Stories At Dusk (CD)",
		"US Import", "",
		"10.42", "120",
		"1", 1,
		"Stück", "124",
		"", "pd-518436456.htm",
		"", 1,
		"1.L005", "0",
		 0)
	
		Entry[354] = new Element(
		354, "assets/thumb/divadestruction_run_kl.jpg",
		85, 85,
		"DIVA001", "Diva Destruction - Run Cold (CD)",
		"", "",
		"12.42", "120",
		"1", 1,
		"Stück", "72",
		"", "pd-1713753969.htm",
		"", 1,
		"P38", "0",
		 0)
	
		Entry[355] = new Element(
		355, "assets/thumb/exvoto_doloroso_kl.jpg",
		85, 85,
		"EXVO003", "Ex-Voto – Doloroso (CD)",
		"", "",
		"12.42", "150",
		"1", 1,
		"Stück", "86",
		"", "pd1162226759.htm",
		"", 1,
		"1.E007", "0",
		 0)
	
		Entry[356] = new Element(
		356, "assets/thumb/christiandeath_live_kl.jpg",
		85, 85,
		"CHD015", "Christian Death - The Decompositions Of Violet (Live in Hollywood) (CD)",
		"", "",
		"13.75", "150",
		"1", 1,
		"Stück", "44",
		"", "pd1165773362.htm",
		"", 1,
		"1.C002", "0",
		 0)
	
		Entry[357] = new Element(
		357, "assets/thumb/va_thisisgothic_gr.jpg",
		85, 85,
		"VAR045", "various artists - This Is Gothic - The Batcave Anthology (2CD)",
		"", "",
		"17.42", "220",
		"1", 1,
		"Stück", "222",
		"", "pd-1546468432.htm",
		"", 1,
		"1.28", "0",
		 0)
	
		Entry[358] = new Element(
		358, "assets/thumb/va_alifeLessLived_cover.jpg",
		61, 85,
		"VAR046", "various artists - A Life Less Lived - The Gothic Box (3x CDs + DVD)",
		"US-Import - Superdeluxe Package im Lederkorsett mit 60 seitigem Manuscript", "",
		"46.67", "400",
		"1", 1,
		"Stück", "222",
		"", "pd1968836958.htm",
		"", 1,
		"1.28", "0",
		 0)
	
		Entry[359] = new Element(
		359, "assets/thumb/Chameleons_ReturnOf_kl.jpg",
		85, 85,
		"CHAM009", "The Chameleons - Return Of The Roughnecks (2CD)",
		"The Best Of CD", "",
		"14.58", "200",
		"1", 1,
		"Stück", "39",
		"", "pd1170435400.htm",
		"", 1,
		"1.C014", "0",
		 0)
	
		Entry[360] = new Element(
		360, "assets/thumb/FacesOfSarah_Lament_kl.jpg",
		85, 85,
		"FAC004", "The Faces Of Sarah - Lament (CD)",
		"", "",
		"13.75", "150",
		"1", 1,
		"Stück", "88",
		"", "pd-525978442.htm",
		"", 1,
		"1.F002", "0",
		 0)
	
		Entry[361] = new Element(
		361, "assets/thumb/Guests_inSilence_kl.jpg",
		85, 85,
		"GUE001", "The Guests - … in silence (CD-Digi)",
		"Russia Import", "",
		"13.75", "150",
		"1", 1,
		"Stück", "105",
		"", "pd-532936123.htm",
		"", 1,
		"P55", "0",
		 0)
	
		Entry[362] = new Element(
		362, "assets/thumb/SistersOfMercy_FirstAnd_kl.jpg",
		85, 85,
		"SOM001", "The Sisters Of Mercy - First And Last And Always + Bonus (CD-Digi)",
		"", "",
		"11.25", "200",
		"1", 1,
		"Stück", "183",
		"", "pd-1128197554.htm",
		"", 1,
		"P56", "0",
		 0)
	
		Entry[363] = new Element(
		363, "assets/thumb/SistersOfMercy_Floodland_kl.jpg",
		85, 85,
		"SOM002", "The Sisters Of Mercy - Floodland + Bonus (Digipack)",
		"", "",
		"11.25", "200",
		"1", 1,
		"Stück", "183",
		"", "pd-1349666516.htm",
		"", 1,
		"P56", "0",
		 0)
	
		Entry[364] = new Element(
		364, "assets/thumb/SistersOfMercy_VisionT_kl.jpg",
		85, 85,
		"SOM003", "The Sisters Of Mercy - Vision Thing + Bonus (Digipack)",
		"", "",
		"11.25", "200",
		"1", 1,
		"Stück", "183",
		"", "pd442528570.htm",
		"", 1,
		"P56", "0",
		 0)
	
		Entry[365] = new Element(
		365, "assets/thumb/Sisters Of Mercy Special.jpg",
		138, 85,
		"SOM004", "The Sisters Of Mercy - Re-Release Special (3CDs)",
		"", "",
		"29.92", "600",
		"1", 1,
		"Stück", "183,287",
		"", "pd1736324088.htm",
		"", 1,
		"P56,6", "0",
		 0)
	
		Entry[366] = new Element(
		366, "assets/thumb/SuperHeroines_Anthology_kl.jpg",
		85, 85,
		"SUP001", "Super Heroines -  Anthology 1982-1985 (CD)",
		"US Import", "",
		"14.08", "150",
		"1", 1,
		"Stück", "196",
		"", "pd-729391505.htm",
		"", 1,
		"P57", "0",
		 0)
	
		Entry[367] = new Element(
		367, "assets/thumb/Zombina_DeathValleyHigh_kl.jpg",
		85, 85,
		"ZOMB004", "Zombina And The Skeletones - Death Valley High (CD)",
		"", "",
		"11.58", "150",
		"1", 1,
		"Stück", "220",
		"", "pd-963295691.htm",
		"", 1,
		"1.Z002", "0",
		 0)
	
		Entry[368] = new Element(
		368, "assets/thumb/Zombina_Sticker01.jpg",
		48, 85,
		"ZOMB005", "Zombina And The Skeletones - Sticker 1",
		"", "",
		"1.67", "20",
		"1", 1,
		"Stück", "275",
		"", "pd1262055644.htm",
		"", 1,
		"P58", "0",
		 0)
	
		Entry[369] = new Element(
		369, "assets/thumb/Zombina_Sticker02.jpg",
		120, 52,
		"ZOMB006", "Zombina And The Skeletones - Sticker 2",
		"", "",
		"1.67", "20",
		"1", 1,
		"Stück", "275",
		"", "pd1887154399.htm",
		"", 1,
		"P58", "0",
		 0)
	
		Entry[370] = new Element(
		370, "assets/thumb/ftb2007_cover_kl.jpg",
		85, 85,
		"FTB005", "Frank The Baptist - The New Colossus (CD)",
		"", "",
		"9.92", "150",
		"1", 1,
		"Stück", "95",
		"", "pd1171815075.htm",
		"", 1,
		"1.F003", "0",
		 0)
	
		Entry[371] = new Element(
		371, "assets/thumb/Strange Dolls Cult Single.jpg",
		85, 86,
		"SDCU001", "Strange Dolls Cult - Puppets Dance (7inch)",
		"black vinyl", "",
		"5.75", "150",
		"1", 1,
		"Stück", "194",
		"", "pd-1811921098.htm",
		"", 1,
		"P59", "0",
		 0)
	
		Entry[372] = new Element(
		372, "assets/thumb/Killing Joke Love Like Blood cover.jpg",
		85, 85,
		"KILL002", "Killin Joke - Love Like Blood (CD)",
		"", "",
		"7.42", "150",
		"1", 1,
		"Stück", "118",
		"", "pd-683931998.htm",
		"", 1,
		"1.K002", "0",
		 0)
	
		Entry[373] = new Element(
		373, "assets/thumb/Killing Joke Nighttime cover.jpg",
		85, 86,
		"KILL003", "Killin Joke - Night Time (CD)",
		"", "",
		"8.75", "150",
		"1", 1,
		"Stück", "118",
		"", "pd36476320.htm",
		"", 1,
		"1.K002", "0",
		 0)
	
		Entry[374] = new Element(
		374, "assets/thumb/promised Land DVD.jpg",
		85, 122,
		"SKEL006", "Skeletal Family - Promised Land 1983 - 2005 (DVD)",
		"", "",
		"18.25", "200",
		"1", 1,
		"Stück", "186,260",
		"", "pd-352193330.htm",
		"", 1,
		"1.S007,2", "0",
		 0)
	
		Entry[375] = new Element(
		375, "assets/thumb/diepuppe_cd.jpg",
		85, 85,
		"PUP001", " Die Puppe - La Reine Des Mouches (CD)",
		"", "",
		"13.25", "150",
		"1", 1,
		"Stück", "229",
		"", "pd-2109974211.htm",
		"", 1,
		"P60", "0",
		 0)
	
		Entry[376] = new Element(
		376, "assets/thumb/A Kiss In The Reptile House.jpg",
		85, 85,
		"VAR047", "various artists - A Kiss In The Reptile House (CD)",
		"Russia Import", "",
		"12.42", "150",
		"1", 1,
		"Stück", "222",
		"", "pd234042803.htm",
		"", 1,
		"1.28", "0",
		 0)
	
		Entry[377] = new Element(
		377, "assets/thumb/BIPPP.jpg",
		85, 86,
		"VAR048", "various artists - BIPPP French Synth wave 1979/85 (CD)",
		"", "",
		"12.42", "150",
		"1", 1,
		"Stück", "222",
		"", "pd1683390233.htm",
		"", 1,
		"1.28", "0",
		 0)
	
		Entry[378] = new Element(
		378, "assets/thumb/LDOJ_Dead_Machines_kl.jpg",
		85, 85,
		"LDOJ007", "The Last Days of Jesus - Dead Machines´ Revolution! (CD)",
		"", "",
		"11.25", "150",
		"1", 1,
		"Stück", "122",
		"", "pd1176482064.htm",
		"", 1,
		"1.L003", "0",
		 0)
	
		Entry[379] = new Element(
		379, "assets/thumb/Ghost_klein.jpg",
		94, 85,
		"PINK003", "Pink Turns Blue - Ghost (CD-Digi-Pack)",
		"", "",
		"11.58", "130",
		"1", 1,
		"Stück", "156",
		"", "pd1178356412.htm",
		"", 1,
		"1.P04", "0",
		 0)
	
		Entry[380] = new Element(
		380, "assets/thumb/Ueber die Jahre klein.jpg",
		85, 85,
		"ZAD002", "Zadera - Über die Jahre (CD)",
		"", "",
		"8.25", "130",
		"1", 1,
		"Stück", "218",
		"", "pd1179935782.htm",
		"", 1,
		"1.Z001", "0",
		 0)
	
		Entry[381] = new Element(
		381, "assets/thumb/doppelgaenger_kl.jpg",
		85, 85,
		"DOPP002", "Doppelgänger - Saturnian Rings (CD)",
		"Russland Import", "",
		"11.58", "150",
		"1", 1,
		"Stück", "73",
		"", "pd1181670797.htm",
		"", 1,
		"1.D014", "0",
		 0)
	
		Entry[382] = new Element(
		382, "assets/thumb/reptyle_cons_kl.jpg",
		85, 85,
		"REP004", "Reptyle - Consequence (CD)",
		"", "",
		"12.42", "120",
		"1", 1,
		"Stück", "165",
		"", "pd1333826179.htm",
		"", 1,
		"1.R002", "0",
		 0)
	
		Entry[383] = new Element(
		383, "assets/thumb/Ikon_burdon_kl.jpg",
		85, 85,
		"IKON007", "Ikon - The Burden of History (2-CD)",
		"", "",
		"18.75", "250",
		"1", 1,
		"Stück", "111",
		"", "pd-443783063.htm",
		"", 1,
		"1.I001", "0",
		 0)
	
		Entry[384] = new Element(
		384, "assets/thumb/Ikon_astime_kl.jpg",
		85, 85,
		"IKON008", "Ikon - As Time Goes By (CD)",
		"", "",
		"12.42", "130",
		"1", 1,
		"Stück", "111",
		"", "pd1395984575.htm",
		"", 1,
		"1.I001", "0",
		 0)
	
		Entry[385] = new Element(
		385, "assets/thumb/Ikon_shallowsea_kl.jpg",
		85, 85,
		"IKON009", "Ikon - The Shallow Sea (MCD)",
		"Australien Import", "",
		"5.75", "130",
		"1", 1,
		"Stück", "111",
		"", "pd282278149.htm",
		"", 1,
		"1.I001", "0",
		 0)
	
		Entry[386] = new Element(
		386, "assets/thumb/Ikon_afterlife_kl.jpg",
		85, 85,
		"IKON010", "Ikon - Afterlife (MCD)",
		"Australien Import", "",
		"5.75", "130",
		"1", 1,
		"Stück", "111",
		"", "pd1548958395.htm",
		"", 1,
		"1.I001", "0",
		 0)
	
		Entry[387] = new Element(
		387, "assets/thumb/neongrau_kl.jpg",
		85, 85,
		"NEON001", "Neongrau - Spam N Space (CD)",
		"", "",
		"10.42", "150",
		"1", 1,
		"Stück", "244",
		"", "pd372282092.htm",
		"", 1,
		"P62", "0",
		 0)
	
		Entry[388] = new Element(
		388, "assets/thumb/astrovamps_gods_kl.jpg",
		85, 85,
		"ASTRO003", "Astrovamps - Gods And Monsters (CD)",
		"", "",
		"11.58", "130",
		"1", 1,
		"Stück", "10",
		"", "pd-1454201511.htm",
		"", 1,
		"1.A004", "0",
		 0)
	
		Entry[389] = new Element(
		389, "assets/thumb/screemingairb_neu_kl.jpg",
		85, 85,
		"SBA001", "Screaming Banshee Aircrew - When All is Said and Done (CD)",
		"", "",
		"12.42", "150",
		"1", 1,
		"Stück", "176",
		"", "pd-2093070293.htm",
		"", 1,
		"P65", "0",
		 0)
	
		Entry[390] = new Element(
		390, "assets/thumb/Sonnenbrandt_kommwir_kl.jpg",
		85, 85,
		"SOBRA001", "Sonnenbrandt - Komm wir gehen nach Hollywood (7inch)",
		"", "",
		"6.58", "200",
		"1", 1,
		"Stück", "248",
		"", "pd-1429286338.htm",
		"", 1,
		"P66", "0",
		 0)
	
		Entry[391] = new Element(
		391, "assets/thumb/CharlesLindbergh_nixlos_kl.jpg",
		85, 85,
		"CHLI001", "Charles Lindbergh N.E.V. - Nix Lox (7&quot; Vinyl)",
		"", "",
		"6.58", "200",
		"1", 1,
		"Stück", "241",
		"", "pd1178170733.htm",
		"", 1,
		"P67", "0",
		 0)
	
		Entry[392] = new Element(
		392, "assets/thumb/va_hitnews_kl.jpg",
		85, 85,
		"VAR100", "various Artists - HAMBURG HIT NEWS 2006 (10inch)",
		"", "",
		"12.42", "200",
		"1", 1,
		"Stück", "246",
		"", "pd890269027.htm",
		"", 1,
		"1.MV001", "0",
		 0)
	
		Entry[393] = new Element(
		393, "assets/thumb/monicarichards_kl.jpg",
		85, 85,
		"MORI001", "Monica Richards - Infrawarrior (CD)",
		"", "",
		"11.58", "130",
		"1", 1,
		"Stück", "169",
		"", "pd-943643324.htm",
		"", 1,
		"P64", "0",
		 0)
	
		Entry[394] = new Element(
		394, "assets/thumb/deadchovsky_spiritus_kl.jpg",
		85, 85,
		"DEAD002", "Deadchovsky - Spiritus Sancti Bizzare (CD)",
		"", "",
		"11.58", "120",
		"1", 1,
		"Stück", "61",
		"", "pd1183818100.htm",
		"", 1,
		"1.D015", "0",
		 0)
	
		Entry[395] = new Element(
		395, "assets/thumb/dansesociety_looking_kl.jpg",
		85, 85,
		"TDS004", "The Danse Society - Looking Through (CD)",
		"", "",
		"11.58", "130",
		"1", 1,
		"Stück", "58",
		"", "pd1421128898.htm",
		"", 1,
		"1.D007", "0",
		 0)
	
		Entry[396] = new Element(
		396, "assets/thumb/deepeynde_badblood_kl.jpg",
		85, 85,
		"TDE024", "The Deep Eynde - Bad Blood (CD)",
		"", "",
		"11.58", "120",
		"1", 1,
		"Stück", "67",
		"", "pd1651322060.htm",
		"", 1,
		"1.D008", "0",
		 0)
	
		Entry[397] = new Element(
		397, "assets/thumb/va_drehmoment_5thvol1_kl.jpg",
		85, 85,
		"VAR101", "various artists - Das Drehmoment vol. 1  (12inch)",
		"5th anniversary / vol. 1", "",
		"11.25", "150",
		"1", 1,
		"Stück", "246",
		"", "pd1338478554.htm",
		"", 1,
		"1.MV001", "0",
		 0)
	
		Entry[398] = new Element(
		398, "assets/thumb/va_dreh_5thvol2_kl_.jpg",
		85, 85,
		"VAR102", "various artists - Das Drehmoment vol. 2  (12inch)",
		"5th anniversary / vol. 2", "",
		"11.25", "150",
		"1", 1,
		"Stück", "246",
		"", "pd1228480920.htm",
		"", 1,
		"1.MV001", "0",
		 0)
	
		Entry[399] = new Element(
		399, "assets/thumb/makinagirgir_spell_kl.jpg",
		85, 85,
		"MAGI001", "Makina Girgir - The Spell E.P.  (12&quot;)",
		"", "",
		"8.25", "150",
		"1", 1,
		"Stück", "242",
		"", "pd2022434959.htm",
		"", 1,
		"P68", "0",
		 0)
	
		Entry[400] = new Element(
		400, "assets/thumb/antitrust_diewelt_kl.jpg",
		60, 85,
		"ANTR001", "Anti Trust - Die Welt is so schön …(CD)",
		"", "",
		"9.58", "120",
		"1", 1,
		"Stück", "227",
		"", "pd977061362.htm",
		"", 1,
		"P69", "0",
		 0)
	
		Entry[401] = new Element(
		401, "assets/thumb/Geisterfahrer_zurueck_kl.jpg",
		60, 85,
		"GEI001", "Geisterfahrer - Zurück in die Zukunft - Live 1979 (CD)",
		"plus Button", "",
		"9.08", "120",
		"1", 1,
		"Stück", "236",
		"", "pd-1322928975.htm",
		"", 1,
		"P70", "0",
		 0)
	
		Entry[402] = new Element(
		402, "assets/thumb/Geisterfahrer_3Jhtaus_kl.jpg",
		85, 85,
		"GEI002", "Geisterfahrer - 3. Jahrtausend (7&quot; Vinyl)",
		"", "",
		"6.58", "100",
		"1", 1,
		"Stück", "236",
		"", "pd-117486009.htm",
		"", 1,
		"P70", "0",
		 0)
	
		Entry[403] = new Element(
		403, "assets/thumb/geisterfahrer_schatten_kl.jpg",
		85, 85,
		"GEI003", "Geisterfahrer - Schatten voraus (CD)",
		"", "",
		"9.92", "120",
		"1", 1,
		"Stück", "236",
		"", "pd1798576589.htm",
		"", 1,
		"P70", "0",
		 0)
	
		Entry[404] = new Element(
		404, "assets/thumb/dasinstitut_zukunft_kl.jpg",
		60, 85,
		"INS001", "Das Institut - Zukunftsmusik (CD-EP)",
		"", "",
		"8.25", "120",
		"1", 1,
		"Stück", "238",
		"", "pd-1203545016.htm",
		"", 1,
		"P71", "0",
		 0)
	
		Entry[405] = new Element(
		405, "assets/thumb/dasinstitut_Camera_kl.jpg",
		85, 85,
		"INS002", "Das Institut - Camera obscura: Venedig (CD)",
		"", "",
		"10.75", "120",
		"1", 1,
		"Stück", "238",
		"", "pd-737952842.htm",
		"", 1,
		"P71", "0",
		 0)
	
		Entry[406] = new Element(
		406, "assets/thumb/experimentnord_neue_kl.jpg",
		85, 85,
		"EXNO001", "Experiment Nnord - Der Traum / Neue Welt (7&quot; Vinyl)",
		"", "",
		"6.58", "150",
		"1", 1,
		"Stück", "235",
		"", "pd402734405.htm",
		"", 1,
		"P72", "0",
		 0)
	
		Entry[407] = new Element(
		407, "assets/thumb/notstandskom_souven_kl.jpg",
		85, 85,
		"NOT001", "Notstandskomitee - Souvenir aus der Zukunft (7&quot; Vinyl)",
		"", "",
		"6.58", "150",
		"1", 1,
		"Stück", "245",
		"", "pd-274946528.htm",
		"", 1,
		"P73", "0",
		 0)
	
		Entry[408] = new Element(
		408, "assets/thumb/sonnenbrandt_Urlaub_kl.jpg",
		60, 85,
		"SOBRA002", "Sonnenbrandt - Urlaubsgruss mit Sonnenbrandt (CD-EP)",
		"", "",
		"9.08", "120",
		"1", 1,
		"Stück", "248",
		"", "pd1587706190.htm",
		"", 1,
		"P66", "0",
		 0)
	
		Entry[409] = new Element(
		409, "assets/thumb/Exkurs_fakten_kl.jpg",
		60, 85,
		"EXKU001", "ExKurs - Fakten sind Terror (CD)",
		"", "",
		"12.42", "120",
		"1", 1,
		"Stück", "234",
		"", "pd44148669.htm",
		"", 1,
		"P74", "0",
		 0)
	
		Entry[410] = new Element(
		410, "assets/thumb/matthiasS_atemlos2_kl.jpg",
		85, 85,
		"MASC002", "Matthias Schuster - Atemlos 2 - Sprecht mit den Maschinen (CD)",
		"", "",
		"12.42", "0",
		"1", 1,
		"Stück", "243",
		"", "pd-792516557.htm",
		"", 1,
		"1.MM001", "0",
		 0)
	
		Entry[411] = new Element(
		411, "assets/thumb/EvasionOnStake_again_kl.jpg",
		85, 85,
		"TEOS001", "The Evasion On Stake - Again In The Past, Part 1 (CD)",
		"", "",
		"8.25", "120",
		"1", 1,
		"Stück", "233",
		"", "pd-741056026.htm",
		"", 1,
		"P75", "0",
		 0)
	
		Entry[412] = new Element(
		412, "assets/thumb/johnnyBeton_short_kl.jpg",
		85, 85,
		"JB001", "Johnny Beton and The Moertels - Short Luck (CD)",
		"", "",
		"9.58", "120",
		"1", 1,
		"Stück", "239",
		"", "pd-2129577675.htm",
		"", 1,
		"P76", "0",
		 0)
	
		Entry[413] = new Element(
		413, "assets/thumb/45gravepaket1_kl.jpg",
		85, 42,
		"FFGR002", "45 Grave - Package 1",
		"", "",
		"7.08", "20",
		"1", 1,
		"Stück", "262,0",
		"", "pd-1252101424.htm",
		"", 1,
		"P77,1.27", "0",
		 0)
	
		Entry[414] = new Element(
		414, "assets/thumb/45gravepaket2_kl.jpg",
		85, 42,
		"FFGR003", "45 Grave - Package 2",
		"", "",
		"7.08", "20",
		"1", 1,
		"Stück", "262,0",
		"", "pd-2110328868.htm",
		"", 1,
		"P77,1.27", "0",
		 0)
	
		Entry[415] = new Element(
		415, "assets/thumb/Black-Ice_myopia_kl.jpg",
		85, 85,
		"BLA003", "Black Ice - Myopia (CD)",
		"US Import", "",
		"11.58", "150",
		"1", 1,
		"Stück", "20,252",
		"", "pd1185464059.htm",
		"", 1,
		"1.B004,P91", "0",
		 0)
	
		Entry[416] = new Element(
		416, "assets/thumb/dronning_bedlam_kl.jpg",
		85, 85,
		"DRMA002", "Dronning Maud Land - Bedlam (CD)",
		"", "",
		"11.25", "120",
		"1", 1,
		"Stück", "75",
		"", "pd1187715868.htm",
		"", 1,
		"1.D11", "0",
		 0)
	
		Entry[417] = new Element(
		417, "assets/thumb/swanndanger_deepLP_kl.jpg",
		120, 85,
		"SWDA002", "Swann Danger - Deep North (LP)",
		"Limited Version: 303 Stück (Blaues Vinyl mit Cover-Artwork)", "",
		"14.08", "200",
		"1", 1,
		"Stück", "197",
		"", "pd-308347877.htm",
		"", 1,
		"P81", "0",
		 0)
	
		Entry[418] = new Element(
		418, "assets/thumb/tb_cold_caress_kl.jpg",
		85, 86,
		"TBLA004", "Tragic Black - The Cold Caress (CD)",
		"limited edition of 1000 with &quot;Death&quot; - Tarot card", "",
		"8.25", "130",
		"1", 1,
		"Stück", "203",
		"", "pd1740393409.htm",
		"", 1,
		"1.T03", "0",
		 0)
	
		Entry[419] = new Element(
		419, "assets/thumb/playdead_fromthe_kl.jpg",
		85, 85,
		"PLAY004", "Play Dead - From The Promised Land (CD)",
		" inkl. 9 Bouns-Tracks", "",
		"12.92", "150",
		"1", 1,
		"Stück", "158",
		"", "pd-1619512064.htm",
		"", 1,
		"1.P6", "0",
		 0)
	
		Entry[420] = new Element(
		420, "assets/thumb/corpus_anewS_kl.jpg",
		85, 85,
		"COR005", "Corpus Delicti - A New Saraband Of Sylphes (Digipak-CD)",
		"inkl. 6 Bouns-Tracks", "",
		"13.75", "150",
		"1", 1,
		"Stück", "52",
		"", "pd2057839406.htm",
		"", 1,
		"1.C004", "0",
		 0)
	
		Entry[421] = new Element(
		421, "assets/thumb/zuruckplacenta_kl.jpg",
		85, 85,
		"ZUPL001", "Zurueck Placenta - Zurueck Placenta (CD)",
		"", "",
		"11.58", "150",
		"1", 1,
		"Stück", "221",
		"", "pd1412602653.htm",
		"", 1,
		"P82", "0",
		 0)
	
		Entry[422] = new Element(
		422, "assets/thumb/Of_Whores_And_Culture_kl.jpg",
		85, 85,
		"GOTT004", "Götterdämmerung - Of Whores And Culture (CD)",
		"", "",
		"9.91666666666666", "150",
		"1", 1,
		"Stück", "104",
		"", "pd-50410861.htm",
		"", 1,
		"1.G003", "0",
		 0)
	
		Entry[423] = new Element(
		423, "assets/thumb/weegs_meat_kl.jpg",
		85, 85,
		"WEEG002", "The Weegs- Meat the Weegs (CD)",
		"", "",
		"11.25", "150",
		"1", 1,
		"Stück", "214,259",
		"", "pd1103995958.htm",
		"", 1,
		"P32,P86", "0",
		 0)
	
		Entry[424] = new Element(
		424, "assets/thumb/LP_Frontcover_kl.jpg",
		85, 85,
		"BEDO001", "Bellmer Dolls - The Big Cats Will Throw Themselves Over (CD)",
		"US Import", "",
		"11.25", "130",
		"1", 1,
		"Stück", "251,17",
		"", "pd846675909.htm",
		"", 1,
		"P92,P95", "0",
		 0)
	
		Entry[425] = new Element(
		425, "assets/thumb/holy-kiss_front_kl.jpg",
		85, 85,
		"HOKI001", "The Holy Kiss - The Holy Kiss (CD)",
		"US Import", "",
		"11.25", "130",
		"1", 1,
		"Stück", "253,108",
		"", "pd-1147560069.htm",
		"", 1,
		"P90,P94", "0",
		 0)
	
		Entry[426] = new Element(
		426, "assets/thumb/holkiss_2_kl.jpg",
		85, 85,
		"HOKI002", "The Holy Kiss - Shot Love on a Back Line (CD)",
		"US Import", "",
		"11.25", "130",
		"1", 1,
		"Stück", "253,108",
		"", "pd1194925601.htm",
		"", 1,
		"P90,P94", "0",
		 0)
	
		Entry[427] = new Element(
		427, "assets/thumb/16s_into-the_kl.jpg",
		85, 85,
		"SIXT003", "Sixteens - Into the Gold Wave of Future Non Rip-off (CD)",
		"US Import", "",
		"11.25", "130",
		"1", 1,
		"Stück", "256",
		"", "pd-571960009.htm",
		"", 1,
		"P89", "0",
		 0)
	
		Entry[428] = new Element(
		428, "assets/thumb/SAROS_five-pointed-tongue_kl.jpg",
		85, 85,
		"SAR001", "Saros - Five Pointed Tongue (CD)",
		"US Import", "",
		"11.25", "130",
		"1", 1,
		"Stück", "255,172",
		"", "pd-1842578883.htm",
		"", 1,
		"P87,P93", "0",
		 0)
	
		Entry[429] = new Element(
		429, "assets/thumb/casual-sanity_CD_kl.jpg",
		85, 85,
		"CASA002", "Casual Sanity - Casual Sanity (CD-Single)",
		"", "",
		"7.42", "100",
		"1", 1,
		"Stück", "34",
		"", "pd-880944879.htm",
		"", 1,
		"P96", "0",
		 0)
	
		Entry[430] = new Element(
		430, "assets/thumb/antiworld_still-outcast_kl.jpg",
		85, 85,
		"ANTI002", "Antiworld - Still Outcast (CD)",
		"", "",
		"11.58", "130",
		"1", 1,
		"Stück", "9",
		"", "pd-1225160281.htm",
		"", 1,
		"1.A009", "0",
		 0)
	
		Entry[431] = new Element(
		431, "assets/thumb/scarlet-remains_palest-grey_kl.jpg",
		85, 85,
		"SCAR007", "Scarlet´s Remains - The Palest Grey (CD)",
		"", "",
		"11.58", "130",
		"1", 1,
		"Stück", "173",
		"", "pd1041908781.htm",
		"", 1,
		"1.S020", "0",
		 0)
	
		Entry[432] = new Element(
		432, "assets/thumb/54grave_a-devils-possession_kl.jpg",
		106, 85,
		"FFGR004", "45 Grave - A Devil´s Possessions (Demos and Live 1980 - 1983) (LP)",
		"US Import, limited edition, coloured vinyl", "",
		"15.75", "200",
		"1", 1,
		"Stück", "0",
		"", "pd1206258271.htm",
		"", 1,
		"1.27", "0",
		 0)
	
		Entry[433] = new Element(
		433, "assets/thumb/Specimen-Batcave_kl.jpg",
		104, 85,
		"SPEC003", "Specimen - Bat Cave (LP)",
		"US Import, limited edition, coloured vinyl", "",
		"15.75", "200",
		"1", 1,
		"Stück", "193",
		"", "pd1457427365.htm",
		"", 1,
		"1.S008", "0",
		 0)
	
		Entry[434] = new Element(
		434, "assets/thumb/talesoftheother.jpg",
		59, 85,
		"OTH003", "Tales of the Other (comic)",
		"", "",
		"6.82", "200",
		"2", 1,
		"Stück", "286",
		"", "pd555632753.htm",
		"", 1,
		"P98", "0",
		 0)
	
		Entry[435] = new Element(
		435, "assets/thumb/va_movment_kl.jpg",
		85, 85,
		"VAR049", "various artists - Movement One vol. 1 (CD)",
		"French Import, Cold &amp; New Wave / Gothic Rock compilation", "",
		"12.08", "150",
		"1", 1,
		"Stück", "222",
		"", "pd-2143221753.htm",
		"", 1,
		"1.28", "0",
		 0)
	
		Entry[436] = new Element(
		436, "assets/images/nopicture.gif",
		77, 52,
		"CFDD001", "Cookbook For Dark Desires - (Buch)",
		"von Carina &amp; Matthias Alfa", "",
		"15.91", "300",
		"2", 1,
		"Stück", "285",
		"", "pd951806349.htm",
		"", 1,
		"4.02", "0",
		 0)
	
		Entry[437] = new Element(
		437, "assets/thumb/monozid_waiting_kl.jpg",
		85, 85,
		"MONO002", "Monozid - Waiting For The Circus (MCD)",
		"", "",
		"5.42", "150",
		"1", 1,
		"Stück", "135",
		"", "pd773436521.htm",
		"", 1,
		"P9", "0",
		 0)
	
		Entry[438] = new Element(
		438, "assets/thumb/newdaysdelay_splitt_kl.jpg",
		85, 85,
		"NDD001", "New Days Delay - Splitterelastisch (CD)",
		"", "",
		"12.08", "150",
		"1", 1,
		"Stück", "141",
		"", "pd456630242.htm",
		"", 1,
		"P99", "0",
		 0)
	
		Entry[439] = new Element(
		439, "assets/thumb/va_hex_kl.jpg",
		85, 85,
		"VAR050", "various artists - Hex compilation (12inch)",
		"limited to 520 copies", "",
		"10.75", "200",
		"1", 1,
		"Stück", "222",
		"", "pd739168480.htm",
		"", 1,
		"1.28", "0",
		 0)
	
		Entry[440] = new Element(
		440, "assets/thumb/agentsidegrinder_kl.jpg",
		85, 85,
		"ASG001", "Agent Side Grinder - Agent Side Grinder (7&quot; vinyl)",
		"limited to 315 copies, special sleeve consisting of two inlays, hand numbered", "",
		"7.08", "150",
		"1", 1,
		"Stück", "225",
		"", "pd1852575863.htm",
		"", 1,
		"P100", "0",
		 0)
	
		Entry[441] = new Element(
		441, "assets/thumb/theactor_coverg_kl.jpg",
		85, 85,
		"TAC001", "The Actor - Covergirl EP (10inch)",
		"incl. postcard, limited to 514 copies", "",
		"9.92", "150",
		"1", 1,
		"Stück", "224",
		"", "pd1641738585.htm",
		"", 1,
		"P102", "0",
		 0)
	
		Entry[442] = new Element(
		442, "assets/thumb/solitaren_effekten_kl.jpg",
		85, 85,
		"SOEF001", "Solitairen Effekten - Solitairen Effekten EP (10inch)",
		"white vinyl 10&quot; + insert, limited to 529 hand numbered copies", "",
		"10.75", "200",
		"1", 1,
		"Stück", "247",
		"", "pd-1674714812.htm",
		"", 1,
		"P103", "0",
		 0)
	
		Entry[443] = new Element(
		443, "assets/thumb/redvoicechoir_athous_kl.jpg",
		85, 85,
		"RVC001", "Red Voice Choir - A Thousand Reflections (CD)",
		"US-Import", "",
		"9.08", "150",
		"1", 1,
		"Stück", "164",
		"", "pd-1183173589.htm",
		"", 1,
		"P104", "0",
		 0)
	
		Entry[444] = new Element(
		444, "assets/thumb/DID_cover_kl.jpg",
		85, 86,
		"DID001", "Death in Dresden - Death and the Game (CD)",
		"", "",
		"8.75", "150",
		"1", 1,
		"Stück", "65",
		"", "pd-1537917885.htm",
		"", 1,
		"P105", "0",
		 0)
	
		Entry[445] = new Element(
		445, "assets/thumb/specimen_electric_kl.jpg",
		85, 85,
		"SPEC004", "Specimen - Electric Ballroom (CD)",
		"", "",
		"12.42", "150",
		"1", 1,
		"Stück", "193",
		"", "pd-660592599.htm",
		"", 1,
		"1.S008", "0",
		 0)
	
		Entry[446] = new Element(
		446, "assets/thumb/blood-and-roses_kl.jpg",
		85, 85,
		"BAR001", "Blood &amp; Roses - Same As It Never Was - The Collection (CD)",
		"", "",
		"12.42", "150",
		"1", 1,
		"Stück", "22",
		"", "pd-1077489466.htm",
		"", 1,
		"P106", "0",
		 0)
	
		Entry[447] = new Element(
		447, "assets/thumb/campz_kl.jpg",
		85, 85,
		"CAZ001", "Camp Z - Violent Memories (CD)",
		"", "",
		"11.25", "150",
		"1", 1,
		"Stück", "31",
		"", "pd-1469574498.htm",
		"", 1,
		"P107", "0",
		 0)
	
		Entry[448] = new Element(
		448, "assets/thumb/nouvel10_kl.jpg",
		85, 85,
		"BIT003", "Jacquy Bitch - Stories From The Old Years (CD)",
		"Best Of", "",
		"12.08", "150",
		"1", 1,
		"Stück", "19",
		"", "pd1410593276.htm",
		"", 1,
		"B.003", "0",
		 0)
	
		Entry[449] = new Element(
		449, "assets/thumb/prids_something_kl.jpg",
		85, 85,
		"PRID003", "The Prids - Something Difficult (7&quot;)",
		"US Import, Limited edition, coloured vinyl", "",
		"6.25", "200",
		"1", 1,
		"Stück", "159",
		"", "pd1205924228.htm",
		"", 1,
		"1.P007", "0",
		 0)
	
		Entry[450] = new Element(
		450, "assets/thumb/krausecover_kl.jpg",
		85, 85,
		"DAK001", "Dr. Arthur Krause - When Love Is Dead",
		"", "",
		"12.42", "150",
		"1", 1,
		"Stück", "77",
		"", "pd1150191485.htm",
		"", 1,
		"P108", "0",
		 0)
	
		Entry[451] = new Element(
		451, "assets/thumb/Avant_Garde_IronInFlesh_kl.jpg",
		85, 85,
		"AVGA001", "Avant-Garde - Iron In Flesh (CD)",
		"", "",
		"11.25", "150",
		"1", 1,
		"Stück", "12",
		"", "pd1190962291.htm",
		"", 1,
		"P109", "0",
		 0)
	
		Entry[452] = new Element(
		452, "assets/thumb/DateAtMidnight_dateat_kl.jpg",
		85, 85,
		"DAM001", "Date At Midnight - Date At Midnight (MCD)",
		"", "",
		"8.25", "120",
		"1", 1,
		"Stück", "60",
		"", "pd1318947622.htm",
		"", 1,
		"P110", "0",
		 0)
	
		Entry[453] = new Element(
		453, "assets/thumb/frustration_relax_kl.jpg",
		85, 85,
		"FRUST003", "Frustration - Relax (CD)",
		"", "",
		"12.08", "150",
		"1", 1,
		"Stück", "97",
		"", "pd977223108.htm",
		"", 1,
		"P22", "0",
		 0)
	
		Entry[454] = new Element(
		454, "assets/thumb/DeathRock_issue_2_kl.jpg",
		67, 85,
		"DR002", "DeathRock - Winter 08 (Magazine)",
		"US-Import", "",
		"6.27", "300",
		"2", 1,
		"Stück", "280",
		"", "pd85342891.htm",
		"", 1,
		"P111", "0",
		 0)
	
		Entry[455] = new Element(
		455, "assets/thumb/drarthurkrause_before_kl.jpg",
		85, 85,
		"DAK002", "Dr. Arthur Krause - Before And After (CD)",
		"", "",
		"12.42", "0",
		"1", 1,
		"Stück", "77",
		"", "pd1212927772.htm",
		"", 1,
		"P108", "0",
		 0)
	
		Entry[456] = new Element(
		456, "assets/thumb/va_BatsfromEurope_kl.jpg",
		85, 85,
		"VAR051", "various artists - Bats From Europe (CD)",
		"", "",
		"11.25", "120",
		"1", 1,
		"Stück", "222",
		"", "pd1212931270.htm",
		"", 1,
		"1.28", "0",
		 0)
	
		Entry[457] = new Element(
		457, "assets/images/nopicture.gif",
		77, 52,
		"ASMA001", "Ascension Magazine - issue 0 incl. CD",
		"english version", "",
		"6.58", "300",
		"1", 1,
		"Stück", "278",
		"", "pd503591317.htm",
		"", 1,
		"P112", "0",
		 0)
	
		Entry[458] = new Element(
		458, "assets/thumb/Gang-Of-Four_a_brief_kl.jpg",
		85, 85,
		"GANG002", "Gang Of Four - A Brief History Of The Twentieth Century (CD)",
		"", "",
		"11.25", "150",
		"1", 1,
		"Stück", "99",
		"", "pd462235083.htm",
		"", 1,
		"P23", "0",
		 0)
	
		Entry[459] = new Element(
		459, "assets/thumb/charlesdegaul_rest_kl.jpg",
		85, 85,
		"CDG001", "Charles De Goal - R Est Ruc Turat Ion (CD)",
		"", "",
		"11.58", "150",
		"1", 1,
		"Stück", "41",
		"", "pd2014907486.htm",
		"", 1,
		"P113", "0",
		 0)
	
		Entry[460] = new Element(
		460, "assets/thumb/charlesdegaul_3_kl.jpg",
		85, 86,
		"CDG002", "Charles De Goal - 3 (CD)",
		"First release 1984 / re-release with 5 bonus tracks", "",
		"11.58", "150",
		"1", 1,
		"Stück", "41",
		"", "pd-1264811588.htm",
		"", 1,
		"P113", "0",
		 0)
	
		Entry[461] = new Element(
		461, "assets/thumb/va_transmission2_kl.jpg",
		85, 84,
		"VAR052", "various artists - Transmission Continued (CD)",
		"", "",
		"13.25", "200",
		"1", 1,
		"Stück", "222",
		"", "pd1642901066.htm",
		"", 1,
		"1.28", "0",
		 0)
	
		Entry[462] = new Element(
		462, "assets/thumb/gestalt_lesommeil_kl.jpg",
		85, 85,
		"GES001", "Gestalt - Le Sommeil Du Singe (CD)",
		"", "",
		"11.25", "150",
		"1", 1,
		"Stück", "101",
		"", "pd1414645993.htm",
		"", 1,
		"P114", "0",
		 0)
	
		Entry[463] = new Element(
		463, "assets/thumb/normaloy_onepsychic_kl.jpg",
		85, 86,
		"NL004", "Norma Loy - One-PsychicAltercation (CD)",
		"", "",
		"11.25", "150",
		"1", 1,
		"Stück", "146",
		"", "pd1667980607.htm",
		"", 1,
		"1.N004", "0",
		 0)
	
		Entry[464] = new Element(
		464, "assets/thumb/complotbr_tome_kl.jpg",
		85, 85,
		"COB001", "Complot Bronswick - Tome 1 1982-1986 (2CD)",
		"", "",
		"13.25", "200",
		"1", 1,
		"Stück", "51",
		"", "pd-1507600544.htm",
		"", 1,
		"P115", "0",
		 0)
	
		Entry[465] = new Element(
		465, "assets/thumb/luciecries_1_kl.jpg",
		85, 84,
		"LUCR001", "Lucie Cries - Non Nova, Sed Nove - Vol. I (2CD)",
		"", "",
		"14.08", "200",
		"1", 1,
		"Stück", "125",
		"", "pd-1315190537.htm",
		"", 1,
		"P116", "0",
		 0)
	
		Entry[466] = new Element(
		466, "assets/thumb/luciecries_2_kl.jpg",
		85, 85,
		"LUCR002", "Lucie Cries - Non Nova, Sed Nove - Vol. II (2CD)",
		"", "",
		"14.08", "200",
		"1", 1,
		"Stück", "125",
		"", "pd-634792963.htm",
		"", 1,
		"P116", "0",
		 0)
	
		Entry[467] = new Element(
		467, "assets/thumb/deadendguys_among_kl.jpg",
		85, 85,
		"DEG001", "Dead End Guys - Among The Dead (CD)",
		"", "",
		"7.92", "150",
		"1", 1,
		"Stück", "62",
		"", "pd1286831160.htm",
		"", 1,
		"P117", "0",
		 0)
	
		Entry[468] = new Element(
		468, "assets/thumb/frightthe_decabre_kl.jpg",
		85, 84,
		"TFR001", "The Fright - Dacabre (CD)",
		"", "",
		"10.42", "150",
		"1", 1,
		"Stück", "96",
		"", "pd-775568465.htm",
		"", 1,
		"P118", "0",
		 0)
	
		Entry[469] = new Element(
		469, "assets/thumb/thewake_blacklist_kl.jpg",
		60, 85,
		"WAKE002", "Wake, The - Blacklist (CD + DVD)",
		"", "",
		"16.25", "250",
		"1", 1,
		"Stück", "211",
		"", "pd487599477.htm",
		"", 1,
		"P18", "0",
		 0)
	
		Entry[470] = new Element(
		470, "assets/thumb/zerolecreche_last_gr.jpg",
		85, 85,
		"ZLC001", "Zero LeCrêche - Last Year´s Wife - The Collection (CD)",
		"", "",
		"11.25", "150",
		"1", 1,
		"Stück", "219",
		"", "pd1182495760.htm",
		"", 1,
		"P119", "0",
		 0)
	
		Entry[471] = new Element(
		471, "assets/thumb/Reptyle_Shirt_NoDrinks_kl.jpg",
		38, 85,
		"REP005L", "Reptyle - No Drinks (T-Shirt)",
		"", "",
		"10.4166666666667", "200",
		"1", 1,
		"Stück", "271,165",
		"Grösse;L@", "pd-1579250195.htm",
		"", 1,
		"3.R001,1.R002", "0",
		 0)
	
		Entry[472] = new Element(
		472, "assets/thumb/Blacklist_Solidaire_kl.jpg",
		85, 85,
		"BLI001", "Blacklist - Solidaire (CD-EP)",
		"", "",
		"8.25", "150",
		"1", 1,
		"Stück", "21",
		"", "pd1627504470.htm",
		"", 1,
		"P120", "0",
		 0)
	
		Entry[473] = new Element(
		473, "assets/thumb/Postcards_kl.jpg",
		91, 85,
		"MATLD002", "Miguel And The Living Dead - Postcards From The Other Side (CD)",
		"", "",
		"12.08", "200",
		"1", 1,
		"Stück", "132",
		"", "pd125390196.htm",
		"", 1,
		"1.M012", "0",
		 0)
	
		Entry[474] = new Element(
		474, "assets/thumb/fifteen-years-kl.jpg",
		85, 77,
		"ALF001", "All Living Fear - Fifteen Years After (2CD)",
		"", "",
		"12.08", "200",
		"1", 1,
		"Stück", "7",
		"", "pd1752488568.htm",
		"", 1,
		"P121", "0",
		 0)
	
		Entry[475] = new Element(
		475, "assets/thumb/forthisispast_kl.jpg",
		85, 85,
		"ENP001", "Ensemble Pittoresque - For This Is Past (CD+Vinyl+Sticker)",
		"Numbered Limited Edition, only 700 copies", "",
		"16.67", "300",
		"1", 1,
		"Stück", "232",
		"", "pd429387013.htm",
		"", 1,
		"P123", "0",
		 0)
	
		Entry[476] = new Element(
		476, "assets/thumb/thisisfuture_kl.jpg",
		85, 85,
		"STO001", "Störung - This Is Future (CD+Vinyl+Sticker)",
		"Numbered Limited Edition, only 700 copies", "",
		"16.67", "300",
		"1", 1,
		"Stück", "249",
		"", "pd1391922875.htm",
		"", 1,
		"P122", "0",
		 0)
	
		Entry[477] = new Element(
		477, "assets/thumb/Induction_kl.jpg",
		85, 85,
		"STO002", "Störung - Induction - the Enochian Remix (MCD)",
		"", "",
		"6.58", "150",
		"1", 1,
		"Stück", "249",
		"", "pd233381729.htm",
		"", 1,
		"P122", "0",
		 0)
	
		Entry[478] = new Element(
		478, "assets/thumb/buch_theartofrozzwilliams_thumb.jpg",
		65, 85,
		"ROZ002", "The Art Of Rozz Williams - From Christian Death to Death (Buch)",
		"", "",
		"29.08", "500",
		"2", 1,
		"Stück", "216",
		"", "pd1233992185.htm",
		"", 1,
		"1.W002", "0",
		 0)
	
		Entry[479] = new Element(
		479, "assets/thumb/dvd_pig_thumb.jpg",
		61, 85,
		"PIG001", "PIG (DVD)",
		"von Rozz Williams und Nico B.", "",
		"29.08", "200",
		"1", 1,
		"Stück", "260",
		"", "pd-1224313649.htm",
		"", 1,
		"2", "0",
		 0)
	
		Entry[480] = new Element(
		480, "assets/thumb/gitanedemone_life_after_thumb.jpg",
		63, 85,
		"GD001", "Gitane Demone - Life After Death (2x DVD + CD)",
		"US- Import, 3 Disc Digipack", "",
		"32.5", "300",
		"1", 1,
		"Stück", "103",
		"", "pd-157663438.htm",
		"", 1,
		"P124", "0",
		 0)
	
		Entry[481] = new Element(
		481, "assets/thumb/joydivision_bestof_kl.jpg",
		85, 85,
		"JOY005", "Joy Division - The Best Of (2CD)",
		"Limited Edition (double CD)", "",
		"11.58", "150",
		"1", 1,
		"Stück", "114",
		"", "pd1817559216.htm",
		"", 1,
		"P20", "0",
		 0)
	
		Entry[482] = new Element(
		482, "assets/thumb/lapestenegra_voices_kl.jpg",
		85, 85,
		"LPN001", "La Peste Negra - Voices From Beyond (CD)",
		"", "",
		"11.25", "150",
		"1", 1,
		"Stück", "154",
		"", "pd1948033671.htm",
		"", 1,
		"P125", "0",
		 0)
	
		Entry[483] = new Element(
		483, "assets/thumb/whispers_chaos_kl.jpg",
		85, 85,
		"WITS001", "Whispers In The Shadow - Into The Arm Of Chaos (CD)",
		"", "",
		"11.58", "120",
		"1", 1,
		"Stück", "215",
		"", "pd1544721760.htm",
		"", 1,
		"P126", "0",
		 0)
	
		Entry[484] = new Element(
		484, "assets/thumb/Descendens_tao_kl.jpg",
		85, 85,
		"DOC001", "Descendants Of Cain - The Tao Of Wisdom and Misery (CD)",
		"", "",
		"11.58", "120",
		"1", 1,
		"Stück", "68",
		"", "pd571318007.htm",
		"", 1,
		"P127", "0",
		 0)
	
		Entry[485] = new Element(
		485, "assets/thumb/deathindresden_seduced_kl.jpg",
		85, 85,
		"DID002", "Death In Dresden - Seduced By The Night (CD)",
		"US Import", "",
		"8.25", "120",
		"1", 1,
		"Stück", "65",
		"", "pd445094397.htm",
		"", 1,
		"P105", "0",
		 0)
	
		Entry[486] = new Element(
		486, "assets/thumb/Katzenjammer_grand_kl.jpg",
		85, 85,
		"KATZ003", "Katzenjammer Kabarett - Grand Guignol &amp; Variétés (CD)",
		"US Import", "",
		"12.08", "120",
		"1", 1,
		"Stück", "117",
		"", "pd-69507981.htm",
		"", 1,
		"P21", "0",
		 0)
	
		Entry[487] = new Element(
		487, "assets/thumb/RevueNoir_anthology_kl.jpg",
		85, 85,
		"RN001", "Revue Noir - Anthology Archive (CD)",
		"US Import", "",
		"12.08", "120",
		"1", 1,
		"Stück", "167",
		"", "pd-1987359962.htm",
		"", 1,
		"P128", "0",
		 0)
	
		Entry[488] = new Element(
		488, "assets/thumb/Lunaire_kl.jpg",
		85, 85,
		"FLI007", "Fliehende Stürme - Lunaire...Spielt mit dem Licht (CD)",
		"", "",
		"12.08", "120",
		"1", 1,
		"Stück", "92",
		"", "pd-1377632828.htm",
		"", 1,
		"1.F004", "0",
		 0)
	
		Entry[489] = new Element(
		489, "assets/thumb/Movement-vol2_kl.jpg",
		85, 85,
		"VAR053", "various artists - Movement One Vol. 2 (CD)",
		"", "",
		"12.08", "120",
		"1", 1,
		"Stück", "222",
		"", "pd-965639321.htm",
		"", 1,
		"1.28", "0",
		 0)
	
		Entry[490] = new Element(
		490, "assets/thumb/manuskript_devilsadvocate_kl.jpg",
		85, 85,
		"MANU003", "Manuskript - Devil´s Advocate (CD)",
		"", "",
		"6.58", "150",
		"1", 1,
		"Stück", "127",
		"", "pd1239286139.htm",
		"", 1,
		"1.M12", "0",
		 0)
	
		Entry[491] = new Element(
		491, "assets/thumb/manuskript_Protect_kl.jpg",
		85, 85,
		"MANU004", "Manuskript - Protect And Survive (CD)",
		"", "",
		"10.42", "150",
		"1", 1,
		"Stück", "127",
		"", "pd-832810975.htm",
		"", 1,
		"1.M12", "0",
		 0)
	
		Entry[492] = new Element(
		492, "assets/thumb/manuskript_diversityOf_kl.jpg",
		85, 85,
		"MANU005", "Manuskript - The Diversity Of Live (CD)",
		"", "",
		"6.58", "150",
		"1", 1,
		"Stück", "127",
		"", "pd-1169746121.htm",
		"", 1,
		"1.M12", "0",
		 0)
	
		Entry[493] = new Element(
		493, "assets/thumb/returntokhafji_betrayal_kl.jpg",
		85, 85,
		"RTK001", "Return To Khafji - Betrayal (CD)",
		"", "",
		"6.58", "150",
		"1", 1,
		"Stück", "166",
		"", "pd-1818184518.htm",
		"", 1,
		"P130", "0",
		 0)
	
		Entry[494] = new Element(
		494, "assets/thumb/vendemmian_onemore_kl.jpg",
		85, 85,
		"VEND005", "Vendemmian - One More Time (CDr)",
		"", "",
		"10.75", "150",
		"1", 1,
		"Stück", "206",
		"", "pd-351383176.htm",
		"", 1,
		"P17", "0",
		 0)
	
		Entry[495] = new Element(
		495, "assets/thumb/moonchild_hownow_kl.jpg",
		85, 85,
		"MO001", "Moonchild - How Now Spirit, wither wander you (CD)",
		"", "",
		"6.58", "150",
		"1", 1,
		"Stück", "136",
		"", "pd-1818879505.htm",
		"", 1,
		"P131", "0",
		 0)
	
		Entry[496] = new Element(
		496, "assets/thumb/moonchild_somewhere_kl.jpg",
		85, 85,
		"MO002", "Moonchild - Somewhere, Someplace, Somehow (CD)",
		"", "",
		"6.58", "150",
		"1", 1,
		"Stück", "136",
		"", "pd355036597.htm",
		"", 1,
		"P131", "0",
		 0)
	
		Entry[497] = new Element(
		497, "assets/thumb/carillon_per_kl.jpg",
		85, 85,
		"CDD001", "Carillon Del Dolore - …per portarti questo scrigno  (2 CD)",
		"", "",
		"13.75", "250",
		"1", 1,
		"Stück", "32",
		"", "pd-792776368.htm",
		"", 1,
		"P132", "0",
		 0)
	
		Entry[498] = new Element(
		498, "assets/thumb/coldphoenix_youreyes_kl.jpg",
		85, 85,
		"CP001", "Cold Phoenix - Your Eyes Are My Eyes (MCD-Digipak)",
		"limited Edition of 500 copies", "",
		"9.58", "200",
		"1", 1,
		"Stück", "49",
		"", "pd802458535.htm",
		"", 1,
		"P133", "0",
		 0)
	
		Entry[499] = new Element(
		499, "assets/thumb/v_a_radioresistencia_kl.jpg",
		85, 85,
		"VAR054", "various artists - Radio Resistencia (CD)",
		"", "",
		"11.25", "150",
		"1", 1,
		"Stück", "222",
		"", "pd1479874093.htm",
		"", 1,
		"1.28", "0",
		 0)
	
		Entry[500] = new Element(
		500, "assets/thumb/Dreams in the witch house_kl.jpg",
		85, 84,
		"VAR055", "various artists - Dreams In The Witch House (CD)",
		"", "",
		"11.58", "150",
		"1", 1,
		"Stück", "222",
		"", "pd-912262109.htm",
		"", 1,
		"1.28", "0",
		 0)
	
		Entry[501] = new Element(
		501, "assets/thumb/screaming-dead-death-rides-out_kl.jpg",
		85, 85,
		"SD001", "Screaming Dead - Death Rides Out",
		"", "",
		"11.58", "150",
		"1", 1,
		"Stück", "174",
		"", "pd-1311185258.htm",
		"", 1,
		"P134", "0",
		 0)
	
		Entry[502] = new Element(
		502, "assets/thumb/Complicity-Playing-God-kl.jpg",
		85, 85,
		"COMP001", "Complicity - Playing God",
		"", "",
		"11.58", "150",
		"1", 1,
		"Stück", "50",
		"", "pd-770857563.htm",
		"", 1,
		"P135", "0",
		 0)
	
		Entry[503] = new Element(
		503, "assets/thumb/pinsandneedles_victims_kl.jpg",
		85, 85,
		"PINS002", "Pins And Needles - Victims (CD)",
		"US Import", "",
		"11.25", "150",
		"1", 1,
		"Stück", "157",
		"", "pd1245491340.htm",
		"", 1,
		"P11", "0",
		 0)
	
		Entry[504] = new Element(
		504, "assets/thumb/brotherhood_only_kl.jpg",
		85, 85,
		"BOP001", "Brotherhood Of Pagans - Only Once (CD)",
		"", "",
		"11.58", "150",
		"1", 1,
		"Stück", "28",
		"", "pd1484008569.htm",
		"", 1,
		"P136", "0",
		 0)
	
		Entry[505] = new Element(
		505, "assets/thumb/cemetarygirlz_smoke_kl.jpg",
		85, 85,
		"TCG001", "The Cemetary Girlz - Smoke My Brain? (CD)",
		"", "",
		"11.58", "150",
		"1", 1,
		"Stück", "38",
		"", "pd-1207494940.htm",
		"", 1,
		"P137", "0",
		 0)
	
		Entry[506] = new Element(
		506, "assets/thumb/deepeynde_darkyears_kl.jpg",
		85, 85,
		"TDE025", "The Deep Eynde - Blackout - The Dark Years (CD+DVD)",
		"", "",
		"15.42", "300",
		"1", 1,
		"Stück", "67",
		"", "pd240183218.htm",
		"", 1,
		"1.D008", "0",
		 0)
	
		Entry[507] = new Element(
		507, "assets/thumb/dramaofthespheres_integrale_kl.jpg",
		85, 85,
		"DOTS001", "Drama Of The Spheres - Intégrale (DCD)",
		"", "",
		"15.75", "150",
		"1", 1,
		"Stück", "74",
		"", "pd872071537.htm",
		"", 1,
		"P138", "0",
		 0)
	
		Entry[508] = new Element(
		508, "assets/thumb/edenhouse_smoke_kl.jpg",
		85, 85,
		"TEH001", "The Eden House - Smoke And Mirrors (CD)",
		"", "",
		"11.58", "150",
		"1", 1,
		"Stück", "81",
		"", "pd-1222541252.htm",
		"", 1,
		"P139", "0",
		 0)
	
		Entry[509] = new Element(
		509, "assets/thumb/monozid_sayhello_kl.jpg",
		85, 85,
		"MONO003", "Monozid - Say Hello To Artificial Grey (CD)",
		"", "",
		"11.25", "150",
		"1", 1,
		"Stück", "135",
		"", "pd1822675146.htm",
		"", 1,
		"P9", "0",
		 0)
	
		Entry[510] = new Element(
		510, "assets/thumb/sound_the_bbc_kl.jpg",
		85, 85,
		"SOUND001", "The Sound - The BBC Recordings (DCD)",
		"", "",
		"13.25", "250",
		"1", 1,
		"Stück", "191",
		"", "pd-1682813591.htm",
		"", 1,
		"P140", "0",
		 0)
	
		Entry[511] = new Element(
		511, "assets/thumb/va_darknessbeforedawn_kl.jpg",
		85, 85,
		"VAR056", "various artists - Darkness Before Dawn Vol. 1 (DCD)",
		"", "",
		"11.58", "250",
		"1", 1,
		"Stück", "222",
		"", "pd2042721727.htm",
		"", 1,
		"1.28", "0",
		 0)
	
		Entry[512] = new Element(
		512, "assets/thumb/va_onlytheatreofpain_kl.jpg",
		85, 85,
		"VAR057", "various artists - Only Theatre Of Pain Tribute (CD)",
		"", "",
		"11.58", "150",
		"1", 1,
		"Stück", "222",
		"", "pd256470533.htm",
		"", 1,
		"1.28", "0",
		 0)
	
		Entry[513] = new Element(
		513, "assets/thumb/va_anyonecanbe_kl.jpg",
		85, 85,
		"VAR058", "various artists - Anyone Can Be A Virgin Prunes (CD)",
		"", "",
		"11.58", "150",
		"1", 1,
		"Stück", "222",
		"", "pd-890734661.htm",
		"", 1,
		"1.28", "0",
		 0)
	
		Entry[514] = new Element(
		514, "assets/thumb/siouxsie_bbc_dvd_kl.jpg",
		61, 85,
		"SIOUX002", "Siouxsie And The Banshees - At The BBC (3CD + DVD)",
		"4-CD Box Set", "",
		"24.92", "200",
		"1", 1,
		"Stück", "182",
		"", "pd635066495.htm",
		"", 1,
		"P26", "0",
		 0)
	
		Entry[515] = new Element(
		515, "assets/thumb/nimvind_stillnes_kl.jpg",
		85, 85,
		"VIND002", "Nim Vind - The Stillnes Illness (2-CD)",
		"Limited Edition mit Bonus Promo-CD", "",
		"14.08", "200",
		"1", 1,
		"Stück", "144",
		"", "pd-1040183611.htm",
		"", 1,
		"1.V007", "0",
		 0)
	
		Entry[516] = new Element(
		516, "assets/thumb/crawling_mag4_kl.jpg",
		60, 85,
		"CRTU004", "Crawling Tunes Magazine - Issue 4",
		"", "",
		"3.33", "300",
		"1", 1,
		"Stück", "279",
		"", "pd1255862639.htm",
		"", 1,
		"P79", "0",
		 0)
	
		Entry[517] = new Element(
		517, "assets/thumb/christiandeath_deathwish_kl.jpg",
		85, 85,
		"CHD018", "Christian Death - Deathwish (CD)",
		"", "",
		"7.08", "150",
		"1", 1,
		"Stück", "44",
		"", "pd333975861.htm",
		"", 1,
		"1.C002", "0",
		 0)
	
		Entry[518] = new Element(
		518, "assets/thumb/christiandeath_sixsixsixth_kl.jpg",
		85, 85,
		"CHD019", "Christian Death - Six, Six, Sixth (CD)",
		"US Import inkl. Button", "",
		"15.42", "150",
		"1", 1,
		"Stück", "44",
		"", "pd733908587.htm",
		"", 1,
		"1.C002", "0",
		 0)
	
		Entry[519] = new Element(
		519, "assets/thumb/va_pls2_kl.jpg",
		85, 85,
		"VAR059", "various artists - Pagan Love Songs Vol. 2 (2CD)",
		"", "",
		"13.33", "200",
		"1", 1,
		"Stück", "222",
		"", "pd1258809477.htm",
		"", 1,
		"1.28", "0",
		 0)
	
		Entry[520] = new Element(
		520, "assets/thumb/ikon_love,hate_kl.jpg",
		85, 85,
		"IKON012", "IKON - Love, Hate and Sorrow (2CD)",
		"Australian Import, Limited Edition of 100 copies", "",
		"15.42", "200",
		"1", 1,
		"Stück", "111",
		"", "pd333805115.htm",
		"", 1,
		"1.I001", "0",
		 0)
	
		Entry[521] = new Element(
		521, "assets/thumb/ikon_league_kl.jpg",
		85, 85,
		"IKON013", "IKON - League Of Nations (MCD)",
		"Australian Import - limited Edition of 300 copies", "",
		"10", "150",
		"1", 1,
		"Stück", "111",
		"", "pd1923863265.htm",
		"", 1,
		"1.I001", "0",
		 0)
	
		Entry[522] = new Element(
		522, "assets/thumb/ikon_amongst_kl.jpg",
		85, 85,
		"IKON014", "IKON - Amongst The Runes (MCD)",
		"Australien Import", "",
		"10", "150",
		"1", 1,
		"Stück", "111",
		"", "pd1184192503.htm",
		"", 1,
		"1.I001", "0",
		 0)
	
		Entry[523] = new Element(
		523, "assets/thumb/Voodoo_Church_EOD_kl.jpg",
		85, 85,
		"VODO002", "Voodoo Church - Eminence Of Demons (CD)",
		"incl. Button", "",
		"11.58", "150",
		"1", 1,
		"Stück", "210",
		"", "pd-2028340483.htm",
		"", 1,
		"1.V005", "0",
		 0)
	
		Entry[524] = new Element(
		524, "assets/thumb/Telegram_Frank_LCM_kl.jpg",
		85, 85,
		"TF001", "Telegram Frank - Low Cloud Medicine (CD)",
		"incl. Button", "",
		"11.58", "150",
		"1", 1,
		"Stück", "199",
		"", "pd1458294584.htm",
		"", 1,
		"P142", "0",
		 0)
	
		Entry[525] = new Element(
		525, "assets/thumb/Pagan_Love_Songs_Shirt_kl.jpg",
		96, 85,
		"PALO002", "Pagan Love Songs Compilation T-Shirt",
		"", "",
		"9.08", "200",
		"1", 1,
		"Stück", "269",
		"", "pd795620015.htm",
		"", 1,
		"3.P002", "0",
		 0)
	
		Entry[526] = new Element(
		526, "assets/thumb/Blacklist_Shirt_kl.jpg",
		96, 85,
		"BLI003", "Blacklist - T-Shirt",
		"", "",
		"9.08", "200",
		"1", 1,
		"Stück", "263",
		"", "pd1722301905.htm",
		"", 1,
		"P143", "0",
		 0)
	
		Entry[527] = new Element(
		527, "assets/thumb/murnausplayhouse_cover_kl.jpg",
		85, 85,
		"MUP001", "Murnau&rsquo;s Playhouse - Sanity Show (CD)",
		"Finland Import", "",
		"11.25", "150",
		"1", 1,
		"Stück", "140",
		"", "pd-825806388.htm",
		"", 1,
		"P144", "0",
		 0)
	
		Entry[528] = new Element(
		528, "assets/thumb/heartsfail_dyingseason_kl.jpg",
		85, 85,
		"HEART002", "Hearts Fail - The Dying Season (CD)",
		"US Import im Kartonschuber", "",
		"11.25", "150",
		"1", 1,
		"Stück", "107",
		"", "pd69541082.htm",
		"", 1,
		"1.H005", "0",
		 0)
	
		Entry[529] = new Element(
		529, "assets/thumb/Fangs-On-Fur-kl.jpg",
		85, 85,
		"FOF001", "Fangs On Fur - Fangs On Fur (CD)",
		"Us Import", "",
		"11.25", "150",
		"1", 1,
		"Stück", "90",
		"", "pd-362649415.htm",
		"", 1,
		"P145", "0",
		 0)
	
		Entry[530] = new Element(
		530, "assets/thumb/eternal-fall-the-ninth-sphere-kl.jpg",
		85, 85,
		"TEF001", "The Eternal Fall - The Ninth Sphere (CDr)",
		"", "",
		"11.25", "150",
		"1", 1,
		"Stück", "84",
		"", "pd1927498556.htm",
		"", 1,
		"P146", "0",
		 0)
	
		Entry[531] = new Element(
		531, "assets/thumb/eternal-fall-a-part-dies-kl.jpg",
		85, 85,
		"TEF002", "The Eternal Fall - A Part Dies (CDr)",
		"", "",
		"11.25", "150",
		"1", 1,
		"Stück", "84",
		"", "pd587633610.htm",
		"", 1,
		"P146", "0",
		 0)
	
		Entry[532] = new Element(
		532, "assets/thumb/eternal-fall-alone-kl.jpg",
		85, 85,
		"TEF003", "The Eternal Fall - Alone (CDr)",
		"", "",
		"11.25", "150",
		"1", 1,
		"Stück", "84",
		"", "pd114394888.htm",
		"", 1,
		"P146", "0",
		 0)
	
		Entry[533] = new Element(
		533, "assets/thumb/Blue-Kremlin-Collection_kl.jpg",
		85, 85,
		"BKR001", "Blue Kremlin - The Collection 1984-1986 (CD)",
		"Digipack", "",
		"11.25", "200",
		"1", 1,
		"Stück", "25",
		"", "pd1694117055.htm",
		"", 1,
		"P147", "0",
		 0)
	
		Entry[534] = new Element(
		534, "assets/thumb/Storm_Rider_kl.jpg",
		85, 85,
		"PINK004", "Pink Turns Blue - Storm Rider / Run From Me (7&quot; Vinyl Single)",
		"Strictly limited to 300 copies", "",
		"6.58", "200",
		"1", 1,
		"Stück", "156",
		"", "pd1275314758.htm",
		"", 1,
		"1.P04", "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>Leider wurde kein entsprechendes Produkt gefunden. Bitte versuche es erneut...</TD></TR>"
				else return("");
				};
			};
		if(mySearchEngine.init=="false") return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap>Du hast keine Suchkriterien angegeben. Bitte gib Dein Suchwort ein!</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();
			};
		};