	// define buildUp Methods for StandAloneElements
	function createLine(){
		myLine = new clsObject("OrderBody")
			myLine.LinePos						=	xmlOHeader.childNodes.length;
			myLine.ProductNo					=	"";
			myLine.Name							=	"";
			myLine.Description					=	"";
			myLine.PriceUserEntry				=	"";
			myLine.PriceUnit					=	"1";
			myLine.MinOrder						=	"1";
			myLine.QuantityUnit					=	"";
			myLine.QuantityAmount				=	"1";
			myLine.TaxClass						=	"0";
			myLine.TaxRate						=	"0";
			myLine.TaxAmountLineTotalLC			=	"0";
			myLine.TaxAmountLineTotalSC			=	"0";
			myLine.DiscountRate					=	"0";
			myLine.DiscountNetSingleUnitLC		=	"0";
			myLine.DiscountGrossSingleUnitLC	=	"0";
			myLine.DiscountNetLineTotalLC		=	"0";
			myLine.DiscountGrossLineTotalLC		=	"0";
			myLine.DiscountNetSingleUnitSC		=	"0";
			myLine.DiscountGrossSingleUnitSC	=	"0";
			myLine.DiscountNetLineTotalSC		=	"0";
			myLine.DiscountGrossLineTotalSC		=	"0";
			myLine.PriceNetSingleUnitLC			=	"0";
			myLine.PriceGrossSingleUnitLC		=	"0";
			myLine.PriceNetLineTotalLC			=	"0";
			myLine.PriceGrossLineTotalLC		=	"0";
			myLine.PriceNetSingleUnitSC			=	"0";
			myLine.PriceGrossSingleUnitSC		=	"0";
			myLine.PriceNetLineTotalSC			=	"0";
			myLine.PriceGrossLineTotalSC		=	"0";
			myLine.WeightUnit					=	"";
			myLine.WeightAmountSingleUnit		=	"0";
			myLine.WeightAmountLineTotal		=	"0";
			// remove
			myLine.addNode("Internal");
	// return Line-Object to Caller
	return myLine;
	};
// 
	function addToBag(anElement,Amount){
		with(this){
			var taxamount = taxarea[parseInt(xmlConfig.taxarea)][parseInt(anElement.Tax) + 1];
			var update = -1;
			myLines = xmlOHeader.childNodes
			for(var i=0;i<myLines.length;i++){
				if(myLines[i].ProductNo==anElement.Prod_nr){
					update = i;
					break;
					};
				};
			// product already in shoppingcard
			if(update>-1){
				// detect position of prod_nr in shoppingcart
				myLines[i].QuantityAmount = Amount;
				if(boolPriceTaxIncl){
					myLines[i].PriceNetLineTotalLC = anElement.Price * Amount * ( 1 - taxamount/( 100 + taxamount ));
					myLines[i].PriceGrossLineTotalLC = anElement.Price * Amount;
					}
				else{
					myLines[i].PriceNetLineTotalLC = anElement.Price * Amount;
					myLines[i].PriceGrossLineTotalLC = anElement.Price * Amount * ( 1 + taxamount/100 );
					};
				}
			// add product to shoppingcart
			else{
				myLine = createLine();
				myLine.ProductNo = anElement.Prod_nr;
				myLine.Name = anElement.Title;
				myLine.Description = anElement.Subtitle;
				myLine.QuantityAmount = Amount;
				myLine.QuantityUnit = anElement.Unitdesc;
				myInternal = myLine.getFirstItem("Internal")
					myInternal.price = anElement.Price;
					myInternal.address = anElement.LnkAdress;
					myInternal.navIndex = anElement.NavIndex;
					myInternal.discount = anElement.Discount;
					myInternal.minOrder = anElement.Minorder;
					myInternal.variants = anElement.Variants;
					myInternal.catDiscount = anElement.catDiscount;
				
				myLine.WeightAmountSingleUnit = parseFloat(anElement.Weight);
				myLine.WeightAmountLineTotal = parseFloat(anElement.Weight) * parseInt(Amount);
				
				myLine.TaxClass = anElement.Tax;
				myLine.TaxRate = taxamount;
				
				myLine.PriceUnit = anElement.PriceUnit;
				
				if(boolPriceTaxIncl){
					myLine.PriceNetSingleUnitLC = parseFloat(anElement.Price) * ( 1 - taxamount/( 100 + taxamount ) );
					myLine.PriceNetLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount) * ( 1 - taxamount/( 100 + taxamount ) );
					myLine.PriceGrossSingleUnitLC = parseFloat(anElement.Price);
					myLine.PriceGrossLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount);
					}
				else{
					myLine.PriceNetSingleUnitLC = parseFloat(anElement.Price);
					myLine.PriceNetLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount);
					myLine.PriceGrossSingleUnitLC = parseFloat(anElement.Price) * ( 1 + taxamount/100 );
					myLine.PriceGrossLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount) * ( 1 + taxamount/100 );
					};
				myLines[myLines.length] = myLine;
				};
			safeData();
			var dummyQueryString = "";
			if(Element){
				dummyQueryString += "productId=" + anElement.Prod_No + "&quantity=" + Amount;
				};
			location.href="orderform.htm?" + dummyQueryString;
			};
		};
// ** 1105
	function TElementPrint(){
		var boolDisplArtId = "true";
		var variants, variantString = "";
		variants = this.Variants.split("@");
		for(var i=0; i<variants.length - 1; i++){
			variantString += "search" + i + "_EQ_" + variants[i].split(";")[1] + "_AND_"; 
			};
		variantString += "{EOL}";
		
		var addToBag = '<img src="assets/images/btnaddtobag.gif" width="147" height="13" alt="Artikel merken" 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. <a href="assets/own/vk.html"><FONT color=#000000>Versandkosten</a></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/ab_002_listbild.jpg",
		133, 200,
		"ab-002-1", "Yvi learns Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "7",
		"Lieferform;Download@", "pd-1607765576.htm",
		"", 1,
		"1001", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/ab_003_listbild.jpg",
		200, 133,
		"ab-003-1", "Jenny - training a pony girl",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "7",
		"Lieferform;Download@", "pd-1817821429.htm",
		"", 1,
		"1001", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/ab_004_listbild.jpg",
		200, 133,
		"ab-004-1", "Silvi: Tied and Tickled",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "7",
		"Lieferform;Download@", "pd994393226.htm",
		"", 1,
		"1001", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/ab_005_listbild.jpg",
		133, 200,
		"ab-005-1", "Gothic Girl in Trouble 1",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "7",
		"Lieferform;Download@", "pd-177620795.htm",
		"", 1,
		"1001", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/ab_006_listbild.jpg",
		200, 133,
		"ab-006-1", "Gothic Girl in Trouble 2",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "7",
		"Lieferform;Download@", "pd1630224812.htm",
		"", 1,
		"1001", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/ab_007_listbild.jpg",
		200, 133,
		"ab-007-1", "Silvi: Kidnapped",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "7",
		"Lieferform;Download@", "pd190818543.htm",
		"", 1,
		"1001", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/ab_008_listbild.jpg",
		200, 133,
		"ab-008-1", "Suspension",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "7",
		"Lieferform;Download@", "pd925582078.htm",
		"", 1,
		"1001", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/ab_009_listbild.jpg",
		200, 133,
		"ab-009-1", "Yvis feet and more",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "7",
		"Lieferform;Download@", "pd374006281.htm",
		"", 1,
		"1001", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/ab_010_listbild.jpg",
		200, 133,
		"ab-010-1", "Melanies first time",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "8",
		"Lieferform;Download@", "pd-850297600.htm",
		"", 1,
		"1002", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/ab_011_listbild.jpg",
		133, 200,
		"ab-011-1", "The Interrogation - Das Verhör",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "8",
		"Lieferform;Download@", "pd268907155.htm",
		"", 1,
		"1002", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/ab_012_listbild.jpg",
		200, 133,
		"ab-012-1", "Peek a boo...",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "8",
		"Lieferform;Download@", "pd621418546.htm",
		"", 1,
		"1002", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/ab_013_listbild.jpg",
		133, 200,
		"ab-013-1", "The Bondage Game - Teil 1",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "8",
		"Lieferform;Download@", "pd-1707165194.htm",
		"", 1,
		"1002", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/ab_014_listbild.jpg",
		133, 200,
		"ab-014-1", "The Bondage Game - Teil 2",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "8",
		"Lieferform;Download@", "pd-48743711.htm",
		"", 1,
		"1002", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/ab_015_listbild.jpg",
		200, 133,
		"ab-015-1", "Blanket Mummy - Yvi + Silvi",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "8",
		"Lieferform;Download@", "pd-2089287689.htm",
		"", 1,
		"1002", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/ab_016_listbild.jpg",
		200, 133,
		"ab-016-1", "Blanket Mummy - Jassi",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "8",
		"Lieferform;Download@", "pd1756034394.htm",
		"", 1,
		"1002", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/ab_017_listbild.jpg",
		200, 133,
		"ab-017-1", "Ropes!",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "8",
		"Lieferform;Download@", "pd-1503446827.htm",
		"", 1,
		"1002", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/ab_018_listbild.jpg",
		200, 133,
		"ab-018-1", "Hot Jassi - Cold Steel",
		"", "",
		"44", "0.3",
		"1", 1,
		"Stück", "8",
		"Lieferform;Download@", "pd1018181116.htm",
		"", 1,
		"1002", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/ab_020_listbild.jpg",
		133, 200,
		"ab-020-1", "Pyjama-Bondage",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "9",
		"Lieferform;Download@", "pd-369315201.htm",
		"", 1,
		"1003", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/ab_021_listbild.jpg",
		200, 133,
		"ab-021-1", "Hitchhiker",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "9",
		"Lieferform;Download@", "pd-1652635954.htm",
		"", 1,
		"1003", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/ab_022_listbild.jpg",
		200, 134,
		"ab-022-1", "Tickled again",
		"", "",
		"29.95", "0.3",
		"1", 1,
		"Stück", "9",
		"Lieferform;Download@", "pd1666783513.htm",
		"", 1,
		"1003", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/ab_023_listbild.jpg",
		133, 200,
		"ab-023-1", "French Maid",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "9",
		"Lieferform;Download@", "pd1928194287.htm",
		"", 1,
		"1003", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/ab_024_listbild.jpg",
		200, 132,
		"ab-024-1", "Cathys Casting",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "9",
		"Lieferform;Download@", "pd2017624830.htm",
		"", 1,
		"1003", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/ab_025_listbild.jpg",
		200, 132,
		"ab-025-1", "Witchhunter",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "9",
		"Lieferform;Download@", "pd508376834.htm",
		"", 1,
		"1003", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/ab_026_listbild.jpg",
		200, 132,
		"ab-026-1", "Kidnapped in the forest",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "9",
		"Lieferform;Download@", "pd-204537059.htm",
		"", 1,
		"1003", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/ab_027_listbild.jpg",
		132, 200,
		"ab-027-1", "Yvi: Trained and Self-Bondage",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "9",
		"Lieferform;Download@", "pd2052862820.htm",
		"", 1,
		"1003", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/ab_028_listbild.jpg",
		200, 132,
		"ab-028-1", "The Thief",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "9",
		"Lieferform;Download@", "pd1238783879.htm",
		"", 1,
		"1003", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/ab_029_listbild.jpg",
		132, 200,
		"ab-029-1", "Nadine - Beginning of a Passion",
		"", "",
		"29.95", "0.3",
		"1", 1,
		"Stück", "9",
		"Lieferform;Download@", "pd-451020298.htm",
		"", 1,
		"1003", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/ab_030_listbild.jpg",
		200, 134,
		"ab-030-1", "Leotardbondage - Attack at the training",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "10",
		"Lieferform;Download@", "pd-232694306.htm",
		"", 1,
		"1004", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/ab_031_listbild.jpg",
		200, 134,
		"ab-031-1", "Cathy: Secured in Steel",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "10",
		"Lieferform;Download@", "pd-1804390596.htm",
		"", 1,
		"1004", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/ab_032_listbild.jpg",
		200, 134,
		"ab-032-1", "Jane: Testing her Power",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "10",
		"Lieferform;Download@", "pd1452313824.htm",
		"", 1,
		"1004", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/ab_033_listbild.jpg",
		200, 134,
		"ab-033-1", "Abducted!",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "10",
		"Lieferform;Download@", "pd-2132043277.htm",
		"", 1,
		"1004", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/ab_034_listbild.jpg",
		133, 200,
		"ab-034-1", "Punished Lolita",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "10",
		"Lieferform;Download@", "pd266944743.htm",
		"", 1,
		"1004", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/ab_036_listbild.jpg",
		200, 134,
		"ab-036-1", "Cathy trains for winter",
		"", "",
		"46", "0.3",
		"1", 1,
		"Stück", "10",
		"Lieferform;Download@", "pd-2000302739.htm",
		"", 1,
		"1004", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/ab_037_listbild.jpg",
		200, 134,
		"ab-037-1", "Forbidden Selfbondage",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "10",
		"Lieferform;Download@", "pd1292301633.htm",
		"", 1,
		"1004", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/ab_038_listbild.jpg",
		200, 134,
		"ab-038-1", "Aerobic Girl in Trouble",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "10",
		"Lieferform;Download@", "pd-2038251177.htm",
		"", 1,
		"1004", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/ab_039_listbild.jpg",
		200, 134,
		"ab-039-1", "Girlfriends in Bondage",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "10",
		"Lieferform;Download@", "pd-699650298.htm",
		"", 1,
		"1004", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/ab_040_listbild.jpg",
		200, 134,
		"ab-040-1", "The Colleagues Revenge",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "11",
		"Lieferform;Download@", "pd1044007675.htm",
		"", 1,
		"1005", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/ab_041_listbild.jpg",
		200, 134,
		"ab-041-1", "Laughing Silvi",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "11",
		"Lieferform;Download@", "pd2004550714.htm",
		"", 1,
		"1005", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/ab_042_listbild.jpg",
		200, 134,
		"ab-042-1", "Silvi&rsquo;s bad friend",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "11",
		"Lieferform;Download@", "pd-2113578187.htm",
		"", 1,
		"1005", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/ab_043_listbild.jpg",
		200, 134,
		"ab-043-1", "Lycra Bondage",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "11",
		"Lieferform;Download@", "pd-208528932.htm",
		"", 1,
		"1005", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/ab_044_listbild.jpg",
		200, 134,
		"ab-044-1", "First Steps",
		"", "",
		"46", "0.3",
		"1", 1,
		"Stück", "11",
		"Lieferform;Download@", "pd768622047.htm",
		"", 1,
		"1005", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/ab_045_listbild.jpg",
		200, 134,
		"ab-045-1", "Cat Womans Defeat",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "11",
		"Lieferform;Download@", "pd1885403054.htm",
		"", 1,
		"1005", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/ab_046_listbild.jpg",
		200, 134,
		"ab-046-1", "Yvi: Hot Feet",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "11",
		"Lieferform;Download@", "pd2037147001.htm",
		"", 1,
		"1005", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/ab_047_listbild.jpg",
		200, 134,
		"ab-047-1", "Paper Gags",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "11",
		"Lieferform;Download@", "pd222624304.htm",
		"", 1,
		"1005", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/ab_048_listbild.jpg",
		200, 134,
		"ab-048-1", "Nadine: Chains and more",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "11",
		"Lieferform;Download@", "pd-1854717821.htm",
		"", 1,
		"1005", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/ab_049_listbild.jpg",
		133, 200,
		"ab-049-1", "The Package",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "11",
		"Lieferform;Download@", "pd1780902370.htm",
		"", 1,
		"1005", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/ab_050_listbild.jpg",
		200, 134,
		"ab-050-1", "Captive for the Orient",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "12",
		"Lieferform;Download@", "pd1310972285.htm",
		"", 1,
		"1006", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/ab_052_listbild.jpg",
		133, 200,
		"ab-052-1", "Fatal Blind Date",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "12",
		"Lieferform;Download@", "pd-1030448316.htm",
		"", 1,
		"1006", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/ab_053_listbild.jpg",
		200, 134,
		"ab-053-1", "The Spy",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "12",
		"Lieferform;Download@", "pd1350156904.htm",
		"", 1,
		"1006", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/ab_056_listbild.jpg",
		200, 134,
		"ab-056-1", "Yvis Drill - practice makes perfect",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "12",
		"Lieferform;Download@", "pd1188577179.htm",
		"", 1,
		"1006", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/ab_057_listbild.jpg",
		200, 134,
		"ab-057-1", "Pony Games",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "12",
		"Lieferform;Download@", "pd993533455.htm",
		"", 1,
		"1006", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/ab_058_listbild.jpg",
		200, 134,
		"ab-058-1", "Casting Sissels",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "12",
		"Lieferform;Download@", "pd-204426082.htm",
		"", 1,
		"1006", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/wv_999_listbild.jpg",
		200, 133,
		"wv-999-2", "Wunschvideo",
		"2 Girls", "",
		"249", "0.3",
		"1", 1,
		"Stück", "39",
		"Darsteller;2 Girls@", "pd946575158.htm",
		"", 1,
		"10010", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/ab_060_listbild.jpg",
		200, 134,
		"ab-060-1", "Sunny in Action",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "13",
		"Lieferform;Download@", "pd1656383572.htm",
		"", 1,
		"1007", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/ab_062_listbild.jpg",
		200, 150,
		"ab-062-1", "Roped in the Forest",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "13",
		"Lieferform;Download@", "pd494414903.htm",
		"", 1,
		"1007", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/ab_063_listbild.jpg",
		200, 160,
		"ab-063-1", "Captive Businesswoman",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "13",
		"Lieferform;Download@", "pd641998182.htm",
		"", 1,
		"1007", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/ab_064_1_listbild.jpg",
		200, 160,
		"ab-064-a-1", "Lesbian Gothic Girls (1)",
		"", "",
		"29.95", "0.3",
		"1", 1,
		"Stück", "13",
		"Lieferform;Download@", "pd865540113.htm",
		"", 1,
		"1007", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/ab_064_2_listbild.jpg",
		200, 160,
		"ab-064-b-1", "Lesbian Gothic Girls (2)",
		"", "",
		"29.95", "0.3",
		"1", 1,
		"Stück", "13",
		"Lieferform;Download@", "pd-1375559003.htm",
		"", 1,
		"1007", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/ab_065_listbild.jpg",
		200, 160,
		"ab-065-1", "Angel meets Devil",
		"", "",
		"46", "0.3",
		"1", 1,
		"Stück", "13",
		"Lieferform;Download@", "pd1014263759.htm",
		"", 1,
		"1007", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/ab_066_listbild.jpg",
		200, 160,
		"ab-066-1", "Caged Girl - Trained like a Pony",
		"", "",
		"29.95", "0.3",
		"1", 1,
		"Stück", "13",
		"Lieferform;Download@", "pd-908395170.htm",
		"", 1,
		"1007", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/ab_067_listbild.jpg",
		200, 160,
		"ab-067-1", "Babsis first video",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "13",
		"Lieferform;Download@", "pd1652473321.htm",
		"", 1,
		"1007", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/ab_068_listbild.jpg",
		200, 160,
		"ab-068-1", "Kept like a Dog",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "13",
		"Lieferform;Download@", "pd1266999392.htm",
		"", 1,
		"1007", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/ab_069_listbild.jpg",
		200, 160,
		"ab-069-1", "The Company",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "13",
		"Lieferform;Download@", "pd-785998989.htm",
		"", 1,
		"1007", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/ab_070_listbild.jpg",
		200, 160,
		"ab-070-1", "Claustrophobia",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "14",
		"Lieferform;Download@", "pd1604680850.htm",
		"", 1,
		"1008", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/ab_071_listbild.jpg",
		200, 160,
		"ab-071-1", "The Ultimate Mummy",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "14",
		"Lieferform;Download@", "pd670937837.htm",
		"", 1,
		"1008", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/ab_072_listbild.jpg",
		150, 200,
		"ab-072-1", "Wenn die Zeit stillsteht",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "14",
		"Lieferform;Download@", "pd-1888401804.htm",
		"", 1,
		"1008", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/ab_073_listbild.jpg",
		200, 150,
		"ab-073-1", "Casting Monique",
		"", "",
		"36", "0.3",
		"1", 1,
		"Stück", "14",
		"Lieferform;Download@", "pd-742462761.htm",
		"", 1,
		"1008", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/ab_074_listbild.jpg",
		200, 150,
		"ab-074-1", "Hot Girls - Heavy Bondage",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "14",
		"Lieferform;Download@", "pd212682973.htm",
		"", 1,
		"1008", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/sis_001_listbild.jpg",
		200, 160,
		"sis-001-1", "Psycho Experiments - Teil 1",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "79",
		"Lieferform;Download@", "pd-1574286065.htm",
		"", 1,
		"6000", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/sis_002_listbild.jpg",
		200, 160,
		"sis-002-1", "Psycho Experiments - Teil 2",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "79",
		"Lieferform;Download@", "pd1695571870.htm",
		"", 1,
		"6000", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/sis_003_listbild.jpg",
		200, 160,
		"sis-003-1", "Psycho Experiments - Teil 3",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "79",
		"Lieferform;Download@", "pd189135145.htm",
		"", 1,
		"6000", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/sis_pack_listbild.jpg",
		200, 160,
		"sis-pack-1", "Pycho Experiments - alle 3 Teile im Sparpaket",
		"", "",
		"99", "0.3",
		"1", 1,
		"Stück", "79",
		"Lieferform;Download@", "pd1456689213.htm",
		"", 1,
		"6000", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/bb_001_listbild.jpg",
		200, 201,
		"bb-001", "Lust and Pain",
		"", "",
		"69.9", "0",
		"2", 1,
		"Stück", "107",
		"", "pd-1995926065.htm",
		"", 1,
		"12001", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/bb_002_listbild.jpg",
		195, 256,
		"bb-002", "Fetish Theatre",
		"", "",
		"49.9", "0",
		"2", 1,
		"Stück", "107",
		"", "pd-1078735723.htm",
		"", 1,
		"12001", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/bb_003_listbild.jpg",
		193, 252,
		"bb-003", "Shaven Angels",
		"", "",
		"59.9", "0",
		"2", 1,
		"Stück", "107",
		"", "pd919746763.htm",
		"", 1,
		"12001", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/bb_004_listbild.jpg",
		194, 255,
		"bb-004", "Shaven Angels 2",
		"", "",
		"59.9", "0",
		"2", 1,
		"Stück", "107",
		"", "pd1044436609.htm",
		"", 1,
		"12001", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/bb_005_listbild.jpg",
		158, 200,
		"bb-005", "Bettina Rheims - Female Trouble",
		"", "",
		"24.8", "0",
		"2", 1,
		"Stück", "107",
		"", "pd938247319.htm",
		"", 1,
		"12001", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/bb_006_listbild.jpg",
		121, 140,
		"bb-006", "Bettina Rheims - INRI",
		"", "",
		"65.95", "0",
		"2", 1,
		"Stück", "107",
		"", "pd-1803323235.htm",
		"", 1,
		"12001", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/bb_007_listbild.jpg",
		148, 200,
		"bb-007", "Allegro sensibile",
		"", "",
		"35", "0",
		"2", 1,
		"Stück", "107",
		"", "pd419488787.htm",
		"", 1,
		"12001", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/bb_009_listbild.jpg",
		149, 200,
		"bb-009", "Shaven Beauty Mystery",
		"", "",
		"49.9", "0",
		"2", 1,
		"Stück", "107",
		"", "pd1062867791.htm",
		"", 1,
		"12001", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/bb_010_listbild.jpg",
		150, 129,
		"bb-010", "ma poupée japonaise",
		"", "",
		"39.9", "0",
		"2", 1,
		"Stück", "107",
		"", "pd1344767509.htm",
		"", 1,
		"12001", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/bb_011_listbild.jpg",
		115, 140,
		"bb-011", "Take a walk on the wild side",
		"", "",
		"29.95", "0",
		"2", 1,
		"Stück", "107",
		"", "pd-610103733.htm",
		"", 1,
		"12001", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/bb_012_listbild.jpg",
		135, 159,
		"bb-012", "Der letzte Tag des Sommers",
		"", "",
		"39.9", "0",
		"2", 1,
		"Stück", "107",
		"", "pd22866289.htm",
		"", 1,
		"12001", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/bb_014_listbild.jpg",
		135, 162,
		"bb-014", "Lewis Carroll - Reflexionen im Spiegel",
		"", "",
		"49.9", "0",
		"2", 1,
		"Stück", "107",
		"", "pd-30532979.htm",
		"", 1,
		"12001", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/bb_015_listbild.jpg",
		135, 148,
		"bb-015", "Augenblicke der Verführung",
		"", "",
		"19.9", "0",
		"2", 1,
		"Stück", "107",
		"", "pd-1012525181.htm",
		"", 1,
		"12001", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/bb_016_listbild.jpg",
		135, 205,
		"bb-016", "Verführungen",
		"", "",
		"49.9", "0",
		"2", 1,
		"Stück", "107",
		"", "pd614561129.htm",
		"", 1,
		"12001", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/bb_017_listbild.jpg",
		142, 200,
		"bb-017", "Naked Woman",
		"", "",
		"39.9", "0",
		"2", 1,
		"Stück", "107",
		"", "pd1273290175.htm",
		"", 1,
		"12001", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/bb_018_listbild.jpg",
		142, 200,
		"bb-018", "Erotisches Tagebuch",
		"", "",
		"10", "0",
		"2", 1,
		"Stück", "107",
		"", "pd-692382203.htm",
		"", 1,
		"12001", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/bb_019_listbild.jpg",
		142, 200,
		"bb-019", "Grands Nus",
		"", "",
		"39.9", "0",
		"2", 1,
		"Stück", "107",
		"", "pd961699771.htm",
		"", 1,
		"12001", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/bb_020_listbild.jpg",
		142, 200,
		"bb-020", "Femmes - Erotische AugenBlicke",
		"", "",
		"39.9", "0",
		"2", 1,
		"Stück", "107",
		"", "pd1675155553.htm",
		"", 1,
		"12001", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/bb_021_listbild.jpg",
		142, 200,
		"bb-021", "Sequenzen",
		"", "",
		"39.9", "0",
		"2", 1,
		"Stück", "107",
		"", "pd-1301292681.htm",
		"", 1,
		"12001", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/bb_022_listbild.jpg",
		142, 200,
		"bb-022", "Just Naked!",
		"", "",
		"39.9", "0",
		"2", 1,
		"Stück", "107",
		"", "pd-1613866883.htm",
		"", 1,
		"12001", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/bb_023_listbild.jpg",
		142, 200,
		"bb-023", "Venus",
		"", "",
		"39.9", "0",
		"2", 1,
		"Stück", "107",
		"", "pd-701872397.htm",
		"", 1,
		"12001", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/bb_024_listbild.jpg",
		146, 200,
		"bb-024", "two by two",
		"", "",
		"39", "0",
		"2", 1,
		"Stück", "107",
		"", "pd62976601.htm",
		"", 1,
		"12001", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/bb_025_listbild.jpg",
		143, 200,
		"bb-025", "Clean Fine Art Gallery",
		"", "",
		"39", "0",
		"2", 1,
		"Stück", "107",
		"", "pd-1206492113.htm",
		"", 1,
		"12001", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/gol_001_listbild.jpg",
		152, 200,
		"gol-001", "Badlands",
		"", "",
		"25", "0",
		"2", 1,
		"Stück", "108",
		"", "pd1958986229.htm",
		"", 1,
		"12002", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/gol_002_listbild.jpg",
		158, 200,
		"gol-002", "Bondage",
		"", "",
		"25", "0",
		"2", 1,
		"Stück", "108",
		"", "pd2020388139.htm",
		"", 1,
		"12002", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/gol_003_listbild.jpg",
		144, 200,
		"gol-003", "fetish",
		"", "",
		"25", "0",
		"2", 1,
		"Stück", "108",
		"", "pd-1942772911.htm",
		"", 1,
		"12002", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/thumb/gol_004_listbild.jpg",
		200, 200,
		"gol-004", "Asia  Bondage",
		"", "",
		"22.9", "0",
		"2", 1,
		"Stück", "108",
		"", "pd-1278911001.htm",
		"", 1,
		"12002", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/he_001_listbild.jpg",
		146, 200,
		"he-001", "Ketzer - Hexen - Inquisitoren",
		"", "",
		"26", "0",
		"2", 1,
		"Stück", "109",
		"", "pd-36490643.htm",
		"", 1,
		"12003", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/thumb/he_002_listbild.jpg",
		136, 200,
		"he-002", "Der Hexenhammer",
		"", "",
		"22", "0",
		"2", 1,
		"Stück", "109",
		"", "pd1184133731.htm",
		"", 1,
		"12003", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/ro_001_listbild.jpg",
		127, 200,
		"ro-001", "Geschichte der O",
		"", "",
		"20.4", "0",
		"2", 1,
		"Stück", "110",
		"", "pd-1562872165.htm",
		"", 1,
		"12004", "0",
		 0)
	
		Entry[102] = new Element(
		102, "assets/thumb/ro_003_listbild.jpg",
		131, 200,
		"ro-003", "Tortura Fortunae",
		"", "",
		"17.9", "0",
		"2", 1,
		"Stück", "110",
		"", "pd-933487017.htm",
		"", 1,
		"12004", "0",
		 0)
	
		Entry[103] = new Element(
		103, "assets/thumb/ro_004_listbild.jpg",
		134, 200,
		"ro-004", "Scipia - Sklavin der Römer",
		"", "",
		"19", "0",
		"2", 1,
		"Stück", "110",
		"", "pd-362043299.htm",
		"", 1,
		"12004", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/ro_005_listbild.jpg",
		145, 200,
		"ro-005", "Zucker und Peitsche für Barbara",
		"", "",
		"15", "0",
		"2", 1,
		"Stück", "110",
		"", "pd246127059.htm",
		"", 1,
		"12004", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/ro_006_listbild.jpg",
		113, 171,
		"ro-006", "9 1/2 Wochen",
		"", "",
		"15", "0",
		"2", 1,
		"Stück", "110",
		"", "pd1044448983.htm",
		"", 1,
		"12004", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/thumb/ro_008_listbild.jpg",
		95, 150,
		"ro-008", "Strafe muss sein",
		"", "",
		"16.5", "0",
		"2", 1,
		"Stück", "110",
		"", "pd1936984659.htm",
		"", 1,
		"12004", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/ro_009_listbild.jpg",
		150, 200,
		"ro-009", "Bestrafung eines Dienstmädchens",
		"", "",
		"17", "0",
		"2", 1,
		"Stück", "110",
		"", "pd1000465593.htm",
		"", 1,
		"12004", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/ro_010_listbild.jpg",
		150, 200,
		"ro-010", "Der letzte Schliff",
		"", "",
		"17.5", "0",
		"2", 1,
		"Stück", "110",
		"", "pd-29483633.htm",
		"", 1,
		"12004", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/sa_001_listbild.jpg",
		138, 200,
		"sa-001", "Das Bondage-Handbuch. Anleitung zum erotischen Fesseln",
		"", "Charon 040-313290 ",
		"21.5", "0",
		"2", 1,
		"Stück", "111",
		"", "pd-1479828907.htm",
		"", 1,
		"12005", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/thumb/sa_003_listbild.jpg",
		129, 200,
		"sa-003", "Das SM-Handbuch",
		"", "Charon 040-313290 ",
		"21.5", "0",
		"2", 1,
		"Stück", "111",
		"", "pd1808581041.htm",
		"", 1,
		"12005", "0",
		 0)
	
		Entry[111] = new Element(
		111, "assets/thumb/sa_005_listbild.jpg",
		136, 200,
		"sa-005", "Bondagebuch - Teil II",
		"", "",
		"15", "0",
		"2", 1,
		"Stück", "111",
		"", "pd432928461.htm",
		"", 1,
		"12005", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/sa_007_listbild.jpg",
		141, 200,
		"sa-007", "Die große Enzyklopädie der Serienmörder",
		"", "",
		"29.9", "0",
		"2", 1,
		"Stück", "111",
		"", "pd546936233.htm",
		"", 1,
		"12005", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/thumb/sa_008_listbild.jpg",
		129, 200,
		"sa-008", "Sklavin - geschlagen, gedemütigt, verkauft",
		"", "",
		"19.9", "0",
		"2", 1,
		"Stück", "111",
		"", "pd38991871.htm",
		"", 1,
		"12005", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/thumb/sa_009_listbild.jpg",
		138, 200,
		"sa-009", "Zur Genese sexueller Lust",
		"", "",
		"10.5", "0",
		"2", 1,
		"Stück", "111",
		"", "pd657963589.htm",
		"", 1,
		"12005", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/thumb/sa_010_listbild.jpg",
		142, 200,
		"sa-010", "Magazin Japanbondage /Bondage Project",
		"", "",
		"11.5", "0",
		"2", 1,
		"Stück", "111",
		"", "pd761830907.htm",
		"", 1,
		"12005", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/thumb/ef_001_listbild.jpg",
		130, 200,
		"ef-001", "... doch helfen musste ich mir selbst",
		"", "",
		"7.45", "0",
		"2", 1,
		"Stück", "112",
		"", "pd977944737.htm",
		"", 1,
		"12006", "0",
		 0)
	
		Entry[117] = new Element(
		117, "assets/thumb/ef_004_listbild.jpg",
		134, 200,
		"ef-004", "Vier Jahre Hölle und zurück",
		"", "",
		"5", "0",
		"2", 1,
		"Stück", "112",
		"", "pd1114869043.htm",
		"", 1,
		"12006", "0",
		 0)
	
		Entry[118] = new Element(
		118, "assets/thumb/sb_001_listbild.jpg",
		130, 200,
		"sb-001", "Die Lügen meines Meisters",
		"", "",
		"17.9", "0",
		"2", 1,
		"Stück", "113",
		"", "pd549233305.htm",
		"", 1,
		"12007", "0",
		 0)
	
		Entry[119] = new Element(
		119, "assets/thumb/sb_003_listbild.jpg",
		132, 200,
		"sb-003", "Qualvolle Liebe",
		"", "",
		"18.92", "0",
		"2", 1,
		"Stück", "113",
		"", "pd-1977813451.htm",
		"", 1,
		"12007", "0",
		 0)
	
		Entry[120] = new Element(
		120, "assets/thumb/sb_004_listbild.jpg",
		134, 202,
		"sb-004", "Midian oder die Versuchungen der Gier",
		"", "",
		"17.9", "0",
		"2", 1,
		"Stück", "113",
		"", "pd1827797867.htm",
		"", 1,
		"12007", "0",
		 0)
	
		Entry[121] = new Element(
		121, "assets/thumb/sb_005_listbild.jpg",
		130, 200,
		"sb-005", "Dunkles Verlangen",
		"", "",
		"18.41", "0",
		"2", 1,
		"Stück", "113",
		"", "pd-2098553967.htm",
		"", 1,
		"12007", "0",
		 0)
	
		Entry[122] = new Element(
		122, "assets/thumb/sb_006_listbild.jpg",
		131, 200,
		"sb-006", "Bittersüße Lust",
		"", "",
		"18.5", "0",
		"2", 1,
		"Stück", "113",
		"", "pd-1150414809.htm",
		"", 1,
		"12007", "0",
		 0)
	
		Entry[123] = new Element(
		123, "assets/thumb/sb_009_listbild.jpg",
		131, 200,
		"sb-009", "Sehnsucht nach der Nacht in deinen Augen",
		"", "",
		"22.5", "0",
		"2", 1,
		"Stück", "113",
		"", "pd-2039870583.htm",
		"", 1,
		"12007", "0",
		 0)
	
		Entry[124] = new Element(
		124, "assets/thumb/sb_010_listbild.jpg",
		132, 200,
		"sb-010", "Grausamer Sommer",
		"", "",
		"17.9", "0",
		"2", 1,
		"Stück", "113",
		"", "pd-1894522657.htm",
		"", 1,
		"12007", "0",
		 0)
	
		Entry[125] = new Element(
		125, "assets/thumb/sb_011_listbild.jpg",
		131, 200,
		"sb-011", "Der Liebe ganze Härte - eine liaison dangereuse",
		"", "",
		"17.9", "0",
		"2", 1,
		"Stück", "113",
		"", "pd1992969765.htm",
		"", 1,
		"12007", "0",
		 0)
	
		Entry[126] = new Element(
		126, "assets/thumb/sb_012_listbild.jpg",
		131, 200,
		"sb-012", "Jungfrauenblut",
		"", "",
		"17.9", "0",
		"2", 1,
		"Stück", "113",
		"", "pd879809755.htm",
		"", 1,
		"12007", "0",
		 0)
	
		Entry[127] = new Element(
		127, "assets/thumb/sb_013_listbild.jpg",
		131, 200,
		"sb-013", "Schmerz - Strafe - Lust",
		"", "",
		"18.41", "0",
		"2", 1,
		"Stück", "113",
		"", "pd1726796417.htm",
		"", 1,
		"12007", "0",
		 0)
	
		Entry[128] = new Element(
		128, "assets/thumb/sb_014_listbild.jpg",
		131, 200,
		"sb-014", "Hummeln fallen waagerecht - Ein Liebesroman für die späten Neunziger",
		"", "",
		"17.38", "0",
		"2", 1,
		"Stück", "113",
		"", "pd-320282473.htm",
		"", 1,
		"12007", "0",
		 0)
	
		Entry[129] = new Element(
		129, "assets/thumb/sb_016_listbild.jpg",
		131, 200,
		"sb-016", "Sarahs Lust",
		"", "",
		"17.38", "0",
		"2", 1,
		"Stück", "113",
		"", "pd1566244883.htm",
		"", 1,
		"12007", "0",
		 0)
	
		Entry[130] = new Element(
		130, "assets/thumb/sb_017_listbild.jpg",
		131, 200,
		"sb-017", "Deutschland - einig Schmerzensland",
		"", "",
		"20.4", "0",
		"2", 1,
		"Stück", "113",
		"", "pd-2050961287.htm",
		"", 1,
		"12007", "0",
		 0)
	
		Entry[131] = new Element(
		131, "assets/thumb/ab_001_listbild.jpg",
		200, 133,
		"ab-001-1", "Silvi in Trouble",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "7",
		"Lieferform;Download@", "pd-1473923553.htm",
		"", 1,
		"1001", "0",
		 0)
	
		Entry[132] = new Element(
		132, "assets/thumb/il_002_listbild.jpg",
		200, 106,
		"il-002-1", "Inquisition - Part 2 (Wasserfolter)",
		"", "",
		"59", "0.3",
		"1", 1,
		"Stück", "73",
		"Lieferform;Video@", "pd1612346684.htm",
		"", 1,
		"3001", "0",
		 0)
	
		Entry[133] = new Element(
		133, "assets/thumb/il_003_listbild.jpg",
		200, 106,
		"il-003-1", "Inquisition - Part 3 (Gequaelt im Hexenturm)",
		"", "",
		"64", "0.3",
		"1", 1,
		"Stück", "73",
		"Lieferform;Video@", "pd1543233940.htm",
		"", 1,
		"3001", "0",
		 0)
	
		Entry[134] = new Element(
		134, "assets/thumb/il_004_listbild.jpg",
		200, 106,
		"il-004-2", "Inquisition - Part 4 (Interrogatio)",
		"", "",
		"79", "0.3",
		"1", 1,
		"Stück", "73",
		"Lieferform;DVD@", "pd-1559490324.htm",
		"", 1,
		"3001", "0",
		 0)
	
		Entry[135] = new Element(
		135, "assets/thumb/cuf_003_listbild.jpg",
		200, 150,
		"cuf-003-1", "Handschellen - Standard Chrom",
		"", "",
		"7.5", "0",
		"1", 1,
		"Stück", "117",
		"Farbe;chrom@", "pd1017987220.htm",
		"", 1,
		"13001-1", "0",
		 0)
	
		Entry[136] = new Element(
		136, "assets/thumb/cuf_004_listbild.jpg",
		200, 150,
		"cuf-005", "Handschellen - Smith &amp; Wesson 100",
		"", "",
		"46", "0",
		"1", 1,
		"Stück", "117",
		"", "pd339994850.htm",
		"", 1,
		"13001-1", "0",
		 0)
	
		Entry[137] = new Element(
		137, "assets/thumb/cuf_005_listbild.jpg",
		200, 150,
		"cuf-006", "Handschellen - Standard strong",
		"", "",
		"15", "0",
		"1", 1,
		"Stück", "117",
		"", "pd-789036576.htm",
		"", 1,
		"13001-1", "0",
		 0)
	
		Entry[138] = new Element(
		138, "assets/thumb/cuf_006_listbild.jpg",
		200, 150,
		"cuf-007", "Handschellen - Gelenk-Cuffs",
		"", "",
		"31", "0",
		"1", 1,
		"Stück", "117",
		"", "pd-1994491122.htm",
		"", 1,
		"13001-1", "0",
		 0)
	
		Entry[139] = new Element(
		139, "assets/thumb/cuf_009_listbild.jpg",
		200, 150,
		"cuf-010", "Handschellen - Polizei-Standard",
		"", "",
		"20", "0",
		"1", 1,
		"Stück", "117",
		"", "pd-1997424968.htm",
		"", 1,
		"13001-1", "0",
		 0)
	
		Entry[140] = new Element(
		140, "assets/thumb/kb-363-listbild.jpg",
		150, 200,
		"KB-363-1", "Zwangsjacke aus echtem Leder",
		"", "",
		"219", "0",
		"1", 1,
		"Stück", "123",
		"Größe;L@", "pd-368047904.htm",
		"", 1,
		"130015", "0",
		 0)
	
		Entry[141] = new Element(
		141, "assets/thumb/ab-163-listbild.jpg",
		200, 160,
		"ab-163-1", "Hogtied !!!",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "23",
		"Lieferform;Download@", "pd-1366478441.htm",
		"", 1,
		"10098", "0",
		 0)
	
		Entry[142] = new Element(
		142, "assets/thumb/wol-01-listbild.jpg",
		200, 164,
		"wol-01-1", "Wolfis Girls in Bondage",
		"", "",
		"22.75", "0",
		"1", 1,
		"Stück", "50",
		"Lieferform;Download@", "pd-1030027019.htm",
		"", 1,
		"1013", "0",
		 0)
	
		Entry[143] = new Element(
		143, "assets/thumb/tag-123-listbild.jpg",
		200, 164,
		"tag-123-1", "Michelle",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "90",
		"Lieferform;Download@", "pd1140767116.htm",
		"", 1,
		"8000-130", "0",
		 0)
	
		Entry[144] = new Element(
		144, "assets/thumb/rc_001_listbild.jpg",
		200, 163,
		"rc-001", "Bondage Fantasies",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "81",
		"Lieferform;Download@", "pd1415513267.htm",
		"", 1,
		"7000-10", "0",
		 0)
	
		Entry[145] = new Element(
		145, "assets/thumb/rc_002_listbild.jpg",
		160, 120,
		"rc-002", "The Bondage Model + The Escape Artist",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "81",
		"Lieferform;Download@", "pd-1667327278.htm",
		"", 1,
		"7000-10", "0",
		 0)
	
		Entry[146] = new Element(
		146, "assets/thumb/sb-01-listbild.jpg",
		200, 164,
		"sb-01-1", "Der mißglückte Einbruch",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "60",
		"Lieferform;Download@", "pd2145409997.htm",
		"", 1,
		"11000-sn", "0",
		 0)
	
		Entry[147] = new Element(
		147, "assets/thumb/tf_001_listbild.jpg",
		200, 134,
		"tf-001-1", "Tortured Feet",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "78",
		"Lieferform;Download@", "pd-1905900241.htm",
		"", 1,
		"4001", "0",
		 0)
	
		Entry[148] = new Element(
		148, "assets/thumb/tf_002_listbild.jpg",
		200, 160,
		"tf-002-1", "Tortured Feet 2",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "78",
		"Lieferform;Download@", "pd1309483070.htm",
		"", 1,
		"4001", "0",
		 0)
	
		Entry[149] = new Element(
		149, "assets/thumb/tf_001_listbild.jpg",
		200, 134,
		"tf-1,2-1", "Tortured Feet 1 + 2",
		"", "",
		"69", "0.3",
		"1", 1,
		"Stück", "78",
		"Lieferform;Download@", "pd815697986.htm",
		"", 1,
		"4001", "0",
		 0)
	
		Entry[150] = new Element(
		150, "assets/thumb/AB_85_listbild.jpg",
		200, 160,
		"ab-085-1", "Unusual Photosession",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "15",
		"Lieferform;Download@", "pd-37485404.htm",
		"", 1,
		"1009", "0",
		 0)
	
		Entry[151] = new Element(
		151, "assets/thumb/AB_86_listbild.jpg",
		200, 160,
		"ab-086-1", "Held for ransom",
		"Lea in der Hand eines Kidnappers", "",
		"19.95", "0",
		"1", 1,
		"Stück", "15",
		"Lieferform;Download@", "pd1745147213.htm",
		"", 1,
		"1009", "0",
		 0)
	
		Entry[152] = new Element(
		152, "assets/thumb/AB_87_listbild.jpg",
		150, 200,
		"ab-087-1", "Hanna´s Bondage Dreams",
		"First Time Bondage", "",
		"39", "0",
		"1", 1,
		"Stück", "15",
		"Lieferform;Download@", "pd1057070543.htm",
		"", 1,
		"1009", "0",
		 0)
	
		Entry[153] = new Element(
		153, "assets/thumb/ab_88_listbild.jpg",
		200, 150,
		"ab-088-1", "Rollerblades &amp;",
		"Car Thief", "",
		"39", "0",
		"1", 1,
		"Stück", "15",
		"Lieferform;Download@", "pd1058192432.htm",
		"", 1,
		"1009", "0",
		 0)
	
		Entry[154] = new Element(
		154, "assets/thumb/ab_89_listbild.jpg",
		200, 160,
		"ab-089-1", "Kallisti: Slave Girl",
		"Teil 1", "",
		"29.95", "0",
		"1", 1,
		"Stück", "15",
		"Lieferform;Download@", "pd-1700988570.htm",
		"", 1,
		"1009", "0",
		 0)
	
		Entry[155] = new Element(
		155, "assets/thumb/ab_90_listbild.jpg",
		200, 160,
		"ab-090-1", "The Gang",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "16",
		"Lieferform;Download@", "pd500607894.htm",
		"", 1,
		"10091", "0",
		 0)
	
		Entry[156] = new Element(
		156, "assets/thumb/se-002-listbild.JPG",
		200, 150,
		"se-002", "Hanfseil dreischäftig gedreht",
		"", "",
		"0.75", "0",
		"1", 1,
		"Meter", "124",
		"Stärke;06 mm@", "pd1060685013.htm",
		"", 1,
		"13003", "0",
		 0)
	
		Entry[157] = new Element(
		157, "assets/thumb/se-003-listbild.JPG",
		200, 150,
		"se-003", "Hanfseil vierschäftig gedreht",
		"", "",
		"0.99", "0",
		"1", 1,
		"Meter", "124",
		"Stärke;08 mm@", "pd1061195520.htm",
		"", 1,
		"13003", "0",
		 0)
	
		Entry[158] = new Element(
		158, "assets/thumb/vb_01_listbild.JPG",
		200, 150,
		"vb-01", "Vakuum-Bag",
		"", "real",
		"29.95", "0",
		"1", 1,
		"Stück", "131",
		"", "pd1061275746.htm",
		"", 1,
		"13006", "0",
		 0)
	
		Entry[159] = new Element(
		159, "assets/thumb/AB_91_listbild.JPG",
		200, 150,
		"ab-091-1", "Pyjama Fantasies",
		"", "",
		"24.95", "0",
		"1", 1,
		"Stück", "16",
		"Lieferform;Download@", "pd1061452298.htm",
		"", 1,
		"10091", "0",
		 0)
	
		Entry[160] = new Element(
		160, "assets/thumb/AB_92_listbild.JPG",
		200, 160,
		"ab-092-1", "The Advertisement &amp;  Crazy Postman",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "16",
		"Lieferform;Download@", "pd1356963438.htm",
		"", 1,
		"10091", "0",
		 0)
	
		Entry[161] = new Element(
		161, "assets/thumb/AB_93_Listbild.jpg",
		200, 160,
		"ab-093-1", "Winter Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "16",
		"Lieferform;Download@", "pd-213620281.htm",
		"", 1,
		"10091", "0",
		 0)
	
		Entry[162] = new Element(
		162, "assets/thumb/AB_094_listbild.jpg",
		200, 150,
		"ab-94-1", "Don´t Trust",
		"Nicht jedem vertrauen", "",
		"49", "0",
		"1", 1,
		"Stück", "16",
		"Lieferform;Download@", "pd1059064695.htm",
		"", 1,
		"10091", "0",
		 0)
	
		Entry[163] = new Element(
		163, "assets/thumb/F-ARM1-Listbild.jpg",
		150, 200,
		"F-ARM1", "Monoglove",
		"", "",
		"99", "0",
		"1", 1,
		"Stück", "139",
		"", "pd-1531084869.htm",
		"", 1,
		"13013", "0",
		 0)
	
		Entry[164] = new Element(
		164, "assets/thumb/F-BBA-Listbild.jpg",
		200, 150,
		"F-BBA-3", "Bodybag",
		"", "",
		"349", "0",
		"1", 1,
		"Stück", "139",
		"Größe;S@", "pd-1514604447.htm",
		"", 1,
		"13013", "0",
		 0)
	
		Entry[165] = new Element(
		165, "assets/thumb/F-LEG1-Listbild.jpg",
		200, 150,
		"F-LEG-1", "Monostrumpf",
		"", "",
		"99", "0",
		"1", 1,
		"Stück", "139",
		"", "pd2069212060.htm",
		"", 1,
		"13013", "0",
		 0)
	
		Entry[166] = new Element(
		166, "assets/thumb/F-LS05-Listbild.jpg",
		150, 200,
		"F-LS-05", "Collar, Wrist- &amp; AncleCuffs",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "139",
		"", "pd1024378527.htm",
		"", 1,
		"13013", "0",
		 0)
	
		Entry[167] = new Element(
		167, "assets/thumb/F-MR1-Listbild.jpg",
		200, 150,
		"F-MR-1", "Monoglove",
		"", "",
		"29", "0",
		"1", 1,
		"Stück", "139",
		"", "pd-1528911387.htm",
		"", 1,
		"13013", "0",
		 0)
	
		Entry[168] = new Element(
		168, "assets/thumb/F-PN1-Listbild.JPG",
		150, 200,
		"F-PN-1-4", "Pony-Geschirr",
		"", "",
		"69", "0",
		"1", 1,
		"Stück", "139,130",
		"Plums;ROT@", "pd89364123.htm",
		"", 1,
		"13013,13004-500", "0",
		 0)
	
		Entry[169] = new Element(
		169, "assets/thumb/F-HT-Listbild.JPG",
		200, 150,
		"F-HT", "Hotgie-Set",
		"", "",
		"49", "0",
		"1", 1,
		"Stück", "139",
		"", "pd228597156.htm",
		"", 1,
		"13013", "0",
		 0)
	
		Entry[170] = new Element(
		170, "assets/thumb/AB_95_Listbild.JPG",
		200, 150,
		"ab-95-1", "Fit for training ?",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "16",
		"Lieferform;Download@", "pd-332785279.htm",
		"", 1,
		"10091", "0",
		 0)
	
		Entry[171] = new Element(
		171, "assets/thumb/ab_96_listbild.JPG",
		200, 150,
		"ab-96-1", "Monique is kidnapped again",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "16",
		"Lieferform;Download@", "pd1068712251.htm",
		"", 1,
		"10091", "0",
		 0)
	
		Entry[172] = new Element(
		172, "assets/thumb/AB_97_Listbild.JPG",
		150, 200,
		"ab-97-1", "Bondage in fur coats ",
		"gefesselt im Pelzmantel", "",
		"39", "0",
		"1", 1,
		"Stück", "16",
		"Lieferform;Download@", "pd1069139673.htm",
		"", 1,
		"10091", "0",
		 0)
	
		Entry[173] = new Element(
		173, "assets/thumb/AB_98_listbild.JPG",
		150, 200,
		"ab-98-1", "The Key",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "16",
		"Lieferform;Download@", "pd1070028613.htm",
		"", 1,
		"10091", "0",
		 0)
	
		Entry[174] = new Element(
		174, "assets/thumb/AB_99_Listbild.jpg",
		200, 160,
		"ab-99-1", "Let´s play bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "16",
		"Lieferform;Download@", "pd1071041205.htm",
		"", 1,
		"10091", "0",
		 0)
	
		Entry[175] = new Element(
		175, "assets/thumb/AB_100_Listbild.JPG",
		200, 150,
		"ab-100-1", "Pony-Girls / Der Film",
		"", "",
		"44", "0",
		"1", 1,
		"Stück", "17",
		"Lieferform;Download@", "pd-1407978238.htm",
		"", 1,
		"10092", "0",
		 0)
	
		Entry[176] = new Element(
		176, "assets/thumb/F-MR-2-Listbild.JPG",
		150, 200,
		"F-MR-2", "Fausthandschuhe aus Leder. Mit Riemen",
		"SEHR Sicher !", "",
		"49.9", "0",
		"1", 1,
		"Stück", "139",
		"", "pd1071133943.htm",
		"", 1,
		"13013", "0",
		 0)
	
		Entry[177] = new Element(
		177, "assets/thumb/F-L160-Listbild.JPG",
		133, 200,
		"F-L160-3", "Domina Korsett-Dress",
		"", "",
		"79", "0",
		"1", 1,
		"Stück", "139",
		"Größe;S@", "pd-1299599189.htm",
		"", 1,
		"13013", "0",
		 0)
	
		Entry[178] = new Element(
		178, "assets/thumb/ab_101_Listbild.jpg",
		200, 160,
		"ab-101-1", "Helpless Girls (1)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "17",
		"Lieferform;Download@", "pd1073034483.htm",
		"", 1,
		"10092", "0",
		 0)
	
		Entry[179] = new Element(
		179, "assets/thumb/AB_103_Listbild.JPG",
		225, 300,
		"ab-103-1", "The Password",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "17",
		"Lieferform;Download@", "pd-463544221.htm",
		"", 1,
		"10092", "0",
		 0)
	
		Entry[180] = new Element(
		180, "assets/thumb/ab_102_Listbild.jpg",
		200, 160,
		"ab-102-2", "Helpless Girls (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "17",
		"Lieferform;Download@", "pd1077533187.htm",
		"", 1,
		"10092", "0",
		 0)
	
		Entry[181] = new Element(
		181, "assets/thumb/ab-104-Listbild.JPG",
		150, 200,
		"ab-104-1", "Forced Fetish Girl",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "17",
		"Lieferform;Download@", "pd1078136140.htm",
		"", 1,
		"10092", "0",
		 0)
	
		Entry[182] = new Element(
		182, "assets/thumb/ab-105-listbild.JPG",
		150, 200,
		"ab-105-1", "Locked",
		"", "",
		"44", "0",
		"1", 1,
		"Stück", "17",
		"Lieferform;Download@", "pd1078734892.htm",
		"", 1,
		"10092", "0",
		 0)
	
		Entry[183] = new Element(
		183, "assets/thumb/cl_013 starr_listbild.JPG",
		200, 150,
		"cl-013-starr", "Clejuso No. 13 starr",
		"", "",
		"129", "0",
		"1", 1,
		"Stück", "132",
		"", "pd1078924003.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[184] = new Element(
		184, "assets/thumb/cl-15 starr_listbild.JPG",
		200, 150,
		"cl-015-starr", "Clejuso No. 15 starr",
		"", "",
		"149", "0",
		"1", 1,
		"Stück", "132",
		"", "pd-794596266.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[185] = new Element(
		185, "assets/thumb/AB-106-Listbild.JPG",
		150, 200,
		"ab-106-1", "Fur Girls",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "17",
		"Lieferform;Download@", "pd1079334473.htm",
		"", 1,
		"10092", "0",
		 0)
	
		Entry[186] = new Element(
		186, "assets/thumb/ab-107a-listbild.JPG",
		200, 150,
		"ab-107 A-1", "Abducted Girls",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "17",
		"Lieferform;Download@", "pd1080889655.htm",
		"", 1,
		"10092", "0",
		 0)
	
		Entry[187] = new Element(
		187, "assets/thumb/ab-107b-listbild.JPG",
		200, 150,
		"ab-107 B-1", "Making of Abducted Girls",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "17",
		"Lieferform;Download@", "pd-2095708068.htm",
		"", 1,
		"10092", "0",
		 0)
	
		Entry[188] = new Element(
		188, "assets/thumb/ab-107ab-listbild.JPG",
		150, 200,
		"ab-107-AB-1", "Abducted Girls + &quot; Making of &quot;",
		"2 Online Videos", "",
		"69", "0",
		"1", 1,
		"Stück", "17",
		"Lieferform;Download@", "pd1080895680.htm",
		"", 1,
		"10092", "0",
		 0)
	
		Entry[189] = new Element(
		189, "assets/thumb/AB-108-Listbild.JPG",
		300, 225,
		"ab-108-1", "Nora`s Casting - Teil 1",
		"", "",
		"29.95", "0",
		"1", 1,
		"Stück", "17",
		"Lieferform;Download@", "pd308485027.htm",
		"", 1,
		"10092", "0",
		 0)
	
		Entry[190] = new Element(
		190, "assets/thumb/AB-109-Listbild.JPG",
		225, 300,
		"ab-109-1", "Nora`s Casting - Teil 2",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "17",
		"Lieferform;Download@", "pd-662826221.htm",
		"", 1,
		"10092", "0",
		 0)
	
		Entry[191] = new Element(
		191, "assets/thumb/AB-109-Listbild.JPG",
		225, 300,
		"ab-109 pack-1", "Nora`s Casting - Teil 1 +  2",
		"", "",
		"69", "0",
		"1", 1,
		"Stück", "17",
		"Lieferform;Download@", "pd-471924507.htm",
		"", 1,
		"10092", "0",
		 0)
	
		Entry[192] = new Element(
		192, "assets/thumb/ro-012_listbild.JPG",
		200, 150,
		"ro-012", "Belladonna",
		"", "",
		"17.9", "0",
		"2", 1,
		"Stück", "110",
		"", "pd921324874.htm",
		"", 1,
		"12004", "0",
		 0)
	
		Entry[193] = new Element(
		193, "assets/thumb/ro-013.JPG",
		200, 150,
		"ro-013", "Das Blutmal",
		"", "",
		"7.9", "0",
		"2", 1,
		"Stück", "110",
		"", "pd-236908803.htm",
		"", 1,
		"12004", "0",
		 0)
	
		Entry[194] = new Element(
		194, "assets/thumb/AB-110-Listbild.JPG",
		200, 150,
		"ab-110-1", "Chloroformed",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "18",
		"Lieferform;Download@", "pd-968654395.htm",
		"", 1,
		"10093", "0",
		 0)
	
		Entry[195] = new Element(
		195, "assets/thumb/ab-111-Listbild.jpg",
		200, 160,
		"ab-111-1", "Fear !",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "18",
		"Lieferform;Download@", "pd1085378454.htm",
		"", 1,
		"10093", "0",
		 0)
	
		Entry[196] = new Element(
		196, "assets/thumb/ab-112-listbild.JPG",
		200, 150,
		"ab-112-1", "Evil Sister",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "18",
		"Lieferform;Download@", "pd1086071669.htm",
		"", 1,
		"10093", "0",
		 0)
	
		Entry[197] = new Element(
		197, "assets/thumb/ab-113-listbild.JPG",
		150, 200,
		"ab-113-1", "Office Attack &amp; Rescue me",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "18",
		"Lieferform;Download@", "pd172378981.htm",
		"", 1,
		"10093", "0",
		 0)
	
		Entry[198] = new Element(
		198, "assets/thumb/ab-114-listbild.JPG",
		150, 200,
		"ab-114-1", "Sir H. and Slavegirl Lea",
		"", "",
		"24.95", "0",
		"1", 1,
		"Stück", "18",
		"Lieferform;Download@", "pd1086948488.htm",
		"", 1,
		"10093", "0",
		 0)
	
		Entry[199] = new Element(
		199, "assets/thumb/il-013-Listbild.JPG",
		150, 180,
		"il-013-2", "Isabella - sieben Tage im Kerker",
		"", "",
		"69", "0.3",
		"1", 1,
		"Stück", "73",
		"Lieferform;DVD@", "pd852398492.htm",
		"", 1,
		"3001", "0",
		 0)
	
		Entry[200] = new Element(
		200, "assets/thumb/ab-115-listbild.jpg",
		200, 160,
		"ab-115-1", "Breaking their will (1)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "18",
		"Lieferform;Download@", "pd1088758086.htm",
		"", 1,
		"10093", "0",
		 0)
	
		Entry[201] = new Element(
		201, "assets/thumb/ab-116-listbild.jpg",
		200, 160,
		"ab-116-1", "Breaking their will (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "18",
		"Lieferform;Download@", "pd-1866790026.htm",
		"", 1,
		"10093", "0",
		 0)
	
		Entry[202] = new Element(
		202, "assets/thumb/ab-117-listbild.jpg",
		200, 160,
		"ab-117-1", "Revenge is sweet (1)",
		"Rache ist süß", "",
		"39", "0",
		"1", 1,
		"Stück", "18",
		"Lieferform;Download@", "pd1092034803.htm",
		"", 1,
		"10093", "0",
		 0)
	
		Entry[203] = new Element(
		203, "assets/thumb/ab-118-Listbild.jpg",
		200, 160,
		"ab-118-1", "Bondage-Tupper-Party",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "18",
		"Lieferform;Download@", "pd1093182467.htm",
		"", 1,
		"10093", "0",
		 0)
	
		Entry[204] = new Element(
		204, "assets/thumb/ab-119-listbild.jpg",
		200, 160,
		"ab-119-1", "Psycho Doctor",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "18",
		"Lieferform;Download@", "pd1093847624.htm",
		"", 1,
		"10093", "0",
		 0)
	
		Entry[205] = new Element(
		205, "assets/thumb/ab-120-listbild.jpg",
		200, 160,
		"ab-120-1", "Photosession in Fur Coats",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "19",
		"Lieferform;Download@", "pd931143220.htm",
		"", 1,
		"10094", "0",
		 0)
	
		Entry[206] = new Element(
		206, "assets/thumb/cage_002_listbild.jpg",
		200, 132,
		"cage-002", "Käfig mit verstellbaren Böden",
		"", "",
		"399", "0",
		"1", 1,
		"Stück", "131",
		"", "pd2138637391.htm",
		"", 1,
		"13006", "0",
		 0)
	
		Entry[207] = new Element(
		207, "assets/thumb/cl_011_listbild.jpg",
		200, 150,
		"cl-011", "Clejuso No. 11",
		"", "",
		"26.5", "0",
		"1", 1,
		"Stück", "132",
		"", "pd1342430997.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[208] = new Element(
		208, "assets/thumb/cl_011a_listbild.jpg",
		200, 150,
		"cl-011a", "Clejuso No. 11a",
		"", "",
		"29.9", "0",
		"1", 1,
		"Stück", "132",
		"", "pd1914343243.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[209] = new Element(
		209, "assets/thumb/cl_012_listbild.jpg",
		200, 150,
		"cl-012", "Clejuso No. 12",
		"", "",
		"29.9", "0",
		"1", 1,
		"Stück", "132",
		"", "pd-780610959.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[210] = new Element(
		210, "assets/thumb/cl_012a_listbild.jpg",
		200, 146,
		"cl-012a", "Clejuso No. 12a",
		"", "",
		"31", "0",
		"1", 1,
		"Stück", "132",
		"", "pd-754540025.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[211] = new Element(
		211, "assets/thumb/cl_019r_listbild.jpg",
		200, 146,
		"cl-019r", "Clejuso No. 19r",
		"", "",
		"31.5", "0",
		"1", 1,
		"Stück", "132",
		"", "pd-1910336627.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[212] = new Element(
		212, "assets/thumb/cl_013_listbild.jpg",
		200, 146,
		"cl-013", "Clejuso No. 13",
		"", "",
		"64", "0",
		"1", 1,
		"Stück", "132",
		"", "pd-20537080.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[213] = new Element(
		213, "assets/thumb/cl_015_listbild.jpg",
		200, 150,
		"cl-015", "Clejuso No. 15",
		"", "",
		"91.5", "0",
		"1", 1,
		"Stück", "132",
		"", "pd-831287690.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[214] = new Element(
		214, "assets/thumb/cl_017_listbild.jpg",
		200, 146,
		"cl-017", "Clejuso No. 17",
		"", "",
		"105", "0",
		"1", 1,
		"Stück", "132",
		"", "pd-919064172.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[215] = new Element(
		215, "assets/thumb/cl_008_listbild.jpg",
		200, 146,
		"cl-008", "Clejuso No. 8",
		"", "",
		"66", "0",
		"1", 1,
		"Stück", "132",
		"", "pd1718370786.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[216] = new Element(
		216, "assets/thumb/cl_014_listbild.jpg",
		200, 142,
		"cl-014", "Clejuso No. 14",
		"", "",
		"149", "0",
		"1", 1,
		"Stück", "132",
		"", "pd-1298382112.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[217] = new Element(
		217, "assets/thumb/cl_101_listbild.jpg",
		200, 150,
		"cl-101", "Clejuso No. 101",
		"", "",
		"146", "0",
		"1", 1,
		"Stück", "132",
		"", "pd-934910962.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[218] = new Element(
		218, "assets/thumb/cl_102_listbild.jpg",
		200, 146,
		"cl-102", "Clejuso No. 102",
		"", "",
		"135", "0",
		"1", 1,
		"Stück", "132",
		"", "pd-1369284372.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[219] = new Element(
		219, "assets/thumb/cl_103_listbild.jpg",
		200, 150,
		"cl-103", "Clejuso No. 103",
		"", "",
		"143", "0",
		"1", 1,
		"Stück", "132",
		"", "pd-575905542.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[220] = new Element(
		220, "assets/thumb/cl_128m_listbild.jpg",
		200, 146,
		"cl-128m", "Clejuso No 128m",
		"", "",
		"109", "0",
		"1", 1,
		"Stück", "132",
		"", "pd1986713528.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[221] = new Element(
		221, "assets/thumb/cl_006_listbild.jpg",
		200, 146,
		"cl-006", "Clejuso No. 6",
		"", "",
		"29.9", "0",
		"1", 1,
		"Stück", "132",
		"", "pd656893094.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[222] = new Element(
		222, "assets/thumb/cl_003_listbild.jpg",
		200, 150,
		"cl-003", "Clejuso No. 3",
		"", "",
		"19.9", "0",
		"1", 1,
		"Stück", "132",
		"", "pd-1718439100.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[223] = new Element(
		223, "assets/thumb/cl_113_listbild.jpg",
		200, 150,
		"cl-113", "Clejuso No. 113",
		"", "",
		"14.95", "0",
		"1", 1,
		"Stück", "132",
		"", "pd495672082.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[224] = new Element(
		224, "assets/thumb/cl_114_listbild.jpg",
		200, 150,
		"cl-114", "Clejuso No. 114",
		"", "",
		"19.9", "0",
		"1", 1,
		"Stück", "132",
		"", "pd-352338032.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[225] = new Element(
		225, "assets/thumb/cl_115_listbild.jpg",
		200, 150,
		"cl-115", "Clejuso No. 115",
		"", "",
		"24.9", "0",
		"1", 1,
		"Stück", "132",
		"", "pd-501026754.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[226] = new Element(
		226, "assets/thumb/el_001_listbild.jpg",
		200, 146,
		"el-001", "Erotic Stimulation Powerbox",
		"", "",
		"79", "0",
		"1", 1,
		"Stück", "133",
		"", "pd-567506788.htm",
		"", 1,
		"13008", "0",
		 0)
	
		Entry[227] = new Element(
		227, "assets/thumb/fid_001_listbild.jpg",
		150, 200,
		"fid-001", "Rigid Fiddle 8",
		"", "",
		"600", "0",
		"1", 1,
		"Stück", "134",
		"", "pd464804456.htm",
		"", 1,
		"13009", "0",
		 0)
	
		Entry[228] = new Element(
		228, "assets/thumb/cd_002_listbild.jpg",
		200, 150,
		"cd-002", "Die Bondage-CD",
		"", "",
		"34.5", "0",
		"1", 1,
		"Stück", "141",
		"", "pd-1814521303.htm",
		"", 1,
		"15001", "0",
		 0)
	
		Entry[229] = new Element(
		229, "assets/thumb/wb_001_listbild.jpg",
		136, 200,
		"wb-001-1", "Scarf-Bondage Vol. 1",
		"", "",
		"25", "0",
		"1", 1,
		"Stück", "141",
		"Cover;mit Cover@", "pd-1449722464.htm",
		"", 1,
		"15001", "0",
		 0)
	
		Entry[230] = new Element(
		230, "assets/thumb/wb_002_listbild.jpg",
		136, 200,
		"wb-002-1", "Scarf-Bondage Vol. 2",
		"", "",
		"25", "0",
		"1", 1,
		"Stück", "141",
		"Cover;mit Cover@", "pd-778811476.htm",
		"", 1,
		"15001", "0",
		 0)
	
		Entry[231] = new Element(
		231, "assets/thumb/wb_003_listbild.jpg",
		200, 150,
		"wb-003-1", "Scarf-Bondage Vol. 3",
		"", "",
		"25", "0",
		"1", 1,
		"Stück", "141",
		"Cover;mit Cover@", "pd1157540472.htm",
		"", 1,
		"15001", "0",
		 0)
	
		Entry[232] = new Element(
		232, "assets/thumb/wb_004_listbild.jpg",
		200, 150,
		"wb-004-1", "Scarf-Bondage Vol. 4",
		"", "",
		"25", "0",
		"1", 1,
		"Stück", "141",
		"Cover;mit Cover@", "pd1893675524.htm",
		"", 1,
		"15001", "0",
		 0)
	
		Entry[233] = new Element(
		233, "assets/thumb/wb_005_listbild.jpg",
		150, 200,
		"wb-005-1", "Scarf-Bondage Vol. 5",
		"", "",
		"25", "0",
		"1", 1,
		"Stück", "141",
		"Cover;mit Cover@", "pd-1589138864.htm",
		"", 1,
		"15001", "0",
		 0)
	
		Entry[234] = new Element(
		234, "assets/thumb/wb_006_listbild.jpg",
		200, 150,
		"wb-006-1", "Scarf-Bondage Vol. 6",
		"", "",
		"25", "0",
		"1", 1,
		"Stück", "141",
		"Cover;mit Cover@", "pd-1990287524.htm",
		"", 1,
		"15001", "0",
		 0)
	
		Entry[235] = new Element(
		235, "assets/thumb/wb_007_listbild.jpg",
		200, 150,
		"wb-007-1", "Scarf-Bondage Vol. 7",
		"", "",
		"25", "0",
		"1", 1,
		"Stück", "141",
		"Cover;mit Cover@", "pd-1003791064.htm",
		"", 1,
		"15001", "0",
		 0)
	
		Entry[236] = new Element(
		236, "assets/thumb/wbd_001_listbild.jpg",
		150, 200,
		"wbd-001-1", "Bandana-Bondage",
		"", "",
		"25", "0",
		"1", 1,
		"Stück", "141",
		"Cover;mit Cover@", "pd1512173492.htm",
		"", 1,
		"15001", "0",
		 0)
	
		Entry[237] = new Element(
		237, "assets/thumb/DSC_4924_resize.JPG",
		134, 200,
		"mitglied-ab", "Mitglied www.amateur-bondage.net",
		"", "",
		"12.5", "0",
		"1", 1,
		"", "143",
		"", "pd1057260300.htm",
		"", 1,
		"16000", "0",
		 0)
	
		Entry[238] = new Element(
		238, "assets/thumb/bv-listbild.jpg",
		200, 134,
		"mitglied-bv", "Mitglied www.bondage-video.de",
		"Jede Woche 600 Bilder und 1 Stunde Online Video", "",
		"9", "0",
		"1", 1,
		"", "143",
		"", "pd469749786.htm",
		"", 1,
		"16000", "0",
		 0)
	
		Entry[239] = new Element(
		239, "assets/thumb/he_007_listbild.jpg",
		131, 200,
		"he-007", "Es hat die Rache Gottes wunderbar gewütet",
		"", "",
		"9.9", "0",
		"2", 1,
		"Stück", "109",
		"", "pd-2076066658.htm",
		"", 1,
		"12003", "0",
		 0)
	
		Entry[240] = new Element(
		240, "assets/thumb/sa_011_listbild.jpg",
		126, 200,
		"sa-011", "Medizin im Mittelalter",
		"", "",
		"9.9", "0",
		"2", 1,
		"Stück", "111",
		"", "pd1995287548.htm",
		"", 1,
		"12005", "0",
		 0)
	
		Entry[241] = new Element(
		241, "assets/thumb/sa_012_listbild.jpg",
		148, 200,
		"sa-012", "Von Wunderdoktoren und Quacksalbern",
		"", "",
		"9.9", "0",
		"2", 1,
		"Stück", "111",
		"", "pd457368202.htm",
		"", 1,
		"12005", "0",
		 0)
	
		Entry[242] = new Element(
		242, "assets/thumb/cage_003_listbild.jpg",
		200, 185,
		"cage-003", "Käfig ",
		"", "",
		"330", "0",
		"1", 1,
		"Stück", "131",
		"", "pd1045730332.htm",
		"", 1,
		"13006", "0",
		 0)
	
		Entry[243] = new Element(
		243, "assets/thumb/ab_035_listbild.jpg",
		200, 134,
		"ab-035-1", "Naughty Daughter",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "10",
		"Lieferform;Download@", "pd1046178055.htm",
		"", 1,
		"1004", "0",
		 0)
	
		Entry[244] = new Element(
		244, "assets/thumb/ab_075_listbild.jpg",
		200, 160,
		"ab-075-1", "The Lost Bet (Die verlorene Wette)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "14",
		"Lieferform;Download@", "pd-1515001618.htm",
		"", 1,
		"1008", "0",
		 0)
	
		Entry[245] = new Element(
		245, "assets/thumb/ab_076_listbild.jpg",
		200, 160,
		"ab-076-1", "Leas Casting",
		"", "",
		"24.95", "0",
		"1", 1,
		"Stück", "14",
		"Lieferform;Download@", "pd254257650.htm",
		"", 1,
		"1008", "0",
		 0)
	
		Entry[246] = new Element(
		246, "assets/thumb/il_001_listbild.jpg",
		200, 106,
		"il-001-1", "Inquisition - Part 1",
		"", "",
		"59", "0.3",
		"1", 1,
		"Stück", "73",
		"Lieferform;Video@", "pd622900190.htm",
		"", 1,
		"3001", "0",
		 0)
	
		Entry[247] = new Element(
		247, "assets/thumb/ab_077_listbild.jpg",
		200, 150,
		"ab-077-1", "Lycra Girls in Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "14",
		"Lieferform;Download@", "pd1048244263.htm",
		"", 1,
		"1008", "0",
		 0)
	
		Entry[248] = new Element(
		248, "assets/thumb/ab_078_listbild.jpg",
		200, 160,
		"ab-078-1", "The Intruder",
		"", "",
		"29", "0",
		"1", 1,
		"Stück", "14",
		"Lieferform;Download@", "pd-466504066.htm",
		"", 1,
		"1008", "0",
		 0)
	
		Entry[249] = new Element(
		249, "assets/thumb/mitglied_smg_listbild.jpg",
		150, 200,
		"mitglied-smg-1", "Mitglied www.sm-girls.com",
		"", "",
		"14.95", "0",
		"1", 1,
		"", "143",
		"", "pd1680618774.htm",
		"", 1,
		"16000", "0",
		 0)
	
		Entry[250] = new Element(
		250, "assets/thumb/ab_079_listbild.jpg",
		200, 150,
		"ab-079-1", "Caught Assistant - Die ertappte Verkäuferin",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "14",
		"Lieferform;Download@", "pd1050046152.htm",
		"", 1,
		"1008", "0",
		 0)
	
		Entry[251] = new Element(
		251, "assets/thumb/pony_001_listbild.jpg",
		200, 134,
		"pony-001", "Sattel",
		"", "",
		"199", "0",
		"1", 1,
		"Stück", "142",
		"", "pd2003878190.htm",
		"", 1,
		"15500", "0",
		 0)
	
		Entry[252] = new Element(
		252, "assets/thumb/pony_002_listbild.jpg",
		150, 200,
		"pony-002", "Trense",
		"", "",
		"14.95", "0",
		"1", 1,
		"Stück", "142",
		"", "pd751726963.htm",
		"", 1,
		"15500", "0",
		 0)
	
		Entry[253] = new Element(
		253, "assets/thumb/pony_003_listbild.jpg",
		200, 150,
		"pony-003-1", "Fesselleine",
		"", "",
		"4.99", "0",
		"1", 1,
		"Stück", "139,130,142,0",
		"Farbe;grün-bunt@", "pd853221593.htm",
		"", 1,
		"13013,13004-500,15500,00", "0",
		 0)
	
		Entry[254] = new Element(
		254, "assets/thumb/ab_080_listbild.jpg",
		200, 160,
		"ab-080-1", "24/7 Slave Girl - Teil 1",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "15",
		"Lieferform;Download@", "pd712119577.htm",
		"", 1,
		"1009", "0",
		 0)
	
		Entry[255] = new Element(
		255, "assets/thumb/ab_081_listbild.jpg",
		200, 160,
		"ab-081-1", "24/7 Slave Girl - Teil 2",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "15",
		"Lieferform;Download@", "pd-1073958832.htm",
		"", 1,
		"1009", "0",
		 0)
	
		Entry[256] = new Element(
		256, "assets/thumb/ab_081_pack_listbild.jpg",
		200, 160,
		"ab-081 pack-1", "24/7 Slave Girl - Teil 1 + 2",
		"", "",
		"74", "0",
		"1", 1,
		"Stück", "15",
		"Lieferform;Download@", "pd1331443491.htm",
		"", 1,
		"1009", "0",
		 0)
	
		Entry[257] = new Element(
		257, "assets/thumb/ab_082_listbild.jpg",
		200, 150,
		"ab-082-1", "Monique is kidnapped",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "15",
		"Lieferform;Download@", "pd1052898791.htm",
		"", 1,
		"1009", "0",
		 0)
	
		Entry[258] = new Element(
		258, "assets/thumb/AB_83_listbild.jpg",
		150, 200,
		"ab-083-1", "Monique trained as a Pony-Girl",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "15",
		"Lieferform;Download@", "pd1055080911.htm",
		"", 1,
		"1009", "0",
		 0)
	
		Entry[259] = new Element(
		259, "assets/thumb/mitglied_smg_listbild.jpg",
		150, 200,
		"mitglied-smg-3 Mon.", "Mitglied www.sm-girls.com",
		"für 3 Monate. Keine autom. Verlängerung", "",
		"39.95", "0",
		"1", 1,
		"", "143",
		"", "pd-1728205160.htm",
		"", 1,
		"16000", "0",
		 0)
	
		Entry[260] = new Element(
		260, "assets/thumb/AB_84_listbild.jpg",
		200, 160,
		"ab-084-1", "More Paper Gags",
		"Monique ist Ihrer Freundin hilflos ausgeliefert", "",
		"19.95", "0",
		"1", 1,
		"Stück", "15",
		"Lieferform;Download@", "pd1056473302.htm",
		"", 1,
		"1009", "0",
		 0)
	
		Entry[261] = new Element(
		261, "assets/thumb/ue-epi-01-Listbild.jpg",
		200, 160,
		"ue-epi-01", "Ein Mord aus Eifersucht",
		"Unhappy End - Episode 1", "",
		"39", "0",
		"1", 1,
		"Stück", "63",
		"Lieferform;Download@", "pd1101641366.htm",
		"", 1,
		"11500-1", "0",
		 0)
	
		Entry[262] = new Element(
		262, "assets/thumb/ue-epi-02-Listbild.jpg",
		200, 160,
		"ue-epi-02", "Du sollst nicht ehebrechen!",
		"Unhappy End - Episode 2", "",
		"39", "0",
		"1", 1,
		"Stück", "63",
		"Lieferform;Download@", "pd-893601280.htm",
		"", 1,
		"11500-1", "0",
		 0)
	
		Entry[263] = new Element(
		263, "assets/thumb/ue-epi-03-listbild.jpg",
		200, 160,
		"ue-epi-03-1", "Die Rivalin",
		"Unhappy End - Episode 3", "",
		"39", "0",
		"1", 1,
		"Stück", "63",
		"Lieferform;Download@", "pd-1972931615.htm",
		"", 1,
		"11500-1", "0",
		 0)
	
		Entry[264] = new Element(
		264, "assets/thumb/ue-epi-04-listbild.jpg",
		200, 164,
		"ue-epi-04-1", "Die Szenendiebin",
		"Unhappy End - Episode 4", "",
		"39", "0",
		"1", 1,
		"Stück", "63",
		"Lieferform;Download@", "pd1107702085.htm",
		"", 1,
		"11500-1", "0",
		 0)
	
		Entry[265] = new Element(
		265, "assets/thumb/ue-epi-05-listbild.jpg",
		139, 200,
		"ue-epi-05-1", "Die Schulfeindin ",
		"Unhappy End - Episode 5", "",
		"39", "0",
		"1", 1,
		"Stück", "63",
		"Lieferform;Download@", "pd-837651137.htm",
		"", 1,
		"11500-1", "0",
		 0)
	
		Entry[266] = new Element(
		266, "assets/thumb/ue-epi-06-listbild.jpg",
		200, 164,
		"ue-epi-06-1", "Der Mörder mit den Zigarillos",
		"Unhappy End! - Episode 6", "",
		"39", "0",
		"1", 1,
		"Stück", "63",
		"Lieferform;Download@", "pd1108213461.htm",
		"", 1,
		"11500-1", "0",
		 0)
	
		Entry[267] = new Element(
		267, "assets/thumb/ue-epi-08-Listbild.jpg",
		200, 160,
		"ue-epi-08", "One-way-ticket ins Paradies",
		"Unhappy End - Episode 8", "",
		"39", "0",
		"1", 1,
		"Stück", "63",
		"Lieferform;Download@", "pd-770691302.htm",
		"", 1,
		"11500-1", "0",
		 0)
	
		Entry[268] = new Element(
		268, "assets/thumb/ue-epi-09-listbild.jpg",
		139, 200,
		"ue-epi-09-1", "Nachtschatten",
		"Unhappy End - Episode 9", "",
		"39", "0",
		"1", 1,
		"Stück", "63",
		"Lieferform;Download@", "pd-443516539.htm",
		"", 1,
		"11500-1", "0",
		 0)
	
		Entry[269] = new Element(
		269, "assets/thumb/ue-epi-19-listbild.jpg",
		200, 164,
		"ue-epi-19-1", "Die Hexe",
		"Unhappy End - Episode 19", "",
		"39", "0",
		"1", 1,
		"Stück", "64",
		"Lieferform;Download@", "pd1661047804.htm",
		"", 1,
		"11500-2", "0",
		 0)
	
		Entry[270] = new Element(
		270, "assets/thumb/ue-epi-12-listbild.jpg",
		200, 164,
		"ue-epi-12-1", "Der Tag vor der Hochzeit",
		"Unhappy End - Episode 12", "",
		"39", "0",
		"1", 1,
		"Stück", "64",
		"Lieferform;Download@", "pd1263095770.htm",
		"", 1,
		"11500-2", "0",
		 0)
	
		Entry[271] = new Element(
		271, "assets/thumb/ue-epi-13-listbild.jpg",
		200, 164,
		"ue-epi-13-1", "Die Kidnapper",
		"Unhappy End - Episode 13", "",
		"39", "0",
		"1", 1,
		"Stück", "64",
		"Lieferform;Download@", "pd1357707147.htm",
		"", 1,
		"11500-2", "0",
		 0)
	
		Entry[272] = new Element(
		272, "assets/thumb/ue-epi-16-listbild.jpg",
		200, 164,
		"ue-epi-16-1", "Das Casting",
		"Unhappy End - Episode 16", "",
		"39", "0",
		"1", 1,
		"Stück", "64",
		"Lieferform;Download@", "pd-323468545.htm",
		"", 1,
		"11500-2", "0",
		 0)
	
		Entry[273] = new Element(
		273, "assets/thumb/fa-13-listbild.jpg",
		200, 160,
		"col-01-1", "Jamie and Melissa",
		"", "",
		"44", "0",
		"1", 1,
		"Stück", "40",
		"Lieferform;Download@", "pd1097223926.htm",
		"", 1,
		"1011", "0",
		 0)
	
		Entry[274] = new Element(
		274, "assets/thumb/bnd-01-Listbild.jpg",
		200, 160,
		"bnd-01-1", "Bondage-Heat",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "40",
		"Lieferform;Download@", "pd-882139169.htm",
		"", 1,
		"1011", "0",
		 0)
	
		Entry[275] = new Element(
		275, "assets/thumb/ab-145-listbild.jpg",
		200, 160,
		"ab-145-1", "Attack on Jassi",
		"Überfall auf Jassi", "",
		"39", "0",
		"1", 1,
		"Stück", "21",
		"Lieferform;Download@", "pd1120495517.htm",
		"", 1,
		"10096", "0",
		 0)
	
		Entry[276] = new Element(
		276, "assets/thumb/ab-146-listbild.jpg",
		200, 160,
		"ab-146-1", "Competition for Friendship",
		"Wettbewerb um den Freund", "",
		"39", "0",
		"1", 1,
		"Stück", "21",
		"Lieferform;Download@", "pd1120993338.htm",
		"", 1,
		"10096", "0",
		 0)
	
		Entry[277] = new Element(
		277, "assets/thumb/whip-006-listbild.JPG",
		200, 150,
		"whip-006", "Teleskoppeitsche",
		"", "",
		"24.9", "0",
		"1", 1,
		"Stück", "136",
		"", "pd258439538.htm",
		"", 1,
		"13010-100", "0",
		 0)
	
		Entry[278] = new Element(
		278, "assets/thumb/whip-002-listbild.JPG",
		200, 103,
		"whip-002", "Reitgerte",
		"", "",
		"14.9", "0",
		"1", 1,
		"Stück", "136",
		"", "pd1524580596.htm",
		"", 1,
		"13010-100", "0",
		 0)
	
		Entry[279] = new Element(
		279, "assets/thumb/whip_003_listbild.JPG",
		200, 150,
		"whip-003", "Paddle Hand",
		"", "",
		"14.9", "0",
		"1", 1,
		"Stück", "136",
		"", "pd-2114874147.htm",
		"", 1,
		"13010-100", "0",
		 0)
	
		Entry[280] = new Element(
		280, "assets/thumb/whip-005-listbild.JPG",
		200, 111,
		"whip-005", "Peitsche mit Ponykopf",
		"", "",
		"19.9", "0",
		"1", 1,
		"Stück", "136",
		"", "pd720903695.htm",
		"", 1,
		"13010-100", "0",
		 0)
	
		Entry[281] = new Element(
		281, "assets/thumb/KB-477-listbild.JPG",
		200, 150,
		"KB-477", "Leder Paddle",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "137",
		"", "pd-2075070650.htm",
		"", 1,
		"13010-200", "0",
		 0)
	
		Entry[282] = new Element(
		282, "assets/thumb/ps-001_listbild.JPG",
		200, 150,
		"ps-001", "Pain-shoes",
		"", "",
		"19.9", "0",
		"1", 1,
		"Stück", "137",
		"", "pd529457761.htm",
		"", 1,
		"13010-200", "0",
		 0)
	
		Entry[283] = new Element(
		283, "assets/thumb/pwh-001_listbild.JPG",
		200, 150,
		"pwh-001", "Pinwheel ",
		"", "",
		"14.9", "0",
		"1", 1,
		"Stück", "137",
		"", "pd1045820216.htm",
		"", 1,
		"13010-200", "0",
		 0)
	
		Entry[284] = new Element(
		284, "assets/thumb/whip-007-listbild.JPG",
		200, 150,
		"whip-007", "Cato Nine - black",
		"die Neunschwänzige", "",
		"29", "0",
		"1", 1,
		"Stück", "136",
		"", "pd-237469961.htm",
		"", 1,
		"13010-100", "0",
		 0)
	
		Entry[285] = new Element(
		285, "assets/thumb/whip-008-listbild.JPG",
		200, 150,
		"whip-008", "Cato Nine - red",
		"die Neunschwänzige", "",
		"29", "0",
		"1", 1,
		"Stück", "136",
		"", "pd-738738310.htm",
		"", 1,
		"13010-100", "0",
		 0)
	
		Entry[286] = new Element(
		286, "assets/thumb/cuf-015-listbild.JPG",
		200, 150,
		"cuf-015", "Fußfessel mit Chromleder",
		"", "",
		"29.9", "0",
		"1", 1,
		"Stück", "118",
		"", "pd1122536173.htm",
		"", 1,
		"13001-2", "0",
		 0)
	
		Entry[287] = new Element(
		287, "assets/thumb/gag-006-Listbild.jpg",
		200, 150,
		"gag-006-1", "Kunststoffball mit Löchern 38mm",
		"", "",
		"14.9", "0",
		"1", 1,
		"Stück", "126",
		"Farbe;gelb@", "pd1046689732.htm",
		"", 1,
		"13004-100", "0",
		 0)
	
		Entry[288] = new Element(
		288, "assets/thumb/gag-007-Listbild.jpg",
		200, 150,
		"gag-007-1", "Kunststoffball mit Löchern 38mm",
		"", "",
		"16.9", "0",
		"1", 1,
		"Stück", "126",
		"Farbe;gelb@", "pd-1272813789.htm",
		"", 1,
		"13004-100", "0",
		 0)
	
		Entry[289] = new Element(
		289, "assets/thumb/gag-008-Listbild.jpg",
		200, 150,
		"gag-008-1", "Kunststoffball ",
		"", "",
		"14.9", "0",
		"1", 1,
		"Stück", "126",
		"Farbe;orange@", "pd1235380063.htm",
		"", 1,
		"13004-100", "0",
		 0)
	
		Entry[290] = new Element(
		290, "assets/thumb/gag-009-Listbild.jpg",
		150, 200,
		"gag-009-1", "Gummiball 38mm",
		"", "",
		"14.9", "0",
		"1", 1,
		"Stück", "126",
		"Farbe;rot@", "pd-837887732.htm",
		"", 1,
		"13004-100", "0",
		 0)
	
		Entry[291] = new Element(
		291, "assets/thumb/gag-010-Listbild.jpg",
		200, 150,
		"gag-010-1", "weicher Kunststoffball 40mm",
		"", "",
		"14.9", "0",
		"1", 1,
		"Stück", "126",
		"Farbe;gelb@", "pd-839668794.htm",
		"", 1,
		"13004-100", "0",
		 0)
	
		Entry[292] = new Element(
		292, "assets/thumb/gag-011-Listbild.jpg",
		200, 150,
		"gag-011-1", "Gummiball 38mm",
		"", "",
		"16.9", "0",
		"1", 1,
		"Stück", "126",
		"Farbe;rot@", "pd-797263669.htm",
		"", 1,
		"13004-100", "0",
		 0)
	
		Entry[293] = new Element(
		293, "assets/thumb/gag_005_listbild.jpg",
		200, 150,
		"gag-005-1", "Mundspreizer (Whitehead)",
		"ohne Zungendrücker", "",
		"39.9", "0",
		"1", 1,
		"Stück", "127",
		"Größe;11 cm@", "pd-1579474002.htm",
		"", 1,
		"13004-200", "0",
		 0)
	
		Entry[294] = new Element(
		294, "assets/thumb/gag_004_listbild.jpg",
		150, 200,
		"gag-004-1", "Mundspreizer (Whitehead)",
		"mit Zungendrücker", "",
		"39.9", "0",
		"1", 1,
		"Stück", "127",
		"Größe;11 cm@", "pd979666624.htm",
		"", 1,
		"13004-200", "0",
		 0)
	
		Entry[295] = new Element(
		295, "assets/thumb/gag-003_listbild.JPG",
		200, 150,
		"gag-003", "Mundsperrer nach Jennings",
		"", "",
		"29.9", "0",
		"1", 1,
		"Stück", "127",
		"", "pd-1673390168.htm",
		"", 1,
		"13004-200", "0",
		 0)
	
		Entry[296] = new Element(
		296, "assets/thumb/gag_001_listbild.jpg",
		132, 200,
		"gag-001-1", "Ring-Gag",
		"", "",
		"19.9", "0",
		"1", 1,
		"Stück", "127",
		"Durchmesser;45 mm@", "pd1815596668.htm",
		"", 1,
		"13004-200", "0",
		 0)
	
		Entry[297] = new Element(
		297, "assets/thumb/mask_001_listbild.jpg",
		132, 200,
		"mask-001", "Maske",
		"", "",
		"89.9", "0",
		"1", 1,
		"Stück", "129",
		"", "pd-781471331.htm",
		"", 1,
		"13004-400", "0",
		 0)
	
		Entry[298] = new Element(
		298, "assets/thumb/mask_002_listbild.jpg",
		150, 200,
		"mask-002", "Gasmaske",
		"", "",
		"39.9", "0",
		"1", 1,
		"Stück", "129",
		"", "pd1189594387.htm",
		"", 1,
		"13004-400", "0",
		 0)
	
		Entry[299] = new Element(
		299, "assets/thumb/eye-001-listbild.JPG",
		150, 200,
		"eye-001-4", "Augenbinde",
		"oder Mummy-Band", "",
		"9.5", "0",
		"1", 1,
		"Stück", "128",
		"Farbe;schwarz@", "pd1266745529.htm",
		"", 1,
		"13004-300", "0",
		 0)
	
		Entry[300] = new Element(
		300, "assets/thumb/eye-002-listbild.JPG",
		200, 150,
		"eye-002", "Augenmaske",
		"", "",
		"14.5", "0",
		"1", 1,
		"Stück", "128",
		"", "pd1608211889.htm",
		"", 1,
		"13004-300", "0",
		 0)
	
		Entry[301] = new Element(
		301, "assets/thumb/gag_002_listbild.jpg",
		150, 200,
		"gag-002-01", "Kopf-Harness",
		"", "",
		"49.9", "0",
		"1", 1,
		"Stück", "130",
		"Knebel;1: Vollgummi rot - 38 mm@", "pd-1468450260.htm",
		"", 1,
		"13004-500", "0",
		 0)
	
		Entry[302] = new Element(
		302, "assets/thumb/F-MM-1-Listbild.JPG",
		150, 200,
		"F-MMM-1-1", "Maulkorb",
		"", "",
		"44.9", "0",
		"1", 1,
		"Stück", "139,130,142,0,139,126",
		"Größe;L@", "pd-158053262.htm",
		"", 1,
		"13013,13004-500,15500,00,13013,13004-100", "0",
		 0)
	
		Entry[303] = new Element(
		303, "assets/thumb/f-pn-1de-listbild.JPG",
		200, 150,
		"F-PN-1de-4", "Pony-Geschirr",
		"", "",
		"69", "0",
		"1", 1,
		"Stück", "130",
		"Plums;ROT@", "pd893639163.htm",
		"", 1,
		"13004-500", "0",
		 0)
	
		Entry[304] = new Element(
		304, "assets/thumb/KB-914-listbild.JPG",
		150, 200,
		"KB-914-1-1", "Armschrauben",
		"", "",
		"69.9", "0",
		"1", 1,
		"Stück", "120",
		"Ausführung;Edelstahl@", "pd880069700.htm",
		"", 1,
		"13001-4", "0",
		 0)
	
		Entry[305] = new Element(
		305, "assets/thumb/sta-001-listbild.JPG",
		150, 200,
		"sta-001", "Strafanzug",
		"", "",
		"9.9", "0",
		"1", 1,
		"Stück", "120",
		"", "pd-1437452275.htm",
		"", 1,
		"13001-4", "0",
		 0)
	
		Entry[306] = new Element(
		306, "assets/thumb/KB-216-Listbild.JPG",
		150, 200,
		"KB-216", "Darby-Fessel-Set",
		"Hals/Hände", "",
		"89", "0",
		"1", 1,
		"Stück", "119",
		"", "pd1123229695.htm",
		"", 1,
		"13001-3", "0",
		 0)
	
		Entry[307] = new Element(
		307, "assets/thumb/ab-149-listbild.jpg",
		200, 160,
		"ab-149-1", "Noras Tortur (2)",
		"", "",
		"29", "0",
		"1", 1,
		"Stück", "21",
		"Lieferform;Download@", "pd1997661377.htm",
		"", 1,
		"10096", "0",
		 0)
	
		Entry[308] = new Element(
		308, "assets/thumb/ab-150-listbild.jpg",
		200, 160,
		"ab-150-1", "Jealous Girlfriends",
		"Neidische Freundinnen", "",
		"39", "0",
		"1", 1,
		"Stück", "22",
		"Lieferform;Download@", "pd-945304721.htm",
		"", 1,
		"10097", "0",
		 0)
	
		Entry[309] = new Element(
		309, "assets/thumb/ab-151-listbild.jpg",
		200, 160,
		"ab-151-1", "Kidnapped (1)",
		"- in der Hand der Domina - ", "",
		"39", "0",
		"1", 1,
		"Stück", "22",
		"Lieferform;Download@", "pd1124548319.htm",
		"", 1,
		"10097", "0",
		 0)
	
		Entry[310] = new Element(
		310, "assets/thumb/ab-152-listbild.jpg",
		200, 160,
		"ab-152-1", "Kidnapped (2)",
		"in der Hand der Domina", "",
		"39", "0",
		"1", 1,
		"Stück", "22",
		"Lieferform;Download@", "pd-1249166162.htm",
		"", 1,
		"10097", "0",
		 0)
	
		Entry[311] = new Element(
		311, "assets/thumb/hc-01-listbild.JPG",
		200, 150,
		"hc-01", "Head Cage",
		"Kopf-Käfig", "",
		"149", "0",
		"1", 1,
		"Stück", "130",
		"", "pd1125134814.htm",
		"", 1,
		"13004-500", "0",
		 0)
	
		Entry[312] = new Element(
		312, "assets/thumb/sa-13-listbild.jpg",
		138, 200,
		"sa-013", "Das SM-Handbuch - Spezial",
		"Teil 1", "Charon 040-313290 ",
		"22", "0",
		"2", 1,
		"Stück", "111",
		"", "pd1125416666.htm",
		"", 1,
		"12005", "0",
		 0)
	
		Entry[313] = new Element(
		313, "assets/thumb/ab-147-listbild.jpg",
		200, 160,
		"ab-147-1", "Nose Play",
		"", "",
		"29", "0",
		"1", 1,
		"Stück", "21",
		"Lieferform;Download@", "pd1125834717.htm",
		"", 1,
		"10096", "0",
		 0)
	
		Entry[314] = new Element(
		314, "assets/thumb/ab-153-listbild.jpg",
		200, 160,
		"ab-153-1", "Böses Erwachen",
		"Der Eignungstest", "",
		"39", "0",
		"1", 1,
		"Stück", "22",
		"Lieferform;Download@", "pd-2068572843.htm",
		"", 1,
		"10097", "0",
		 0)
	
		Entry[315] = new Element(
		315, "assets/thumb/kb-925-listbild.JPG",
		200, 150,
		"KB-925", "Fuß-Fesseln &quot; Irish 8 &quot;",
		"", "",
		"79.9", "0",
		"1", 1,
		"Stück", "118",
		"Ausführung;Edelstahl / Gr. L@", "pd1126433298.htm",
		"", 1,
		"13001-2", "0",
		 0)
	
		Entry[316] = new Element(
		316, "assets/thumb/ab-154-listbild.jpg",
		200, 160,
		"ab-154-1", "Die Zofe",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "22",
		"Lieferform;Download@", "pd1126882903.htm",
		"", 1,
		"10097", "0",
		 0)
	
		Entry[317] = new Element(
		317, "assets/thumb/ab-148-listbild.jpg",
		200, 160,
		"ab-148-1", "Evil Sister - more girls",
		"more girls", "",
		"29", "0",
		"1", 1,
		"Stück", "21",
		"Lieferform;Download@", "pd-1567654901.htm",
		"", 1,
		"10096", "0",
		 0)
	
		Entry[318] = new Element(
		318, "assets/thumb/ab-155-listbild.jpg",
		200, 160,
		"ab-155-1", "Wrapped and Shrinked",
		"Gefangen in Schrumpffolie", "",
		"39", "0",
		"1", 1,
		"Stück", "22",
		"Lieferform;Download@", "pd1128347183.htm",
		"", 1,
		"10097", "0",
		 0)
	
		Entry[319] = new Element(
		319, "assets/thumb/ab-156-listbild.jpg",
		200, 160,
		"ab-156-1", "Holidays with Surprise",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "22",
		"Lieferform;Download@", "pd1131816401.htm",
		"", 1,
		"10097", "0",
		 0)
	
		Entry[320] = new Element(
		320, "assets/thumb/ab-157-listbild.jpg",
		200, 160,
		"ab-157-1", "The Burglar (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "22",
		"Lieferform;Download@", "pd85507931.htm",
		"", 1,
		"10097", "0",
		 0)
	
		Entry[321] = new Element(
		321, "assets/thumb/ab-158-listbild.jpg",
		200, 160,
		"ab-158-1", "Tied in Leather &amp; Boots",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "22",
		"Lieferform;Download@", "pd-1285768557.htm",
		"", 1,
		"10097", "0",
		 0)
	
		Entry[322] = new Element(
		322, "assets/thumb/ab-159-listbild.jpg",
		200, 160,
		"ab-159-1", "Story of &quot;S&quot; and &quot;K&quot;",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "22",
		"Lieferform;Download@", "pd858895563.htm",
		"", 1,
		"10097", "0",
		 0)
	
		Entry[323] = new Element(
		323, "assets/thumb/bg-01-listbild.jpg",
		200, 164,
		"bg-01-1", "Silvana in Bondage",
		"Teil 1", "",
		"19.95", "0",
		"1", 1,
		"Stück", "42",
		"Lieferform;Download@", "pd1130184285.htm",
		"", 1,
		"1012-001", "0",
		 0)
	
		Entry[324] = new Element(
		324, "assets/thumb/bg-02-listbild.jpg",
		200, 164,
		"bg-02-1", "Silvana in Bondage",
		"Teil 2", "",
		"19.95", "0",
		"1", 1,
		"Stück", "42",
		"Lieferform;Download@", "pd1639285553.htm",
		"", 1,
		"1012-001", "0",
		 0)
	
		Entry[325] = new Element(
		325, "assets/thumb/bg-03-listbild.jpg",
		200, 164,
		"bg-03-1", "Anna in Bondage",
		"Teil 1", "",
		"19.95", "0",
		"1", 1,
		"Stück", "42",
		"Lieferform;Download@", "pd1127052555.htm",
		"", 1,
		"1012-001", "0",
		 0)
	
		Entry[326] = new Element(
		326, "assets/thumb/bg-04-listbild.jpg",
		200, 164,
		"bg-04-1", "Purgatori in Bondage",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "42",
		"Lieferform;Download@", "pd1128689598.htm",
		"", 1,
		"1012-001", "0",
		 0)
	
		Entry[327] = new Element(
		327, "assets/thumb/bg-05-listbild.jpg",
		200, 164,
		"bg-05-1", "Jasmin in Bondage",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "42",
		"Lieferform;Download@", "pd1130687178.htm",
		"", 1,
		"1012-001", "0",
		 0)
	
		Entry[328] = new Element(
		328, "assets/thumb/bg-06-listbild.jpg",
		200, 164,
		"bg-06", "Sandra in Bondage",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "42",
		"Lieferform;Download@", "pd-383029243.htm",
		"", 1,
		"1012-001", "0",
		 0)
	
		Entry[329] = new Element(
		329, "assets/thumb/bg-07-listbild.jpg",
		200, 164,
		"bg-07", "Sandra in Bondage Vol.2",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "42",
		"Lieferform;Download@", "pd1131903647.htm",
		"", 1,
		"1012-001", "0",
		 0)
	
		Entry[330] = new Element(
		330, "assets/thumb/bg-08-listbild.jpg",
		200, 164,
		"bg-08-1", "Anna in Bondage Vol.2",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "42",
		"Lieferform;Download@", "pd1133106383.htm",
		"", 1,
		"1012-001", "0",
		 0)
	
		Entry[331] = new Element(
		331, "assets/thumb/bg-09-listbild.jpg",
		200, 164,
		"bg-09-1", "Anna in Bondage Vol.3",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "42",
		"Lieferform;Download@", "pd1724473073.htm",
		"", 1,
		"1012-001", "0",
		 0)
	
		Entry[332] = new Element(
		332, "assets/thumb/bg-10-listbild.jpg",
		200, 164,
		"bg-10-1", "Anna in Bondage Vol.4",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "43",
		"Lieferform;Download@", "pd1842262013.htm",
		"", 1,
		"1012-002", "0",
		 0)
	
		Entry[333] = new Element(
		333, "assets/thumb/ga-01-listbild.jpg",
		200, 164,
		"ga-01-1", "Rent-a-Bondage &amp;",
		"The Perils of Kaukasuo-Cora", "",
		"39", "0",
		"1", 1,
		"Stück", "40",
		"Lieferform;Download@", "pd-161707659.htm",
		"", 1,
		"1011", "0",
		 0)
	
		Entry[334] = new Element(
		334, "assets/thumb/bg-11-listbild.jpg",
		200, 133,
		"bg-11-1", "Sabrina in Bondage Vol.1",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "43",
		"Lieferform;Download@", "pd1135943221.htm",
		"", 1,
		"1012-002", "0",
		 0)
	
		Entry[335] = new Element(
		335, "assets/thumb/cage-004-listbild.JPG",
		200, 150,
		"cage-004", "Käfig - Doggie Style",
		"", "",
		"67.9", "0",
		"1", 1,
		"Stück", "131",
		"", "pd1136034365.htm",
		"", 1,
		"13006", "0",
		 0)
	
		Entry[336] = new Element(
		336, "assets/thumb/bg-12-listbild.jpg",
		200, 164,
		"bg-12-1", "Susi in Bondage Vol.1",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "43",
		"Lieferform;Download@", "pd1137177226.htm",
		"", 1,
		"1012-002", "0",
		 0)
	
		Entry[337] = new Element(
		337, "assets/thumb/ab-160-listbild.jpg",
		200, 160,
		"ab-160-1", "Unexpected Return",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "23",
		"Lieferform;Download@", "pd-878345869.htm",
		"", 1,
		"10098", "0",
		 0)
	
		Entry[338] = new Element(
		338, "assets/thumb/bg-13-listbild.jpg",
		133, 200,
		"bg-13-1", "Sabrina in steel",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "43",
		"Lieferform;Download@", "pd1138287496.htm",
		"", 1,
		"1012-002", "0",
		 0)
	
		Entry[339] = new Element(
		339, "assets/thumb/ab-banner.jpg",
		564, 90,
		"lnk-001", "Amateur-Bondage",
		"Über 10.000 Bilder online, wöchentliche Updates", "",
		"0", "0",
		"1", 1,
		"Stück", "144",
		"", "http://www.amateur-bondage.net",
		"", 1,
		"90000", "0",
		 1)
	
		Entry[340] = new Element(
		340, "assets/thumb/bound-girls.jpg",
		564, 90,
		"lnk-002", "Bound Girls",
		"Über 2.000 Bilder online, wöchentliche Updates", "",
		"0", "0",
		"1", 1,
		"Stück", "144",
		"", "http://www.bound-girls.com",
		"", 1,
		"90000", "0",
		 1)
	
		Entry[341] = new Element(
		341, "assets/thumb/IR468x60_07.jpg",
		468, 64,
		"lnk-003", "Infernal Restraints",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "144",
		"", "http://refer.ccbill.com/cgi-bin/clicks.cgi?ca=930799-0001&pa=1610807",
		"", 1,
		"90000", "0",
		 1)
	
		Entry[342] = new Element(
		342, "assets/thumb/stealthid-com-banner-564x130-bondage-en.gif",
		564, 130,
		"lnk-004", "StealthID",
		"anonymer Download", "",
		"0", "0",
		"1", 1,
		"Stück", "144",
		"", "http://www.stealthid.com",
		"", 1,
		"90000", "0",
		 1)
	
		Entry[343] = new Element(
		343, "assets/thumb/bu.gif",
		468, 60,
		"lnk-005", "Beate Uhse",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "144",
		"", "pd1139438059.htm",
		"", 1,
		"90000", "0",
		 1)
	
		Entry[344] = new Element(
		344, "assets/thumb/bg-14-listbild.jpg",
		133, 200,
		"bg-14-1", "Sabrina in Bondage Vol. 2",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "43",
		"Lieferform;Download@", "pd1139559399.htm",
		"", 1,
		"1012-002", "0",
		 0)
	
		Entry[345] = new Element(
		345, "assets/thumb/ab-161-listbild.jpg",
		200, 160,
		"ab-161-1", "Straitjackets",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "23",
		"Lieferform;Download@", "pd358641273.htm",
		"", 1,
		"10098", "0",
		 0)
	
		Entry[346] = new Element(
		346, "assets/thumb/anja-logo-600.jpg",
		600, 81,
		"lnk-006", "My Bondage Girl",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "144",
		"", "pd1140023407.htm",
		"", 1,
		"90000", "0",
		 1)
	
		Entry[347] = new Element(
		347, "assets/thumb/furfashionguide.jpg",
		830, 120,
		"lnk-007", "Fur Fashion Guide",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "144",
		"", "http://www.furfashionguide.com",
		"", 1,
		"90000", "0",
		 1)
	
		Entry[348] = new Element(
		348, "assets/images/nopicture.gif",
		75, 50,
		"lnk-008", "Sklavenzentrale",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "144",
		"", "http://www.sklavenzentrale.com",
		"", 1,
		"90000", "0",
		 1)
	
		Entry[349] = new Element(
		349, "assets/thumb/banner_bdstore.jpg",
		540, 50,
		"lnk-009", "Spandexplanet",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "144",
		"", "http://www.spandexplanet.com",
		"", 1,
		"90000", "0",
		 1)
	
		Entry[350] = new Element(
		350, "assets/thumb/bg-15-listbild.jpg",
		200, 164,
		"bg-15-1", "Susi + Sabrina",
		"Hände hoch !", "",
		"39", "0",
		"1", 1,
		"Stück", "43",
		"Lieferform;Download@", "pd1140281364.htm",
		"", 1,
		"1012-002", "0",
		 0)
	
		Entry[351] = new Element(
		351, "assets/thumb/muddy.jpg",
		468, 60,
		"lnk-002-1", "Muddygirlies",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "144",
		"", "http://www.affiliate-cash.de/kunden.php?nummer=690930062&progid=20637",
		"", 1,
		"90000", "0",
		 1)
	
		Entry[352] = new Element(
		352, "assets/thumb/bg-16-listbild.jpg",
		200, 164,
		"bg-16-1", "Sabrina in Bondage (4)",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "43",
		"Lieferform;Download@", "pd1141581315.htm",
		"", 1,
		"1012-002", "0",
		 0)
	
		Entry[353] = new Element(
		353, "assets/thumb/ab-162-listbild.jpg",
		200, 160,
		"ab-162-1", "The Disk",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "23",
		"Lieferform;Download@", "pd1141932968.htm",
		"", 1,
		"10098", "0",
		 0)
	
		Entry[354] = new Element(
		354, "assets/thumb/bg-17-listbild.jpg",
		133, 200,
		"bg-17-1", "Susi und die Mietschulden",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "43",
		"Lieferform;Download@", "pd1812711217.htm",
		"", 1,
		"1012-002", "0",
		 0)
	
		Entry[355] = new Element(
		355, "assets/thumb/ab-121-listbild.jpg",
		200, 160,
		"ab-121-1", "The Burglar",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "19",
		"Lieferform;Download@", "pd1095055929.htm",
		"", 1,
		"10094", "0",
		 0)
	
		Entry[356] = new Element(
		356, "assets/thumb/ab-122-listbild.jpg",
		200, 160,
		"ab-122-1", "The Bondage Contest (1)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "19",
		"Lieferform;Download@", "pd-730279466.htm",
		"", 1,
		"10094", "0",
		 0)
	
		Entry[357] = new Element(
		357, "assets/thumb/ab-123-listbild.JPG",
		200, 150,
		"ab-123-1", "Kallisti: Slave Girl (2)",
		"", "",
		"44", "0",
		"1", 1,
		"Stück", "19",
		"Lieferform;Download@", "pd546072105.htm",
		"", 1,
		"10094", "0",
		 0)
	
		Entry[358] = new Element(
		358, "assets/thumb/ab-124-listbild.jpg",
		200, 160,
		"ab-124-1", "Punished for Stealing (1)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "19",
		"Lieferform;Download@", "pd1096648319.htm",
		"", 1,
		"10094", "0",
		 0)
	
		Entry[359] = new Element(
		359, "assets/thumb/ab-125-listbild.jpg",
		200, 160,
		"ab-125-1", "The Assault",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "19",
		"Lieferform;Download@", "pd1098539594.htm",
		"", 1,
		"10094", "0",
		 0)
	
		Entry[360] = new Element(
		360, "assets/thumb/ab-126-listbild.jpg",
		200, 160,
		"ab-126-1", "Illegal Interrogation",
		"Das geheime Verhör", "",
		"39", "0",
		"1", 1,
		"Stück", "19",
		"Lieferform;Download@", "pd1854515119.htm",
		"", 1,
		"10094", "0",
		 0)
	
		Entry[361] = new Element(
		361, "assets/thumb/ro-14.jpg",
		136, 200,
		"ro-014", "Fox - wen Du verlierst, bist du Freiwild",
		"", "",
		"16.5", "0",
		"2", 1,
		"Stück", "110",
		"", "pd1099566253.htm",
		"", 1,
		"12004", "0",
		 0)
	
		Entry[362] = new Element(
		362, "assets/thumb/ro-15.jpg",
		140, 200,
		"ro-015", "Die Fremde",
		"", "",
		"13.5", "0",
		"2", 1,
		"Stück", "110",
		"", "pd-1333274973.htm",
		"", 1,
		"12004", "0",
		 0)
	
		Entry[363] = new Element(
		363, "assets/thumb/ro-16.jpg",
		140, 200,
		"ro-016", "Der letzte Schliff;  Teil II",
		"", "",
		"15", "0",
		"2", 1,
		"Stück", "110",
		"", "pd-451819127.htm",
		"", 1,
		"12004", "0",
		 0)
	
		Entry[364] = new Element(
		364, "assets/thumb/ro-17.jpg",
		138, 200,
		"ro-017", "My dark Side",
		"", "",
		"16.8", "0",
		"2", 1,
		"Stück", "110",
		"", "pd-1959145761.htm",
		"", 1,
		"12004", "0",
		 0)
	
		Entry[365] = new Element(
		365, "assets/thumb/ro-18.jpg",
		140, 200,
		"ro-018", "Ich war kein braves Mädchen, Santa Claus...",
		"", "",
		"15", "0",
		"2", 1,
		"Stück", "110",
		"", "pd1868164133.htm",
		"", 1,
		"12004", "0",
		 0)
	
		Entry[366] = new Element(
		366, "assets/thumb/ro-19.jpg",
		152, 200,
		"ro-019", "Stille Tage in Roissy",
		"", "",
		"19", "0",
		"2", 1,
		"Stück", "110",
		"", "pd1614914267.htm",
		"", 1,
		"12004", "0",
		 0)
	
		Entry[367] = new Element(
		367, "assets/thumb/ro-20.jpg",
		140, 200,
		"ro-020", "Lustvolle Unterwerfung",
		"", "",
		"18", "0",
		"2", 1,
		"Stück", "110",
		"", "pd1099997704.htm",
		"", 1,
		"12004", "0",
		 0)
	
		Entry[368] = new Element(
		368, "assets/thumb/ab-127-listbild.jpg",
		200, 160,
		"ab-127-1", "Punished for Stealing (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "19",
		"Lieferform;Download@", "pd1100343520.htm",
		"", 1,
		"10094", "0",
		 0)
	
		Entry[369] = new Element(
		369, "assets/thumb/ab-128-listbild.jpg",
		200, 160,
		"ab-128-1", "Entrance Examination",
		"Die Aufnahmeprüfung", "",
		"39", "0",
		"1", 1,
		"Stück", "19",
		"Lieferform;Download@", "pd1100427198.htm",
		"", 1,
		"10094", "0",
		 0)
	
		Entry[370] = new Element(
		370, "assets/thumb/ab-129-listbild.jpg",
		200, 160,
		"ab-129-1", "Revenge is sweet (2)",
		"Rache ist süß (2)", "",
		"39", "0",
		"1", 1,
		"Stück", "19",
		"Lieferform;Download@", "pd1100883555.htm",
		"", 1,
		"10094", "0",
		 0)
	
		Entry[371] = new Element(
		371, "assets/thumb/cuf_010_listbild.jpg",
		200, 150,
		"cuf-011", "Handschellen - Breitscharnier",
		"", "",
		"31", "0",
		"1", 1,
		"Stück", "117",
		"", "pd-1482335322.htm",
		"", 1,
		"13001-1", "0",
		 0)
	
		Entry[372] = new Element(
		372, "assets/thumb/cuf_011_listbild.jpg",
		200, 132,
		"cuf-012", "Fußfesseln - extra stark",
		"", "",
		"29.9", "0",
		"1", 1,
		"Stück", "118",
		"", "pd708674116.htm",
		"", 1,
		"13001-2", "0",
		 0)
	
		Entry[373] = new Element(
		373, "assets/thumb/cuf_014_listbild.jpg",
		200, 150,
		"cuf-014", "Fußfesseln",
		"", "",
		"49.9", "0",
		"1", 1,
		"Stück", "118",
		"", "pd-1842793173.htm",
		"", 1,
		"13001-2", "0",
		 0)
	
		Entry[374] = new Element(
		374, "assets/thumb/KB-918 Nickel.JPG",
		200, 150,
		"KB-918", "Darby-Fußfesseln",
		"", "",
		"56.9", "0",
		"1", 1,
		"Stück", "118",
		"Ausführung;Edelstahl@", "pd-2125588056.htm",
		"", 1,
		"13001-2", "0",
		 0)
	
		Entry[375] = new Element(
		375, "assets/thumb/kb-919_listbild.JPG",
		200, 150,
		"KB-919", "Darby-Fußfesseln ",
		"", "",
		"69", "0",
		"1", 1,
		"Stück", "118",
		"Ausführung;standard@", "pd-320622035.htm",
		"", 1,
		"13001-2", "0",
		 0)
	
		Entry[376] = new Element(
		376, "assets/thumb/KB-121-Nickel.JPG",
		200, 150,
		"KB-121", "Darby-Handschellen",
		"", "",
		"29.9", "500",
		"1", 1,
		"Stück", "117",
		"Ausführung;standard / Gr. S@", "pd1066210268.htm",
		"", 1,
		"13001-1", "0",
		 0)
	
		Entry[377] = new Element(
		377, "assets/thumb/KB-916-Nickel.JPG",
		200, 150,
		"KB-916", "Darby-Handschellen",
		"", "",
		"39.95", "0",
		"1", 1,
		"Stück", "117",
		"Ausführung;Edelstahl / Gr. L@", "pd-1091302038.htm",
		"", 1,
		"13001-1", "0",
		 0)
	
		Entry[378] = new Element(
		378, "assets/thumb/KB-217-Listbild.JPG",
		200, 150,
		"KB-217", "Darby-Fessel-Set",
		"Hand/Füße", "",
		"129", "0",
		"1", 1,
		"Stück", "119",
		"", "pd1110781832.htm",
		"", 1,
		"13001-3", "0",
		 0)
	
		Entry[379] = new Element(
		379, "assets/thumb/KB-218-listbild.JPG",
		200, 150,
		"KB-218", "Darby-Fessel-Set",
		"Hals/Hand/Füße", "",
		"189", "0",
		"1", 1,
		"Stück", "119",
		"Ausführung;standard / Gr. S@", "pd908527041.htm",
		"", 1,
		"13001-3", "0",
		 0)
	
		Entry[380] = new Element(
		380, "assets/thumb/KB-815-listbild.JPG",
		150, 200,
		"KB-815", "Gürtel mit Kette",
		"", "",
		"49.9", "0",
		"1", 1,
		"Stück", "120",
		"Ausführung;standard / Gr. S@", "pd-519722055.htm",
		"", 1,
		"13001-4", "0",
		 0)
	
		Entry[381] = new Element(
		381, "assets/thumb/KB-816-listbild.JPG",
		200, 150,
		"KB-816", "Gürtel mit Kette",
		"", "",
		"49.9", "0",
		"1", 1,
		"Stück", "120",
		"Ausführung;standard / Gr. S@", "pd842125653.htm",
		"", 1,
		"13001-4", "0",
		 0)
	
		Entry[382] = new Element(
		382, "assets/thumb/KB-911-listbild.JPG",
		200, 150,
		"KB-911-S-L", "Halsring Edelstahl",
		"", "",
		"35.9", "0",
		"1", 1,
		"Stück", "120",
		"Ausführung;Edelstahl / Gr. L@", "pd-387774369.htm",
		"", 1,
		"13001-4", "0",
		 0)
	
		Entry[383] = new Element(
		383, "assets/thumb/kb-912_listbild.JPG",
		200, 150,
		"KB-912", "Halsring ",
		"", "",
		"49.9", "0",
		"1", 1,
		"Stück", "120",
		"Ausführung;Edelstahl /Gr. S@", "pd2029831945.htm",
		"", 1,
		"13001-4", "0",
		 0)
	
		Entry[384] = new Element(
		384, "assets/thumb/kb-917_listbild.JPG",
		200, 150,
		"KB-917-S", "Handschellen &quot; Irish 8 &quot;",
		"", "",
		"39.9", "0",
		"1", 1,
		"Stück", "120",
		"Größe;S@", "pd1247527333.htm",
		"", 1,
		"13001-4", "0",
		 0)
	
		Entry[385] = new Element(
		385, "assets/thumb/tc_001_listbild.jpg",
		200, 150,
		"tc-001", "Thumbcuffs",
		"", "",
		"19.9", "0",
		"1", 1,
		"Stück", "120",
		"", "pd1399684752.htm",
		"", 1,
		"13001-4", "0",
		 0)
	
		Entry[386] = new Element(
		386, "assets/thumb/HR-AD-305-Listbild.JPG",
		200, 150,
		"HR-AD-305", "Fuss-Fessel",
		"", "",
		"135", "0",
		"1", 1,
		"Stück", "122",
		"", "pd-988771994.htm",
		"", 1,
		"130014", "0",
		 0)
	
		Entry[387] = new Element(
		387, "assets/thumb/HR-KIT-6-listbild.JPG",
		150, 200,
		"HR-KIT-6", "Fessel Set",
		"Hände, Füße, Tasche", "",
		"328.8", "0",
		"1", 1,
		"Stück", "122",
		"", "pd-178559484.htm",
		"", 1,
		"130014", "0",
		 0)
	
		Entry[388] = new Element(
		388, "assets/thumb/F-STCL-1-Listbild.JPG",
		200, 150,
		"F-STCL-1-3", "Zwangsjacke aus Segeltuch mit Lederriemen",
		"", "",
		"129", "0",
		"1", 1,
		"Stück", "123",
		"Größe;S@", "pd358087029.htm",
		"", 1,
		"130015", "0",
		 0)
	
		Entry[389] = new Element(
		389, "assets/thumb/SJ-POSEY-Listbild.JPG",
		150, 200,
		"F-Posey-1", "Posey-Zwangsjacke",
		"Model 8118", "",
		"349", "0",
		"1", 1,
		"Stück", "123",
		"Größe;L@", "pd1836522407.htm",
		"", 1,
		"130015", "0",
		 0)
	
		Entry[390] = new Element(
		390, "assets/thumb/ab-130-listbild.jpg",
		200, 160,
		"ab-130-1", "Punished for Stealing (3)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "20",
		"Lieferform;Download@", "pd-1330619707.htm",
		"", 1,
		"10095", "0",
		 0)
	
		Entry[391] = new Element(
		391, "assets/thumb/ab-131-listbild.jpg",
		200, 160,
		"ab-131-1", "Santa Kallisti",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "20",
		"Lieferform;Download@", "pd1102242440.htm",
		"", 1,
		"10095", "0",
		 0)
	
		Entry[392] = new Element(
		392, "assets/thumb/ab-132-listbild.jpg",
		200, 160,
		"ab-132-1", "Attack in the Forest",
		"Im Wald überfallen", "",
		"29", "0",
		"1", 1,
		"Stück", "20",
		"Lieferform;Download@", "pd1102766712.htm",
		"", 1,
		"10095", "0",
		 0)
	
		Entry[393] = new Element(
		393, "assets/thumb/ab-133-listbild.jpg",
		200, 160,
		"ab-133-1", "Evil Sister - The Revenge",
		"Rache an Nora", "",
		"39", "0",
		"1", 1,
		"Stück", "20",
		"Lieferform;Download@", "pd1103373776.htm",
		"", 1,
		"10095", "0",
		 0)
	
		Entry[394] = new Element(
		394, "assets/thumb/ab-134-listbild.jpg",
		200, 160,
		"ab-134-1", "The Bondage Contest (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "20",
		"Lieferform;Download@", "pd1104501502.htm",
		"", 1,
		"10095", "0",
		 0)
	
		Entry[395] = new Element(
		395, "assets/thumb/ab-136-listbild.jpg",
		200, 160,
		"ab-136-1", "We like bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "20",
		"Lieferform;Download@", "pd1106852045.htm",
		"", 1,
		"10095", "0",
		 0)
	
		Entry[396] = new Element(
		396, "assets/thumb/ab-135-listbild.jpg",
		200, 160,
		"ab-135-1", "Photosession - live",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "20",
		"Lieferform;Download@", "pd-676076895.htm",
		"", 1,
		"10095", "0",
		 0)
	
		Entry[397] = new Element(
		397, "assets/thumb/ab-137-listbild.jpg",
		200, 160,
		"ab-137-1", "Barefoot in the Forest",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "20",
		"Lieferform;Download@", "pd-1394800513.htm",
		"", 1,
		"10095", "0",
		 0)
	
		Entry[398] = new Element(
		398, "assets/thumb/ab-138-listbild.jpg",
		200, 160,
		"ab-138-1", "The Trap",
		"Die Falle", "",
		"39", "0",
		"1", 1,
		"Stück", "20",
		"Lieferform;Download@", "pd1111244820.htm",
		"", 1,
		"10095", "0",
		 0)
	
		Entry[399] = new Element(
		399, "assets/thumb/ab-139-listbild.jpg",
		200, 160,
		"ab-139-1", "Nora´s Tortur (1)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "20",
		"Lieferform;Download@", "pd1569973114.htm",
		"", 1,
		"10095", "0",
		 0)
	
		Entry[400] = new Element(
		400, "assets/thumb/ab-140-listbild.jpg",
		200, 160,
		"ab-140-1", "Feanora",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "21",
		"Lieferform;Download@", "pd-2123645028.htm",
		"", 1,
		"10096", "0",
		 0)
	
		Entry[401] = new Element(
		401, "assets/thumb/f-sss-1-listbild.JPG",
		150, 200,
		"F-SSS-1", "Fesselset",
		"Hals/Hand/Füße - Spikes", "",
		"69", "0",
		"1", 1,
		"Stück", "119",
		"", "pd-229497369.htm",
		"", 1,
		"13001-3", "0",
		 0)
	
		Entry[402] = new Element(
		402, "assets/thumb/KB-490-listbild.JPG",
		200, 150,
		"KB-490", "Handfessel mit D-Ring",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "121",
		"", "pd1021647067.htm",
		"", 1,
		"13001-5", "0",
		 0)
	
		Entry[403] = new Element(
		403, "assets/thumb/KB-490-listbild.JPG",
		200, 150,
		"KB-491", "Fussfessel mit D-Ring",
		"", "",
		"24.95", "0",
		"1", 1,
		"Stück", "121",
		"", "pd1945870746.htm",
		"", 1,
		"13001-5", "0",
		 0)
	
		Entry[404] = new Element(
		404, "assets/thumb/ab-141-listbild.jpg",
		200, 160,
		"ab-141-1", "Foot Slave",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "21",
		"Lieferform;Download@", "pd1115486003.htm",
		"", 1,
		"10096", "0",
		 0)
	
		Entry[405] = new Element(
		405, "assets/thumb/bg-listbild.jpg",
		200, 133,
		"mitglied-bg", "Mitglied www.bound-girls.com",
		"", "",
		"12", "0",
		"1", 1,
		"", "143",
		"", "pd1116766332.htm",
		"", 1,
		"16000", "0",
		 0)
	
		Entry[406] = new Element(
		406, "assets/thumb/ab-142-listbild.jpg",
		200, 160,
		"ab-142-1", "Trauma",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "21",
		"Lieferform;Download@", "pd-1629238518.htm",
		"", 1,
		"10096", "0",
		 0)
	
		Entry[407] = new Element(
		407, "assets/thumb/KB-350-listbild.JPG",
		200, 150,
		"KB-350-1", "Zwangshose",
		"", "",
		"149", "0",
		"1", 1,
		"Stück", "120",
		"Umfang;L (91 cm)@", "pd1117046517.htm",
		"", 1,
		"13001-4", "0",
		 0)
	
		Entry[408] = new Element(
		408, "assets/thumb/se-004-listbild.JPG",
		200, 150,
		"se-004-2", "Baumwollseil ",
		"", "",
		"1.3", "0",
		"1", 1,
		"Meter", "124",
		"Farbe;rot@", "pd1117274011.htm",
		"", 1,
		"13003", "0",
		 0)
	
		Entry[409] = new Element(
		409, "assets/thumb/la-cd-listbild.jpg",
		200, 151,
		"la-cd-1", "Lara Bondage",
		"", "",
		"24.95", "0",
		"1", 1,
		"Stück", "141",
		"", "pd1117735729.htm",
		"", 1,
		"15001", "0",
		 0)
	
		Entry[410] = new Element(
		410, "assets/thumb/ab-143-listbild.jpg",
		200, 160,
		"ab-143-1", "Robbery at Furrier´s",
		"Überfall im Pelzgeschäft", "",
		"39", "0",
		"1", 1,
		"Stück", "21",
		"Lieferform;Download@", "pd1118501076.htm",
		"", 1,
		"10096", "0",
		 0)
	
		Entry[411] = new Element(
		411, "assets/thumb/ab-144-listbild.jpg",
		200, 160,
		"ab-144-1", "Force Feeding",
		"Zwangsfütterung!", "",
		"39", "0",
		"1", 1,
		"Stück", "21",
		"Lieferform;Download@", "pd1056153533.htm",
		"", 1,
		"10096", "0",
		 0)
	
		Entry[412] = new Element(
		412, "assets/thumb/ab-164-listbild.jpg",
		200, 160,
		"ab-164-1", "Arrested !",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "23",
		"Lieferform;Download@", "pd1144484639.htm",
		"", 1,
		"10098", "0",
		 0)
	
		Entry[413] = new Element(
		413, "assets/thumb/ab-165-listbild.jpg",
		200, 160,
		"ab-165-1", "Noseplay (2)",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "23",
		"Lieferform;Download@", "pd-1873265069.htm",
		"", 1,
		"10098", "0",
		 0)
	
		Entry[414] = new Element(
		414, "assets/thumb/KB-303-listbild.JPG",
		200, 150,
		"KB-303-1", "Vollmaske aus Baumwolle",
		"", "",
		"24.95", "0",
		"1", 1,
		"Stück", "129",
		"Größe;L@", "pd1144855504.htm",
		"", 1,
		"13004-400", "0",
		 0)
	
		Entry[415] = new Element(
		415, "assets/thumb/el-01-listbild.jpg",
		200, 160,
		"el-01-1", "Gentle meets El Marino",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "52",
		"Lieferform;Download@", "pd1137331820.htm",
		"", 1,
		"11000-el", "0",
		 0)
	
		Entry[416] = new Element(
		416, "assets/thumb/el-02-listbild.jpg",
		200, 164,
		"el-02-1", "The girls of cuffworld",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "52",
		"Lieferform;Download@", "pd40792223.htm",
		"", 1,
		"11000-el", "0",
		 0)
	
		Entry[417] = new Element(
		417, "assets/thumb/el-03-listbild.jpg",
		200, 164,
		"el-03-1", "Dreams",
		"- with Model Pam -", "",
		"26", "0",
		"1", 1,
		"Stück", "52",
		"Lieferform;Download@", "pd1174477065.htm",
		"", 1,
		"11000-el", "0",
		 0)
	
		Entry[418] = new Element(
		418, "assets/thumb/bg-18-listbild.jpg",
		200, 133,
		"bg-18-1", "Angie in Bondage (1)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "43",
		"Lieferform;Download@", "pd1145862897.htm",
		"", 1,
		"1012-002", "0",
		 0)
	
		Entry[419] = new Element(
		419, "assets/thumb/bg-19-listbild.jpg",
		200, 133,
		"bg-19-1", "Der Versicherungsfall",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "43",
		"Lieferform;Download@", "pd1772483501.htm",
		"", 1,
		"1012-002", "0",
		 0)
	
		Entry[420] = new Element(
		420, "assets/thumb/ab-166-listbild.jpg",
		200, 160,
		"ab-166-1", "The Failed Exam",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "23",
		"Lieferform;Download@", "pd1147508025.htm",
		"", 1,
		"10098", "0",
		 0)
	
		Entry[421] = new Element(
		421, "assets/thumb/ab-167-listbild.jpg",
		200, 160,
		"ab-167-1", "Winterbondage (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "23",
		"Lieferform;Download@", "pd-937360847.htm",
		"", 1,
		"10098", "0",
		 0)
	
		Entry[422] = new Element(
		422, "assets/thumb/cl-12d-listbild.jpg",
		200, 150,
		"cl-012d", "Clejuso No. 12-D",
		"", "",
		"39.9", "0",
		"1", 1,
		"Stück", "132",
		"", "pd1148312412.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[423] = new Element(
		423, "assets/thumb/hh-08-listbild.jpg",
		200, 164,
		"ski-08-1", "Der Armbinder",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "103",
		"Lieferform;Download@", "pd234788627.htm",
		"", 1,
		"HH", "0",
		 0)
	
		Entry[424] = new Element(
		424, "assets/thumb/ab-168-listbild.jpg",
		200, 160,
		"ab-168-1", "Caught by the Burglar",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "23",
		"Lieferform;Download@", "pd1149009408.htm",
		"", 1,
		"10098", "0",
		 0)
	
		Entry[425] = new Element(
		425, "assets/thumb/bg-21-listbild.jpg",
		200, 133,
		"bg-21-1", "Miri in Lycra",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "44",
		"Lieferform;Download@", "pd1149414352.htm",
		"", 1,
		"1012-003", "0",
		 0)
	
		Entry[426] = new Element(
		426, "assets/thumb/bg-22-listbild.jpg",
		200, 133,
		"bg-22-1", "Nikky in Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "44",
		"Lieferform;Download@", "pd837910691.htm",
		"", 1,
		"1012-003", "0",
		 0)
	
		Entry[427] = new Element(
		427, "assets/thumb/ab-169-listbild.jpg",
		200, 160,
		"ab-169-1", "Fur Queen",
		"Die Pelzdomina", "",
		"39", "0",
		"1", 1,
		"Stück", "23",
		"Lieferform;Download@", "pd1149689000.htm",
		"", 1,
		"10098", "0",
		 0)
	
		Entry[428] = new Element(
		428, "assets/thumb/ST-SS-1-listbild.JPG",
		150, 200,
		"ST-SS-1", "Scavengers Sister",
		"", "",
		"149", "0",
		"1", 1,
		"Stück", "4",
		"", "pd1240105830.htm",
		"", 1,
		"102000", "0",
		 0)
	
		Entry[429] = new Element(
		429, "assets/thumb/ab-170-listbild.jpg",
		200, 160,
		"ab-170-1", "Bagged",
		"- eingesackt -", "",
		"39", "0",
		"1", 1,
		"Stück", "24",
		"Lieferform;Download@", "pd417427170.htm",
		"", 1,
		"10099", "0",
		 0)
	
		Entry[430] = new Element(
		430, "assets/thumb/ab-171-listbild.jpg",
		200, 160,
		"ab-171-1", "To hot for mittens and fur?",
		"Zu heiß für Handschuhe und Pelz?", "",
		"39", "0",
		"1", 1,
		"Stück", "24",
		"Lieferform;Download@", "pd-1624329997.htm",
		"", 1,
		"10099", "0",
		 0)
	
		Entry[431] = new Element(
		431, "assets/thumb/bg-23-listbild.jpg",
		200, 133,
		"bg-23-1", "Anita in Bondage (1)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "44",
		"Lieferform;Download@", "pd1151232926.htm",
		"", 1,
		"1012-003", "0",
		 0)
	
		Entry[432] = new Element(
		432, "assets/thumb/bg-24-listbild.jpg",
		200, 133,
		"bg-24-1", "Lucy &amp; Anita im Hogtie",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "44",
		"Lieferform;Download@", "pd1338496852.htm",
		"", 1,
		"1012-003", "0",
		 0)
	
		Entry[433] = new Element(
		433, "assets/thumb/hh-03-listbild.jpg",
		200, 164,
		"ski-03-1", "Nackt und gefesselt",
		"im Skianzug", "",
		"39", "0",
		"1", 1,
		"Stück", "103",
		"Lieferform;Download@", "pd-2119335661.htm",
		"", 1,
		"HH", "0",
		 0)
	
		Entry[434] = new Element(
		434, "assets/thumb/hg-listbild.jpg",
		200, 150,
		"mitglied-hg", "Mitglied www.helpless-girls.com",
		"ab 9,50 / Monat", "",
		"14.5", "0",
		"1", 1,
		"", "143",
		"", "pd1151610189.htm",
		"", 1,
		"16000", "0",
		 0)
	
		Entry[435] = new Element(
		435, "assets/thumb/wicr-listbild.JPG",
		150, 200,
		"WICR", "Witch-Cross",
		"", "",
		"189", "0",
		"1", 1,
		"Stück", "4",
		"", "pd407385356.htm",
		"", 1,
		"102000", "0",
		 0)
	
		Entry[436] = new Element(
		436, "assets/thumb/ab-172-listbild.jpg",
		200, 160,
		"ab-172-1", "Chloroformed again",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "24",
		"Lieferform;Download@", "pd1152694238.htm",
		"", 1,
		"10099", "0",
		 0)
	
		Entry[437] = new Element(
		437, "assets/thumb/ab-173-listbild.jpg",
		200, 160,
		"ab-173-1", "The Patient",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "24",
		"Lieferform;Download@", "pd480526966.htm",
		"", 1,
		"10099", "0",
		 0)
	
		Entry[438] = new Element(
		438, "assets/thumb/tag-126a-listbild.jpg",
		200, 136,
		"tag-126-a-1", "Amber",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "90",
		"Lieferform;Download@", "pd1202208249.htm",
		"", 1,
		"8000-130", "0",
		 0)
	
		Entry[439] = new Element(
		439, "assets/thumb/tag-126b-listbild.jpg",
		200, 136,
		"tag-126-b-1", "Shannon",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "90",
		"Lieferform;Download@", "pd-511030259.htm",
		"", 1,
		"8000-130", "0",
		 0)
	
		Entry[440] = new Element(
		440, "assets/thumb/tag-132a-listbild.jpg",
		200, 164,
		"tag-132-a-1", "Carmet",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "91",
		"Lieferform;Download@", "pd1148043401.htm",
		"", 1,
		"8000-140", "0",
		 0)
	
		Entry[441] = new Element(
		441, "assets/thumb/tag-132b-listbild.jpg",
		200, 136,
		"tag-132-b-1", "Jewel",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "91",
		"Lieferform;Download@", "pd528492417.htm",
		"", 1,
		"8000-140", "0",
		 0)
	
		Entry[442] = new Element(
		442, "assets/thumb/tag-134a-listbild.jpg",
		200, 136,
		"tag-134-a-1", "Faith",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "91",
		"Lieferform;Download@", "pd1151060586.htm",
		"", 1,
		"8000-140", "0",
		 0)
	
		Entry[443] = new Element(
		443, "assets/thumb/tag-134b-listbild.jpg",
		200, 136,
		"tag-134-b-1", "Tamara",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "91",
		"Lieferform;Download@", "pd1637387950.htm",
		"", 1,
		"8000-140", "0",
		 0)
	
		Entry[444] = new Element(
		444, "assets/thumb/tag-139-listbild.jpg",
		200, 164,
		"tag-139-1", "Natalia",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "91",
		"Lieferform;Download@", "pd-191879081.htm",
		"", 1,
		"8000-140", "0",
		 0)
	
		Entry[445] = new Element(
		445, "assets/thumb/tag-140-listbild.jpg",
		200, 164,
		"tag-140-1", "Ashley",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "92",
		"Lieferform;Download@", "pd1143193092.htm",
		"", 1,
		"8000-150", "0",
		 0)
	
		Entry[446] = new Element(
		446, "assets/thumb/tag-121-listbild.jpg",
		200, 164,
		"tag-121-1", "Sophia",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "90",
		"Lieferform;Download@", "pd1153056608.htm",
		"", 1,
		"8000-130", "0",
		 0)
	
		Entry[447] = new Element(
		447, "assets/thumb/ab-174-listbild.jpg",
		200, 160,
		"ab-174-1", "Arrested (3)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "24",
		"Lieferform;Download@", "pd1153476126.htm",
		"", 1,
		"10099", "0",
		 0)
	
		Entry[448] = new Element(
		448, "assets/thumb/ab-175-listbild.jpg",
		200, 160,
		"ab-175-1", "Die falsche Ministrantin",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "24",
		"Lieferform;Download@", "pd-1224132426.htm",
		"", 1,
		"10099", "0",
		 0)
	
		Entry[449] = new Element(
		449, "assets/thumb/bg-25-listbild.jpg",
		200, 133,
		"bg-25-1", "Lucy in Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "44",
		"Lieferform;Download@", "pd1153824435.htm",
		"", 1,
		"1012-003", "0",
		 0)
	
		Entry[450] = new Element(
		450, "assets/thumb/tag-29-listbild.jpg",
		200, 154,
		"tag-29-1", "Saige and friends",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "85",
		"Lieferform;Download@", "pd-1700565152.htm",
		"", 1,
		"8000-030", "0",
		 0)
	
		Entry[451] = new Element(
		451, "assets/thumb/tag-138-listbild.jpg",
		200, 164,
		"tag-138-1", "Liz",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "91",
		"Lieferform;Download@", "pd-1277663883.htm",
		"", 1,
		"8000-140", "0",
		 0)
	
		Entry[452] = new Element(
		452, "assets/thumb/wol-02-listbild.jpg",
		200, 164,
		"wol-02-1", "Wolfis Girls in Bondage (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "50",
		"Lieferform;Download@", "pd1154950689.htm",
		"", 1,
		"1013", "0",
		 0)
	
		Entry[453] = new Element(
		453, "assets/thumb/bg-26-listbild.jpg",
		200, 164,
		"bg-26-1", "Miri in Stahl verpackt",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "44",
		"Lieferform;Download@", "pd1621873254.htm",
		"", 1,
		"1012-003", "0",
		 0)
	
		Entry[454] = new Element(
		454, "assets/thumb/ski-06-listbild.jpg",
		200, 167,
		"ski-06-1", "Eigentlich wollte ich gar nicht!",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "103",
		"Lieferform;Download@", "pd1155824967.htm",
		"", 1,
		"HH", "0",
		 0)
	
		Entry[455] = new Element(
		455, "assets/thumb/rc_003_listbild.jpg",
		200, 150,
		"rc-003", "Sweet Gwendoline",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "81",
		"Lieferform;Download@", "pd614618581.htm",
		"", 1,
		"7000-10", "0",
		 0)
	
		Entry[456] = new Element(
		456, "assets/thumb/rc-04-Listbild.jpg",
		200, 164,
		"rc-004", "Ärztin in Not",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "81",
		"Lieferform;Download@", "pd1094110623.htm",
		"", 1,
		"7000-10", "0",
		 0)
	
		Entry[457] = new Element(
		457, "assets/thumb/rc-05-listbild.jpg",
		200, 164,
		"rc-005", "Eve secured in steel",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "81",
		"Lieferform;Download@", "pd2358582.htm",
		"", 1,
		"7000-10", "0",
		 0)
	
		Entry[458] = new Element(
		458, "assets/thumb/rc-06-listbild.jpg",
		200, 164,
		"rc-006-1", "Slave Service",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "81",
		"Lieferform;Download@", "pd1537773930.htm",
		"", 1,
		"7000-10", "0",
		 0)
	
		Entry[459] = new Element(
		459, "assets/thumb/rc-07-listbild.jpg",
		200, 164,
		"rc-007-1", "Castle of Terror",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "81",
		"Lieferform;Download@", "pd-1783089189.htm",
		"", 1,
		"7000-10", "0",
		 0)
	
		Entry[460] = new Element(
		460, "assets/thumb/rc-08-listbild.jpg",
		200, 164,
		"rc-008-1", "A Maid´s Day",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "81",
		"Lieferform;Download@", "pd-1312834444.htm",
		"", 1,
		"7000-10", "0",
		 0)
	
		Entry[461] = new Element(
		461, "assets/thumb/rc-09-listbild.jpg",
		200, 164,
		"rc-009-1", "Prison Girl in Chains",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "81",
		"Lieferform;Download@", "pd1670398592.htm",
		"", 1,
		"7000-10", "0",
		 0)
	
		Entry[462] = new Element(
		462, "assets/thumb/rc-10-listbild.jpg",
		200, 164,
		"rc-010-1", "False Friends",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "82",
		"Lieferform;Download@", "pd2036404225.htm",
		"", 1,
		"7000-20", "0",
		 0)
	
		Entry[463] = new Element(
		463, "assets/thumb/rc-11-listbild.jpg",
		200, 160,
		"rc-011-1", "No Parking",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "82",
		"Lieferform;Download@", "pd-437736295.htm",
		"", 1,
		"7000-20", "0",
		 0)
	
		Entry[464] = new Element(
		464, "assets/thumb/bg-28-listbild.jpg",
		200, 159,
		"bg-28-1", "Funny und die leckere Fesselung",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "44",
		"Lieferform;Download@", "pd421049437.htm",
		"", 1,
		"1012-003", "0",
		 0)
	
		Entry[465] = new Element(
		465, "assets/thumb/bg-30-listbild.jpg",
		200, 136,
		"bg-30-1", "Cindy total hilflos",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "45",
		"Lieferform;Download@", "pd628472228.htm",
		"", 1,
		"1012-30", "0",
		 0)
	
		Entry[466] = new Element(
		466, "assets/thumb/tag-79-listbild.jpg",
		200, 164,
		"tag-79-1", "Holly",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "87",
		"Lieferform;Download@", "pd-598503660.htm",
		"", 1,
		"8000-080", "0",
		 0)
	
		Entry[467] = new Element(
		467, "assets/thumb/sib-listbild.jpg",
		200, 160,
		"sib-01-1", "Sockgirls in Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "40",
		"Lieferform;Download@", "pd1156944696.htm",
		"", 1,
		"1011", "0",
		 0)
	
		Entry[468] = new Element(
		468, "assets/thumb/ab-176-listbild.jpg",
		200, 160,
		"ab-176-1", "Caught Sisters",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "24",
		"Lieferform;Download@", "pd1157105962.htm",
		"", 1,
		"10099", "0",
		 0)
	
		Entry[469] = new Element(
		469, "assets/thumb/ab-177-listbild.jpg",
		200, 160,
		"ab-177-1", "The Experiment",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "24",
		"Lieferform;Download@", "pd-1212942014.htm",
		"", 1,
		"10099", "0",
		 0)
	
		Entry[470] = new Element(
		470, "assets/thumb/hamburg-8-listbild.jpg",
		200, 66,
		"KB-935", "Hamburg-8",
		"", "",
		"49.9", "0",
		"1", 1,
		"Stück", "117",
		"", "pd1157305850.htm",
		"", 1,
		"13001-1", "0",
		 0)
	
		Entry[471] = new Element(
		471, "assets/thumb/bg-27-listbild.jpg",
		200, 164,
		"bg-27-1", "Einbrecherin Miri festgesetzt",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "44",
		"Lieferform;Download@", "pd1157801161.htm",
		"", 1,
		"1012-003", "0",
		 0)
	
		Entry[472] = new Element(
		472, "assets/thumb/bg-29-listbild.jpg",
		200, 164,
		"bg-29-1", "Funny und das Tortenproblem",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "44",
		"Lieferform;Download@", "pd-355033362.htm",
		"", 1,
		"1012-003", "0",
		 0)
	
		Entry[473] = new Element(
		473, "assets/thumb/tag-118-listbild.jpg",
		200, 164,
		"tag-118-1", "Joi",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "89",
		"Lieferform;Download@", "pd1705077454.htm",
		"", 1,
		"8000-120", "0",
		 0)
	
		Entry[474] = new Element(
		474, "assets/thumb/tag-131-listbild.jpg",
		200, 164,
		"tag-131-1", "Rachel",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "91",
		"Lieferform;Download@", "pd-983497882.htm",
		"", 1,
		"8000-140", "0",
		 0)
	
		Entry[475] = new Element(
		475, "assets/thumb/tb-01-listbild.jpg",
		200, 134,
		"tb-01", "Selfbondage Timelock",
		"", "",
		"129", "0",
		"1", 1,
		"Stück", "139,130,142,0,139,126,120,3",
		"", "pd-2098645610.htm",
		"", 1,
		"13013,13004-500,15500,00,13013,13004-100,13001-4,100011", "0",
		 0)
	
		Entry[476] = new Element(
		476, "assets/thumb/fs-01-listbild.jpg",
		200, 150,
		"fs-01", "Mundknebel aud dem Mittelalter",
		"", "",
		"109", "0",
		"1", 1,
		"Stück", "127",
		"", "pd1993621669.htm",
		"", 1,
		"13004-200", "0",
		 0)
	
		Entry[477] = new Element(
		477, "assets/thumb/bg-31-listbild.jpg",
		200, 135,
		"bg-31-1", "Gefangene Cindy",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "45",
		"Lieferform;Download@", "pd1159549042.htm",
		"", 1,
		"1012-30", "0",
		 0)
	
		Entry[478] = new Element(
		478, "assets/thumb/ue-21-listbild.jpg",
		200, 164,
		"ue-epi-21-1", "Rupprecht",
		"Unhappy End - Episode 21", "",
		"39", "0",
		"1", 1,
		"Stück", "65",
		"Lieferform;Download@", "pd-409926359.htm",
		"", 1,
		"11500-3", "0",
		 0)
	
		Entry[479] = new Element(
		479, "assets/thumb/ab-178-listbild.jpg",
		200, 160,
		"ab-178-1", "Foot Slave",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "24",
		"Lieferform;Download@", "pd1596308905.htm",
		"", 1,
		"10099", "0",
		 0)
	
		Entry[480] = new Element(
		480, "assets/thumb/ab-179-listbild.jpg",
		200, 160,
		"ab-179-1", "David in Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "24",
		"Lieferform;Download@", "pd1638165693.htm",
		"", 1,
		"10099", "0",
		 0)
	
		Entry[481] = new Element(
		481, "assets/thumb/el-04-listbild.jpg",
		200, 164,
		"el-04-1", "Gentle and Jane",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "52",
		"Lieferform;Download@", "pd1160580976.htm",
		"", 1,
		"11000-el", "0",
		 0)
	
		Entry[482] = new Element(
		482, "assets/thumb/tag-141-listbild.jpg",
		200, 164,
		"tag-141-1", "Martina",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "92",
		"Lieferform;Download@", "pd-357497272.htm",
		"", 1,
		"8000-150", "0",
		 0)
	
		Entry[483] = new Element(
		483, "assets/thumb/gvz-01-listbild.jpg",
		200, 160,
		"gvz-01-1", "Abstrafung der TV-Schlampe Mona",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "56",
		"Lieferform;Download@", "pd-1442143905.htm",
		"", 1,
		"11000-gvz", "0",
		 0)
	
		Entry[484] = new Element(
		484, "assets/thumb/tag-152-listbild.jpg",
		200, 164,
		"tag-152-1", "Dale",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "93",
		"Lieferform;Download@", "pd-178974926.htm",
		"", 1,
		"8000-160", "0",
		 0)
	
		Entry[485] = new Element(
		485, "assets/thumb/bg-32-listbild.jpg",
		200, 135,
		"bg-32-1", "Sarah und der Gangster",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "45",
		"Lieferform;Download@", "pd1161537966.htm",
		"", 1,
		"1012-30", "0",
		 0)
	
		Entry[486] = new Element(
		486, "assets/thumb/ab-180-listbild.jpg",
		200, 160,
		"ab-180-1", "Sabine´s Bestrafung",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "25",
		"Lieferform;Download@", "pd1881669871.htm",
		"", 1,
		"10100", "0",
		 0)
	
		Entry[487] = new Element(
		487, "assets/thumb/ab-181-listbild.jpg",
		200, 160,
		"ab-181-1", "Bondage Olympics",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "25",
		"Lieferform;Download@", "pd1998092731.htm",
		"", 1,
		"10100", "0",
		 0)
	
		Entry[488] = new Element(
		488, "assets/thumb/ab-182-listbild.jpg",
		200, 160,
		"ab-182-1", "Pet Play",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "25",
		"Lieferform;Download@", "pd1163333596.htm",
		"", 1,
		"10100", "0",
		 0)
	
		Entry[489] = new Element(
		489, "assets/thumb/ab-183-listbild.jpg",
		200, 160,
		"ab-183-1", "Tied&amp;Tickled Feet",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "25",
		"Lieferform;Download@", "pd-1811746764.htm",
		"", 1,
		"10100", "0",
		 0)
	
		Entry[490] = new Element(
		490, "assets/thumb/bg-33-list.jpg",
		200, 134,
		"bg-33-1", "Gina und Kathi in Lycra",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "45",
		"Lieferform;Download@", "pd1164196443.htm",
		"", 1,
		"1012-30", "0",
		 0)
	
		Entry[491] = new Element(
		491, "assets/thumb/c6-1-listbild.jpg",
		200, 164,
		"tag-C6-1-1", "Gagged Girls",
		"Part 1", "",
		"39", "0",
		"1", 1,
		"Stück", "96",
		"Lieferform;Download@", "pd1227550406.htm",
		"", 1,
		"8000-c", "0",
		 0)
	
		Entry[492] = new Element(
		492, "assets/thumb/c6-2-listbild.jpg",
		200, 164,
		"tag-C6-2-1", "Gagged Girls",
		"Part 2", "",
		"39", "0",
		"1", 1,
		"Stück", "96",
		"Lieferform;Download@", "pd-49993469.htm",
		"", 1,
		"8000-c", "0",
		 0)
	
		Entry[493] = new Element(
		493, "assets/thumb/zb-01-listbild.jpg",
		200, 164,
		"zb-01-1", "Zentai Bondage Vol. 1",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "40",
		"Lieferform;Download@", "pd1165150606.htm",
		"", 1,
		"1011", "0",
		 0)
	
		Entry[494] = new Element(
		494, "assets/thumb/tag-129-listbild.jpg",
		200, 164,
		"tag-129-1", "Dawn, Gina, Samantha",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "90",
		"Lieferform;Download@", "pd-1753791292.htm",
		"", 1,
		"8000-130", "0",
		 0)
	
		Entry[495] = new Element(
		495, "assets/thumb/ab-184-listbild.jpg",
		200, 150,
		"ab-184-1", "Der letzte Vampir",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "25",
		"Lieferform;Download@", "pd-1661844765.htm",
		"", 1,
		"10100", "0",
		 0)
	
		Entry[496] = new Element(
		496, "assets/thumb/ab-185-listbild.jpg",
		200, 150,
		"ab-185-1", "My Slavegirl Lupina",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "25",
		"Lieferform;Download@", "pd-1934960869.htm",
		"", 1,
		"10100", "0",
		 0)
	
		Entry[497] = new Element(
		497, "assets/thumb/ab-212-listbild.jpg",
		200, 150,
		"ab-212-1", "Captured in Raincoats",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "28",
		"Lieferform;Download@", "pd-1993588876.htm",
		"", 1,
		"10103", "0",
		 0)
	
		Entry[498] = new Element(
		498, "assets/thumb/ab-213-listbild.jpg",
		200, 150,
		"ab-213-1", "Rider-Girls in the Forest",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "28",
		"Lieferform;Download@", "pd881663450.htm",
		"", 1,
		"10103", "0",
		 0)
	
		Entry[499] = new Element(
		499, "assets/thumb/bf-01-listbild.jpg",
		200, 150,
		"bf-01-1", "Bound Feet",
		"The Experience", "",
		"39", "0",
		"1", 1,
		"Stück", "75",
		"Lieferform;Download@", "pd1176026146.htm",
		"", 1,
		"4000-10", "0",
		 0)
	
		Entry[500] = new Element(
		500, "assets/thumb/bf-02-listbild.jpg",
		200, 150,
		"bf-02-1", "Delta and the ropes",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "75",
		"Lieferform;Download@", "pd1178460591.htm",
		"", 1,
		"4000-10", "0",
		 0)
	
		Entry[501] = new Element(
		501, "assets/thumb/bf-003-listbild.jpg",
		200, 150,
		"bf-03-1", "Delta",
		"I love Bondage", "",
		"39", "0",
		"1", 1,
		"Stück", "75",
		"Lieferform;Download@", "pd983741714.htm",
		"", 1,
		"4000-10", "0",
		 0)
	
		Entry[502] = new Element(
		502, "assets/thumb/bf-004-listbild.jpg",
		200, 150,
		"bf-04-1", "Olga",
		"First time bondage", "",
		"39", "0",
		"1", 1,
		"Stück", "75",
		"Lieferform;Download@", "pd1716683880.htm",
		"", 1,
		"4000-10", "0",
		 0)
	
		Entry[503] = new Element(
		503, "assets/thumb/bf-005-listbild.jpg",
		200, 150,
		"bf-05-1", "Melisa in Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "75",
		"Lieferform;Download@", "pd1184608636.htm",
		"", 1,
		"4000-10", "0",
		 0)
	
		Entry[504] = new Element(
		504, "assets/thumb/bf-006-listbild.jpg",
		200, 150,
		"bf-06-1", "Delta &amp; Lightspear",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "75",
		"Lieferform;Download@", "pd-1696985054.htm",
		"", 1,
		"4000-10", "0",
		 0)
	
		Entry[505] = new Element(
		505, "assets/thumb/bf-007-listbild.jpg",
		200, 112,
		"bf-07-1", "Slavegirl Alyonka",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "75",
		"Lieferform;Download@", "pd1188147945.htm",
		"", 1,
		"4000-10", "0",
		 0)
	
		Entry[506] = new Element(
		506, "assets/thumb/bf-008-listbild.jpg",
		200, 112,
		"bf-08-1", "Mirelle in Tight Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "75",
		"Lieferform;Download@", "pd-1826363040.htm",
		"", 1,
		"4000-10", "0",
		 0)
	
		Entry[507] = new Element(
		507, "assets/thumb/bf-009-listbild.jpg",
		200, 150,
		"bf-09-1", "Playing cards with Delta",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "75",
		"Lieferform;Download@", "pd-1241475330.htm",
		"", 1,
		"4000-10", "0",
		 0)
	
		Entry[508] = new Element(
		508, "assets/thumb/bf-010-listbild.jpg",
		200, 150,
		"bf-10-1", "Olga and the ropes",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "76",
		"Lieferform;Download@", "pd-2123588172.htm",
		"", 1,
		"4000-20", "0",
		 0)
	
		Entry[509] = new Element(
		509, "assets/thumb/bg-51-listbild.jpg",
		200, 133,
		"bg-51-1", "Angel in Bondage (4)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "47",
		"Lieferform;Download@", "pd1192625244.htm",
		"", 1,
		"1012-60", "0",
		 0)
	
		Entry[510] = new Element(
		510, "assets/thumb/ab-214-listbild.jpg",
		200, 150,
		"ab-214-3", "Private Prison (1)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "28",
		"Lieferform;Download@", "pd1193412453.htm",
		"", 1,
		"10103", "0",
		 0)
	
		Entry[511] = new Element(
		511, "assets/thumb/ab-215-listbild.jpg",
		200, 150,
		"ab-215-1", "Lupina´s present",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "28",
		"Lieferform;Download@", "pd1014007225.htm",
		"", 1,
		"10103", "0",
		 0)
	
		Entry[512] = new Element(
		512, "assets/thumb/ab-216-listbild.jpg",
		200, 150,
		"ab-216-1", "Sweet Gwendoline",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "28",
		"Lieferform;Download@", "pd-521418803.htm",
		"", 1,
		"10103", "0",
		 0)
	
		Entry[513] = new Element(
		513, "assets/thumb/bf-011-listbild.jpg",
		200, 150,
		"bf-11-1", "Mirelle and Nelfa",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "76",
		"Lieferform;Download@", "pd1194962337.htm",
		"", 1,
		"4000-20", "0",
		 0)
	
		Entry[514] = new Element(
		514, "assets/thumb/bf-012-listbild.jpg",
		200, 112,
		"bf-12-1", "Alyonka and Eugenia",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "76",
		"Lieferform;Download@", "pd46359407.htm",
		"", 1,
		"4000-20", "0",
		 0)
	
		Entry[515] = new Element(
		515, "assets/thumb/bf-013-listbild.jpg",
		200, 112,
		"bf-13-1", "Melisa and Klara",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "76",
		"Lieferform;Download@", "pd-514217043.htm",
		"", 1,
		"4000-20", "0",
		 0)
	
		Entry[516] = new Element(
		516, "assets/thumb/tag-147-listbild.jpg",
		200, 153,
		"tag-147-1", "Carmel",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "92",
		"Lieferform;Download@", "pd1195484136.htm",
		"", 1,
		"8000-150", "0",
		 0)
	
		Entry[517] = new Element(
		517, "assets/thumb/bg-52-listbild.jpg",
		200, 133,
		"bg-52-1", "Marion in Bondage 1",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "47",
		"Lieferform;Download@", "pd-843334162.htm",
		"", 1,
		"1012-60", "0",
		 0)
	
		Entry[518] = new Element(
		518, "assets/thumb/bg-53-listbild.jpg",
		200, 133,
		"bg-53-1", "Die gezähmte Ballerina",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "47",
		"Lieferform;Download@", "pd2020023332.htm",
		"", 1,
		"1012-60", "0",
		 0)
	
		Entry[519] = new Element(
		519, "assets/thumb/ht-01-listbild.jpg",
		200, 153,
		"ht-01-1", "Die Bewerbung",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "104",
		"Lieferform;Download@", "pd270650429.htm",
		"", 1,
		"HT", "0",
		 0)
	
		Entry[520] = new Element(
		520, "assets/thumb/bg-54-listbild.jpg",
		200, 133,
		"bg-54-1", "Irina + Kristin in Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "47",
		"Lieferform;Download@", "pd558248272.htm",
		"", 1,
		"1012-60", "0",
		 0)
	
		Entry[521] = new Element(
		521, "assets/thumb/ab-217-listbild.jpg",
		200, 150,
		"ab-217-1", "Tie me up please!",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "28",
		"Lieferform;Download@", "pd1196528427.htm",
		"", 1,
		"10103", "0",
		 0)
	
		Entry[522] = new Element(
		522, "assets/thumb/ab-218-listbild.jpg",
		200, 150,
		"ab-218-1", "The Cop and the Rider Girl",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "28",
		"Lieferform;Download@", "pd-1335434935.htm",
		"", 1,
		"10103", "0",
		 0)
	
		Entry[523] = new Element(
		523, "assets/thumb/ab-219-listbild.jpg",
		200, 150,
		"ab-219-1", "Lazy Daughter",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "28",
		"Lieferform;Download@", "pd-323149759.htm",
		"", 1,
		"10103", "0",
		 0)
	
		Entry[524] = new Element(
		524, "assets/thumb/ab-220-listbild.jpg",
		200, 150,
		"ab-220-1", "Captured in Raincoats (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "29",
		"Lieferform;Download@", "pd-2136238535.htm",
		"", 1,
		"10104", "0",
		 0)
	
		Entry[525] = new Element(
		525, "assets/thumb/OP-01-Listbild.JPG",
		194, 200,
		"OP-01", "Untersuchungsstuhl",
		"", "",
		"899", "0",
		"1", 1,
		"Stück", "139,130,142,0,139,126,120,3,138,3",
		"", "pd1198331171.htm",
		"", 1,
		"13013,13004-500,15500,00,13013,13004-100,13001-4,100011,13011,100011", "0",
		 0)
	
		Entry[526] = new Element(
		526, "assets/thumb/ht-02-listbild.jpg",
		200, 153,
		"ht-02-1", "Sabrina in Bondage (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "104",
		"Lieferform;Download@", "pd701543411.htm",
		"", 1,
		"HT", "0",
		 0)
	
		Entry[527] = new Element(
		527, "assets/thumb/bg-55-listbild.jpg",
		200, 133,
		"bg-55-1", "Tamara + Sophia in Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "47",
		"Lieferform;Download@", "pd-101484463.htm",
		"", 1,
		"1012-60", "0",
		 0)
	
		Entry[528] = new Element(
		528, "assets/thumb/hg-01-listbild.jpg",
		200, 160,
		"hg-01-1", "Helpless Girls (1)",
		"Patricia is mugged", "",
		"39", "0",
		"1", 1,
		"Stück", "58",
		"Lieferform;Download@", "pd83101426.htm",
		"", 1,
		"hg-0-19", "0",
		 0)
	
		Entry[529] = new Element(
		529, "assets/thumb/hg-02-listbild.jpg",
		200, 150,
		"hg-02-1", "Helpless Girls (2)",
		"Margo", "",
		"39", "0",
		"1", 1,
		"Stück", "58",
		"Lieferform;Download@", "pd2130965201.htm",
		"", 1,
		"hg-0-19", "0",
		 0)
	
		Entry[530] = new Element(
		530, "assets/thumb/hg-03-listbild.jpg",
		200, 150,
		"hg-03-1", "Nastya",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "58",
		"Lieferform;Download@", "pd1180796597.htm",
		"", 1,
		"hg-0-19", "0",
		 0)
	
		Entry[531] = new Element(
		531, "assets/thumb/hg-04-listbild.jpg",
		200, 150,
		"hg-04-1", "Mona",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "58",
		"Lieferform;Download@", "pd-725513017.htm",
		"", 1,
		"hg-0-19", "0",
		 0)
	
		Entry[532] = new Element(
		532, "assets/thumb/hg-05-listbild.jpg",
		200, 150,
		"hg-05-1", "Iris",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "58",
		"Lieferform;Download@", "pd1218188342.htm",
		"", 1,
		"hg-0-19", "0",
		 0)
	
		Entry[533] = new Element(
		533, "assets/thumb/hg-06-listbild.jpg",
		200, 150,
		"hg-06-1", "Margo",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "58",
		"Lieferform;Download@", "pd400055330.htm",
		"", 1,
		"hg-0-19", "0",
		 0)
	
		Entry[534] = new Element(
		534, "assets/thumb/hg-07-listbild.jpg",
		200, 150,
		"hg-07-1", "Jessica",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "58",
		"Lieferform;Download@", "pd-1800190984.htm",
		"", 1,
		"hg-0-19", "0",
		 0)
	
		Entry[535] = new Element(
		535, "assets/thumb/hg-08-listbild.jpg",
		200, 150,
		"hg-08-1", "Bad Girl",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "58",
		"Lieferform;Download@", "pd1194097507.htm",
		"", 1,
		"hg-0-19", "0",
		 0)
	
		Entry[536] = new Element(
		536, "assets/thumb/hg-09-listbild.jpg",
		200, 150,
		"hg-09-1", "Nastya",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "58",
		"Lieferform;Download@", "pd-961373375.htm",
		"", 1,
		"hg-0-19", "0",
		 0)
	
		Entry[537] = new Element(
		537, "assets/thumb/hg-010-listbild.jpg",
		200, 150,
		"hg-10-1", "Maryann",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "59",
		"Lieferform;Download@", "pd590322881.htm",
		"", 1,
		"hg-10-19", "0",
		 0)
	
		Entry[538] = new Element(
		538, "assets/thumb/hg-011-listbild.jpg",
		200, 150,
		"hg-11-1", "Lilit",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "59",
		"Lieferform;Download@", "pd-1309343196.htm",
		"", 1,
		"hg-10-19", "0",
		 0)
	
		Entry[539] = new Element(
		539, "assets/thumb/bf-14-listbild.jpg",
		200, 112,
		"bf-14-1", "Flogging and Waxing",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "76",
		"Lieferform;Download@", "pd1198410199.htm",
		"", 1,
		"4000-20", "0",
		 0)
	
		Entry[540] = new Element(
		540, "assets/thumb/bf-15-listbild.jpg",
		200, 150,
		"bf-15-1", "Olga &amp; Alyonka",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "76",
		"Lieferform;Download@", "pd438105429.htm",
		"", 1,
		"4000-20", "0",
		 0)
	
		Entry[541] = new Element(
		541, "assets/thumb/ab-221-listbild.jpg",
		200, 150,
		"ab-221-1", "Das Interview",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "29",
		"Lieferform;Download@", "pd1675133123.htm",
		"", 1,
		"10104", "0",
		 0)
	
		Entry[542] = new Element(
		542, "assets/thumb/ab-222-listbild.jpg",
		200, 150,
		"ab-222-1", "Tight Mittens (3)",
		"The Hood", "",
		"39", "0",
		"1", 1,
		"Stück", "29",
		"Lieferform;Download@", "pd-12158174.htm",
		"", 1,
		"10104", "0",
		 0)
	
		Entry[543] = new Element(
		543, "assets/thumb/wol-04-listbild.jpg",
		200, 153,
		"wol-04-1", "Simone Bound by Wolfi",
		"", "",
		"29", "0",
		"1", 1,
		"Stück", "50",
		"Lieferform;Download@", "pd1199036787.htm",
		"", 1,
		"1013", "0",
		 0)
	
		Entry[544] = new Element(
		544, "assets/thumb/wol-05-listbild.jpg",
		200, 153,
		"wol-05-1", "Simone in Scarf Bondage",
		"", "",
		"14.95", "0",
		"1", 1,
		"Stück", "50",
		"Lieferform;Download@", "pd-1230452271.htm",
		"", 1,
		"1013", "0",
		 0)
	
		Entry[545] = new Element(
		545, "assets/thumb/ab-223-listbild.jpg",
		200, 150,
		"ab-223-1", "Private Prison (2)",
		"Aufräumen im Wald", "",
		"39", "0",
		"1", 1,
		"Stück", "29",
		"Lieferform;Download@", "pd767903959.htm",
		"", 1,
		"10104", "0",
		 0)
	
		Entry[546] = new Element(
		546, "assets/thumb/bg-56-listbild.jpg",
		200, 153,
		"bg-56-1", "Tamara + Sophia in Bondage (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "47",
		"Lieferform;Download@", "pd-328340395.htm",
		"", 1,
		"1012-60", "0",
		 0)
	
		Entry[547] = new Element(
		547, "assets/thumb/ab-224-listbild.jpg",
		200, 150,
		"ab-224-1", "The Experiment (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "29",
		"Lieferform;Download@", "pd1201349777.htm",
		"", 1,
		"10104", "0",
		 0)
	
		Entry[548] = new Element(
		548, "assets/thumb/ab-225-listbild.jpg",
		200, 150,
		"ab-225-1", "Lilith - Das Schulmädchen",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "29",
		"Lieferform;Download@", "pd166436404.htm",
		"", 1,
		"10104", "0",
		 0)
	
		Entry[549] = new Element(
		549, "assets/thumb/bf-16-listbild.jpg",
		200, 112,
		"bf-16-1", "Delta",
		"Selfbondage &amp; Hogtied", "",
		"39", "0",
		"1", 1,
		"Stück", "76",
		"Lieferform;Download@", "pd970886557.htm",
		"", 1,
		"4000-20", "0",
		 0)
	
		Entry[550] = new Element(
		550, "assets/thumb/bf-17-listbild.jpg",
		200, 112,
		"bf-17-1", "Melisa in Bondage again",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "76",
		"Lieferform;Download@", "pd-43234485.htm",
		"", 1,
		"4000-20", "0",
		 0)
	
		Entry[551] = new Element(
		551, "assets/thumb/hg-12-listbild.jpg",
		200, 150,
		"hg-12-1", "Britney ",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "59",
		"Lieferform;Download@", "pd828929155.htm",
		"", 1,
		"hg-10-19", "0",
		 0)
	
		Entry[552] = new Element(
		552, "assets/thumb/hg-13-listbild.jpg",
		200, 150,
		"hg-13-1", "Marysabele",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "59",
		"Lieferform;Download@", "pd-549364549.htm",
		"", 1,
		"hg-10-19", "0",
		 0)
	
		Entry[553] = new Element(
		553, "assets/thumb/ab-226-listbild.jpg",
		200, 150,
		"ab-226-1", "Captured in Raincoats (3)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "29",
		"Lieferform;Download@", "pd1202846682.htm",
		"", 1,
		"10104", "0",
		 0)
	
		Entry[554] = new Element(
		554, "assets/thumb/ab-227-listbild.jpg",
		200, 150,
		"ab-227-1", "Special Training",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "29",
		"Lieferform;Download@", "pd992244080.htm",
		"", 1,
		"10104", "0",
		 0)
	
		Entry[555] = new Element(
		555, "assets/thumb/ab-228-listbild.jpg",
		200, 150,
		"ab-228-1", "Hidden Desires",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "29",
		"Lieferform;Download@", "pd-268441674.htm",
		"", 1,
		"10104", "0",
		 0)
	
		Entry[556] = new Element(
		556, "assets/thumb/bf-18-listbild.jpg",
		200, 112,
		"bf-18-1", "Alyonka in tight Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "76",
		"Lieferform;Download@", "pd1203266076.htm",
		"", 1,
		"4000-20", "0",
		 0)
	
		Entry[557] = new Element(
		557, "assets/thumb/hg-14-listbild.jpg",
		200, 150,
		"hg-14-1", "Jessica in Bondage 2",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "59",
		"Lieferform;Download@", "pd-2120365452.htm",
		"", 1,
		"hg-10-19", "0",
		 0)
	
		Entry[558] = new Element(
		558, "assets/thumb/tag-07-listbild.jpg",
		200, 150,
		"tag-7-1", "Anna",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "84",
		"Lieferform;Download@", "pd1589837021.htm",
		"", 1,
		"8000-009", "0",
		 0)
	
		Entry[559] = new Element(
		559, "assets/thumb/bg-57-listbild.jpg",
		200, 153,
		"bg-57-1", "Angel, die Schlafmütze",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "47",
		"Lieferform;Download@", "pd-1971237463.htm",
		"", 1,
		"1012-60", "0",
		 0)
	
		Entry[560] = new Element(
		560, "assets/thumb/ht-03-listbild.jpg",
		200, 150,
		"ht-03-1", "Irina in Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "104",
		"Lieferform;Download@", "pd1607332791.htm",
		"", 1,
		"HT", "0",
		 0)
	
		Entry[561] = new Element(
		561, "assets/thumb/cl-bf-11.jpg",
		134, 200,
		"cl-bf-11", "Bauchfessel",
		"", "",
		"69", "0",
		"1", 1,
		"Stück", "139,130,142,0,139,126,120,3,138,3,119,3",
		"", "pd1203769291.htm",
		"", 1,
		"13013,13004-500,15500,00,13013,13004-100,13001-4,100011,13011,100011,13001-3,100011", "0",
		 0)
	
		Entry[562] = new Element(
		562, "assets/thumb/rc-15-listbild.jpg",
		200, 153,
		"rc-015-1", "Chaingang Girls",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "82",
		"Lieferform;Download@", "pd-1859846562.htm",
		"", 1,
		"7000-20", "0",
		 0)
	
		Entry[563] = new Element(
		563, "assets/thumb/saskia-007-listbild.jpg",
		200, 150,
		"sas-007", "Saskia und ihre Schlange",
		"", "",
		"9", "0",
		"1", 1,
		"Stück", "40",
		"Lieferform;Download@", "pd1204574176.htm",
		"", 1,
		"1011", "0",
		 0)
	
		Entry[564] = new Element(
		564, "assets/thumb/ab-229-listbild.jpg",
		200, 150,
		"ab-229-1", "Die Brautjungfer",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "29",
		"Lieferform;Download@", "pd2072224619.htm",
		"", 1,
		"10104", "0",
		 0)
	
		Entry[565] = new Element(
		565, "assets/thumb/ab-230-listbild.jpg",
		200, 150,
		"ab-230-1", "Vanessa: Ich will Deine Sklavin sein",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "30",
		"Lieferform;Download@", "pd118321315.htm",
		"", 1,
		"10105", "0",
		 0)
	
		Entry[566] = new Element(
		566, "assets/thumb/hg-15-listbild.jpg",
		200, 150,
		"hg-15-1", "Natasha",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "59",
		"Lieferform;Download@", "pd1205606154.htm",
		"", 1,
		"hg-10-19", "0",
		 0)
	
		Entry[567] = new Element(
		567, "assets/thumb/bf-019-listbild.jpg",
		200, 112,
		"bf-19-1", "Helpless Olga",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "76",
		"Lieferform;Download@", "pd1834296098.htm",
		"", 1,
		"4000-20", "0",
		 0)
	
		Entry[568] = new Element(
		568, "assets/thumb/tag-23-listbild.jpg",
		200, 153,
		"tag-23-1", "Jennifer &amp; Robyn",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "85",
		"Lieferform;Download@", "pd-1338267078.htm",
		"", 1,
		"8000-030", "0",
		 0)
	
		Entry[569] = new Element(
		569, "assets/thumb/ht-04-listbild.jpg",
		200, 153,
		"ht-04-1", "Irina in Bondage (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "104",
		"Lieferform;Download@", "pd-1350963567.htm",
		"", 1,
		"HT", "0",
		 0)
	
		Entry[570] = new Element(
		570, "assets/thumb/bg-58-listbild.jpg",
		200, 153,
		"bg-58-1", "Oben-Ohne-Girls",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "47",
		"Lieferform;Download@", "pd-2017997857.htm",
		"", 1,
		"1012-60", "0",
		 0)
	
		Entry[571] = new Element(
		571, "assets/thumb/ab-231-listbild.jpg",
		200, 150,
		"ab-231-1", "I love Bags",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "30",
		"Lieferform;Download@", "pd1911846813.htm",
		"", 1,
		"10105", "0",
		 0)
	
		Entry[572] = new Element(
		572, "assets/thumb/ab-232-listbild.jpg",
		200, 150,
		"ab-232-1", "Haus der Erziehung",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "30",
		"Lieferform;Download@", "pd1503097012.htm",
		"", 1,
		"10105", "0",
		 0)
	
		Entry[573] = new Element(
		573, "assets/thumb/ab-233-listbild.jpg",
		200, 150,
		"ab-233-1", "E.A.W.",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "30",
		"Lieferform;Download@", "pd618617114.htm",
		"", 1,
		"10105", "0",
		 0)
	
		Entry[574] = new Element(
		574, "assets/thumb/bf-020-listbild.jpg",
		200, 150,
		"bf-20-1", "Valentia",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "77",
		"Lieferform;Download@", "pd16080843.htm",
		"", 1,
		"4000-30", "0",
		 0)
	
		Entry[575] = new Element(
		575, "assets/thumb/bf-021-listbild.jpg",
		200, 150,
		"bf-21-1", "Alyonka flogged again",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "77",
		"Lieferform;Download@", "pd596481928.htm",
		"", 1,
		"4000-30", "0",
		 0)
	
		Entry[576] = new Element(
		576, "assets/thumb/hg-16-listbild.jpg",
		200, 150,
		"hg-16-1", "Patricia",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "59",
		"Lieferform;Download@", "pd-2120849951.htm",
		"", 1,
		"hg-10-19", "0",
		 0)
	
		Entry[577] = new Element(
		577, "assets/thumb/hg-17-listbild.jpg",
		200, 150,
		"hg-17-1", "Britney captured at home",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "59",
		"Lieferform;Download@", "pd-2119454759.htm",
		"", 1,
		"hg-10-19", "0",
		 0)
	
		Entry[578] = new Element(
		578, "assets/thumb/ht-05-listbild.jpg",
		200, 153,
		"ht-05-1", "Irina in Bondage (3)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "104",
		"Lieferform;Download@", "pd14782673.htm",
		"", 1,
		"HT", "0",
		 0)
	
		Entry[579] = new Element(
		579, "assets/thumb/bg-59-listbild.jpg",
		200, 153,
		"bg-59-1", "Die Schuldnerin (1)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "47",
		"Lieferform;Download@", "pd1773568342.htm",
		"", 1,
		"1012-60", "0",
		 0)
	
		Entry[580] = new Element(
		580, "assets/thumb/bg-60-listbild.jpg",
		200, 153,
		"bg-60-1", "Die Schuldnerin (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "48",
		"Lieferform;Download@", "pd-2130761012.htm",
		"", 1,
		"1012-70", "0",
		 0)
	
		Entry[581] = new Element(
		581, "assets/thumb/tag-08-listbild.jpg",
		200, 153,
		"tag-8-1", "Cindy",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "84",
		"Lieferform;Download@", "pd50662795.htm",
		"", 1,
		"8000-009", "0",
		 0)
	
		Entry[582] = new Element(
		582, "assets/thumb/tag-21-listbild.jpg",
		200, 153,
		"tag-21-1", "Alex",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "85",
		"Lieferform;Download@", "pd2139713193.htm",
		"", 1,
		"8000-030", "0",
		 0)
	
		Entry[583] = new Element(
		583, "assets/thumb/sw-12-listbild.jpg",
		200, 153,
		"sw-12-1", "Ewa´s first spandex video",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "61",
		"Lieferform;Download@", "pd677006781.htm",
		"", 1,
		"11000-sw", "0",
		 0)
	
		Entry[584] = new Element(
		584, "assets/thumb/sw-13-listbild.jpg",
		200, 153,
		"sw-13-1", "Ewa´s second strike",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "61",
		"Lieferform;Download@", "pd-1380869550.htm",
		"", 1,
		"11000-sw", "0",
		 0)
	
		Entry[585] = new Element(
		585, "assets/thumb/ks-1-listbild.jpg",
		134, 200,
		"ks-01-2", "Käfigsack",
		"", "",
		"229", "0",
		"1", 1,
		"Stück", "139,130,142,0,139,126,120,3,138,3,119,3,131,3",
		"Größe;S@", "pd1206184156.htm",
		"", 1,
		"13013,13004-500,15500,00,13013,13004-100,13001-4,100011,13011,100011,13001-3,100011,13006,100011", "0",
		 0)
	
		Entry[586] = new Element(
		586, "assets/thumb/p-kp-1-listbild.jpg",
		143, 200,
		"P-KP", "Kniepranger",
		"", "",
		"129", "0",
		"1", 1,
		"Stück", "138",
		"", "pd1206197488.htm",
		"", 1,
		"13011", "0",
		 0)
	
		Entry[587] = new Element(
		587, "assets/thumb/p-br-1-listbild.jpg",
		127, 200,
		"P-BR", "Bondagerahmen",
		"", "",
		"299", "0",
		"1", 1,
		"Stück", "139,130,142,0,139,126,120,3,138,3,119,3,131,3,138,3",
		"", "pd-344642617.htm",
		"", 1,
		"13013,13004-500,15500,00,13013,13004-100,13001-4,100011,13011,100011,13001-3,100011,13006,100011,13011,100011", "0",
		 0)
	
		Entry[588] = new Element(
		588, "assets/thumb/cuf_003_listbild.jpg",
		200, 150,
		"cuf-003-1", "Handschellen - Standard Chrom",
		"", "",
		"7.5", "0",
		"1", 1,
		"Stück", "117",
		"Farbe;chrom@", "pd1207940565.htm",
		"", 1,
		"13001-1", "0",
		 0)
	
		Entry[589] = new Element(
		589, "assets/thumb/ab-234-listbild.jpg",
		200, 150,
		"ab-234-1", "Suffocation Games",
		"", "",
		"44", "0",
		"1", 1,
		"Stück", "30",
		"Lieferform;Download@", "pd1208444732.htm",
		"", 1,
		"10105", "0",
		 0)
	
		Entry[590] = new Element(
		590, "assets/thumb/ab-235-listbild.jpg",
		200, 150,
		"ab-235-1", "Sleepy Girl",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "30",
		"Lieferform;Download@", "pd758757567.htm",
		"", 1,
		"10105", "0",
		 0)
	
		Entry[591] = new Element(
		591, "assets/thumb/smg-001-listbild.JPG",
		250, 188,
		"smg-001", "The Beginning",
		"First Experiences", "",
		"29", "0",
		"1", 1,
		"Stück", "68",
		"", "pd164448229.htm",
		"", 1,
		"16004-10", "0",
		 0)
	
		Entry[592] = new Element(
		592, "assets/thumb/smg-002-listbild.jpg",
		250, 200,
		"smg-002", "Whipped and more...",
		"Fire-Play", "",
		"29", "0",
		"1", 1,
		"Stück", "68",
		"", "pd278619291.htm",
		"", 1,
		"16004-10", "0",
		 0)
	
		Entry[593] = new Element(
		593, "assets/thumb/smg-003-listbild.jpg",
		250, 200,
		"smg-003", "Suspension, Metall,",
		"Segufix", "",
		"29", "0",
		"1", 1,
		"Stück", "68",
		"", "pd1107609957.htm",
		"", 1,
		"16004-10", "0",
		 0)
	
		Entry[594] = new Element(
		594, "assets/thumb/rc-12-listbild.jpg",
		200, 134,
		"rc-012-1", "Kidnapping Agency",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "82",
		"Lieferform;Download@", "pd1165687533.htm",
		"", 1,
		"7000-20", "0",
		 0)
	
		Entry[595] = new Element(
		595, "assets/thumb/bg-34-listbild.jpg",
		200, 135,
		"bg-34-1", "Gina in Lycra (2)",
		"der Gangster kommt zurück", "",
		"39", "0",
		"1", 1,
		"Stück", "45",
		"Lieferform;Download@", "pd-1824267675.htm",
		"", 1,
		"1012-30", "0",
		 0)
	
		Entry[596] = new Element(
		596, "assets/thumb/ab-186-listbild.jpg",
		200, 160,
		"ab-186-1", "Lia chloroformed by the intruder",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "25",
		"Lieferform;Download@", "pd-9136369.htm",
		"", 1,
		"10100", "0",
		 0)
	
		Entry[597] = new Element(
		597, "assets/thumb/ab-187-listbild.jpg",
		200, 160,
		"ab-187-1", "Cops in Action",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "25",
		"Lieferform;Download@", "pd443436231.htm",
		"", 1,
		"10100", "0",
		 0)
	
		Entry[598] = new Element(
		598, "assets/thumb/ab-188-listbild.jpg",
		200, 160,
		"ab-188-1", "Nylon Fetish",
		"", "",
		"29", "0",
		"1", 1,
		"Stück", "25",
		"Lieferform;Download@", "pd337432959.htm",
		"", 1,
		"10100", "0",
		 0)
	
		Entry[599] = new Element(
		599, "assets/thumb/ab-189-listbild.jpg",
		200, 160,
		"ab-189-1", "Bondage Olympics (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "25",
		"Lieferform;Download@", "pd-657128137.htm",
		"", 1,
		"10100", "0",
		 0)
	
		Entry[600] = new Element(
		600, "assets/thumb/bg-35-listbild.jpg",
		200, 135,
		"bg-35-1", "Cindy wird überfallen ",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "45",
		"Lieferform;Download@", "pd1557663333.htm",
		"", 1,
		"1012-30", "0",
		 0)
	
		Entry[601] = new Element(
		601, "assets/thumb/bg-36-listbild.jpg",
		200, 135,
		"bg-36-1", "Cindy und die Überraschung im Wald",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "45",
		"Lieferform;Download@", "pd1168963427.htm",
		"", 1,
		"1012-30", "0",
		 0)
	
		Entry[602] = new Element(
		602, "assets/thumb/bg-37-listbild.jpg",
		200, 135,
		"bg-37-1", "Kathi, die Einbrecherin",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "45",
		"Lieferform;Download@", "pd593155138.htm",
		"", 1,
		"1012-30", "0",
		 0)
	
		Entry[603] = new Element(
		603, "assets/thumb/tag-155-listbild.jpg",
		200, 154,
		"tag-155-1", "Kim",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "93",
		"Lieferform;Download@", "pd1169735243.htm",
		"", 1,
		"8000-160", "0",
		 0)
	
		Entry[604] = new Element(
		604, "assets/thumb/ab-190-listbild.jpg",
		200, 160,
		"ab-190-1", "Nose Play (3)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "26",
		"Lieferform;Download@", "pd1233532967.htm",
		"", 1,
		"10101", "0",
		 0)
	
		Entry[605] = new Element(
		605, "assets/thumb/ab-191-listbild.jpg",
		200, 160,
		"ab-191-1", "Arrested (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "26",
		"Lieferform;Download@", "pd1224665396.htm",
		"", 1,
		"10101", "0",
		 0)
	
		Entry[606] = new Element(
		606, "assets/thumb/ab-192-listbild.jpg",
		200, 160,
		"ab-192-1", "Teuflischer Nachbar",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "26",
		"Lieferform;Download@", "pd-455594868.htm",
		"", 1,
		"10101", "0",
		 0)
	
		Entry[607] = new Element(
		607, "assets/thumb/tag-156-1-listbild.jpg",
		200, 154,
		"tag-156-1-1", "Jelo (1)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "93",
		"Lieferform;Download@", "pd-1150740728.htm",
		"", 1,
		"8000-160", "0",
		 0)
	
		Entry[608] = new Element(
		608, "assets/thumb/tag-156-2-listbild.jpg",
		200, 154,
		"tag-156-2-1", "Jelo (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "93",
		"Lieferform;Download@", "pd-1766098720.htm",
		"", 1,
		"8000-160", "0",
		 0)
	
		Entry[609] = new Element(
		609, "assets/thumb/ski-09-listbild.jpg",
		200, 154,
		"ski-09-1", "Der rote Kapuzenanorak",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "103",
		"Lieferform;Download@", "pd1171206749.htm",
		"", 1,
		"HH", "0",
		 0)
	
		Entry[610] = new Element(
		610, "assets/thumb/ski-10-listbild.jpg",
		200, 154,
		"ski-10-1", "Streicheleinheiten",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "103",
		"Lieferform;Download@", "pd2138550180.htm",
		"", 1,
		"HH", "0",
		 0)
	
		Entry[611] = new Element(
		611, "assets/thumb/bf-listbild.JPG",
		200, 150,
		"mitglied-bf", "Mitglied www.bound-feet.com",
		"", "",
		"19.95", "0",
		"1", 1,
		"", "143",
		"Art derMitgliedschaft;Bilder, Clips + 1h Video@", "pd1172836045.htm",
		"", 1,
		"16000", "0",
		 0)
	
		Entry[612] = new Element(
		612, "assets/thumb/ab-193-listbild.jpg",
		200, 150,
		"ab-193-1", "Captured for Socks",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "26",
		"Lieferform;Download@", "pd1173528303.htm",
		"", 1,
		"10101", "0",
		 0)
	
		Entry[613] = new Element(
		613, "assets/thumb/ab-194-listbild.jpg",
		200, 150,
		"ab-194-1", "Backward Jacket",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "26",
		"Lieferform;Download@", "pd1424666791.htm",
		"", 1,
		"10101", "0",
		 0)
	
		Entry[614] = new Element(
		614, "assets/thumb/ab-195-listbild.jpg",
		200, 150,
		"ab-195-1", "Tight Mittens",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "26",
		"Lieferform;Download@", "pd-890302113.htm",
		"", 1,
		"10101", "0",
		 0)
	
		Entry[615] = new Element(
		615, "assets/thumb/bg-38-listbild.jpg",
		200, 136,
		"bg-38-1", "Gina + Tatjana (Vol.1)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "45",
		"Lieferform;Download@", "pd274871047.htm",
		"", 1,
		"1012-30", "0",
		 0)
	
		Entry[616] = new Element(
		616, "assets/thumb/bg-39-listbild.jpg",
		200, 135,
		"bg-39-1", "Gina + Tatjana (Vol.2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "45",
		"Lieferform;Download@", "pd308847478.htm",
		"", 1,
		"1012-30", "0",
		 0)
	
		Entry[617] = new Element(
		617, "assets/thumb/ab-196-listbild.jpg",
		200, 150,
		"ab-196-1", "Lia: Chloro-Adventures",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "26",
		"Lieferform;Download@", "pd1175423274.htm",
		"", 1,
		"10101", "0",
		 0)
	
		Entry[618] = new Element(
		618, "assets/thumb/ab-197-listbild.jpg",
		200, 150,
		"ab-197-1", "Tanja is kidnapped",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "26",
		"Lieferform;Download@", "pd-154154688.htm",
		"", 1,
		"10101", "0",
		 0)
	
		Entry[619] = new Element(
		619, "assets/thumb/ab-198-listbild.jpg",
		200, 150,
		"ab-198-1", "Sara &amp; Anna",
		"Learning the ropes", "",
		"39", "0",
		"1", 1,
		"Stück", "26",
		"Lieferform;Download@", "pd-340632058.htm",
		"", 1,
		"10101", "0",
		 0)
	
		Entry[620] = new Element(
		620, "assets/thumb/bg-40-listbild.jpg",
		200, 136,
		"bg-40-1", "Angie in Bondage Vol. 3",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "46",
		"Lieferform;Download@", "pd-807514796.htm",
		"", 1,
		"1012-50", "0",
		 0)
	
		Entry[621] = new Element(
		621, "assets/thumb/rc-13-listbild.jpg",
		200, 152,
		"rc-013-1", "The Girl Snatcher",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "82",
		"Lieferform;Download@", "pd1177502532.htm",
		"", 1,
		"7000-20", "0",
		 0)
	
		Entry[622] = new Element(
		622, "assets/thumb/rc-14-listbild.jpg",
		200, 155,
		"rc-014-1", "False Friend (2)",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "82",
		"Lieferform;Download@", "pd-580232111.htm",
		"", 1,
		"7000-20", "0",
		 0)
	
		Entry[623] = new Element(
		623, "assets/thumb/wol-03-listbild.jpg",
		200, 153,
		"wol-03-1", "Sandy bound in the kitchen",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "50",
		"Lieferform;Download@", "pd209337178.htm",
		"", 1,
		"1013", "0",
		 0)
	
		Entry[624] = new Element(
		624, "assets/thumb/tag-c22-listbild.jpg",
		200, 153,
		"tag-C22-1", "Chloroformed Girls",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "96",
		"Lieferform;Download@", "pd-731838927.htm",
		"", 1,
		"8000-c", "0",
		 0)
	
		Entry[625] = new Element(
		625, "assets/thumb/01.jpg",
		200, 167,
		"ab-202", "Lupina",
		"Learning to be a Slave", "",
		"39", "0",
		"1", 1,
		"Stück", "27",
		"Lieferform;Download@", "pd-2028985865.htm",
		"", 1,
		"10102", "0",
		 0)
	
		Entry[626] = new Element(
		626, "assets/thumb/ab-200-listbild.jpg",
		200, 165,
		"ab-200", "Nieces in Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "27",
		"Lieferform;Download@", "pd-1272700856.htm",
		"", 1,
		"10102", "0",
		 0)
	
		Entry[627] = new Element(
		627, "assets/thumb/ab-201-listbild.jpg",
		200, 188,
		"ab-201-2", "Fur Slave Girl",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "27",
		"Lieferform;Download@", "pd-589841622.htm",
		"", 1,
		"10102", "0",
		 0)
	
		Entry[628] = new Element(
		628, "assets/thumb/ab-199-listbild.jpg",
		200, 150,
		"ab-199-1", "Foot Slave (2)",
		"The Revenge", "",
		"39", "0",
		"1", 1,
		"Stück", "26",
		"Lieferform;Download@", "pd1181383375.htm",
		"", 1,
		"10101", "0",
		 0)
	
		Entry[629] = new Element(
		629, "assets/thumb/ab-203-listbild.jpg",
		200, 150,
		"ab-203-1", "Erotic Seduction",
		"Verführt im Saunaanzug", "",
		"39", "0",
		"1", 1,
		"Stück", "27",
		"Lieferform;Download@", "pd-1097679347.htm",
		"", 1,
		"10102", "0",
		 0)
	
		Entry[630] = new Element(
		630, "assets/thumb/bg-41-listbild.jpg",
		200, 135,
		"bg-41-1", "Gina + Angie in Trouble",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "46",
		"Lieferform;Download@", "pd1181466957.htm",
		"", 1,
		"1012-50", "0",
		 0)
	
		Entry[631] = new Element(
		631, "assets/thumb/bg-42-listbild.jpg",
		200, 137,
		"bg-42-1", "Miri wird im Wald entführt",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "46",
		"Lieferform;Download@", "pd1685964372.htm",
		"", 1,
		"1012-50", "0",
		 0)
	
		Entry[632] = new Element(
		632, "assets/thumb/ab-204-listbild.jpg",
		200, 150,
		"ab-204-1", "Wer nicht hören will, ...",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "27",
		"Lieferform;Download@", "pd1182694672.htm",
		"", 1,
		"10102", "0",
		 0)
	
		Entry[633] = new Element(
		633, "assets/thumb/el-05-listbild.jpg",
		200, 153,
		"el-05-1", "Curious Girl",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "52",
		"Lieferform;Download@", "pd725595768.htm",
		"", 1,
		"11000-el", "0",
		 0)
	
		Entry[634] = new Element(
		634, "assets/thumb/tag-26-listbild.jpg",
		200, 153,
		"tag-26-1", "Valary",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "85",
		"Lieferform;Download@", "pd-1935264176.htm",
		"", 1,
		"8000-030", "0",
		 0)
	
		Entry[635] = new Element(
		635, "assets/thumb/gabanner.jpg",
		468, 60,
		"lnk-010", "girlasylum",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "144",
		"", "http://www.girlasylum.com",
		"", 1,
		"90000", "0",
		 1)
	
		Entry[636] = new Element(
		636, "assets/thumb/ab-205-listbild.jpg",
		200, 150,
		"ab-205-1", "Hogtie forever",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "27",
		"Lieferform;Download@", "pd1183290834.htm",
		"", 1,
		"10102", "0",
		 0)
	
		Entry[637] = new Element(
		637, "assets/thumb/bg-44-listbild.jpg",
		200, 134,
		"bg-44-1", "Gina in Bondage Vol. 6",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "46",
		"Lieferform;Download@", "pd1183377940.htm",
		"", 1,
		"1012-50", "0",
		 0)
	
		Entry[638] = new Element(
		638, "assets/thumb/bg-43-listbild.jpg",
		200, 136,
		"bg-43-1", "Angel in Bondage Vol. 1",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "46",
		"Lieferform;Download@", "pd-214342409.htm",
		"", 1,
		"1012-50", "0",
		 0)
	
		Entry[639] = new Element(
		639, "assets/thumb/ab-206-listbild.jpg",
		200, 150,
		"ab-206-1", "Brutale Rache / Die Hochzeitsnacht",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "27",
		"Lieferform;Download@", "pd1185812475.htm",
		"", 1,
		"10102", "0",
		 0)
	
		Entry[640] = new Element(
		640, "assets/thumb/ab-207-listlbild.jpg",
		200, 150,
		"ab-207-1", "Tight Mitten (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "27",
		"Lieferform;Download@", "pd1654791482.htm",
		"", 1,
		"10102", "0",
		 0)
	
		Entry[641] = new Element(
		641, "assets/thumb/ab-208-listbild.jpg",
		200, 150,
		"ab-208-1", "Kidnapped Cheerleaders",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "27",
		"Lieferform;Download@", "pd-1458694091.htm",
		"", 1,
		"10102", "0",
		 0)
	
		Entry[642] = new Element(
		642, "assets/thumb/bg-45-listbild.jpg",
		200, 133,
		"bg-45-1", "Gina in Bondage Vol. 7",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "46",
		"Lieferform;Download@", "pd1186310531.htm",
		"", 1,
		"1012-50", "0",
		 0)
	
		Entry[643] = new Element(
		643, "assets/thumb/bg-46-listbild.jpg",
		200, 133,
		"bg-46-1", "Gina in Bondage Vol. 8",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "46",
		"Lieferform;Download@", "pd314291938.htm",
		"", 1,
		"1012-50", "0",
		 0)
	
		Entry[644] = new Element(
		644, "assets/thumb/bg-47-listbild.jpg",
		200, 133,
		"bg-47-1", "Angel winterlich verpackt",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "46",
		"Lieferform;Download@", "pd1188997503.htm",
		"", 1,
		"1012-50", "0",
		 0)
	
		Entry[645] = new Element(
		645, "assets/thumb/bg-48-listbild.jpg",
		200, 133,
		"bg-48-1", "3 Mädels in Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "46",
		"Lieferform;Download@", "pd-1252566578.htm",
		"", 1,
		"1012-50", "0",
		 0)
	
		Entry[646] = new Element(
		646, "assets/thumb/ab-209-listbild.jpg",
		200, 150,
		"ab-209-1", "Bagged Trio &amp;",
		"Captured Girls", "",
		"39", "0",
		"1", 1,
		"Stück", "27",
		"Lieferform;Download@", "pd1189347992.htm",
		"", 1,
		"10102", "0",
		 0)
	
		Entry[647] = new Element(
		647, "assets/thumb/ab-210-listbild.jpg",
		200, 150,
		"ab-210-1", "Die Lycra Diebin",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "28",
		"Lieferform;Download@", "pd-2108603577.htm",
		"", 1,
		"10103", "0",
		 0)
	
		Entry[648] = new Element(
		648, "assets/thumb/bg-49-listbild.jpg",
		200, 133,
		"bg-49-1", "Julia + Vivianne in Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "46",
		"Lieferform;Download@", "pd-210395837.htm",
		"", 1,
		"1012-50", "0",
		 0)
	
		Entry[649] = new Element(
		649, "assets/thumb/bg-50-listbild.jpg",
		200, 133,
		"bg-50-1", "Angel in Bondage (3)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "47",
		"Lieferform;Download@", "pd1902709793.htm",
		"", 1,
		"1012-60", "0",
		 0)
	
		Entry[650] = new Element(
		650, "assets/thumb/tag-143-listbild.jpg",
		200, 150,
		"tag-143-1", "Chantal",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "92",
		"Lieferform;Download@", "pd1738847492.htm",
		"", 1,
		"8000-150", "0",
		 0)
	
		Entry[651] = new Element(
		651, "assets/thumb/ab-211-listbild.jpg",
		200, 150,
		"ab-211-1", "Revenge of the Trainee",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "28",
		"Lieferform;Download@", "pd1191156414.htm",
		"", 1,
		"10103", "0",
		 0)
	
		Entry[652] = new Element(
		652, "assets/thumb/tag-165-listbild.jpg",
		200, 150,
		"tag-165-1", "Kidnapping of Jamie",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "139,130,142,0,139,126,120,3,138,3,119,3,131,3,138,3,2,94",
		"Lieferform;Download@", "pd1272903242.htm",
		"", 1,
		"13013,13004-500,15500,00,13013,13004-100,13001-4,100011,13011,100011,13001-3,100011,13006,100011,13011,100011,1,8000-170", "0",
		 0)
	
		Entry[653] = new Element(
		653, "assets/thumb/ab-290-listbild.jpg",
		200, 150,
		"ab-290-1", "3. Sabine´s Bestrafung (2) (- 2)",
		"Die binomischen Formeln", "",
		"39", "0",
		"1", 1,
		"Stück", "1",
		"Lieferform;Download@", "pd1272970950.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[654] = new Element(
		654, "assets/thumb/ab-291-listbild.jpg",
		200, 150,
		"ab-291-1", "2. Spezial-Therapie (+ 1)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "1",
		"Lieferform;Download@", "pd868219139.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[655] = new Element(
		655, "assets/thumb/ab-161-listbild.jpg",
		200, 160,
		"ab-161-1", "10. Straitjackets (- 4)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "1",
		"Lieferform;Download@", "pd1210040102.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[656] = new Element(
		656, "assets/thumb/ab-216-listbild.jpg",
		200, 150,
		"ab-216-1", "8. Sweet Gwendoline (+/- 0)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "1",
		"Lieferform;Download@", "pd-1025285802.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[657] = new Element(
		657, "assets/thumb/ab-195-listbild.jpg",
		200, 150,
		"ab-195-1", "9. Tight Mittens (+/- 0)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "1",
		"Lieferform;Download@", "pd-1663371327.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[658] = new Element(
		658, "assets/thumb/ab-292-listbild.jpg",
		200, 150,
		"ab-292-1", "Das Foto-Shooting",
		"Nylon, Stahl und irre Knebel", "",
		"39", "0",
		"1", 1,
		"Stück", "36",
		"Lieferform;Download@", "pd1274195947.htm",
		"", 1,
		"10111", "0",
		 0)
	
		Entry[659] = new Element(
		659, "assets/thumb/ab-293-listbild.jpg",
		200, 150,
		"ab-293-1", "Attack against Lia and Anja",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "36",
		"Lieferform;Download@", "pd56246568.htm",
		"", 1,
		"10111", "0",
		 0)
	
		Entry[660] = new Element(
		660, "assets/thumb/alex-02-listbild.jpg",
		200, 150,
		"al-02-1", "Alex und seine Freundin",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "139,130,142,0,139,126,120,3,138,3,119,3,131,3,138,3,2,94,40,2",
		"Lieferform;Download@", "pd1274532994.htm",
		"", 1,
		"13013,13004-500,15500,00,13013,13004-100,13001-4,100011,13011,100011,13001-3,100011,13006,100011,13011,100011,1,8000-170,1011,1", "0",
		 0)
	
		Entry[661] = new Element(
		661, "assets/thumb/ab-294-listbild.jpg",
		200, 150,
		"ab-294-1", "Tied Feet (Vanessa &amp; Lia)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "36",
		"Lieferform;Download@", "pd1276350750.htm",
		"", 1,
		"10111", "0",
		 0)
	
		Entry[662] = new Element(
		662, "assets/thumb/ab-295-listbild.jpg",
		200, 150,
		"ab-295-1", "Pony-Time (Nora &amp; Jana)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "36",
		"Lieferform;Download@", "pd-190010625.htm",
		"", 1,
		"10111", "0",
		 0)
	
		Entry[663] = new Element(
		663, "assets/thumb/smg-042-listbild.jpg",
		200, 150,
		"smg-042-1", "Pamela´s Education",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "72",
		"Lieferform;Download@", "pd1276440928.htm",
		"", 1,
		"16004-50", "0",
		 0)
	
		Entry[664] = new Element(
		664, "assets/thumb/smg-043-listbild.jpg",
		200, 150,
		"smg-043-1", "Nicci´s Torture",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "139,130,142,0,139,126,120,3,138,3,119,3,131,3,138,3,2,94,40,2,72,2",
		"Lieferform;Download@", "pd-865479112.htm",
		"", 1,
		"13013,13004-500,15500,00,13013,13004-100,13001-4,100011,13011,100011,13001-3,100011,13006,100011,13011,100011,1,8000-170,1011,1,16004-50,1", "0",
		 0)
	
		Entry[665] = new Element(
		665, "assets/thumb/bf-15-listbild.jpg",
		200, 150,
		"bf-15-1", "6. Olga &amp; Alyonka (Neueinsteiger)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "1",
		"Lieferform;Download@", "pd383716880.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[666] = new Element(
		666, "assets/thumb/ab-293-listbild.jpg",
		200, 150,
		"ab-293-1", "4. Attack against Lia and Anja (Top Neueinsteiger)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "1",
		"Lieferform;Download@", "pd-113525789.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[667] = new Element(
		667, "assets/thumb/ab-193-listbild.jpg",
		200, 150,
		"ab-193-1", "5. Captured for Socks (Neueinsteiger)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "1",
		"Lieferform;Download@", "pd-10729627.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[668] = new Element(
		668, "assets/thumb/hk-07-listbild.jpg",
		200, 151,
		"hk-07-1", "Die diebische Elster",
		"", "",
		"29", "0",
		"1", 1,
		"Stück", "99",
		"Lieferform;Download@", "pd1277114130.htm",
		"", 1,
		"bg-001", "0",
		 0)
	
		Entry[669] = new Element(
		669, "assets/thumb/hk-08-listbild.jpg",
		200, 150,
		"hk-08-1", "Aus Spaß wird Ernst",
		"", "",
		"29", "0",
		"1", 1,
		"Stück", "139,130,142,0,139,126,120,3,138,3,119,3,131,3,138,3,2,94,40,2,72,2,99,2",
		"Lieferform;Download@", "pd472847976.htm",
		"", 1,
		"13013,13004-500,15500,00,13013,13004-100,13001-4,100011,13011,100011,13001-3,100011,13006,100011,13011,100011,1,8000-170,1011,1,16004-50,1,bg-001,1", "0",
		 0)
	
		Entry[670] = new Element(
		670, "assets/thumb/ab-296-listbild.jpg",
		200, 150,
		"ab-296-1", "Denise in Bondage &amp; Steel",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "36",
		"Lieferform;Download@", "pd1277202195.htm",
		"", 1,
		"10111", "0",
		 0)
	
		Entry[671] = new Element(
		671, "assets/thumb/bm-06-200.jpg",
		140, 200,
		"bm-06-abo", "Bondage Magazine (Vol. 6)",
		"Thema: Western- und Fusionstil", "",
		"8.9", "0",
		"1", 1,
		"Stück", "114",
		"Ausgabe;als Abo (4x Jahr)@", "pd1280327137.htm",
		"", 1,
		"1201", "0",
		 0)
	
		Entry[672] = new Element(
		672, "assets/thumb/ab-297-listbild.jpg",
		200, 150,
		"ab-297-3", "Rache an der Domina (1)",
		"", "",
		"19.9", "0",
		"1", 1,
		"Stück", "36",
		"Lieferform;Download@", "pd1281458402.htm",
		"", 1,
		"10111", "0",
		 0)
	
		Entry[673] = new Element(
		673, "assets/thumb/ab-298-listbild.jpg",
		200, 150,
		"ab-298", "Überfall auf Pamela",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "36",
		"Lieferform;Download@", "pd-659357734.htm",
		"", 1,
		"10111", "0",
		 0)
	
		Entry[674] = new Element(
		674, "assets/thumb/ab-299-listbild.jpg",
		200, 150,
		"ab-299-3", "Rache an der Domina (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "36",
		"Lieferform;Download@", "pd1055339263.htm",
		"", 1,
		"10111", "0",
		 0)
	
		Entry[675] = new Element(
		675, "assets/thumb/ab-301-listbild.jpg",
		200, 150,
		"ab-301-1", "Girlfriends &amp; Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "37",
		"Lieferform;Download@", "pd-1335775510.htm",
		"", 1,
		"10112", "0",
		 0)
	
		Entry[676] = new Element(
		676, "assets/thumb/ab-302-listbild.jpg",
		200, 150,
		"ab-302-1", "Drei Freundinnen in Gefahr",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "37",
		"Lieferform;Download@", "pd945068289.htm",
		"", 1,
		"10112", "0",
		 0)
	
		Entry[677] = new Element(
		677, "assets/thumb/ab-303-listbild.jpg",
		200, 150,
		"ab-303-1", "Die widerwillige Haushaltshilfe",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "37",
		"Lieferform;Download@", "pd-1131813127.htm",
		"", 1,
		"10112", "0",
		 0)
	
		Entry[678] = new Element(
		678, "assets/thumb/ab-304-listbild.jpg",
		200, 150,
		"ab-304-1", "Überfall im Winterjackengeschäft",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "37",
		"Lieferform;Download@", "pd1899252721.htm",
		"", 1,
		"10112", "0",
		 0)
	
		Entry[679] = new Element(
		679, "assets/thumb/ab-305-listbild.jpg",
		200, 150,
		"ab-305-1", "2 Freundinnen hilflos ausgeliefert",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "37",
		"Lieferform;Download@", "pd714713065.htm",
		"", 1,
		"10112", "0",
		 0)
	
		Entry[680] = new Element(
		680, "assets/thumb/ab-306-listbild.jpg",
		200, 150,
		"ab-306-1", "Noseplay mit Janie und Lia",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "37",
		"Lieferform;Download@", "pd421255905.htm",
		"", 1,
		"10112", "0",
		 0)
	
		Entry[681] = new Element(
		681, "assets/thumb/smg-004-listbild.jpg",
		200, 160,
		"smg-004", "Tortured Kallisti",
		"", "",
		"29", "0",
		"1", 1,
		"Stück", "68",
		"", "pd1133809941.htm",
		"", 1,
		"16004-10", "0",
		 0)
	
		Entry[682] = new Element(
		682, "assets/thumb/smg-005-listbild.jpg",
		200, 160,
		"smg-005", "Whipped, Ice, Wire",
		"", "",
		"29", "0",
		"1", 1,
		"Stück", "68",
		"", "pd379752779.htm",
		"", 1,
		"16004-10", "0",
		 0)
	
		Entry[683] = new Element(
		683, "assets/thumb/smg-006-1-listbild.jpg",
		250, 200,
		"smg-006-1", "Eisfolter + Strom",
		"Ice-Torture and wire", "",
		"19", "0",
		"1", 1,
		"Stück", "68",
		"", "pd-1594572261.htm",
		"", 1,
		"16004-10", "0",
		 0)
	
		Entry[684] = new Element(
		684, "assets/thumb/smg-6-2-listbild.jpg",
		250, 200,
		"smg-006-2", "Elektro Torture",
		"- Download -", "",
		"19", "0",
		"1", 1,
		"Stück", "68",
		"", "pd2140164518.htm",
		"", 1,
		"16004-10", "0",
		 0)
	
		Entry[685] = new Element(
		685, "assets/thumb/smg-007-listbild.jpg",
		250, 200,
		"smg-007", "Wax, Whip, Water-Torture",
		"- to the limit - ", "",
		"29", "0",
		"1", 1,
		"Stück", "68",
		"", "pd1734312385.htm",
		"", 1,
		"16004-10", "0",
		 0)
	
		Entry[686] = new Element(
		686, "assets/thumb/smg-008-listbild.jpg",
		200, 160,
		"smg-008", "Violet Wand",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "68",
		"", "pd1143542411.htm",
		"", 1,
		"16004-10", "0",
		 0)
	
		Entry[687] = new Element(
		687, "assets/thumb/smg-009-listbild.jpg",
		200, 160,
		"smg-009", "Tortured Girls",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "68",
		"", "pd403703729.htm",
		"", 1,
		"16004-10", "0",
		 0)
	
		Entry[688] = new Element(
		688, "assets/thumb/smg-015-listbild.jpg",
		250, 200,
		"smg-015", "Die Sklavin",
		"Slave Girl", "",
		"39", "0",
		"1", 1,
		"Stück", "69",
		"", "pd1117205632.htm",
		"", 1,
		"16004-20", "0",
		 0)
	
		Entry[689] = new Element(
		689, "assets/thumb/ticket_001.jpg",
		200, 160,
		"ticket-001-1", "Metal Toys 1",
		"", "",
		"14.95", "0",
		"1", 1,
		"Stück", "67",
		"Ticket-Preis;Mitglieder@", "pd-143736294.htm",
		"", 1,
		"16004-0", "0",
		 0)
	
		Entry[690] = new Element(
		690, "assets/thumb/ticket_002.jpg",
		200, 160,
		"ticket-002-1", "Metal Toys 2",
		"", "",
		"14.95", "0",
		"1", 1,
		"Stück", "67",
		"Ticket-Preis;Mitglieder@", "pd1623107733.htm",
		"", 1,
		"16004-0", "0",
		 0)
	
		Entry[691] = new Element(
		691, "assets/thumb/ticket_003.jpg",
		200, 160,
		"ticket-003-1", "Metal Toys 3",
		"", "",
		"14.95", "0",
		"1", 1,
		"Stück", "67",
		"Ticket-Preis;Mitglieder@", "pd138359793.htm",
		"", 1,
		"16004-0", "0",
		 0)
	
		Entry[692] = new Element(
		692, "assets/thumb/ticket_004.jpg",
		200, 160,
		"ticket-004-1", "Metal Toys 4",
		"", "",
		"14.95", "0",
		"1", 1,
		"Stück", "67",
		"Ticket-Preis;Mitglieder@", "pd-1482814195.htm",
		"", 1,
		"16004-0", "0",
		 0)
	
		Entry[693] = new Element(
		693, "assets/thumb/ticket_005.jpg",
		200, 150,
		"ticket-005-1", "Hogtied",
		"", "",
		"14.95", "0",
		"1", 1,
		"Stück", "67",
		"Ticket-Preis;Mitglieder@", "pd-100036631.htm",
		"", 1,
		"16004-0", "0",
		 0)
	
		Entry[694] = new Element(
		694, "assets/thumb/suspension.jpg",
		150, 200,
		"ticket-006", "Suspension",
		"", "",
		"14.95", "0",
		"1", 1,
		"Stück", "67",
		"Ticket-Preis;Mitglieder@", "pd1057420775.htm",
		"", 1,
		"16004-0", "0",
		 0)
	
		Entry[695] = new Element(
		695, "assets/thumb/whip.jpg",
		200, 150,
		"ticket-007", "Whip",
		"", "",
		"9.95", "0",
		"1", 1,
		"Stück", "67",
		"Ticket-Preis;Mitglieder@", "pd-1052269751.htm",
		"", 1,
		"16004-0", "0",
		 0)
	
		Entry[696] = new Element(
		696, "assets/thumb/smg-010-listbild.jpg",
		200, 160,
		"smg-010", "Heavy Metal",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "69",
		"", "pd1152538019.htm",
		"", 1,
		"16004-20", "0",
		 0)
	
		Entry[697] = new Element(
		697, "assets/thumb/bg-61-listbild.jpg",
		200, 153,
		"bg-61-1", "Sophia und Tamara",
		"bei Wasserspielchen", "",
		"39", "0",
		"1", 1,
		"Stück", "48",
		"Lieferform;Download@", "pd1174672751.htm",
		"", 1,
		"1012-70", "0",
		 0)
	
		Entry[698] = new Element(
		698, "assets/thumb/bf-022-listbild.jpg",
		200, 150,
		"bf-22-1", "Daughter: Selfbondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "77",
		"Lieferform;Download@", "pd1924918701.htm",
		"", 1,
		"4000-30", "0",
		 0)
	
		Entry[699] = new Element(
		699, "assets/thumb/smg-016-listbild.jpg",
		200, 150,
		"smg-016", "Strom",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "69",
		"", "pd1501359397.htm",
		"", 1,
		"16004-20", "0",
		 0)
	
		Entry[700] = new Element(
		700, "assets/thumb/ds-001-listbild.jpg",
		200, 150,
		"ds-001-1", "Die Sadisten - Eva´s Torture (1)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "102",
		"Lieferform;Download@", "pd670946414.htm",
		"", 1,
		"ds-010", "0",
		 0)
	
		Entry[701] = new Element(
		701, "assets/thumb/ab-236-listbild.jpg",
		200, 153,
		"ab-236-1", "Home Alone",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "30",
		"Lieferform;Download@", "pd1210517513.htm",
		"", 1,
		"10105", "0",
		 0)
	
		Entry[702] = new Element(
		702, "assets/thumb/ab-237-listbild.jpg",
		200, 153,
		"ab-237-1", "Die böse Therapeutin",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "30",
		"Lieferform;Download@", "pd-979378431.htm",
		"", 1,
		"10105", "0",
		 0)
	
		Entry[703] = new Element(
		703, "assets/thumb/smg-012-listbild.jpg",
		200, 153,
		"smg-012", "Steel &amp; Water",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "69",
		"", "pd58453241.htm",
		"", 1,
		"16004-20", "0",
		 0)
	
		Entry[704] = new Element(
		704, "assets/thumb/ds-002-listbild.jpg",
		200, 150,
		"ds-002-1", "Die Sadisten (Eva´s Torture 2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "102",
		"Lieferform;Download@", "pd1211623544.htm",
		"", 1,
		"ds-010", "0",
		 0)
	
		Entry[705] = new Element(
		705, "assets/thumb/ab-238-listbild.jpg",
		200, 150,
		"ab-238-1", "Die Rabenmutter",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "30",
		"Lieferform;Download@", "pd1462347957.htm",
		"", 1,
		"10105", "0",
		 0)
	
		Entry[706] = new Element(
		706, "assets/thumb/ab-239-listbild.jpg",
		200, 150,
		"ab-239-1", "Jackets, Boots and Barefoot",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "30",
		"Lieferform;Download@", "pd-1093422803.htm",
		"", 1,
		"10105", "0",
		 0)
	
		Entry[707] = new Element(
		707, "assets/thumb/ab-240-listbild.jpg",
		200, 150,
		"ab-240-1", "Hot Girls - Cold Steel",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "31",
		"Lieferform;Download@", "pd1213468339.htm",
		"", 1,
		"10106", "0",
		 0)
	
		Entry[708] = new Element(
		708, "assets/thumb/ab-241-listbild.jpg",
		200, 150,
		"ab-241-1", "Kacy´s First Time",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "31",
		"Lieferform;Download@", "pd1599932240.htm",
		"", 1,
		"10106", "0",
		 0)
	
		Entry[709] = new Element(
		709, "assets/thumb/smg-013-listbild.jpg",
		200, 150,
		"smg-013-1", "Pain(1)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "69",
		"Lieferform;Download@", "pd1405966888.htm",
		"", 1,
		"16004-20", "0",
		 0)
	
		Entry[710] = new Element(
		710, "assets/thumb/08_resize.jpg",
		200, 135,
		"dvd", "gebrauchte DVD´s",
		"", "",
		"9.95", "0",
		"1", 1,
		"Stück", "0",
		"", "pd356127029.htm",
		"", 1,
		"00", "0",
		 0)
	
		Entry[711] = new Element(
		711, "assets/thumb/ab-208-listbild.jpg",
		200, 150,
		"dvd-pack", "5er DVD-Pack",
		"", "",
		"99.9", "0",
		"1", 1,
		"Stück", "0",
		"", "pd358649451.htm",
		"", 1,
		"00", "0",
		 0)
	
		Entry[712] = new Element(
		712, "assets/thumb/smg-026-listbild.jpg",
		200, 150,
		"smg-026", "Saskia - Nettle Torture",
		"", "",
		"44", "0",
		"1", 1,
		"Stück", "70",
		"", "pd-1953589963.htm",
		"", 1,
		"16004-30", "0",
		 0)
	
		Entry[713] = new Element(
		713, "assets/thumb/ab-242-listbild.jpg",
		200, 150,
		"ab-242-1", "Private Prison (3)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "31",
		"Lieferform;Download@", "pd1554786961.htm",
		"", 1,
		"10106", "0",
		 0)
	
		Entry[714] = new Element(
		714, "assets/thumb/bf-23-listbild.jpg",
		200, 150,
		"bf-23-1", "Mirelle &amp; Nelfa",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "77",
		"Lieferform;Download@", "pd702053001.htm",
		"", 1,
		"4000-30", "0",
		 0)
	
		Entry[715] = new Element(
		715, "assets/thumb/ab-243-listbild.jpg",
		200, 150,
		"ab-243-1", "Katja´s Zofe",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "31",
		"Lieferform;Download@", "pd1215889496.htm",
		"", 1,
		"10106", "0",
		 0)
	
		Entry[716] = new Element(
		716, "assets/thumb/gvz-2-listbild.jpg",
		200, 150,
		"gvz-02-1", "David´s Erziehung",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "56",
		"Lieferform;Download@", "pd-957316789.htm",
		"", 1,
		"11000-gvz", "0",
		 0)
	
		Entry[717] = new Element(
		717, "assets/thumb/nadelrad-3.jpg",
		450, 286,
		"pwh-002", "Pinwheel ",
		"", "",
		"19.9", "0",
		"1", 1,
		"Stück", "139,130,142,0,139,126,120,3,138,3,119,3,131,3,138,3,2,94,40,2,72,2,99,2,137,3",
		"", "pd1711264706.htm",
		"", 1,
		"13013,13004-500,15500,00,13013,13004-100,13001-4,100011,13011,100011,13001-3,100011,13006,100011,13011,100011,1,8000-170,1011,1,16004-50,1,bg-001,1,13010-200,100011", "0",
		 0)
	
		Entry[718] = new Element(
		718, "assets/thumb/lnd-01-listbild.jpg",
		200, 112,
		"lnd-01", "Abgestraft im Atelier Luzifer",
		"", "",
		"19.9", "0",
		"1", 1,
		"Stück", "105",
		"", "pd-1081810248.htm",
		"", 1,
		"lnd-01", "0",
		 0)
	
		Entry[719] = new Element(
		719, "assets/thumb/smg-014-listbild.gif",
		250, 200,
		"smg-014-1", "Pain(2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "69",
		"Lieferform;Download@", "pd1217076820.htm",
		"", 1,
		"16004-20", "0",
		 0)
	
		Entry[720] = new Element(
		720, "assets/thumb/ab-244-listbild.jpg",
		200, 150,
		"ab-244-1", "The red jacket",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "31",
		"Lieferform;Download@", "pd953404862.htm",
		"", 1,
		"10106", "0",
		 0)
	
		Entry[721] = new Element(
		721, "assets/thumb/ab-245-listbild.jpg",
		200, 150,
		"ab-245-1", "Im Kieswerk",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "31",
		"Lieferform;Download@", "pd-1668713386.htm",
		"", 1,
		"10106", "0",
		 0)
	
		Entry[722] = new Element(
		722, "assets/thumb/smg-035-listbild.jpg",
		200, 150,
		"smg-035-1", "Eva´s Suspension",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "71",
		"Lieferform;Download@", "pd-280903977.htm",
		"", 1,
		"16004-40", "0",
		 0)
	
		Entry[723] = new Element(
		723, "assets/thumb/smg-036-listbild.jpg",
		200, 150,
		"smg-036-1", "Eva´s Pool Torture",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "71",
		"Lieferform;Download@", "pd1209588921.htm",
		"", 1,
		"16004-40", "0",
		 0)
	
		Entry[724] = new Element(
		724, "assets/thumb/ab-246-listbild.jpg",
		200, 150,
		"ab-246-1", "Lia - Captured at Home",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "31",
		"Lieferform;Download@", "pd1218558902.htm",
		"", 1,
		"10106", "0",
		 0)
	
		Entry[725] = new Element(
		725, "assets/thumb/ab-247-listbild.jpg",
		200, 150,
		"ab-247-1", "Neck &amp; Sleepy Fetish",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "31",
		"Lieferform;Download@", "pd-587171506.htm",
		"", 1,
		"10106", "0",
		 0)
	
		Entry[726] = new Element(
		726, "assets/thumb/ab-248-listbild.jpg",
		200, 150,
		"ab-248-1", "Asphyx Challenge",
		"Die Herausforderung ", "",
		"44", "0",
		"1", 1,
		"Stück", "31",
		"Lieferform;Download@", "pd1408393702.htm",
		"", 1,
		"10106", "0",
		 0)
	
		Entry[727] = new Element(
		727, "assets/thumb/lnd-002-listbild.jpg",
		200, 150,
		"lnd-02", "Der verschenkte Sklave",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "105",
		"", "pd1219585941.htm",
		"", 1,
		"lnd-01", "0",
		 0)
	
		Entry[728] = new Element(
		728, "assets/thumb/bg-62-listbild.jpg",
		200, 150,
		"bg-62-1", "Die Deckenkundin (1)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "48",
		"Lieferform;Download@", "pd-704433695.htm",
		"", 1,
		"1012-70", "0",
		 0)
	
		Entry[729] = new Element(
		729, "assets/thumb/tag-161-listbild.jpg",
		200, 150,
		"tag-161-1", "Heidi",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "94",
		"Lieferform;Download@", "pd-1852982480.htm",
		"", 1,
		"8000-170", "0",
		 0)
	
		Entry[730] = new Element(
		730, "assets/thumb/sb-02-listbild.jpg",
		200, 150,
		"sb-02-1", "Ewa - Tied Outdoor",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "60",
		"Lieferform;Download@", "pd-332526956.htm",
		"", 1,
		"11000-sn", "0",
		 0)
	
		Entry[731] = new Element(
		731, "assets/thumb/smg-037-listbild.jpg",
		200, 150,
		"smg-037-1", "Eva´s hard whipping",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "71",
		"Lieferform;Download@", "pd1222004996.htm",
		"", 1,
		"16004-40", "0",
		 0)
	
		Entry[732] = new Element(
		732, "assets/thumb/bf-024-listbild.jpg",
		200, 150,
		"bf-24-1", "Eugenia &amp; Delta",
		"Mummy Games", "",
		"39", "0",
		"1", 1,
		"Stück", "77",
		"Lieferform;Download@", "pd106017703.htm",
		"", 1,
		"4000-30", "0",
		 0)
	
		Entry[733] = new Element(
		733, "assets/thumb/hg-18-listbild.jpg",
		200, 150,
		"hg-18-1", "Kleo captured in the forest",
		"", "",
		"34", "0",
		"1", 1,
		"Stück", "59",
		"Lieferform;Download@", "pd104166495.htm",
		"", 1,
		"hg-10-19", "0",
		 0)
	
		Entry[734] = new Element(
		734, "assets/thumb/ab-249-listbild.jpg",
		200, 150,
		"ab-249-1", "Ragdoll",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "31",
		"Lieferform;Download@", "pd1412054201.htm",
		"", 1,
		"10106", "0",
		 0)
	
		Entry[735] = new Element(
		735, "assets/thumb/ab-250-listbild.jpg",
		200, 150,
		"ab-250-1", "The new pet",
		"Der neue Hund", "",
		"39", "0",
		"1", 1,
		"Stück", "32",
		"Lieferform;Download@", "pd-493348431.htm",
		"", 1,
		"10107", "0",
		 0)
	
		Entry[736] = new Element(
		736, "assets/thumb/ab-251-listbild.jpg",
		200, 150,
		"ab-251-1", "Strappado",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "32",
		"Lieferform;Download@", "pd1999281334.htm",
		"", 1,
		"10107", "0",
		 0)
	
		Entry[737] = new Element(
		737, "assets/thumb/ab-252-listbild.jpg",
		200, 150,
		"ab-252-1", "Asphyx Extrem",
		"", "",
		"44", "0",
		"1", 1,
		"Stück", "32",
		"Lieferform;Download@", "pd1381661262.htm",
		"", 1,
		"10107", "0",
		 0)
	
		Entry[738] = new Element(
		738, "assets/thumb/austria-1_0000_resize.jpg",
		200, 149,
		"aus-01", "Maria is captured",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "40",
		"Lieferform;Download@", "pd1223719629.htm",
		"", 1,
		"1011", "0",
		 0)
	
		Entry[739] = new Element(
		739, "assets/thumb/ue-25-listbild.jpg",
		200, 150,
		"ue-epi-25-1", "Schock Treatment",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "65",
		"Lieferform;Download@", "pd1200721828.htm",
		"", 1,
		"11500-3", "0",
		 0)
	
		Entry[740] = new Element(
		740, "assets/thumb/ab-253-listbild.jpg",
		200, 150,
		"ab-253-1", "Die Autopanne",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "32",
		"Lieferform;Download@", "pd388970307.htm",
		"", 1,
		"10107", "0",
		 0)
	
		Entry[741] = new Element(
		741, "assets/thumb/smg-038-listbild.jpg",
		200, 150,
		"smg-038-1", "Jassi, das Hausmädchen",
		"", "",
		"44", "0",
		"1", 1,
		"Stück", "71",
		"Lieferform;Download@", "pd1224858825.htm",
		"", 1,
		"16004-40", "0",
		 0)
	
		Entry[742] = new Element(
		742, "assets/thumb/ab-254-listbild.jpg",
		200, 150,
		"ab-254", "Strangled in Hypnose",
		"", "",
		"44", "0",
		"1", 1,
		"Stück", "32",
		"Lieferform;Download@", "pd-455454016.htm",
		"", 1,
		"10107", "0",
		 0)
	
		Entry[743] = new Element(
		743, "assets/thumb/bf-025-listbild.jpg",
		200, 163,
		"bf-25-1", "Mirelle &amp; Nelfa",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "77",
		"Lieferform;Download@", "pd1225537428.htm",
		"", 1,
		"4000-30", "0",
		 0)
	
		Entry[744] = new Element(
		744, "assets/thumb/re-001-listbild.jpg",
		143, 200,
		"re-001-1", "Damsel In Distress Vol re-001",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "101",
		"Lieferform;Download@", "pd-845024241.htm",
		"", 1,
		"did-all", "0",
		 0)
	
		Entry[745] = new Element(
		745, "assets/thumb/anja-1-listbild.jpg",
		200, 164,
		"anja-001-1", "Anja´s first time in Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "98",
		"Lieferform;Download@", "pd759809338.htm",
		"", 1,
		"Anja", "0",
		 0)
	
		Entry[746] = new Element(
		746, "assets/thumb/anja-2-listbild.jpg",
		200, 164,
		"anja-002-1", "The Prisoner, Raincoat Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "98",
		"Lieferform;Download@", "pd-404846766.htm",
		"", 1,
		"Anja", "0",
		 0)
	
		Entry[747] = new Element(
		747, "assets/thumb/anja-3-listbild.jpg",
		200, 150,
		"anja-003-1", "Lycra, Fur, Chastity Belt",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "98",
		"Lieferform;Download@", "pd1057282221.htm",
		"", 1,
		"Anja", "0",
		 0)
	
		Entry[748] = new Element(
		748, "assets/thumb/ab-256-listbild.jpg",
		200, 150,
		"ab-256-1", "Anja meets Crazy Santa Claus",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "139,130,142,0,139,126,120,3,138,3,119,3,131,3,138,3,2,94,40,2,72,2,99,2,137,3,32,98",
		"Lieferform;Download@", "pd1228585056.htm",
		"", 1,
		"13013,13004-500,15500,00,13013,13004-100,13001-4,100011,13011,100011,13001-3,100011,13006,100011,13011,100011,1,8000-170,1011,1,16004-50,1,bg-001,1,13010-200,100011,10107,Anja", "0",
		 0)
	
		Entry[749] = new Element(
		749, "assets/thumb/Cover_200.jpg",
		142, 200,
		"bm-01", "Bondage Magazine (Vol. 1)",
		"*** AUSVERKAUFT ***", "",
		"0", "0",
		"1", 1,
		"Stück", "114",
		"", "pd983306140.htm",
		"", 1,
		"1201", "0",
		 1)
	
		Entry[750] = new Element(
		750, "assets/thumb/tf-3-listbild.jpg",
		200, 150,
		"tf-003", "Biggi´s Bastonade",
		"", "",
		"49", "0",
		"1", 1,
		"Stück", "78",
		"Lieferform;Download@", "pd-2112706572.htm",
		"", 1,
		"4001", "0",
		 0)
	
		Entry[751] = new Element(
		751, "assets/thumb/smg-031-listbild.jpg",
		200, 150,
		"smg-031-1", "Heavy Torture: Nora &amp; Kallisti",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "71",
		"Lieferform;Download@", "pd694242426.htm",
		"", 1,
		"16004-40", "0",
		 0)
	
		Entry[752] = new Element(
		752, "assets/thumb/ab-255-listbild.jpg",
		200, 150,
		"ab-255-1", "Biggi in Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "32",
		"Lieferform;Download@", "pd1334550407.htm",
		"", 1,
		"10107", "0",
		 0)
	
		Entry[753] = new Element(
		753, "assets/thumb/ab-257-listbild.jpg",
		200, 150,
		"ab-257-1", "Anja - Die Einbrecherin",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "32",
		"Lieferform;Download@", "pd1231586605.htm",
		"", 1,
		"10107", "0",
		 0)
	
		Entry[754] = new Element(
		754, "assets/thumb/ab-258-listbild.jpg",
		200, 150,
		"ab-258-1", "Der Babysitter",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "32",
		"Lieferform;Download@", "pd1232216078.htm",
		"", 1,
		"10107", "0",
		 0)
	
		Entry[755] = new Element(
		755, "assets/thumb/bws-01-listbild.jpg",
		200, 150,
		"bws-01-1", "Bondage Workshop Vol. 1",
		"", "",
		"29", "0",
		"1", 1,
		"Stück", "51",
		"Lieferform;Download@", "pd1350464499.htm",
		"", 1,
		"11000-bc4", "0",
		 0)
	
		Entry[756] = new Element(
		756, "assets/thumb/el-06-listbild.jpg",
		200, 150,
		"el-06-1", "Kimberly",
		"", "",
		"19.9", "0",
		"1", 1,
		"Stück", "52",
		"Lieferform;Download@", "pd1232472093.htm",
		"", 1,
		"11000-el", "0",
		 0)
	
		Entry[757] = new Element(
		757, "assets/thumb/ab-259-listbild.jpg",
		200, 150,
		"ab-259-1", "Die Studentenvereinigung",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "32",
		"Lieferform;Download@", "pd1233939940.htm",
		"", 1,
		"10107", "0",
		 0)
	
		Entry[758] = new Element(
		758, "assets/thumb/smg-039-listbild.jpg",
		200, 150,
		"smg-039-1", "Marlin - First Time S/M",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "71",
		"Lieferform;Download@", "pd1234031501.htm",
		"", 1,
		"16004-40", "0",
		 0)
	
		Entry[759] = new Element(
		759, "assets/thumb/gvz-03-listbild.jpg",
		200, 150,
		"gvz-03-1", "David´s Erziehung (Teil 2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "56",
		"Lieferform;Download@", "pd1234856954.htm",
		"", 1,
		"11000-gvz", "0",
		 0)
	
		Entry[760] = new Element(
		760, "assets/thumb/ab-261-listbild.jpg",
		200, 150,
		"ab-261-1", "Biggi´s Dream",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "33",
		"Lieferform;Download@", "pd-583594770.htm",
		"", 1,
		"10108", "0",
		 0)
	
		Entry[761] = new Element(
		761, "assets/thumb/ab-260-listbild.jpg",
		200, 150,
		"ab-260-1", "Beim Spaziergang überfallen",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "33",
		"Lieferform;Download@", "pd1235295383.htm",
		"", 1,
		"10108", "0",
		 0)
	
		Entry[762] = new Element(
		762, "assets/thumb/ab-262-listbild.jpg",
		200, 150,
		"ab-262-1", "Lia: Das neue Bondagegirl",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "33",
		"Lieferform;Download@", "pd1769834310.htm",
		"", 1,
		"10108", "0",
		 0)
	
		Entry[763] = new Element(
		763, "assets/thumb/ab-263-listbild.jpg",
		200, 150,
		"ab-263-1", "Die Schulden",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "33",
		"Lieferform;Download@", "pd1236360823.htm",
		"", 1,
		"10108", "0",
		 0)
	
		Entry[764] = new Element(
		764, "assets/thumb/ab-264-listbild.jpg",
		200, 150,
		"ab-264-1", "Marlin: Sklavin im Keuschheitsgürtel",
		"", "",
		"44", "0",
		"1", 1,
		"Stück", "33",
		"Lieferform;Download@", "pd-1354736327.htm",
		"", 1,
		"10108", "0",
		 0)
	
		Entry[765] = new Element(
		765, "assets/thumb/nicky-002-listbild.jpg",
		200, 150,
		"nicky-002-1", "Nicky: Asphyx Orgasm",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "38",
		"Lieferform;Download@", "pd1881554118.htm",
		"", 1,
		"10009", "0",
		 0)
	
		Entry[766] = new Element(
		766, "assets/thumb/Cover_2_200.jpg",
		155, 200,
		"bm-02", "Bondage Magazine (Vol. 2)",
		"*** Ausverkauft ***", "",
		"0", "0",
		"1", 1,
		"Stück", "114",
		"", "pd1237462064.htm",
		"", 1,
		"1201", "0",
		 1)
	
		Entry[767] = new Element(
		767, "assets/thumb/nicky-001-listbild.jpg",
		200, 150,
		"nicky-001-1", "Nicky: Breath Play",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "38",
		"Lieferform;Download@", "pd1237479177.htm",
		"", 1,
		"10009", "0",
		 0)
	
		Entry[768] = new Element(
		768, "assets/thumb/ab-265-listbild.jpg",
		200, 150,
		"ab-265-1", "Anja: Kidnapped for ransom",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "33",
		"Lieferform;Download@", "pd1238421414.htm",
		"", 1,
		"10108", "0",
		 0)
	
		Entry[769] = new Element(
		769, "assets/thumb/ab-266-listbild.jpg",
		200, 150,
		"ab-266-1", "Leather-Bound",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "33",
		"Lieferform;Download@", "pd2137910571.htm",
		"", 1,
		"10108", "0",
		 0)
	
		Entry[770] = new Element(
		770, "assets/thumb/ab-267-listbild.jpg",
		200, 150,
		"ab-267-1", "Fur Queen (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "33",
		"Lieferform;Download@", "pd462113692.htm",
		"", 1,
		"10108", "0",
		 0)
	
		Entry[771] = new Element(
		771, "assets/thumb/ab-268-listbild.jpg",
		200, 150,
		"ab-268-1", "Latexparty",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "33",
		"Lieferform;Download@", "pd1240479301.htm",
		"", 1,
		"10108", "0",
		 0)
	
		Entry[772] = new Element(
		772, "assets/thumb/ab-269-listbild.jpg",
		200, 160,
		"ab-269-1", "Nose Play (4)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "33",
		"Lieferform;Download@", "pd116910387.htm",
		"", 1,
		"10108", "0",
		 0)
	
		Entry[773] = new Element(
		773, "assets/thumb/ab-270-listbild.jpg",
		200, 150,
		"ab-270-1", "Anja: raped &amp; hypnotized",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "34",
		"Lieferform;Download@", "pd876150736.htm",
		"", 1,
		"10109", "0",
		 0)
	
		Entry[774] = new Element(
		774, "assets/thumb/nicky-003-listbild.jpg",
		200, 150,
		"nicky-003-1", "Nicky: Mit dem Rohrstock zum Orgasmus",
		"", "",
		"29", "0",
		"1", 1,
		"Stück", "38",
		"Lieferform;Download@", "pd1240600869.htm",
		"", 1,
		"10009", "0",
		 0)
	
		Entry[775] = new Element(
		775, "assets/thumb/ab-271-listbild.jpg",
		200, 150,
		"ab-271-1", "Training",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "34",
		"Lieferform;Download@", "pd820608648.htm",
		"", 1,
		"10109", "0",
		 0)
	
		Entry[776] = new Element(
		776, "assets/thumb/ab-272-listbild.jpg",
		200, 150,
		"ab-272-1", "Fernsklavin",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "34",
		"Lieferform;Download@", "pd1697009760.htm",
		"", 1,
		"10109", "0",
		 0)
	
		Entry[777] = new Element(
		777, "assets/thumb/gvz-04-listbild.jpg",
		200, 150,
		"gvz-04-1", "Bizarres Dinner for One",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "56",
		"Lieferform;Download@", "pd1208409638.htm",
		"", 1,
		"11000-gvz", "0",
		 0)
	
		Entry[778] = new Element(
		778, "assets/thumb/al-01-listbild.jpg",
		200, 150,
		"al-01-1", "Alex und seine Bondage Girls",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "40",
		"Lieferform;Download@", "pd1321802174.htm",
		"", 1,
		"1011", "0",
		 0)
	
		Entry[779] = new Element(
		779, "assets/thumb/fd-01-listbild.jpg",
		200, 164,
		"fd-01-1", "Femdom",
		"under her feet", "",
		"39", "0",
		"1", 1,
		"Stück", "54",
		"Lieferform;Download@", "pd1142582590.htm",
		"", 1,
		"11000-009", "0",
		 0)
	
		Entry[780] = new Element(
		780, "assets/thumb/fd-02-listbild.jpg",
		200, 164,
		"fd-02-1", "Femdom (2)",
		"Under her feet - The story continues", "",
		"22.75", "0",
		"1", 1,
		"Stück", "54",
		"Lieferform;Download@", "pd-1843659541.htm",
		"", 1,
		"11000-009", "0",
		 0)
	
		Entry[781] = new Element(
		781, "assets/thumb/fd-03-listbild.jpg",
		200, 164,
		"fd-03-1", "Asphyxation",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "54",
		"Lieferform;Download@", "pd1151409025.htm",
		"", 1,
		"11000-009", "0",
		 0)
	
		Entry[782] = new Element(
		782, "assets/thumb/fd-04-listbild.jpg",
		200, 154,
		"fd-04-1", "The Trainee",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "54",
		"Lieferform;Download@", "pd-704476941.htm",
		"", 1,
		"11000-009", "0",
		 0)
	
		Entry[783] = new Element(
		783, "assets/thumb/fd-05-listbild.jpg",
		200, 153,
		"fd-05-1", "Nylon Freaks",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "54",
		"Lieferform;Download@", "pd804612764.htm",
		"", 1,
		"11000-009", "0",
		 0)
	
		Entry[784] = new Element(
		784, "assets/thumb/fd-06-listbild.jpg",
		200, 153,
		"fd-06-1", "Domina by Chance",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "54",
		"Lieferform;Download@", "pd1198402747.htm",
		"", 1,
		"11000-009", "0",
		 0)
	
		Entry[785] = new Element(
		785, "assets/thumb/FD-07-listbild.jpg",
		200, 153,
		"fd-07-1", "Nylongames mit Peggy",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "54",
		"Lieferform;Download@", "pd219611423.htm",
		"", 1,
		"11000-009", "0",
		 0)
	
		Entry[786] = new Element(
		786, "assets/thumb/fd-08-listbild.jpg",
		200, 150,
		"fd-08-1", "Heikes Jacken",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "54",
		"Lieferform;Download@", "pd-1585088079.htm",
		"", 1,
		"11000-009", "0",
		 0)
	
		Entry[787] = new Element(
		787, "assets/thumb/fd-09-listbild.jpg",
		200, 150,
		"fd-09-1", "Nylon Games",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "54",
		"Lieferform;Download@", "pd466871025.htm",
		"", 1,
		"11000-009", "0",
		 0)
	
		Entry[788] = new Element(
		788, "assets/thumb/fd-11-listbild.jpg",
		300, 225,
		"fd-11-1", "Herrin Nicole",
		"", "",
		"29", "0",
		"1", 1,
		"Stück", "55",
		"Lieferform;Download@", "pd-1383969044.htm",
		"", 1,
		"11000-19", "0",
		 0)
	
		Entry[789] = new Element(
		789, "assets/thumb/aus-02-listbild.jpg",
		200, 150,
		"aus-02-1", "Sabine in Fesseln",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "40",
		"Lieferform;Download@", "pd1242895538.htm",
		"", 1,
		"1011", "0",
		 0)
	
		Entry[790] = new Element(
		790, "assets/thumb/aus-03-listbild.jpg",
		200, 150,
		"aus-03-1", "Meli in Fesseln",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "40",
		"Lieferform;Download@", "pd-1018126072.htm",
		"", 1,
		"1011", "0",
		 0)
	
		Entry[791] = new Element(
		791, "assets/thumb/nicky-004-listbild.jpg",
		200, 150,
		"nicky-004-1", "The Stalker",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "38",
		"Lieferform;Download@", "pd1243263130.htm",
		"", 1,
		"10009", "0",
		 0)
	
		Entry[792] = new Element(
		792, "assets/thumb/nicky-005-listbild.jpg",
		200, 150,
		"nicky-005-1", "Nicky is bagged",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "38",
		"Lieferform;Download@", "pd1243530221.htm",
		"", 1,
		"10009", "0",
		 0)
	
		Entry[793] = new Element(
		793, "assets/thumb/ab-273-listbild.jpg",
		200, 150,
		"ab-273-1", "Mietschulden",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "34",
		"Lieferform;Download@", "pd1244568667.htm",
		"", 1,
		"10109", "0",
		 0)
	
		Entry[794] = new Element(
		794, "assets/thumb/ab-274-listbild.jpg",
		200, 150,
		"ab-274-1", "Rache ist süß",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "34",
		"Lieferform;Download@", "pd-824518952.htm",
		"", 1,
		"10109", "0",
		 0)
	
		Entry[795] = new Element(
		795, "assets/thumb/tag-50-listbild.jpg",
		200, 150,
		"tag-50-1", "Kayleen",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "86",
		"Lieferform;Download@", "pd-1603491746.htm",
		"", 1,
		"8000-060", "0",
		 0)
	
		Entry[796] = new Element(
		796, "assets/thumb/ab-277-listbild.jpg",
		200, 150,
		"ab-277-1", "Pamela: First Time Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "34",
		"Lieferform;Download@", "pd1245591439.htm",
		"", 1,
		"10109", "0",
		 0)
	
		Entry[797] = new Element(
		797, "assets/thumb/rm-01-listbild.jpg",
		200, 112,
		"rm-01-1", "Art Series 1",
		"", "",
		"51", "0",
		"1", 1,
		"Stück", "49",
		"Lieferform;DVD@", "pd1325328084.htm",
		"", 1,
		"1012-rm", "0",
		 0)
	
		Entry[798] = new Element(
		798, "assets/thumb/rm-02-listbild.jpg",
		200, 112,
		"rm-02-1", "A Study in Red",
		"", "",
		"51", "0",
		"1", 1,
		"Stück", "49",
		"Lieferform;DVD@", "pd2129526316.htm",
		"", 1,
		"1012-rm", "0",
		 0)
	
		Entry[799] = new Element(
		799, "assets/thumb/smg-041-listbild.jpg",
		200, 150,
		"smg-041-1", "Pamela - First Time S/M",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "72",
		"Lieferform;Download@", "pd-1664482565.htm",
		"", 1,
		"16004-50", "0",
		 0)
	
		Entry[800] = new Element(
		800, "assets/thumb/ab-275-listbild.jpg",
		200, 150,
		"ab-275-1", "Regelbruch",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "34",
		"Lieferform;Download@", "pd-223354571.htm",
		"", 1,
		"10109", "0",
		 0)
	
		Entry[801] = new Element(
		801, "assets/thumb/ab-276-listbild.jpg",
		200, 150,
		"ab-276-1", "Anja: Zu Hause überfallen",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "34",
		"Lieferform;Download@", "pd895711661.htm",
		"", 1,
		"10109", "0",
		 0)
	
		Entry[802] = new Element(
		802, "assets/thumb/bf-26-listbild.jpg",
		200, 150,
		"bf-26", "Foxy und Stark",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "77",
		"Lieferform;Download@", "pd-789345415.htm",
		"", 1,
		"4000-30", "0",
		 0)
	
		Entry[803] = new Element(
		803, "assets/thumb/ab-278-listbild.jpg",
		200, 150,
		"ab-278-1", "The new pet (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "34",
		"Lieferform;Download@", "pd1498724146.htm",
		"", 1,
		"10109", "0",
		 0)
	
		Entry[804] = new Element(
		804, "assets/thumb/tag-89-listbild.jpg",
		200, 150,
		"tag-89-1", "Lisa",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "88",
		"Lieferform;Download@", "pd-1562355453.htm",
		"", 1,
		"8000-090", "0",
		 0)
	
		Entry[805] = new Element(
		805, "assets/thumb/tag-3.gif",
		468, 60,
		"lnk-011", "Tied and Gagged",
		"", "",
		"0", "0",
		"1", 1,
		"Stück", "144",
		"", "http://www.tied-and-gagged.com",
		"", 1,
		"90000", "0",
		 1)
	
		Entry[806] = new Element(
		806, "assets/thumb/Cover_3-200.jpg",
		141, 200,
		"bm-03-abo", "Bondage Magazine (Vol. 3)",
		"Alles rund ums Fixieren", "",
		"8.9", "0",
		"1", 1,
		"Stück", "114",
		"Ausgabe;als Abo (4x Jahr)@", "pd1250064702.htm",
		"", 1,
		"1201", "0",
		 0)
	
		Entry[807] = new Element(
		807, "assets/thumb/Deckblatt-200.JPG",
		200, 144,
		"fuchs-1", "Kalender von Fuchskind",
		"", "",
		"17.9", "0",
		"1", 1,
		"Stück", "114",
		"", "pd1515039018.htm",
		"", 1,
		"1201", "0",
		 0)
	
		Entry[808] = new Element(
		808, "assets/thumb/ab-279-listbild.jpg",
		200, 150,
		"ab-279-1", "Biggi´s Hanging Torture",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "34",
		"Lieferform;Download@", "pd-686814049.htm",
		"", 1,
		"10109", "0",
		 0)
	
		Entry[809] = new Element(
		809, "assets/thumb/ab-280-listbild.jpg",
		200, 150,
		"ab-280-1", "Lia - Crucified",
		"", "",
		"44", "0",
		"1", 1,
		"Stück", "35",
		"Lieferform;Download@", "pd-1060164276.htm",
		"", 1,
		"10110", "0",
		 0)
	
		Entry[810] = new Element(
		810, "assets/thumb/hk-01-listbild.jpg",
		200, 150,
		"hk-01-1", "Bürofantasien mit Helena",
		"", "",
		"29", "0",
		"1", 1,
		"Stück", "99",
		"Lieferform;Download@", "pd1246186352.htm",
		"", 1,
		"bg-001", "0",
		 0)
	
		Entry[811] = new Element(
		811, "assets/thumb/hk-02-listbild.jpg",
		200, 150,
		"hk-02-1", "Ausgetrickstes Model",
		"- Leoni - ", "",
		"29.9", "0",
		"1", 1,
		"Stück", "99",
		"Lieferform;Download@", "pd1248611904.htm",
		"", 1,
		"bg-001", "0",
		 0)
	
		Entry[812] = new Element(
		812, "assets/thumb/ab-281-listbild.jpg",
		200, 150,
		"ab-281-1", "The Friend",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "35",
		"Lieferform;Download@", "pd1058079028.htm",
		"", 1,
		"10110", "0",
		 0)
	
		Entry[813] = new Element(
		813, "assets/thumb/ab-282-listbild.jpg",
		200, 150,
		"ab-282-1", "Fernsklavin (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "35",
		"Lieferform;Download@", "pd-2078092131.htm",
		"", 1,
		"10110", "0",
		 0)
	
		Entry[814] = new Element(
		814, "assets/thumb/ab-283-listbild.jpg",
		200, 150,
		"ab-283-1", "Die Jogger",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "35",
		"Lieferform;Download@", "pd274078642.htm",
		"", 1,
		"10110", "0",
		 0)
	
		Entry[815] = new Element(
		815, "assets/thumb/ab-284-listbild.jpg",
		200, 150,
		"ab-284-1", "Latexparty (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "35",
		"Lieferform;Download@", "pd-994323581.htm",
		"", 1,
		"10110", "0",
		 0)
	
		Entry[816] = new Element(
		816, "assets/thumb/ab-285-listbild.jpg",
		200, 150,
		"ab-285-1", "Spionage im Kieswerk",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "35",
		"Lieferform;Download@", "pd-1238081056.htm",
		"", 1,
		"10110", "0",
		 0)
	
		Entry[817] = new Element(
		817, "assets/thumb/hk-03-1-listbild.jpg",
		200, 150,
		"hk-03-1-1", "Neugier tut selten gut",
		"", "",
		"19.9", "0",
		"1", 1,
		"Stück", "99",
		"Lieferform;Download@", "pd1253961707.htm",
		"", 1,
		"bg-001", "0",
		 0)
	
		Entry[818] = new Element(
		818, "assets/thumb/hk-03-2-listbild.jpg",
		200, 150,
		"hk-03-2-1", "Bondageolympiade",
		"", "",
		"29.9", "0",
		"1", 1,
		"Stück", "99",
		"Lieferform;Download@", "pd-32726007.htm",
		"", 1,
		"bg-001", "0",
		 0)
	
		Entry[819] = new Element(
		819, "assets/thumb/tag-177-listbild.jpg",
		200, 150,
		"tag-177-1", "Jax",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "95",
		"Lieferform;Download@", "pd-636459252.htm",
		"", 1,
		"8000-180", "0",
		 0)
	
		Entry[820] = new Element(
		820, "assets/thumb/ab-286-listbild.jpg",
		200, 150,
		"ab-286-1", "Strangle Games (1)",
		"", "",
		"29", "0",
		"1", 1,
		"Stück", "35",
		"Lieferform;Download@", "pd1260472443.htm",
		"", 1,
		"10110", "0",
		 0)
	
		Entry[821] = new Element(
		821, "assets/thumb/hk-04-listbild.jpg",
		200, 151,
		"hk-04-1", "Ausgetrickstes Model",
		"Helena", "",
		"29", "0",
		"1", 1,
		"Stück", "99",
		"Lieferform;Download@", "pd1260549294.htm",
		"", 1,
		"bg-001", "0",
		 0)
	
		Entry[822] = new Element(
		822, "assets/thumb/smg-032-listbild.jpg",
		200, 150,
		"smg-032-1", "Trained Girls: Jassi und Kallisti",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "71",
		"Lieferform;Download@", "pd1143760917.htm",
		"", 1,
		"16004-40", "0",
		 0)
	
		Entry[823] = new Element(
		823, "assets/thumb/ama-sm-01-listbild.jpg",
		200, 150,
		"ama-sm-01", "Die Probe",
		"", "",
		"51", "0",
		"1", 1,
		"Stück", "97",
		"Lieferform;DVD@", "pd2115954364.htm",
		"", 1,
		"ama-sm", "0",
		 0)
	
		Entry[824] = new Element(
		824, "assets/thumb/dia-01-listbild.jpg",
		200, 150,
		"dia-01", "Katharina Vol. 1",
		"", "",
		"51", "0",
		"1", 1,
		"Stück", "100",
		"Lieferform;DVD@", "pd-80860064.htm",
		"", 1,
		"diary-10", "0",
		 0)
	
		Entry[825] = new Element(
		825, "assets/thumb/ab-287-listbild.jpg",
		200, 150,
		"ab-287-1", "Angel´s Casting (1)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "35",
		"Lieferform;Download@", "pd1261259181.htm",
		"", 1,
		"10110", "0",
		 0)
	
		Entry[826] = new Element(
		826, "assets/thumb/BM04_200.jpg",
		141, 200,
		"bm-04-abo", "Bondage Magazine (Vol. 4)",
		"Thema: Shibari", "",
		"8.9", "0",
		"1", 1,
		"Stück", "114",
		"Ausgabe;als Abo (4x Jahr)@", "pd1264268051.htm",
		"", 1,
		"1201", "0",
		 0)
	
		Entry[827] = new Element(
		827, "assets/thumb/ab-288-listbild.jpg",
		200, 150,
		"ab-288-1", "Die Versicherungsvertreterin",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "35",
		"Lieferform;Download@", "pd1264342089.htm",
		"", 1,
		"10110", "0",
		 0)
	
		Entry[828] = new Element(
		828, "assets/thumb/ab-289-listbild.jpg",
		200, 150,
		"ab-289-1", "Lazy Daughter (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "35",
		"Lieferform;Download@", "pd-1088804754.htm",
		"", 1,
		"10110", "0",
		 0)
	
		Entry[829] = new Element(
		829, "assets/thumb/ab-219-listbild.jpg",
		200, 150,
		"ab-219-1", "7. Lazy Daughter (+ 3)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "1",
		"Lieferform;Download@", "pd1265047784.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[830] = new Element(
		830, "assets/thumb/ab-289-listbild.jpg",
		200, 150,
		"ab-289-1", "1. Lazy Daughter (2) (+ 1)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "1",
		"Lieferform;Download@", "pd-2128151566.htm",
		"", 1,
		"01", "0",
		 0)
	
		Entry[831] = new Element(
		831, "assets/thumb/hk-05-listbild.jpg",
		200, 149,
		"hk-05-1", "Julia alleine im Büro",
		"", "",
		"29", "0",
		"1", 1,
		"Stück", "99",
		"Lieferform;Download@", "pd1266071065.htm",
		"", 1,
		"bg-001", "0",
		 0)
	
		Entry[832] = new Element(
		832, "assets/thumb/ab-290-listbild.jpg",
		200, 150,
		"ab-290-1", "Sabine´s Bestrafung (2)",
		"Die binomischen Formeln", "",
		"39", "0",
		"1", 1,
		"Stück", "36",
		"Lieferform;Download@", "pd-1485301782.htm",
		"", 1,
		"10111", "0",
		 0)
	
		Entry[833] = new Element(
		833, "assets/thumb/ab-291-listbild.jpg",
		200, 150,
		"ab-291-1", "Spezial-Therapie",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "36",
		"Lieferform;Download@", "pd1270835159.htm",
		"", 1,
		"10111", "0",
		 0)
	
		Entry[834] = new Element(
		834, "assets/thumb/bm-05-200.jpg",
		141, 200,
		"bm-05-abo", "Bondage Magazine (Vol. 5)",
		"Thema: Zwangsjacken", "",
		"8.9", "0",
		"1", 1,
		"Stück", "139,130,142,0,139,126,120,3,138,3,119,3,131,3,138,3,2,94,40,2,72,2,99,2,137,3,32,98,114,3",
		"Ausgabe;als Abo (4x Jahr)@", "pd1271233988.htm",
		"", 1,
		"13013,13004-500,15500,00,13013,13004-100,13001-4,100011,13011,100011,13001-3,100011,13006,100011,13011,100011,1,8000-170,1011,1,16004-50,1,bg-001,1,13010-200,100011,10107,Anja,1201,100011", "0",
		 0)
	
		Entry[835] = new Element(
		835, "assets/thumb/ds-03-listbild.jpg",
		134, 200,
		"ds-003-1", "Extremsklavin &quot;S&quot;",
		"", "",
		"49", "0",
		"1", 1,
		"Stück", "102",
		"Lieferform;Download@", "pd1271339287.htm",
		"", 1,
		"ds-010", "0",
		 0)
	
		Entry[836] = new Element(
		836, "assets/thumb/hk-06-listbild.jpg",
		200, 150,
		"hk-06-1", "Das verhinderte Casting",
		"", "",
		"29", "0",
		"1", 1,
		"Stück", "99",
		"Lieferform;Download@", "pd1272369308.htm",
		"", 1,
		"bg-001", "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 versuchen Sie es erneut...</TD></TR>"
				else return("");
				};
			};
		if(mySearchEngine.init=="false") return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap>Sie haben keine Suchkriterien angegeben. Bitte geben Sie Ihr 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();
			};
		};