	// 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="125" height="13" alt="Note item" border="0" align="bottom" hspace="0" vspace="0" class="main">';
		var rString = '<TR><TD align="right" class="PROVIEWBODY">';
		if(this.Image!=""){
			if(this.LnkAdress!="#DROP#") rString += "<a href=\"" + this.LnkAdress + "?defaultVariants=" + variantString + "&categoryId=" + this.NavIndex + "\">";
			rString += "<img src='" + this.Image + "' border=0";
			if(this.Width!=0) rString += " width=" + this.Width;
			if(this.Height!=0) rString += " height=" + this.Height;
			rString += " align=\"top\">";
			if(this.LnkAdress!="#DROP#") rString += "</a>";
			};
		
		rString += '</TD><TD class="PROVIEWBODY" valign="top" width="100%"><TABLE border="0" cellpadding="1" cellspacing="0" width="100%">';
		if(boolDisplArtId) rString += '<TR><TD class="PROVIEWARTID">' + this.Prod_nr + "</TD></TR>";
		rString += "<TR><TD class=\"PROVIEWBEZ1\">"
		if(this.LnkAdress!="#DROP#") rString += "<a href=\"" + this.LnkAdress + "?defaultVariants=" + variantString + "&categoryId=" + this.NavIndex + "\">"
		rString += this.Title;
		if(this.LnkAdress!="#DROP#") rString += "</a>";
		rString += "</TD></TR>"
			+ "<TR><TD class=\"PROVIEWBEZ2\">" + this.Subtitle;
		if(variants.length>0) rString += "<br>";
		for(var i=0; i<variants.length - 1; i++){
			rString	+= "<nobr><strong>" + variants[i].split(";")[0] + ": " + variants[i].split(";")[1] + "</strong>"
			if(i<variants.length-2) rString += ", ";
			rString += "</nobr>";
			};
		rString += "</TD></TR>";
		if(this.displMode==0||this.displMode==2){
			rString	+= "<TR><TD>";
			rString += "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">";
			if(this.catDiscount==0){
				rString += "<tr valign=\"top\"><td class=\"PROVIEWPRICE\" nowrap>";
				rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
				if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objSecCurrency);
				rString += "</td></tr>";
				}
			else{
				if(this.Discount==""||this.Discount=="{EOL}"){
					rString += "<tr valign=\"top\">";
					rString += "<td nowrap>Before:&nbsp;</td>";
					rString += "<td class=\"PROVIEWPRICESTROKEN\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
					rString += "</td>"
					rString += "</tr>";
					rString += "<tr valign=\"top\">";
					rString += "<td nowrap>Now only:&nbsp;</td>";
					rString += "<td class=\"PROVIEWPRICE\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price * (1 - this.catDiscount / 100 ),this.Tax) / this.PriceUnit, objPriCurrency);
					if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price - ( this.Price * this.catDiscount / 100 ),this.Tax) / this.PriceUnit, objSecCurrency);
					rString += "</td>"
					rString += "</tr>";
					}
				else{
					rString += "<tr valign=\"top\"><td class=\"PROVIEWPRICE\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
					if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objSecCurrency);
					rString += "</td></tr>";
					};
				};
			rString += "</table>";
			rString += "</TD></TR>";
			}
		else if(this.displMode==3){
			rString	+= "<TR><TD class=\"PROVIEWPRICE\" nowrap>";
			rString += "Price on demand";
			rString += "</TD></TR>";
			};
		if(this.displMode==0){
			rString += "<TR><TD>&nbsp;</TD></TR>"
				+ "<TR><TD><a href=\"JavaScript:addToBag(Entry[" + this.Index + "]," + this.Minorder + ");\">" + addToBag + "</a></TD></TR>";
			};
		rString += "<TR><TD>&nbsp;</TD></TR>"
			+ "</TABLE>"
			+ "</td></tr>";
		return(rString);
		};
// ** 1106
	function Element(Index,Image,Width,Height,Prod_nr,Title,Subtitle,Manufac,Price,Weight,Tax,PriceUnit,Unitdesc,NavIndex,Options,LnkAdress,Discount,Minorder,Category,catDiscount,displMode){
		this.Index = Index;
		this.Image = Image;this.Width = Width;
		this.Height = Height;this.Prod_nr = Prod_nr;
		this.Title = Title;this.Subtitle = Subtitle;
		this.Manufac = Manufac;this.Price = Price;
		this.Weight = Weight;this.Tax = Tax;
		this.PriceUnit = PriceUnit;this.Unitdesc = Unitdesc;
		this.NavIndex = NavIndex;
		this.Print = TElementPrint;this.Variants = Options;
		this.LnkAdress = LnkAdress;this.Discount = Discount;
		this.Minorder = Minorder;this.Category = Category;
		this.catDiscount = catDiscount;
		this.displMode = displMode;
		};
// ** 1107
	var Entry = new Array();
// ** 1108
	
		Entry[0] = new Element(
		0, "assets/thumb/ab_002_listbild.jpg",
		133, 200,
		"ab-002-1", "Yvi learns Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "4",
		"Format;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", "4",
		"Format;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", "4",
		"Format;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", "4",
		"Format;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", "4",
		"Format;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", "4",
		"Format;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", "4",
		"Format;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", "4",
		"Format;Download@", "pd374006281.htm",
		"", 1,
		"1001", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/ab_010_listbild.jpg",
		200, 133,
		"ab-010-1", "Melanie´ s first time",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "5",
		"Format;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", "5",
		"Format;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", "5",
		"Format;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", "5",
		"Format;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", "5",
		"Format;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", "5",
		"Format;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", "5",
		"Format;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", "5",
		"Format;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",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "5",
		"Format;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", "6",
		"Format;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", "6",
		"Format;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", "6",
		"Format;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", "6",
		"Format;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", "6",
		"Format;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", "6",
		"Format;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", "6",
		"Format;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", "6",
		"Format;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", "6",
		"Format;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", "6",
		"Format;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", "7",
		"Format;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", "7",
		"Format;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",
		"", "",
		"46", "0.3",
		"1", 1,
		"Stück", "7",
		"Format;Download@", "pd1452313824.htm",
		"", 1,
		"1004", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/ab_033_listbild.jpg",
		200, 134,
		"ab-033-1", "Abducted!",
		"", "",
		"46", "0.3",
		"1", 1,
		"Stück", "7",
		"Format;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", "7",
		"Format;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",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "7",
		"Format;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", "7",
		"Format;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", "7",
		"Format;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",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "7",
		"Format;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", "8",
		"Format;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", "8",
		"Format;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", "8",
		"Format;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", "8",
		"Format;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",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "8",
		"Format;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", "8",
		"Format;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", "8",
		"Format;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", "8",
		"Format;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",
		"", "",
		"46", "0.3",
		"1", 1,
		"Stück", "8",
		"Format;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", "8",
		"Format;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", "9",
		"Format;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", "9",
		"Format;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", "9",
		"Format;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", "9",
		"Format;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", "9",
		"Format;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", "9",
		"Format;Download@", "pd-204426082.htm",
		"", 1,
		"1006", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/wv_999_listbild.jpg",
		200, 133,
		"wv-999", "Custom Video",
		"", "",
		"250", "0.3",
		"1", 1,
		"Stück", "37",
		"", "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", "10",
		"Format;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", "10",
		"Format;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", "10",
		"Format;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", "10",
		"Format;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", "10",
		"Format;Download@", "pd-1375559003.htm",
		"", 1,
		"1007", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/ab_064_1_listbild.jpg",
		200, 160,
		"ab-064-c-1", "Lesbian Gothic Girls (1) + (2)",
		"", "",
		"74", "0.3",
		"1", 1,
		"Stück", "10",
		"Format;Download@", "pd1985833740.htm",
		"", 1,
		"1007", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/ab_065_listbild.jpg",
		200, 160,
		"ab-065-1", "Angel meets Devil",
		"", "",
		"51", "0.3",
		"1", 1,
		"Stück", "10",
		"Format;Download@", "pd1014263759.htm",
		"", 1,
		"1007", "0",
		 0)
	
		Entry[60] = new Element(
		60, "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", "10",
		"Format;Download@", "pd-908395170.htm",
		"", 1,
		"1007", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/ab_067_listbild.jpg",
		200, 160,
		"ab-067-1", "Babsis first video",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "10",
		"Format;Download@", "pd1652473321.htm",
		"", 1,
		"1007", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/ab_068_listbild.jpg",
		200, 160,
		"ab-068-1", "Kept like a Dog",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "10",
		"Format;Download@", "pd1266999392.htm",
		"", 1,
		"1007", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/ab_069_listbild.jpg",
		200, 160,
		"ab-069-1", "The Company",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "10",
		"Format;Download@", "pd-785998989.htm",
		"", 1,
		"1007", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/ab_070_listbild.jpg",
		200, 160,
		"ab-070-1", "Claustrophobia",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "11",
		"Format;Download@", "pd1604680850.htm",
		"", 1,
		"1008", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/ab_071_listbild.jpg",
		200, 160,
		"ab-071-1", "The Ultimate Mummy",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "11",
		"Format;Download@", "pd670937837.htm",
		"", 1,
		"1008", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/ab_072_listbild.jpg",
		150, 200,
		"ab-072-1", "Wenn die Zeit stillsteht",
		"", "",
		"19.95", "0.3",
		"1", 1,
		"Stück", "11",
		"Format;Download@", "pd-1888401804.htm",
		"", 1,
		"1008", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/ab_073_listbild.jpg",
		200, 150,
		"ab-073-1", "Casting Monique",
		"", "",
		"36", "0.3",
		"1", 1,
		"Stück", "11",
		"Format;Download@", "pd-742462761.htm",
		"", 1,
		"1008", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/ab_074_listbild.jpg",
		200, 150,
		"ab-074-1", "Hot Girls - Heavy Bondage",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "11",
		"Format;Download@", "pd212682973.htm",
		"", 1,
		"1008", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/sis_001_listbild.jpg",
		200, 160,
		"sis-001-1", "Psycho Experiments - Teil 1",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "64",
		"Format;Download@", "pd-1574286065.htm",
		"", 1,
		"6000", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/sis_002_listbild.jpg",
		200, 160,
		"sis-002-1", "Psycho Experiments - Teil 2",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "64",
		"Format;Download@", "pd1695571870.htm",
		"", 1,
		"6000", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/sis_003_listbild.jpg",
		200, 160,
		"sis-003-1", "Psycho Experiments - Teil 3",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "64",
		"Format;Download@", "pd189135145.htm",
		"", 1,
		"6000", "0",
		 0)
	
		Entry[72] = new Element(
		72, "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", "64",
		"Format;Download@", "pd1456689213.htm",
		"", 1,
		"6000", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/ab_001_listbild.jpg",
		200, 133,
		"ab-001-1", "Silvi in Trouble",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "4",
		"Format;Download@", "pd-1473923553.htm",
		"", 1,
		"1001", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/il_002_listbild.jpg",
		200, 106,
		"il-002-3", "Inquisition - Part 2 (Water-Torture)",
		"", "",
		"59", "0.3",
		"1", 1,
		"Stück", "58",
		"Format;Video (NTSC/VHS)@", "pd1612346684.htm",
		"", 1,
		"3001", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/il_003_listbild.jpg",
		200, 106,
		"il-003-3", "Inquisition - Part 3 (Witches Tower)",
		"", "",
		"64", "0.3",
		"1", 1,
		"Stück", "58",
		"Format;Video (NTSC/VHS)@", "pd1543233940.htm",
		"", 1,
		"3001", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/il_004_listbild.jpg",
		200, 106,
		"il-004-2", "Inquisition - Part 4 (Interrogatio)",
		"", "",
		"84", "0.3",
		"1", 1,
		"Stück", "58",
		"Format;DVD (PAL)@", "pd-1559490324.htm",
		"", 1,
		"3001", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/ue-epi-12-listbild.jpg",
		200, 164,
		"ue-epi-12-1", "Unhappy End - Video 12",
		"The Day bevor Wedding", "",
		"39", "0",
		"1", 1,
		"Stück", "101",
		"Format;Download@", "pd1118653241.htm",
		"", 1,
		"11500", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/ue-epi-13-listbild.jpg",
		200, 164,
		"ue-epi-13-1", "Unhappy End - Video 13",
		"The Kidnappers", "",
		"39", "0",
		"1", 1,
		"Stück", "101",
		"Format;Download@", "pd-1965611280.htm",
		"", 1,
		"11500", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/ue-epi-16-listbild.jpg",
		200, 164,
		"ue-epi-16-1", "Unhappy End - Video 16",
		"The Casting", "",
		"39", "0",
		"1", 1,
		"Stück", "101",
		"Format;Download@", "pd-2080552650.htm",
		"", 1,
		"11500", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/ab-143-listbild.jpg",
		200, 160,
		"ab-143-1", "Robbery at Furrier´s",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "18",
		"Format;Download@", "pd721239786.htm",
		"", 1,
		"10096", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/ab-144-listbild.jpg",
		200, 160,
		"ab-144-1", "Force Feeding",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "18",
		"Format;Download@", "pd1242541312.htm",
		"", 1,
		"10096", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/bnd-01-Listbild.jpg",
		200, 160,
		"bnd-01-1", "Bondage-Heat",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "38",
		"Format;Download@", "pd-882139169.htm",
		"", 1,
		"1011", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/fa-13-listbild.jpg",
		200, 160,
		"col-01-1", "College-Girls",
		"Jamie and Melissa", "",
		"44", "0",
		"1", 1,
		"Stück", "38",
		"Format;Download@", "pd-847693447.htm",
		"", 1,
		"1011", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/ab-145-listbild.jpg",
		200, 160,
		"ab-145-1", "Attack on Jassi",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "18",
		"Format;Download@", "pd1120564020.htm",
		"", 1,
		"10096", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/ab-146-listbild.jpg",
		200, 160,
		"ab-146-1", "Competition for friendship",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "18",
		"Format;Download@", "pd1121081254.htm",
		"", 1,
		"10096", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/ab-147-listbild.jpg",
		200, 160,
		"ab-147-1", "Noseplay",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "18",
		"Format;Download@", "pd-1897785625.htm",
		"", 1,
		"10096", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/ab-148-listbild.jpg",
		200, 160,
		"ab-148-1", "Evil Sister - more girls",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "18",
		"Format;Download@", "pd1123319378.htm",
		"", 1,
		"10096", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/ab-149-listbild.jpg",
		200, 160,
		"ab-149-1", "Noras Torture (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "18",
		"Format;Download@", "pd-2032047187.htm",
		"", 1,
		"10096", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/ab-150-listbild.jpg",
		200, 160,
		"ab-150-1", "Jealous Girlfriends",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "19",
		"Format;Download@", "pd-1867450194.htm",
		"", 1,
		"10097", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/AB_85_listbild.jpg",
		200, 160,
		"ab-085-1", "Unusual Photosession",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "12",
		"Format;Download@", "pd-37485404.htm",
		"", 1,
		"1009", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/AB_86_listbild.jpg",
		200, 160,
		"ab-086-1", "Held for ransom",
		"Lea is kidnapped", "",
		"19.95", "0",
		"1", 1,
		"Stück", "12",
		"Format;Download@", "pd1745147213.htm",
		"", 1,
		"1009", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/AB_87_listbild.jpg",
		150, 200,
		"ab-087-1", "Hanna´s Bondage Dreams",
		"First Time Bondage", "",
		"39", "0",
		"1", 1,
		"Stück", "12",
		"Format;Download@", "pd1057070543.htm",
		"", 1,
		"1009", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/ab_88_listbild.jpg",
		200, 150,
		"ab-088-1", "Rollerblades &amp;",
		"Car Thief", "",
		"39", "0",
		"1", 1,
		"Stück", "12",
		"Format;Download@", "pd1058192432.htm",
		"", 1,
		"1009", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/ab_89_listbild.jpg",
		200, 160,
		"ab-089-1", "Kallisti: Slave Girl",
		"Part 1", "",
		"29.95", "0",
		"1", 1,
		"Stück", "12",
		"Format;Download@", "pd-1700988570.htm",
		"", 1,
		"1009", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/ab_90_listbild.jpg",
		200, 160,
		"ab-090-1", "The Gang",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "13",
		"Format;Download@", "pd500607894.htm",
		"", 1,
		"10091", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/se_002_Listbild.JPG",
		200, 150,
		"se-002", "hemp rope - 3 threaded",
		"", "",
		"0.75", "0",
		"1", 1,
		"Meter", "109",
		"diameter;6 mm@", "pd1060685013.htm",
		"", 1,
		"13003", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/se_002_Listbild.JPG",
		200, 150,
		"se-003", "hemp rope - 4 threaded",
		"", "",
		"0.99", "0",
		"1", 1,
		"Meter", "109",
		"diameter;8 mm@", "pd1061195520.htm",
		"", 1,
		"13003", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/thumb/vb_01_listbild.JPG",
		200, 150,
		"vb-01", "Vakuum-Bag",
		"", "real",
		"29.95", "0",
		"1", 1,
		"Stück", "116",
		"", "pd1061275746.htm",
		"", 1,
		"13006", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/AB_91_listbild.JPG",
		200, 150,
		"ab-091-1", "Pyjama Fantasies",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "13",
		"Format;Download@", "pd1061452298.htm",
		"", 1,
		"10091", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/thumb/AB_92_listbild.JPG",
		200, 160,
		"ab-092-1", "The Advertisement &amp;  Crazy Postman",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "13",
		"Format;Download@", "pd1356963438.htm",
		"", 1,
		"10091", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/AB_93_Listbild.jpg",
		200, 160,
		"ab-093-1", "Winter Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "13",
		"Format;Download@", "pd-213620281.htm",
		"", 1,
		"10091", "0",
		 0)
	
		Entry[102] = new Element(
		102, "assets/thumb/AB_094_listbild.jpg",
		200, 150,
		"ab-94-1", "Don´t Trust",
		"Nicht jedem vertrauen", "",
		"49", "0",
		"1", 1,
		"Stück", "13",
		"Format;Download@", "pd1059064695.htm",
		"", 1,
		"10091", "0",
		 0)
	
		Entry[103] = new Element(
		103, "assets/thumb/F-ARM1-Listbild.jpg",
		150, 200,
		"F-ARM1", "Monoglove",
		"", "",
		"99", "0",
		"1", 1,
		"Stück", "119",
		"", "pd-1531084869.htm",
		"", 1,
		"13013", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/F-BBA-Listbild.jpg",
		200, 150,
		"F-BBA", "Bodybag",
		"", "",
		"349", "0",
		"1", 1,
		"Stück", "119",
		"size;L@", "pd-1514604447.htm",
		"", 1,
		"13013", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/F-LEG1-Listbild.jpg",
		200, 150,
		"F-LEG-1", "Monosock",
		"", "",
		"99", "0",
		"1", 1,
		"Stück", "119",
		"", "pd2069212060.htm",
		"", 1,
		"13013", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/thumb/F-LS05-Listbild.jpg",
		150, 200,
		"F-LS-05", "Collar, Wrist- &amp; AncleCuffs",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "119",
		"", "pd1024378527.htm",
		"", 1,
		"13013", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/F-MR1-Listbild.jpg",
		200, 150,
		"F-MR-1", "Monoglove",
		"", "",
		"29", "0",
		"1", 1,
		"Stück", "119",
		"", "pd-1528911387.htm",
		"", 1,
		"13013", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/F-HT-Listbild.JPG",
		200, 150,
		"F-HT", "Hotgie-Set",
		"", "",
		"49", "0",
		"1", 1,
		"Stück", "119",
		"", "pd228597156.htm",
		"", 1,
		"13013", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/F-MM-1-Listbild.JPG",
		150, 200,
		"F-MMM-1", "Muzzle-Gag",
		"", "",
		"44.9", "0",
		"1", 1,
		"Stück", "119",
		"size;L@", "pd-158053262.htm",
		"", 1,
		"13013", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/thumb/AB_95_Listbild.JPG",
		200, 150,
		"ab-95-1", "Fit for training ?",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "13",
		"Format;Download@", "pd-332785279.htm",
		"", 1,
		"10091", "0",
		 0)
	
		Entry[111] = new Element(
		111, "assets/thumb/ab_96_listbild.JPG",
		200, 150,
		"ab-96-1", "Monique is kidnapped again",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "13",
		"Format;Download@", "pd1068712251.htm",
		"", 1,
		"10091", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/AB_97_Listbild.JPG",
		150, 200,
		"ab-97-1", "Bondage in fur coats ",
		"gefesselt im Pelzmantel", "",
		"39", "0",
		"1", 1,
		"Stück", "13",
		"Format;Download@", "pd1069139673.htm",
		"", 1,
		"10091", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/thumb/AB_98_listbild.JPG",
		150, 200,
		"ab-98-1", "The Key",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "13",
		"Format;Download@", "pd1070028613.htm",
		"", 1,
		"10091", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/thumb/AB_99_Listbild.jpg",
		200, 160,
		"ab-99-1", "Let´s play bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "13",
		"Format;Download@", "pd1071041205.htm",
		"", 1,
		"10091", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/thumb/AB_100_Listbild.JPG",
		200, 150,
		"ab-100-1", "Pony-Girls / Der Film",
		"", "",
		"44", "0",
		"1", 1,
		"Stück", "14",
		"Format;Download@", "pd-1407978238.htm",
		"", 1,
		"10092", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/thumb/F-MR-2-Listbild.JPG",
		150, 200,
		"F-MR-2", "Mittens in leather",
		"absolute secure !", "",
		"49.9", "0",
		"1", 1,
		"Stück", "119",
		"", "pd1071133943.htm",
		"", 1,
		"13013", "0",
		 0)
	
		Entry[117] = new Element(
		117, "assets/thumb/ab_101_Listbild.jpg",
		200, 160,
		"ab-101-1", "Helpless Girls (1)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "14",
		"Format;Download@", "pd1073034483.htm",
		"", 1,
		"10092", "0",
		 0)
	
		Entry[118] = new Element(
		118, "assets/thumb/AB_103_Listbild.JPG",
		225, 300,
		"ab-103-1", "The Password",
		"", "",
		"46", "0",
		"1", 1,
		"Stück", "14",
		"Format;Download@", "pd-463544221.htm",
		"", 1,
		"10092", "0",
		 0)
	
		Entry[119] = new Element(
		119, "assets/thumb/ab_102_Listbild.jpg",
		200, 160,
		"ab-102-1", "Helpless Girls (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "14",
		"Format;Download@", "pd1077533187.htm",
		"", 1,
		"10092", "0",
		 0)
	
		Entry[120] = new Element(
		120, "assets/thumb/ab-104-Listbild.JPG",
		150, 200,
		"ab-104-1", "Forced Fetish Girl",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "14",
		"Format;Download@", "pd1078136140.htm",
		"", 1,
		"10092", "0",
		 0)
	
		Entry[121] = new Element(
		121, "assets/thumb/ab-105-listbild.JPG",
		150, 200,
		"ab-105-1", "Locked",
		"", "",
		"44", "0",
		"1", 1,
		"Stück", "14",
		"Format;Download@", "pd1078734892.htm",
		"", 1,
		"10092", "0",
		 0)
	
		Entry[122] = new Element(
		122, "assets/thumb/cl_013 starr_listbild.JPG",
		200, 150,
		"cl-013-starr", "Clejuso No. 13 starr",
		"", "",
		"129", "1200",
		"1", 1,
		"Stück", "117",
		"", "pd1078924003.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[123] = new Element(
		123, "assets/thumb/cl-15 starr_listbild.JPG",
		200, 150,
		"cl-015-starr", "Clejuso No. 15 starr",
		"", "",
		"149", "1590",
		"1", 1,
		"Stück", "117",
		"", "pd-794596266.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[124] = new Element(
		124, "assets/thumb/AB-106-Listbild.JPG",
		150, 200,
		"ab-106-1", "Fur Girls",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "14",
		"Format;Download@", "pd1079334473.htm",
		"", 1,
		"10092", "0",
		 0)
	
		Entry[125] = new Element(
		125, "assets/thumb/ab-107a-listbild.JPG",
		200, 150,
		"ab-107 A-1", "Abducted Girls",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "14",
		"Format;Download@", "pd1080889655.htm",
		"", 1,
		"10092", "0",
		 0)
	
		Entry[126] = new Element(
		126, "assets/thumb/ab-107b-listbild.JPG",
		200, 150,
		"ab-107 B-1", "Making of Abducted Girls",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "14",
		"Format;Download@", "pd-2095708068.htm",
		"", 1,
		"10092", "0",
		 0)
	
		Entry[127] = new Element(
		127, "assets/thumb/ab-107ab-listbild.JPG",
		150, 200,
		"ab-107-AB-1", "Abducted Girls + &quot; Making of &quot;",
		"2 Videos", "",
		"69", "0",
		"1", 1,
		"Stück", "14",
		"Format;Download@", "pd1080895680.htm",
		"", 1,
		"10092", "0",
		 0)
	
		Entry[128] = new Element(
		128, "assets/thumb/AB-108-Listbild.JPG",
		300, 225,
		"ab-108-1", "Nora`s Casting - part 1",
		"", "",
		"29.95", "0",
		"1", 1,
		"Stück", "14",
		"Format;Download@", "pd308485027.htm",
		"", 1,
		"10092", "0",
		 0)
	
		Entry[129] = new Element(
		129, "assets/thumb/AB-109-Listbild.JPG",
		225, 300,
		"ab-109-1", "Nora`s Casting - part 2",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "14",
		"Format;Download@", "pd-662826221.htm",
		"", 1,
		"10092", "0",
		 0)
	
		Entry[130] = new Element(
		130, "assets/thumb/AB-109-Listbild.JPG",
		225, 300,
		"ab-109 pack-1", "Nora`s Casting - Part 1 +  2",
		"", "",
		"69", "0",
		"1", 1,
		"Stück", "14",
		"Format;Download@", "pd-471924507.htm",
		"", 1,
		"10092", "0",
		 0)
	
		Entry[131] = new Element(
		131, "assets/thumb/AB-110-Listbild.JPG",
		200, 150,
		"ab-110-1", "Chloroformed",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "15",
		"Format;Download@", "pd-968654395.htm",
		"", 1,
		"10093", "0",
		 0)
	
		Entry[132] = new Element(
		132, "assets/thumb/ab-111-Listbild.jpg",
		200, 160,
		"ab-111-1", "Fear !",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "15",
		"Format;Download@", "pd1085378454.htm",
		"", 1,
		"10093", "0",
		 0)
	
		Entry[133] = new Element(
		133, "assets/thumb/ab-112-listbild.JPG",
		200, 150,
		"ab-112-1", "Evil Sister",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "15",
		"Format;Download@", "pd1086071669.htm",
		"", 1,
		"10093", "0",
		 0)
	
		Entry[134] = new Element(
		134, "assets/thumb/ab-113-listbild.JPG",
		150, 200,
		"ab-113-1", "Office Attack &amp; Rescue me",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "15",
		"Format;Download@", "pd172378981.htm",
		"", 1,
		"10093", "0",
		 0)
	
		Entry[135] = new Element(
		135, "assets/thumb/ab-114-listbild.JPG",
		150, 200,
		"ab-114-1", "Sir H. and Slavegirl Lea",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "15",
		"Format;Download@", "pd1086948488.htm",
		"", 1,
		"10093", "0",
		 0)
	
		Entry[136] = new Element(
		136, "assets/thumb/il-013-Listbild.JPG",
		150, 180,
		"il-013-2", "Isabella",
		"Seven Days in the Dungeon", "",
		"69", "0.3",
		"1", 1,
		"Stück", "58",
		"Format;DVD (PAL)@", "pd852398492.htm",
		"", 1,
		"3001", "0",
		 0)
	
		Entry[137] = new Element(
		137, "assets/thumb/ab-115-listbild.jpg",
		200, 160,
		"ab-115-1", "Breaking their will (1)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "15",
		"Format;Download@", "pd1088758086.htm",
		"", 1,
		"10093", "0",
		 0)
	
		Entry[138] = new Element(
		138, "assets/thumb/ab-116-listbild.jpg",
		200, 160,
		"ab-116-1", "Breaking their will (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "15",
		"Format;Download@", "pd-1866790026.htm",
		"", 1,
		"10093", "0",
		 0)
	
		Entry[139] = new Element(
		139, "assets/thumb/ab-117-listbild.jpg",
		200, 160,
		"ab-117-1", "Revenge is sweet (1)",
		"Rache ist süß", "",
		"39", "0",
		"1", 1,
		"Stück", "15",
		"Format;Download@", "pd1092034803.htm",
		"", 1,
		"10093", "0",
		 0)
	
		Entry[140] = new Element(
		140, "assets/thumb/ab-118-Listbild.jpg",
		200, 160,
		"ab-118-1", "Bondage-Tupper-Party",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "15",
		"Format;Download@", "pd1093182467.htm",
		"", 1,
		"10093", "0",
		 0)
	
		Entry[141] = new Element(
		141, "assets/thumb/ab-119-listbild.jpg",
		200, 160,
		"ab-119-1", "Psycho Doctor",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "15",
		"Format;Download@", "pd1093847624.htm",
		"", 1,
		"10093", "0",
		 0)
	
		Entry[142] = new Element(
		142, "assets/thumb/ab-120-listbild.jpg",
		200, 160,
		"ab-120-1", "Photosession in Fur Coats",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "16",
		"Format;Download@", "pd931143220.htm",
		"", 1,
		"10094", "0",
		 0)
	
		Entry[143] = new Element(
		143, "assets/thumb/se_001_listbild.jpg",
		200, 132,
		"se-001-1", "cotten rope - flocht",
		"", "",
		"1", "0",
		"1", 1,
		"Meter", "109",
		"diameter;10 mm@", "pd600878769.htm",
		"", 1,
		"13003", "0",
		 0)
	
		Entry[144] = new Element(
		144, "assets/thumb/cl_011_listbild.jpg",
		200, 150,
		"cl-011", "Clejuso No. 11",
		"", "",
		"27.9", "330",
		"1", 1,
		"Stück", "117",
		"", "pd1342430997.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[145] = new Element(
		145, "assets/thumb/cl_011a_listbild.jpg",
		200, 150,
		"cl-011a", "Clejuso No. 11a",
		"", "",
		"29.9", "320",
		"1", 1,
		"Stück", "117",
		"", "pd1914343243.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[146] = new Element(
		146, "assets/thumb/cl_012_listbild.jpg",
		200, 150,
		"cl-012", "Clejuso No. 12",
		"", "",
		"31.9", "320",
		"1", 1,
		"Stück", "117",
		"", "pd-780610959.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[147] = new Element(
		147, "assets/thumb/cl_012a_listbild.jpg",
		200, 146,
		"cl-012a", "Clejuso No. 12a",
		"", "",
		"33.9", "320",
		"1", 1,
		"Stück", "117",
		"", "pd-754540025.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[148] = new Element(
		148, "assets/thumb/cl_019r_listbild.jpg",
		200, 146,
		"cl-019r", "Clejuso No. 19r",
		"", "",
		"37.9", "350",
		"1", 1,
		"Stück", "117",
		"", "pd-1910336627.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[149] = new Element(
		149, "assets/thumb/cl_013_listbild.jpg",
		200, 146,
		"cl-013", "Clejuso No. 13",
		"", "",
		"74.9", "1060",
		"1", 1,
		"Stück", "117",
		"", "pd-20537080.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[150] = new Element(
		150, "assets/thumb/cl_015_listbild.jpg",
		200, 150,
		"cl-015", "Clejuso No. 15",
		"", "",
		"119", "1430",
		"1", 1,
		"Stück", "117",
		"", "pd-831287690.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[151] = new Element(
		151, "assets/thumb/cl_017_listbild.jpg",
		200, 146,
		"cl-017", "Clejuso No. 17",
		"", "",
		"139", "1080",
		"1", 1,
		"Stück", "117",
		"", "pd-919064172.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[152] = new Element(
		152, "assets/thumb/cl_008_listbild.jpg",
		200, 146,
		"cl-008", "Clejuso No. 8",
		"", "",
		"76.9", "1060",
		"1", 1,
		"Stück", "117",
		"", "pd1718370786.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[153] = new Element(
		153, "assets/thumb/cl_014_listbild.jpg",
		200, 142,
		"cl-014", "Clejuso No. 14",
		"", "",
		"149", "0",
		"1", 1,
		"Stück", "117",
		"", "pd-1298382112.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[154] = new Element(
		154, "assets/thumb/cl_101_listbild.jpg",
		200, 150,
		"cl-101", "Clejuso No. 101",
		"", "",
		"189", "940",
		"1", 1,
		"Stück", "117",
		"", "pd-934910962.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[155] = new Element(
		155, "assets/thumb/cl_102_listbild.jpg",
		200, 146,
		"cl-102", "Clejuso No. 102",
		"", "",
		"179", "920",
		"1", 1,
		"Stück", "117",
		"", "pd-1369284372.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[156] = new Element(
		156, "assets/thumb/cl_103_listbild.jpg",
		200, 150,
		"cl-103", "Clejuso No. 103",
		"", "",
		"191", "1100",
		"1", 1,
		"Stück", "117",
		"", "pd-575905542.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[157] = new Element(
		157, "assets/thumb/cl_128m_listbild.jpg",
		200, 146,
		"cl-128m", "Clejuso No 128m",
		"", "",
		"139", "0",
		"1", 1,
		"Stück", "117",
		"", "pd1986713528.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[158] = new Element(
		158, "assets/thumb/cl_006_listbild.jpg",
		200, 146,
		"cl-006", "Clejuso No. 6",
		"", "",
		"29.9", "0",
		"1", 1,
		"Stück", "117",
		"", "pd656893094.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[159] = new Element(
		159, "assets/thumb/cl_003_listbild.jpg",
		200, 150,
		"cl-003", "Clejuso No. 3",
		"", "",
		"19.9", "0",
		"1", 1,
		"Stück", "117",
		"", "pd-1718439100.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[160] = new Element(
		160, "assets/thumb/cl_113_listbild.jpg",
		200, 150,
		"cl-113", "Clejuso No. 113",
		"", "",
		"14.95", "0",
		"1", 1,
		"Stück", "117",
		"", "pd495672082.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[161] = new Element(
		161, "assets/thumb/cl_114_listbild.jpg",
		200, 150,
		"cl-114", "Clejuso No. 114",
		"", "",
		"19.9", "0",
		"1", 1,
		"Stück", "117",
		"", "pd-352338032.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[162] = new Element(
		162, "assets/thumb/cl_115_listbild.jpg",
		200, 150,
		"cl-115", "Clejuso No. 115",
		"", "",
		"24.9", "0",
		"1", 1,
		"Stück", "117",
		"", "pd-501026754.htm",
		"", 1,
		"13007", "0",
		 0)
	
		Entry[163] = new Element(
		163, "assets/thumb/fid_001_listbild.jpg",
		150, 200,
		"fid-001", "Rigid Fiddle 8",
		"", "",
		"600", "0",
		"1", 1,
		"Stück", "118",
		"", "pd464804456.htm",
		"", 1,
		"13009", "0",
		 0)
	
		Entry[164] = new Element(
		164, "assets/thumb/cd_002_listbild.jpg",
		200, 150,
		"cd-002", "Die Bondage-CD",
		"", "",
		"34.5", "0",
		"1", 1,
		"Stück", "121",
		"", "pd-1814521303.htm",
		"", 1,
		"15001", "0",
		 0)
	
		Entry[165] = new Element(
		165, "assets/thumb/wb_001_listbild.jpg",
		136, 200,
		"wb-001", "Scarf-Bondage Vol. 1",
		"", "",
		"28", "0",
		"1", 1,
		"Stück", "121",
		"", "pd-1449722464.htm",
		"", 1,
		"15001", "0",
		 0)
	
		Entry[166] = new Element(
		166, "assets/thumb/wb_002_listbild.jpg",
		136, 200,
		"wb-002", "Scarf-Bondage Vol. 2",
		"", "",
		"28", "0",
		"1", 1,
		"Stück", "121",
		"", "pd-778811476.htm",
		"", 1,
		"15001", "0",
		 0)
	
		Entry[167] = new Element(
		167, "assets/thumb/wb_003_listbild.jpg",
		200, 150,
		"wb-003", "Scarf-Bondage Vol. 3",
		"", "",
		"28", "0",
		"1", 1,
		"Stück", "121",
		"", "pd1157540472.htm",
		"", 1,
		"15001", "0",
		 0)
	
		Entry[168] = new Element(
		168, "assets/thumb/wb_004_listbild.jpg",
		200, 150,
		"wb-004", "Scarf-Bondage Vol. 4",
		"", "",
		"28", "0",
		"1", 1,
		"Stück", "121",
		"", "pd1893675524.htm",
		"", 1,
		"15001", "0",
		 0)
	
		Entry[169] = new Element(
		169, "assets/thumb/wb_005_listbild.jpg",
		150, 200,
		"wb-005", "Scarf-Bondage Vol. 5",
		"", "",
		"28", "0",
		"1", 1,
		"Stück", "121",
		"", "pd-1589138864.htm",
		"", 1,
		"15001", "0",
		 0)
	
		Entry[170] = new Element(
		170, "assets/thumb/wb_006_listbild.jpg",
		200, 150,
		"wb-006", "Scarf-Bondage Vol. 6",
		"", "",
		"28", "0",
		"1", 1,
		"Stück", "121",
		"", "pd-1990287524.htm",
		"", 1,
		"15001", "0",
		 0)
	
		Entry[171] = new Element(
		171, "assets/thumb/wb_007_listbild.jpg",
		200, 150,
		"wb-007", "Scarf-Bondage Vol. 7",
		"", "",
		"28", "0",
		"1", 1,
		"Stück", "121",
		"", "pd-1003791064.htm",
		"", 1,
		"15001", "0",
		 0)
	
		Entry[172] = new Element(
		172, "assets/thumb/wbd_001_listbild.jpg",
		150, 200,
		"wbd-001", "Bandana-Bondage",
		"", "",
		"28", "0",
		"1", 1,
		"Stück", "121",
		"", "pd1512173492.htm",
		"", 1,
		"15001", "0",
		 0)
	
		Entry[173] = new Element(
		173, "assets/thumb/mitglied_ab_listbild.jpg",
		200, 147,
		"mitglied-ab", "Become a member of www.amateur-bondage.net",
		"", "",
		"12.5", "0",
		"1", 1,
		"", "122",
		"", "pd1057260300.htm",
		"", 1,
		"16000", "0",
		 0)
	
		Entry[174] = new Element(
		174, "assets/thumb/bv-listbild.jpg",
		200, 134,
		"mitglied-bv", "Membership www.bondage-video.de",
		"", "",
		"9", "0",
		"1", 1,
		"", "122",
		"", "pd469749786.htm",
		"", 1,
		"16000", "0",
		 0)
	
		Entry[175] = new Element(
		175, "assets/thumb/ab_035_listbild.jpg",
		200, 134,
		"ab-035-1", "Naughty Daughter",
		"", "",
		"34", "0",
		"1", 1,
		"Stück", "7",
		"Format;Download@", "pd1046178055.htm",
		"", 1,
		"1004", "0",
		 0)
	
		Entry[176] = new Element(
		176, "assets/thumb/ab_075_listbild.jpg",
		200, 160,
		"ab-075-1", "The Lost Bet (Die verlorene Wette)",
		"", "",
		"46", "0",
		"1", 1,
		"Stück", "11",
		"Format;Download@", "pd-1515001618.htm",
		"", 1,
		"1008", "0",
		 0)
	
		Entry[177] = new Element(
		177, "assets/thumb/ab_076_listbild.jpg",
		200, 160,
		"ab-076-1", "Lea´s Casting",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "11",
		"Format;Download@", "pd254257650.htm",
		"", 1,
		"1008", "0",
		 0)
	
		Entry[178] = new Element(
		178, "assets/thumb/il_001_listbild.jpg",
		200, 106,
		"il-001-3", "Inquisition - Part 1",
		"", "",
		"59", "0.3",
		"1", 1,
		"Stück", "58",
		"Format;Video (NTSC/VHS)@", "pd622900190.htm",
		"", 1,
		"3001", "0",
		 0)
	
		Entry[179] = new Element(
		179, "assets/thumb/ab_077_listbild.jpg",
		200, 150,
		"ab-077-1", "Lycra Girls in Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "11",
		"Format;Download@", "pd1048244263.htm",
		"", 1,
		"1008", "0",
		 0)
	
		Entry[180] = new Element(
		180, "assets/thumb/ab_078_listbild.jpg",
		200, 160,
		"ab-078-1", "The Intruder",
		"", "",
		"34", "0",
		"1", 1,
		"Stück", "11",
		"Format;Download@", "pd-466504066.htm",
		"", 1,
		"1008", "0",
		 0)
	
		Entry[181] = new Element(
		181, "assets/thumb/mitglied_smg_listbild.jpg",
		200, 149,
		"mitglied-smg-1", "Become a member of www.sm-girls.com",
		"", "",
		"14.95", "0",
		"1", 1,
		"", "122",
		"", "pd1680618774.htm",
		"", 1,
		"16000", "0",
		 0)
	
		Entry[182] = new Element(
		182, "assets/thumb/ab_079_listbild.jpg",
		200, 150,
		"ab-079-1", "Caught Assistant - Die ertappte Verkäuferin",
		"", "",
		"46", "0",
		"1", 1,
		"Stück", "11",
		"Format;Download@", "pd1050046152.htm",
		"", 1,
		"1008", "0",
		 0)
	
		Entry[183] = new Element(
		183, "assets/thumb/ab_080_listbild.jpg",
		200, 160,
		"ab-080-1", "24/7 Slave Girl - Teil 1",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "12",
		"Format;Download@", "pd712119577.htm",
		"", 1,
		"1009", "0",
		 0)
	
		Entry[184] = new Element(
		184, "assets/thumb/ab_081_listbild.jpg",
		200, 160,
		"ab-081-1", "24/7 Slave Girl - Teil 2",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "12",
		"Format;Download@", "pd-1073958832.htm",
		"", 1,
		"1009", "0",
		 0)
	
		Entry[185] = new Element(
		185, "assets/thumb/ab_081_pack_listbild.jpg",
		200, 160,
		"ab-081 pack-1", "24/7 Slave Girl - partl 1 + 2",
		"", "",
		"74", "0",
		"1", 1,
		"Stück", "12",
		"Format;Download@", "pd1331443491.htm",
		"", 1,
		"1009", "0",
		 0)
	
		Entry[186] = new Element(
		186, "assets/thumb/ab_082_listbild.jpg",
		200, 150,
		"ab-082-1", "Monique is kidnapped",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "12",
		"Format;Download@", "pd1052898791.htm",
		"", 1,
		"1009", "0",
		 0)
	
		Entry[187] = new Element(
		187, "assets/thumb/AB_83_listbild.jpg",
		150, 200,
		"ab-083-1", "Monique trained as a Pony-Girl",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "12",
		"Format;Download@", "pd1055080911.htm",
		"", 1,
		"1009", "0",
		 0)
	
		Entry[188] = new Element(
		188, "assets/thumb/AB_84_listbild.jpg",
		200, 160,
		"ab-084-1", "More Paper Gags",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "12",
		"Format;Download@", "pd1056473302.htm",
		"", 1,
		"1009", "0",
		 0)
	
		Entry[189] = new Element(
		189, "assets/thumb/ab-164-listbild.jpg",
		200, 160,
		"ab-164-1", "Arrested",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "20",
		"Format;Download@", "pd1144833894.htm",
		"", 1,
		"10098", "0",
		 0)
	
		Entry[190] = new Element(
		190, "assets/thumb/ab-165-listbild.jpg",
		200, 160,
		"ab-165-1", "Noseplay (2)",
		"", "",
		"19.5", "0",
		"1", 1,
		"Stück", "20",
		"Format;Download@", "pd-198560022.htm",
		"", 1,
		"10098", "0",
		 0)
	
		Entry[191] = new Element(
		191, "assets/thumb/el-01-listbild.jpg",
		200, 160,
		"el-01-1", "Gentle meets El Marino",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "49",
		"Format;Download@", "pd-435960866.htm",
		"", 1,
		"11000-el", "0",
		 0)
	
		Entry[192] = new Element(
		192, "assets/thumb/el-02-listbild.jpg",
		200, 164,
		"el-02-1", "The Girls of Cuffsworld 2004",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "49",
		"Format;Download@", "pd-2130225854.htm",
		"", 1,
		"11000-el", "0",
		 0)
	
		Entry[193] = new Element(
		193, "assets/thumb/el-03-listbild.jpg",
		200, 164,
		"el-03-1", "Dreams",
		"", "",
		"26", "0",
		"1", 1,
		"Stück", "49",
		"Format;Download@", "pd911309026.htm",
		"", 1,
		"11000-el", "0",
		 0)
	
		Entry[194] = new Element(
		194, "assets/thumb/bg-18-listbild.jpg",
		200, 133,
		"bg-18-1", "Angie in Bondage (1)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "42",
		"Format;Download@", "pd1146057145.htm",
		"", 1,
		"1012-002", "0",
		 0)
	
		Entry[195] = new Element(
		195, "assets/thumb/bg-19-listbild.jpg",
		200, 133,
		"bg-19-1", "Der Versicherungsfall",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "42",
		"Format;Download@", "pd-713360376.htm",
		"", 1,
		"1012-002", "0",
		 0)
	
		Entry[196] = new Element(
		196, "assets/thumb/bg-20-listbild.jpg",
		133, 200,
		"bg-20-1", "Cathlyn in Bondage (1)",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "43",
		"Format;Download@", "pd1651368033.htm",
		"", 1,
		"1012-003", "0",
		 0)
	
		Entry[197] = new Element(
		197, "assets/thumb/ab-166-listbild.jpg",
		200, 160,
		"ab-166-1", "The Failed Exam",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "20",
		"Format;Download@", "pd1147708966.htm",
		"", 1,
		"10098", "0",
		 0)
	
		Entry[198] = new Element(
		198, "assets/thumb/ab-167-listbild.jpg",
		200, 160,
		"ab-167-1", "Winterbondage (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "20",
		"Format;Download@", "pd48837585.htm",
		"", 1,
		"10098", "0",
		 0)
	
		Entry[199] = new Element(
		199, "assets/thumb/hh-08-listbild.jpg",
		200, 164,
		"ski-08-1", "The Armbinder",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "93",
		"Format;Download@", "pd625199142.htm",
		"", 1,
		"ski", "0",
		 0)
	
		Entry[200] = new Element(
		200, "assets/thumb/ab-168-listbild.jpg",
		200, 160,
		"ab-168-1", "Caught by the burglar",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "20",
		"Format;Download@", "pd1149426742.htm",
		"", 1,
		"10098", "0",
		 0)
	
		Entry[201] = new Element(
		201, "assets/thumb/bg-21-listbild.jpg",
		200, 133,
		"bg-21-1", "Miri in Lycra",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "43",
		"Format;Download@", "pd972952125.htm",
		"", 1,
		"1012-003", "0",
		 0)
	
		Entry[202] = new Element(
		202, "assets/thumb/bg-22-listbild.jpg",
		200, 133,
		"bg-22-1", "Nikky in Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "43",
		"Format;Download@", "pd-1240206126.htm",
		"", 1,
		"1012-003", "0",
		 0)
	
		Entry[203] = new Element(
		203, "assets/thumb/ab-169-listbild.jpg",
		200, 160,
		"ab-169-1", "Fur Queen",
		"- Die Pelzdomina - ", "",
		"39", "0",
		"1", 1,
		"Stück", "20",
		"Format;Download@", "pd1149689996.htm",
		"", 1,
		"10098", "0",
		 0)
	
		Entry[204] = new Element(
		204, "assets/thumb/ab-170-listbild.jpg",
		200, 160,
		"ab-170-1", "Bagged",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "21",
		"Format;Download@", "pd-574231703.htm",
		"", 1,
		"10099", "0",
		 0)
	
		Entry[205] = new Element(
		205, "assets/thumb/ab-171-listbild.jpg",
		200, 160,
		"ab-171-1", "To hot for mittens and fur?",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "21",
		"Format;Download@", "pd-555815299.htm",
		"", 1,
		"10099", "0",
		 0)
	
		Entry[206] = new Element(
		206, "assets/thumb/bg-23-listbild.jpg",
		200, 133,
		"bg-23-1", "Anita in Bondage (1)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "43",
		"Format;Download@", "pd78553959.htm",
		"", 1,
		"1012-003", "0",
		 0)
	
		Entry[207] = new Element(
		207, "assets/thumb/bg-24-listbild.jpg",
		200, 133,
		"bg-24-1", "Anita &amp; Lucy hogtied",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "43",
		"Format;Download@", "pd1605543113.htm",
		"", 1,
		"1012-003", "0",
		 0)
	
		Entry[208] = new Element(
		208, "assets/thumb/hg-listbild.jpg",
		200, 150,
		"mitglied-hg", "Membership www.helpless-girls.com",
		"starting at 9,50 / month", "",
		"14.5", "0",
		"1", 1,
		"", "122",
		"", "pd711084376.htm",
		"", 1,
		"16000", "0",
		 0)
	
		Entry[209] = new Element(
		209, "assets/thumb/ST-SS-1-listbild.JPG",
		150, 200,
		"ST-SS-1", "Scavengers Sister",
		"", "",
		"149", "0",
		"1", 1,
		"Stück", "102,1",
		"", "pd-1180782778.htm",
		"", 1,
		"12000,100011", "0",
		 0)
	
		Entry[210] = new Element(
		210, "assets/thumb/wicr-listbild.JPG",
		150, 200,
		"wicr", "Witch Cross",
		"", "",
		"189", "0",
		"1", 1,
		"Stück", "102,1,102,1",
		"", "pd431639851.htm",
		"", 1,
		"12000,100011,12000,100011", "0",
		 0)
	
		Entry[211] = new Element(
		211, "assets/thumb/tag-123-listbild.jpg",
		200, 164,
		"tag-123-1", "Michelle",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "76",
		"Format;Download@", "pd-209022562.htm",
		"", 1,
		"8000-129", "0",
		 0)
	
		Entry[212] = new Element(
		212, "assets/thumb/tag-126a-listbild.jpg",
		200, 136,
		"tag-126a-1", "Amber",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "76",
		"Format;Download@", "pd2122034646.htm",
		"", 1,
		"8000-129", "0",
		 0)
	
		Entry[213] = new Element(
		213, "assets/thumb/tag-126b-listbild.jpg",
		200, 136,
		"tag-126b-1", "Shannon",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "76",
		"Format;Download@", "pd746832474.htm",
		"", 1,
		"8000-129", "0",
		 0)
	
		Entry[214] = new Element(
		214, "assets/thumb/tag-132a-listbild.jpg",
		200, 164,
		"tag-132a-1", "Carmet",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "77",
		"Format;Download@", "pd1148047534.htm",
		"", 1,
		"8000-139", "0",
		 0)
	
		Entry[215] = new Element(
		215, "assets/thumb/tag-132b-listbild.jpg",
		200, 136,
		"tag-132b-1", "Jewel",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "77",
		"Format;Download@", "pd19760454.htm",
		"", 1,
		"8000-139", "0",
		 0)
	
		Entry[216] = new Element(
		216, "assets/thumb/tag-134a-listbild.jpg",
		200, 136,
		"tag-134a-1", "Faith",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "77",
		"Format;Download@", "pd1151241961.htm",
		"", 1,
		"8000-139", "0",
		 0)
	
		Entry[217] = new Element(
		217, "assets/thumb/tag-134b-listbild.jpg",
		200, 136,
		"tag-134b-1", "Tamara",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "77",
		"Format;Download@", "pd1768989153.htm",
		"", 1,
		"8000-139", "0",
		 0)
	
		Entry[218] = new Element(
		218, "assets/thumb/tag-139-listbild.jpg",
		200, 164,
		"tag-139-1", "Natalia",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "77",
		"Format;Download@", "pd-343126149.htm",
		"", 1,
		"8000-139", "0",
		 0)
	
		Entry[219] = new Element(
		219, "assets/thumb/tag-140-listbild.jpg",
		200, 164,
		"tag-140-1", "Ashley",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "78",
		"Format;Download@", "pd1143204373.htm",
		"", 1,
		"8000-149", "0",
		 0)
	
		Entry[220] = new Element(
		220, "assets/thumb/ab-172-listbild.jpg",
		200, 160,
		"ab-172-1", "Chloroformed again",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "21",
		"Format;Download@", "pd-1625244168.htm",
		"", 1,
		"10099", "0",
		 0)
	
		Entry[221] = new Element(
		221, "assets/thumb/ab-173-listbild.jpg",
		200, 160,
		"ab-173-1", "The Patient",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "21",
		"Format;Download@", "pd2034227932.htm",
		"", 1,
		"10099", "0",
		 0)
	
		Entry[222] = new Element(
		222, "assets/thumb/tag-121-listbild.jpg",
		200, 164,
		"tag-121-1", "Sophia",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "76",
		"Format;Download@", "pd1153065433.htm",
		"", 1,
		"8000-129", "0",
		 0)
	
		Entry[223] = new Element(
		223, "assets/thumb/ab-174-listbild.jpg",
		200, 160,
		"ab-174-1", "Arrested (3)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "21",
		"Format;Download@", "pd1153477912.htm",
		"", 1,
		"10099", "0",
		 0)
	
		Entry[224] = new Element(
		224, "assets/thumb/ab-175-listbild.jpg",
		200, 160,
		"ab-175-1", "The false ministrant",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "21",
		"Format;Download@", "pd1168320333.htm",
		"", 1,
		"10099", "0",
		 0)
	
		Entry[225] = new Element(
		225, "assets/thumb/bg-25-listbild.jpg",
		200, 133,
		"bg-25-1", "Lucy in bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "43",
		"Format;Download@", "pd1154606674.htm",
		"", 1,
		"1012-003", "0",
		 0)
	
		Entry[226] = new Element(
		226, "assets/thumb/tag-29-listbild.jpg",
		200, 154,
		"tag-29-1", "Saige and friends",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "72",
		"Format;Download@", "pd-695681112.htm",
		"", 1,
		"8000-029", "0",
		 0)
	
		Entry[227] = new Element(
		227, "assets/thumb/tag-138-listbild.jpg",
		200, 164,
		"tag-138-1", "Liz",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "77",
		"Format;Download@", "pd112963226.htm",
		"", 1,
		"8000-139", "0",
		 0)
	
		Entry[228] = new Element(
		228, "assets/thumb/bg-26-listbild.jpg",
		200, 164,
		"bg-26-1", "Miri tied in steel",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "43",
		"Format;Download@", "pd-580201390.htm",
		"", 1,
		"1012-003", "0",
		 0)
	
		Entry[229] = new Element(
		229, "assets/thumb/rc_001_listbild.jpg",
		200, 163,
		"rc-001", "Bondage Fantasies",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "66",
		"Format;Download@", "pd1415513267.htm",
		"", 1,
		"7000-010", "0",
		 0)
	
		Entry[230] = new Element(
		230, "assets/thumb/rc_002_listbild.jpg",
		160, 120,
		"rc-002", "The Bondage Model + The Escape Artist",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "66",
		"Format;Download@", "pd-1667327278.htm",
		"", 1,
		"7000-010", "0",
		 0)
	
		Entry[231] = new Element(
		231, "assets/thumb/rc_003_listbild.jpg",
		200, 150,
		"rc-003", "Sweet Gwendoline",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "66",
		"Format;Download@", "pd614618581.htm",
		"", 1,
		"7000-010", "0",
		 0)
	
		Entry[232] = new Element(
		232, "assets/thumb/rc-04-Listbild.jpg",
		200, 164,
		"rc-004", "The kidnapped doctor",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "66",
		"Format;Download@", "pd1094110623.htm",
		"", 1,
		"7000-010", "0",
		 0)
	
		Entry[233] = new Element(
		233, "assets/thumb/rc-05-listbild.jpg",
		200, 164,
		"rc-005", "Eve secured in steel",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "66",
		"Format;Download@", "pd2358582.htm",
		"", 1,
		"7000-010", "0",
		 0)
	
		Entry[234] = new Element(
		234, "assets/thumb/rc-06-listbild.jpg",
		200, 164,
		"rc-006-1", "Slave Service",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "66",
		"Format;Download@", "pd1586623605.htm",
		"", 1,
		"7000-010", "0",
		 0)
	
		Entry[235] = new Element(
		235, "assets/thumb/rc-07-listbild.jpg",
		200, 164,
		"rc-007-1", "Castle of Terror",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "66",
		"Format;Download@", "pd-664596544.htm",
		"", 1,
		"7000-010", "0",
		 0)
	
		Entry[236] = new Element(
		236, "assets/thumb/rc-08-listbild.jpg",
		200, 164,
		"rc-008-1", "A Maid s Day",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "66",
		"Format;Download@", "pd-1258210676.htm",
		"", 1,
		"7000-010", "0",
		 0)
	
		Entry[237] = new Element(
		237, "assets/thumb/rc-09-listbild.jpg",
		200, 164,
		"rc-009-1", "Prison Girl in Chains",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "66",
		"Format;Download@", "pd497402290.htm",
		"", 1,
		"7000-010", "0",
		 0)
	
		Entry[238] = new Element(
		238, "assets/thumb/rc-10-listbild.jpg",
		200, 164,
		"rc-010-1", "False Friends",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "67",
		"Format;Download@", "pd-1722184048.htm",
		"", 1,
		"7000-20", "0",
		 0)
	
		Entry[239] = new Element(
		239, "assets/thumb/rc-11-listbild.jpg",
		200, 160,
		"rc-011-1", "No Parking",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "67",
		"Format;Download@", "pd1837652224.htm",
		"", 1,
		"7000-20", "0",
		 0)
	
		Entry[240] = new Element(
		240, "assets/thumb/bg-28-listbild.jpg",
		200, 159,
		"bg-28-1", "Funny und die leckere Fesselung",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "43",
		"Format;Download@", "pd-1800383025.htm",
		"", 1,
		"1012-003", "0",
		 0)
	
		Entry[241] = new Element(
		241, "assets/thumb/bg-30-listbild.jpg",
		200, 136,
		"bg-30-1", "Cindy helpless",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "44",
		"Format;Download@", "pd2029193404.htm",
		"", 1,
		"1012-4", "0",
		 0)
	
		Entry[242] = new Element(
		242, "assets/thumb/hh-03-listbild.jpg",
		200, 164,
		"ski-03-1", "Nude and tied",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "93",
		"Format;Download@", "pd1353556322.htm",
		"", 1,
		"ski", "0",
		 0)
	
		Entry[243] = new Element(
		243, "assets/thumb/ski-06-listbild.jpg",
		200, 167,
		"ski-06-1", "At the beginning I dit not want...",
		"", "",
		"46", "0",
		"1", 1,
		"Stück", "93",
		"Format;Download@", "pd-1770893571.htm",
		"", 1,
		"ski", "0",
		 0)
	
		Entry[244] = new Element(
		244, "assets/thumb/tag-79-listbild.jpg",
		200, 164,
		"tag-79-1", "Holly",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "74",
		"Format;Download@", "pd-533446349.htm",
		"", 1,
		"8000-079", "0",
		 0)
	
		Entry[245] = new Element(
		245, "assets/thumb/sib-01-istbild.jpg",
		200, 160,
		"sib-01-1", "Sockgirls in Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "38",
		"Format;Download@", "pd1157183868.htm",
		"", 1,
		"1011", "0",
		 0)
	
		Entry[246] = new Element(
		246, "assets/thumb/ab-176-listbild.jpg",
		200, 160,
		"ab-176-1", "Caught Sisters",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "21",
		"Format;Download@", "pd949775828.htm",
		"", 1,
		"10099", "0",
		 0)
	
		Entry[247] = new Element(
		247, "assets/thumb/ab-177-listbild.jpg",
		200, 160,
		"ab-177-1", "The Experiment",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "21",
		"Format;Download@", "pd521102636.htm",
		"", 1,
		"10099", "0",
		 0)
	
		Entry[248] = new Element(
		248, "assets/thumb/tag-131-listbild.jpg",
		200, 164,
		"tag-131-1", "Rachel",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "77",
		"Format;Download@", "pd1158841618.htm",
		"", 1,
		"8000-139", "0",
		 0)
	
		Entry[249] = new Element(
		249, "assets/thumb/tag-118-listbild.jpg",
		200, 164,
		"tag-118-1", "Joi",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "75",
		"Format;Download@", "pd-1702487649.htm",
		"", 1,
		"8000-119", "0",
		 0)
	
		Entry[250] = new Element(
		250, "assets/thumb/mask_001_listbild.jpg",
		132, 200,
		"mask-001", "Maske",
		"", "",
		"89.9", "0",
		"1", 1,
		"Stück", "114",
		"", "pd-781471331.htm",
		"", 1,
		"13004-4", "0",
		 0)
	
		Entry[251] = new Element(
		251, "assets/thumb/mask_002_listbild.jpg",
		150, 200,
		"mask-002", "Gasmaske",
		"", "",
		"39.9", "0",
		"1", 1,
		"Stück", "114",
		"", "pd1189594387.htm",
		"", 1,
		"13004-4", "0",
		 0)
	
		Entry[252] = new Element(
		252, "assets/thumb/gag_002_listbild.jpg",
		150, 200,
		"gag-002-1", "Kopf-Harness",
		"", "",
		"49.9", "0",
		"1", 1,
		"Stück", "115",
		"Liefer;1: Kunststoffball weiß 43 mm@", "pd-1468450260.htm",
		"", 1,
		"13004-5", "0",
		 0)
	
		Entry[253] = new Element(
		253, "assets/thumb/gag_001_listbild.jpg",
		132, 200,
		"gag-001", "Ring-Gag",
		"", "",
		"19.9", "0",
		"1", 1,
		"Stück", "111",
		"diameter;45 mm@", "pd1815596668.htm",
		"", 1,
		"13004-1", "0",
		 0)
	
		Entry[254] = new Element(
		254, "assets/thumb/gag-003_listbild.JPG",
		200, 150,
		"gag-003", "Mundsperrer nach Jennings",
		"", "",
		"29.9", "0",
		"1", 1,
		"Stück", "112",
		"", "pd-1673390168.htm",
		"", 1,
		"13004-2", "0",
		 0)
	
		Entry[255] = new Element(
		255, "assets/thumb/gag_004_listbild.jpg",
		150, 200,
		"gag-004-1", "Mundspreizer mit Zungendrücker",
		"", "",
		"64", "0",
		"1", 1,
		"Stück", "112",
		"Größe;11 cm@", "pd979666624.htm",
		"", 1,
		"13004-2", "0",
		 0)
	
		Entry[256] = new Element(
		256, "assets/thumb/gag_005_listbild.jpg",
		200, 150,
		"gag-005-1", "Mundspreizer ohne Zungendrücker",
		"", "",
		"64", "0",
		"1", 1,
		"Stück", "112",
		"Größe;11 cm@", "pd-1579474002.htm",
		"", 1,
		"13004-2", "0",
		 0)
	
		Entry[257] = new Element(
		257, "assets/thumb/gag-006-Listbild.jpg",
		200, 150,
		"gag-006-1", "Kunststoffball mit Löchern 38mm",
		"", "",
		"14.9", "0",
		"1", 1,
		"Stück", "111",
		"Farbe;gelb@", "pd1046689732.htm",
		"", 1,
		"13004-1", "0",
		 0)
	
		Entry[258] = new Element(
		258, "assets/thumb/gag-007-Listbild.jpg",
		200, 150,
		"gag-007-1", "Kunststoffball mit Löchern 38mm",
		"", "",
		"16.9", "0",
		"1", 1,
		"Stück", "111",
		"Farbe;gelb@", "pd-1272813789.htm",
		"", 1,
		"13004-1", "0",
		 0)
	
		Entry[259] = new Element(
		259, "assets/thumb/gag-008-Listbild.jpg",
		200, 150,
		"gag-008-1", "Kunststoffball ",
		"", "",
		"14.9", "0",
		"1", 1,
		"Stück", "111",
		"Farbe;orange@", "pd1235380063.htm",
		"", 1,
		"13004-1", "0",
		 0)
	
		Entry[260] = new Element(
		260, "assets/thumb/gag-009-Listbild.jpg",
		150, 200,
		"gag-009-1", "Gummiball 38mm",
		"", "",
		"14.9", "0",
		"1", 1,
		"Stück", "111",
		"Farbe;rot@", "pd-837887732.htm",
		"", 1,
		"13004-1", "0",
		 0)
	
		Entry[261] = new Element(
		261, "assets/thumb/gag-010-Listbild.jpg",
		200, 150,
		"gag-010-1", "weicher Kunststoffball 40mm",
		"", "",
		"14.9", "0",
		"1", 1,
		"Stück", "111",
		"Farbe;gelb@", "pd-839668794.htm",
		"", 1,
		"13004-1", "0",
		 0)
	
		Entry[262] = new Element(
		262, "assets/thumb/gag-011-Listbild.jpg",
		200, 150,
		"gag-011-1", "Gummiball 38mm",
		"", "",
		"16.9", "0",
		"1", 1,
		"Stück", "111",
		"Farbe;rot@", "pd-797263669.htm",
		"", 1,
		"13004-1", "0",
		 0)
	
		Entry[263] = new Element(
		263, "assets/thumb/fs-01-listbild.jpg",
		200, 150,
		"FS-01", "Gag fromn the Middle Age",
		"", "",
		"109", "0",
		"1", 1,
		"Stück", "102,1,102,1,112,1",
		"", "pd-1635296837.htm",
		"", 1,
		"12000,100011,12000,100011,13004-2,100011", "0",
		 0)
	
		Entry[264] = new Element(
		264, "assets/thumb/cuf_014_listbild.jpg",
		200, 150,
		"cuf-014", "legcuffs",
		"", "",
		"29.9", "500",
		"1", 1,
		"Stück", "106",
		"", "pd-1842793173.htm",
		"", 1,
		"13001-2", "0",
		 0)
	
		Entry[265] = new Element(
		265, "assets/thumb/KB-121-Nickel.JPG",
		200, 150,
		"KB-121-1", "Darby-handcuffs",
		"", "",
		"29.9", "500",
		"1", 1,
		"Stück", "105",
		"quality;nickel plated / small@", "pd1066210268.htm",
		"", 1,
		"13001-1", "0",
		 0)
	
		Entry[266] = new Element(
		266, "assets/thumb/KB-218-listbild.JPG",
		200, 150,
		"KB-218", "Darby-Combination",
		"", "",
		"169", "0",
		"1", 1,
		"Stück", "107",
		"quality;nickel plated@", "pd908527041.htm",
		"", 1,
		"13001-3", "0",
		 0)
	
		Entry[267] = new Element(
		267, "assets/thumb/KB-916-Nickel.JPG",
		200, 150,
		"KB-916-N-L", "Darby-Handcuffs",
		"", "",
		"34.9", "450",
		"1", 1,
		"Stück", "105",
		"quality;nickel plated / large@", "pd-1091302038.htm",
		"", 1,
		"13001-1", "0",
		 0)
	
		Entry[268] = new Element(
		268, "assets/thumb/kb-917_listbild.JPG",
		200, 150,
		"KB-917", "Handcuffs &quot; Irish 8 &quot;",
		"", "",
		"39.9", "0",
		"1", 1,
		"Stück", "105",
		"", "pd1247527333.htm",
		"", 1,
		"13001-1", "0",
		 0)
	
		Entry[269] = new Element(
		269, "assets/thumb/KB-918 Nickel.JPG",
		200, 150,
		"KB-918-N", "Darby-Legcuffs",
		"", "",
		"39.9", "780",
		"1", 1,
		"Stück", "106",
		"quality;nickel plated@", "pd-2125588056.htm",
		"", 1,
		"13001-2", "0",
		 0)
	
		Entry[270] = new Element(
		270, "assets/thumb/kb-919_listbild.JPG",
		200, 150,
		"KB-919-N", "Darby-Legcuffs ",
		"adjustable", "",
		"49.9", "900",
		"1", 1,
		"Stück", "106",
		"quality;nickel plated@", "pd-320622035.htm",
		"", 1,
		"13001-2", "0",
		 0)
	
		Entry[271] = new Element(
		271, "assets/thumb/tc_001_listbild.jpg",
		200, 150,
		"tc-001", "Thumbcuffs",
		"", "",
		"19.9", "120",
		"1", 1,
		"Stück", "108",
		"", "pd1399684752.htm",
		"", 1,
		"13001-4", "0",
		 0)
	
		Entry[272] = new Element(
		272, "assets/thumb/KB-914-listbild.JPG",
		150, 200,
		"KB-914-1", "Arm Screw",
		"", "",
		"59", "1030",
		"1", 1,
		"Stück", "108",
		"quality;nickel plated@", "pd-2120720865.htm",
		"", 1,
		"13001-4", "0",
		 0)
	
		Entry[273] = new Element(
		273, "assets/thumb/cuf_011_listbild.jpg",
		200, 132,
		"cuf-012", "leg cuffs - extra strong",
		"", "",
		"29.9", "0",
		"1", 1,
		"Stück", "106",
		"", "pd708674116.htm",
		"", 1,
		"13001-2", "0",
		 0)
	
		Entry[274] = new Element(
		274, "assets/thumb/KB-815-listbild.JPG",
		150, 200,
		"KB-815", "Body Belt",
		"", "",
		"49.9", "870",
		"1", 1,
		"Stück", "108",
		"quality;nickel plated@", "pd-519722055.htm",
		"", 1,
		"13001-4", "0",
		 0)
	
		Entry[275] = new Element(
		275, "assets/thumb/KB-816-listbild.JPG",
		200, 150,
		"KB-816", "Body Belt",
		"", "",
		"49.9", "800",
		"1", 1,
		"Stück", "108",
		"quality;nickel plated@", "pd842125653.htm",
		"", 1,
		"13001-4", "0",
		 0)
	
		Entry[276] = new Element(
		276, "assets/thumb/KB-911-listbild.JPG",
		200, 150,
		"KB-911-1", "Neckcollar",
		"", "",
		"35.9", "810",
		"1", 1,
		"Stück", "108",
		"quality;stainless steel / large@", "pd-387774369.htm",
		"", 1,
		"13001-4", "0",
		 0)
	
		Entry[277] = new Element(
		277, "assets/thumb/kb-912_listbild.JPG",
		200, 150,
		"KB-912-1", "Neckcollar",
		"", "",
		"42.5", "400",
		"1", 1,
		"Stück", "108",
		"quality;nickel plated / small@", "pd2029831945.htm",
		"", 1,
		"13001-4", "0",
		 0)
	
		Entry[278] = new Element(
		278, "assets/thumb/cuf_010_listbild.jpg",
		200, 150,
		"cuf-011", "handcuffs - hinged",
		"", "",
		"31", "400",
		"1", 1,
		"Stück", "105",
		"", "pd-1482335322.htm",
		"", 1,
		"13001-1", "0",
		 0)
	
		Entry[279] = new Element(
		279, "assets/thumb/cuf_009_listbild.jpg",
		200, 150,
		"cuf-010", "handcuffs -police standard",
		"", "",
		"20", "290",
		"1", 1,
		"Stück", "105",
		"", "pd-1997424968.htm",
		"", 1,
		"13001-1", "0",
		 0)
	
		Entry[280] = new Element(
		280, "assets/thumb/cuf_006_listbild.jpg",
		200, 150,
		"cuf-007", "Handcuffs / joint-cuffs",
		"", "",
		"31", "380",
		"1", 1,
		"Stück", "105",
		"", "pd-1994491122.htm",
		"", 1,
		"13001-1", "0",
		 0)
	
		Entry[281] = new Element(
		281, "assets/thumb/cuf_005_listbild.jpg",
		200, 150,
		"cuf-006", "Handcuffs - Standard strong",
		"", "",
		"15", "260",
		"1", 1,
		"Stück", "105",
		"", "pd-789036576.htm",
		"", 1,
		"13001-1", "0",
		 0)
	
		Entry[282] = new Element(
		282, "assets/thumb/cuf_004_listbild.jpg",
		200, 150,
		"cuf-005", "Handcuffs - Smith &amp; Wesson 100",
		"", "",
		"46", "320",
		"1", 1,
		"Stück", "105",
		"", "pd339994850.htm",
		"", 1,
		"13001-1", "0",
		 0)
	
		Entry[283] = new Element(
		283, "assets/thumb/cuf_003_listbild.jpg",
		200, 150,
		"cuf-003", "handcuffs - standard black",
		"", "",
		"10", "190",
		"1", 1,
		"Stück", "105",
		"", "pd1017987220.htm",
		"", 1,
		"13001-1", "0",
		 0)
	
		Entry[284] = new Element(
		284, "assets/thumb/tb-01-listbild.jpg",
		200, 134,
		"tb-01", "Selfbondage TimeLock",
		"", "",
		"129", "120",
		"1", 1,
		"Stück", "102,1,102,1,112,1,108,1",
		"", "pd2094715485.htm",
		"", 1,
		"12000,100011,12000,100011,13004-2,100011,13001-4,100011", "0",
		 0)
	
		Entry[285] = new Element(
		285, "assets/thumb/bg-31-listbild.jpg",
		200, 135,
		"bg-31-1", "Gefangene Cindy",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "44",
		"Format;Download@", "pd-1509139080.htm",
		"", 1,
		"1012-4", "0",
		 0)
	
		Entry[286] = new Element(
		286, "assets/thumb/ue-21-listbild.jpg",
		200, 164,
		"ue-epi-21-1", "Unhappy End - Video 21",
		"Ruprecht", "",
		"39", "0",
		"1", 1,
		"Stück", "101",
		"Format;Download@", "pd346629905.htm",
		"", 1,
		"11500", "0",
		 0)
	
		Entry[287] = new Element(
		287, "assets/thumb/ab-178-listbild.jpg",
		200, 160,
		"ab-178-1", "Foot Slavegirl",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "21",
		"Format;Download@", "pd408636796.htm",
		"", 1,
		"10099", "0",
		 0)
	
		Entry[288] = new Element(
		288, "assets/thumb/ab-179-listbild.jpg",
		200, 160,
		"ab-179-1", "David in Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "21",
		"Format;Download@", "pd-991624748.htm",
		"", 1,
		"10099", "0",
		 0)
	
		Entry[289] = new Element(
		289, "assets/thumb/el-04-listbild.jpg",
		200, 164,
		"el-04-1", "Gentle and Jane",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "49",
		"Format;Download@", "pd1160658613.htm",
		"", 1,
		"11000-el", "0",
		 0)
	
		Entry[290] = new Element(
		290, "assets/thumb/tag-141-listbild.jpg",
		200, 164,
		"tag-141-1", "Martina",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "78",
		"Format;Download@", "pd-180811987.htm",
		"", 1,
		"8000-149", "0",
		 0)
	
		Entry[291] = new Element(
		291, "assets/thumb/tag-152-listbild.jpg",
		200, 164,
		"tag-152-1", "Dale",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "79",
		"Format;Download@", "pd1729637556.htm",
		"", 1,
		"8000-159", "0",
		 0)
	
		Entry[292] = new Element(
		292, "assets/thumb/gvz-01-listbild.jpg",
		200, 160,
		"gvz-01-1", "Punishment for TV-Slut Mona",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "53",
		"Format;Download@", "pd-1792312634.htm",
		"", 1,
		"11000-gvz", "0",
		 0)
	
		Entry[293] = new Element(
		293, "assets/thumb/bg-32-listbild.jpg",
		200, 164,
		"bg-32-1", "Sarah und der Gangster",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "44",
		"Format;Download@", "pd-1655196458.htm",
		"", 1,
		"1012-4", "0",
		 0)
	
		Entry[294] = new Element(
		294, "assets/thumb/ab-180-listbild.jpg",
		200, 160,
		"ab-180-1", "Sabine´s Bestrafung",
		"The punishment of Sabine", "",
		"39", "0",
		"1", 1,
		"Stück", "22",
		"Format;Download@", "pd2087108565.htm",
		"", 1,
		"10100", "0",
		 0)
	
		Entry[295] = new Element(
		295, "assets/thumb/ab-181-listbild.jpg",
		200, 160,
		"ab-181-1", "Bondage Olympics",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "22",
		"Format;Download@", "pd501244287.htm",
		"", 1,
		"10100", "0",
		 0)
	
		Entry[296] = new Element(
		296, "assets/thumb/ab-182-listbild.jpg",
		200, 160,
		"ab-182-1", "Pet Play",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "22",
		"Format;Download@", "pd1163501289.htm",
		"", 1,
		"10100", "0",
		 0)
	
		Entry[297] = new Element(
		297, "assets/thumb/ab-183-listbild.jpg",
		200, 160,
		"ab-183-1", "Tied&amp;Tickled Feet",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "22",
		"Format;Download@", "pd-1725969923.htm",
		"", 1,
		"10100", "0",
		 0)
	
		Entry[298] = new Element(
		298, "assets/thumb/bg-33-listbild.jpg",
		200, 134,
		"bg-33-1", "Gina &amp; Kathi in Lycra",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "44",
		"Format;Download@", "pd1164207520.htm",
		"", 1,
		"1012-4", "0",
		 0)
	
		Entry[299] = new Element(
		299, "assets/thumb/c6-1-listbild.jpg",
		200, 164,
		"tag-c6-1-1", "Gagged Girls (1)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "69",
		"Format;Download@", "pd-1409606298.htm",
		"", 1,
		"8000-0000", "0",
		 0)
	
		Entry[300] = new Element(
		300, "assets/thumb/c6-2-listbild.jpg",
		200, 164,
		"tag-c6-2-1", "Gagged Girls (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "69",
		"Format;Download@", "pd247236444.htm",
		"", 1,
		"8000-0000", "0",
		 0)
	
		Entry[301] = new Element(
		301, "assets/thumb/ab-184-listbild.jpg",
		200, 150,
		"ab-184-1", "The last Vampire",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "22",
		"Format;Download@", "pd1165164218.htm",
		"", 1,
		"10100", "0",
		 0)
	
		Entry[302] = new Element(
		302, "assets/thumb/ab-185-listbild.jpg",
		200, 150,
		"ab-185-1", "My slavegirl Lupina",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "22",
		"Format;Download@", "pd2070977809.htm",
		"", 1,
		"10100", "0",
		 0)
	
		Entry[303] = new Element(
		303, "assets/thumb/tag-129-listbild.jpg",
		200, 164,
		"tag-129-1", "Dawn, Gina, Samantha",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "76",
		"Format;Download@", "pd1400979636.htm",
		"", 1,
		"8000-129", "0",
		 0)
	
		Entry[304] = new Element(
		304, "assets/thumb/zb-01-listbild.jpg",
		200, 164,
		"zb-01-1", "Zentai Bondage Vol.1",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "38",
		"Format;Download@", "pd427169171.htm",
		"", 1,
		"1011", "0",
		 0)
	
		Entry[305] = new Element(
		305, "assets/thumb/bg-34-listbild.jpg",
		200, 164,
		"bg-34-1", "Gina in Lycra 2",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "44",
		"Format;Download@", "pd1166014163.htm",
		"", 1,
		"1012-4", "0",
		 0)
	
		Entry[306] = new Element(
		306, "assets/thumb/rc-12-listbild.jpg",
		200, 134,
		"rc-012-1", "Kidnapping Agency",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "67",
		"Format;Download@", "pd1796827376.htm",
		"", 1,
		"7000-20", "0",
		 0)
	
		Entry[307] = new Element(
		307, "assets/thumb/ab-186-listbild.jpg",
		200, 160,
		"ab-186-1", "Chloroformed by the Intruder",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "22",
		"Format;Download@", "pd-1893728942.htm",
		"", 1,
		"10100", "0",
		 0)
	
		Entry[308] = new Element(
		308, "assets/thumb/ab-188-listbild.jpg",
		200, 160,
		"ab-188-1", "Nylon Fetish",
		"", "",
		"29", "0",
		"1", 1,
		"Stück", "22",
		"Format;Download@", "pd-87841107.htm",
		"", 1,
		"10100", "0",
		 0)
	
		Entry[309] = new Element(
		309, "assets/thumb/ab-187-listbild.jpg",
		200, 160,
		"ab-187-1", "Cops in Action",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "22",
		"Format;Download@", "pd-576571084.htm",
		"", 1,
		"10100", "0",
		 0)
	
		Entry[310] = new Element(
		310, "assets/thumb/ab-189-listbild.jpg",
		200, 160,
		"ab-189-1", "Bondage Olympics (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "22",
		"Format;Download@", "pd-428894057.htm",
		"", 1,
		"10100", "0",
		 0)
	
		Entry[311] = new Element(
		311, "assets/thumb/bg-35-listbild.jpg",
		200, 135,
		"bg-35-1", "Cindy wird überfallen",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "44",
		"Format;Download@", "pd976359919.htm",
		"", 1,
		"1012-4", "0",
		 0)
	
		Entry[312] = new Element(
		312, "assets/thumb/bg-36-listbild.jpg",
		200, 135,
		"bg-36-1", "Cindy und die Überraschung im Wald",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "44",
		"Format;Download@", "pd1169740154.htm",
		"", 1,
		"1012-4", "0",
		 0)
	
		Entry[313] = new Element(
		313, "assets/thumb/bg-37-listbild.jpg",
		200, 135,
		"bg-37-1", "Kathi, die Einbrecherin",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "44",
		"Format;Download@", "pd1246879684.htm",
		"", 1,
		"1012-4", "0",
		 0)
	
		Entry[314] = new Element(
		314, "assets/thumb/tag-155-listbild.jpg",
		200, 154,
		"tag-155-1", "Kim",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "79",
		"Format;Download@", "pd-835690776.htm",
		"", 1,
		"8000-159", "0",
		 0)
	
		Entry[315] = new Element(
		315, "assets/thumb/ab-190-listbild.jpg",
		200, 160,
		"ab-190-1", "Nose Play (3)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "23",
		"Format;Download@", "pd-319901649.htm",
		"", 1,
		"10101", "0",
		 0)
	
		Entry[316] = new Element(
		316, "assets/thumb/ab-191-listbild.jpg",
		200, 160,
		"ab-191-1", "Arrested (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "23",
		"Format;Download@", "pd422508350.htm",
		"", 1,
		"10101", "0",
		 0)
	
		Entry[317] = new Element(
		317, "assets/thumb/ab-192-listbild.jpg",
		200, 160,
		"ab-192-1", "Evil Neighbour",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "23",
		"Format;Download@", "pd688367976.htm",
		"", 1,
		"10101", "0",
		 0)
	
		Entry[318] = new Element(
		318, "assets/thumb/ski-09-listbild.jpg",
		200, 154,
		"ski-09-1", "Der rote Kapuzenanorak",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "93",
		"Format;Download@", "pd1171646174.htm",
		"", 1,
		"ski", "0",
		 0)
	
		Entry[319] = new Element(
		319, "assets/thumb/ski-10-listbild.jpg",
		200, 154,
		"ski-10-1", "Streicheleinheiten",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "93",
		"Format;Download@", "pd1014639977.htm",
		"", 1,
		"ski", "0",
		 0)
	
		Entry[320] = new Element(
		320, "assets/thumb/tag-156-1-listbild.jpg",
		200, 154,
		"tag-156-1-1", "Jelo",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "79",
		"Format;Download@", "pd769045498.htm",
		"", 1,
		"8000-159", "0",
		 0)
	
		Entry[321] = new Element(
		321, "assets/thumb/bf-listbild.JPG",
		200, 150,
		"mitglied-bf", "Become a member of www.bound-feet.com",
		"", "",
		"12.95", "0",
		"1", 1,
		"", "122",
		"", "pd1172856354.htm",
		"", 1,
		"16000", "0",
		 0)
	
		Entry[322] = new Element(
		322, "assets/thumb/sb-01-listbild.jpg",
		200, 164,
		"sb-01-1", "Shiny Bondage Vol.1",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "57",
		"Format;Download@", "pd898652192.htm",
		"", 1,
		"11000-sb", "0",
		 0)
	
		Entry[323] = new Element(
		323, "assets/thumb/ab-193-listbild.jpg",
		200, 150,
		"ab-193-1", "Captured for Socks",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "23",
		"Format;Download@", "pd1173540632.htm",
		"", 1,
		"10101", "0",
		 0)
	
		Entry[324] = new Element(
		324, "assets/thumb/ab-194-listbild.jpg",
		200, 150,
		"ab-194-1", "Backward Jacket",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "23",
		"Format;Download@", "pd405391218.htm",
		"", 1,
		"10101", "0",
		 0)
	
		Entry[325] = new Element(
		325, "assets/thumb/ab-195-listbild.jpg",
		200, 150,
		"ab-195-1", "Tight Mittens",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "23",
		"Format;Download@", "pd2127839740.htm",
		"", 1,
		"10101", "0",
		 0)
	
		Entry[326] = new Element(
		326, "assets/thumb/bg-38-listbild.jpg",
		200, 136,
		"bg-38-1", "Gina + Tatjana (1)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "44",
		"Format;Download@", "pd-1989824188.htm",
		"", 1,
		"1012-4", "0",
		 0)
	
		Entry[327] = new Element(
		327, "assets/thumb/bg-39-listbild.jpg",
		200, 135,
		"bg-39-1", "Gina + Tatjana (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "44",
		"Format;Download@", "pd1749913965.htm",
		"", 1,
		"1012-4", "0",
		 0)
	
		Entry[328] = new Element(
		328, "assets/thumb/ab-196-listbild.jpg",
		200, 150,
		"ab-196-1", "Lia",
		"Chloroform Adventures", "",
		"39", "0",
		"1", 1,
		"Stück", "23",
		"Format;Download@", "pd1175439234.htm",
		"", 1,
		"10101", "0",
		 0)
	
		Entry[329] = new Element(
		329, "assets/thumb/ab-197-listbild.jpg",
		200, 150,
		"ab-197-1", "Tanja is kidnapped",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "23",
		"Format;Download@", "pd-1578292973.htm",
		"", 1,
		"10101", "0",
		 0)
	
		Entry[330] = new Element(
		330, "assets/thumb/ab-198-listbild.jpg",
		200, 150,
		"ab-198-1", "Sara and Anna",
		"Learning the ropes", "",
		"39", "0",
		"1", 1,
		"Stück", "23",
		"Format;Download@", "pd-680942032.htm",
		"", 1,
		"10101", "0",
		 0)
	
		Entry[331] = new Element(
		331, "assets/thumb/bg-40-listbild.jpg",
		200, 136,
		"bg-40-1", "Angie in Bondage Vol. 3",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "45",
		"Format;Download@", "pd415749724.htm",
		"", 1,
		"1012-5", "0",
		 0)
	
		Entry[332] = new Element(
		332, "assets/thumb/ab-200-listbild.jpg",
		200, 165,
		"ab-200", "Nieces in Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "24",
		"Format;Download@", "pd428835855.htm",
		"", 1,
		"10102", "0",
		 0)
	
		Entry[333] = new Element(
		333, "assets/thumb/ab-201-listbild.jpg",
		200, 188,
		"ab-201-2", "Fur Slave girl",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "24",
		"Format;Download@", "pd-98954756.htm",
		"", 1,
		"10102", "0",
		 0)
	
		Entry[334] = new Element(
		334, "assets/thumb/01.jpg",
		200, 167,
		"ab-202-2", "Lupina",
		"Learning to be a Slave", "",
		"39", "0",
		"1", 1,
		"Stück", "24",
		"Format;Download@", "pd621533225.htm",
		"", 1,
		"10102", "0",
		 0)
	
		Entry[335] = new Element(
		335, "assets/thumb/bg-41-listbild.jpg",
		200, 135,
		"bg-41-1", "Gina + Angie in Trouble",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "45",
		"Format;Download@", "pd1181996794.htm",
		"", 1,
		"1012-5", "0",
		 0)
	
		Entry[336] = new Element(
		336, "assets/thumb/bg-42-listbild.jpg",
		200, 137,
		"bg-42-1", "Miri abducuted in the forest",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "45",
		"Format;Download@", "pd1500687403.htm",
		"", 1,
		"1012-5", "0",
		 0)
	
		Entry[337] = new Element(
		337, "assets/thumb/ab-199-listbild.jpg",
		200, 150,
		"ab-199-1", "Foot Slave (2)",
		"The Revenge", "",
		"39", "0",
		"1", 1,
		"Stück", "23",
		"Format;Download@", "pd1489911912.htm",
		"", 1,
		"10101", "0",
		 0)
	
		Entry[338] = new Element(
		338, "assets/thumb/ab-203-listbild.jpg",
		200, 150,
		"ab-203-1", "Erotic Seduction",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "24",
		"Format;Download@", "pd-1071242943.htm",
		"", 1,
		"10102", "0",
		 0)
	
		Entry[339] = new Element(
		339, "assets/thumb/ab-204-listbild.jpg",
		200, 150,
		"ab-204-1", "You have to learn the hard way",
		"Wer nicht hören will, ....", "",
		"39", "0",
		"1", 1,
		"Stück", "24",
		"Format;Download@", "pd1182787680.htm",
		"", 1,
		"10102", "0",
		 0)
	
		Entry[340] = new Element(
		340, "assets/thumb/el-05-listbild.jpg",
		200, 153,
		"el-05-1", "Curious Girl",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "49",
		"Format;Download@", "pd2017247961.htm",
		"", 1,
		"11000-el", "0",
		 0)
	
		Entry[341] = new Element(
		341, "assets/thumb/tag-26-listbild.jpg",
		200, 153,
		"tag-26-1", "Valary",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "72",
		"Format;Download@", "pd1306788817.htm",
		"", 1,
		"8000-029", "0",
		 0)
	
		Entry[342] = new Element(
		342, "assets/thumb/bg-43-listbild.jpg",
		200, 136,
		"bg-43-1", "Angel in Bondage Vol. 1",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "45",
		"Format;Download@", "pd997824617.htm",
		"", 1,
		"1012-5", "0",
		 0)
	
		Entry[343] = new Element(
		343, "assets/thumb/bg-44-listbild.jpg",
		200, 134,
		"bg-44-1", "Gina in Bondage Vol. 6",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "45",
		"Format;Download@", "pd103626254.htm",
		"", 1,
		"1012-5", "0",
		 0)
	
		Entry[344] = new Element(
		344, "assets/thumb/ab-205-listbild.jpg",
		200, 150,
		"ab-205-1", "Hogtie forever",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "24",
		"Format;Download@", "pd352409831.htm",
		"", 1,
		"10102", "0",
		 0)
	
		Entry[345] = new Element(
		345, "assets/thumb/rc-13-listbild.jpg",
		200, 152,
		"rc-013-1", "The Girl Snatcher",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "67",
		"Format;Download@", "pd1183625294.htm",
		"", 1,
		"7000-20", "0",
		 0)
	
		Entry[346] = new Element(
		346, "assets/thumb/rc-14-listbild.jpg",
		200, 155,
		"rc-014-1", "False Friend (2)",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "67",
		"Format;Download@", "pd-1035437850.htm",
		"", 1,
		"7000-20", "0",
		 0)
	
		Entry[347] = new Element(
		347, "assets/thumb/wol-01-listbild.jpg",
		200, 164,
		"wol-01-1", "Wolfis Girls in Bondage (1)",
		"", "",
		"22.75", "0",
		"1", 1,
		"Stück", "39",
		"Format;Download@", "pd523594693.htm",
		"", 1,
		"1011-1", "0",
		 0)
	
		Entry[348] = new Element(
		348, "assets/thumb/wol-02-listbild.jpg",
		200, 164,
		"wol-02-1", "Wolfis Girls in Bondage (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "39",
		"Format;Download@", "pd1155035069.htm",
		"", 1,
		"1011-1", "0",
		 0)
	
		Entry[349] = new Element(
		349, "assets/thumb/wol-03-listbild.jpg",
		200, 153,
		"wol-03-1", "Sandy bound in the kitchen",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "39",
		"Format;Download@", "pd1173632173.htm",
		"", 1,
		"1011-1", "0",
		 0)
	
		Entry[350] = new Element(
		350, "assets/thumb/tf_001_listbild.jpg",
		200, 134,
		"tf-001-1", "Tortured Feet",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "63",
		"Format;Download@", "pd-1905900241.htm",
		"", 1,
		"4001", "0",
		 0)
	
		Entry[351] = new Element(
		351, "assets/thumb/tf_002_listbild.jpg",
		200, 160,
		"tf-002-1", "Tortured Feet 2",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "63",
		"Format;Download@", "pd1309483070.htm",
		"", 1,
		"4001", "0",
		 0)
	
		Entry[352] = new Element(
		352, "assets/thumb/tag-c22-listbild.jpg",
		200, 153,
		"tag-c22-1", "Chloroformed Girls",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "69",
		"Format;Download@", "pd1185792715.htm",
		"", 1,
		"8000-0000", "0",
		 0)
	
		Entry[353] = new Element(
		353, "assets/thumb/bg-45-listbild.jpg",
		200, 133,
		"bg-45-1", "Gina in Bondage Vol. 7",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "45",
		"Format;Download@", "pd1186512421.htm",
		"", 1,
		"1012-5", "0",
		 0)
	
		Entry[354] = new Element(
		354, "assets/thumb/bg-46-listbild.jpg",
		200, 133,
		"bg-46-1", "Gina in Bondage Vol. 8",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "45",
		"Format;Download@", "pd-2032414569.htm",
		"", 1,
		"1012-5", "0",
		 0)
	
		Entry[355] = new Element(
		355, "assets/thumb/ab-206-listbild.jpg",
		200, 150,
		"ab-206-1", "Brutale Rache / Die Hochzeitsnacht",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "24",
		"Format;Download@", "pd738215009.htm",
		"", 1,
		"10102", "0",
		 0)
	
		Entry[356] = new Element(
		356, "assets/thumb/ab-207-listlbild.jpg",
		200, 150,
		"ab-207-1", "Tight Mittens (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "24",
		"Format;Download@", "pd-635677965.htm",
		"", 1,
		"10102", "0",
		 0)
	
		Entry[357] = new Element(
		357, "assets/thumb/ab-208-listbild.jpg",
		200, 150,
		"ab-208-1", "Kidnapped Cheerleaders",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "24",
		"Format;Download@", "pd-654610955.htm",
		"", 1,
		"10102", "0",
		 0)
	
		Entry[358] = new Element(
		358, "assets/thumb/bg-47-listbild.jpg",
		200, 133,
		"bg-47-1", "Angel tied in winter clothing",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "45",
		"Format;Download@", "pd1189088030.htm",
		"", 1,
		"1012-5", "0",
		 0)
	
		Entry[359] = new Element(
		359, "assets/thumb/bg-48-listbild.jpg",
		200, 133,
		"bg-48-1", "3 girls in Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "45",
		"Format;Download@", "pd1279430216.htm",
		"", 1,
		"1012-5", "0",
		 0)
	
		Entry[360] = new Element(
		360, "assets/thumb/ab-209-listbild.jpg",
		200, 150,
		"ab-209-1", "Bagged Trio &amp;",
		"Captured Girls", "",
		"39", "0",
		"1", 1,
		"Stück", "24",
		"Format;Download@", "pd546107755.htm",
		"", 1,
		"10102", "0",
		 0)
	
		Entry[361] = new Element(
		361, "assets/thumb/ab-210-listbild.jpg",
		200, 150,
		"ab-210-1", "The Lycra Thief ",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "25",
		"Format;Download@", "pd1279964328.htm",
		"", 1,
		"10103", "0",
		 0)
	
		Entry[362] = new Element(
		362, "assets/thumb/tag-143-listbild.jpg",
		200, 150,
		"tag-143-1", "Chantal",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "78",
		"Format;Download@", "pd1191353984.htm",
		"", 1,
		"8000-149", "0",
		 0)
	
		Entry[363] = new Element(
		363, "assets/thumb/bg-49-listbild.jpg",
		200, 133,
		"bg-49-1", "Julia + Vivanne in Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "45",
		"Format;Download@", "pd-1874179761.htm",
		"", 1,
		"1012-5", "0",
		 0)
	
		Entry[364] = new Element(
		364, "assets/thumb/bg-50-listbild.jpg",
		200, 133,
		"bg-50-1", "Angel in Bondage (3)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "46",
		"Format;Download@", "pd-1363935091.htm",
		"", 1,
		"1012-6", "0",
		 0)
	
		Entry[365] = new Element(
		365, "assets/thumb/ab-211-listbild.jpg",
		200, 150,
		"ab-211-1", "Revenge of the Trainee",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "25",
		"Format;Download@", "pd-558139973.htm",
		"", 1,
		"10103", "0",
		 0)
	
		Entry[366] = new Element(
		366, "assets/thumb/ab-212-listbild.jpg",
		200, 150,
		"ab-212-1", "Captured in Raincoats",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "25",
		"Format;Download@", "pd-1820628808.htm",
		"", 1,
		"10103", "0",
		 0)
	
		Entry[367] = new Element(
		367, "assets/thumb/ab-213-listbild.jpg",
		200, 150,
		"ab-213-1", "Rider-Girls in the forest",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "25",
		"Format;Download@", "pd1219504465.htm",
		"", 1,
		"10103", "0",
		 0)
	
		Entry[368] = new Element(
		368, "assets/thumb/bf-01-listbild.jpg",
		200, 150,
		"bf-01-1", "Bound Feet No. 1",
		"First Experience", "",
		"39", "0",
		"1", 1,
		"Stück", "60",
		"Format;Download@", "pd1176027005.htm",
		"", 1,
		"4000-10", "0",
		 0)
	
		Entry[369] = new Element(
		369, "assets/thumb/bf-02-listbild.jpg",
		200, 150,
		"bf-02-1", "Delta and the ropes",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "60",
		"Format;Download@", "pd1179316545.htm",
		"", 1,
		"4000-10", "0",
		 0)
	
		Entry[370] = new Element(
		370, "assets/thumb/bf-003-listbild.jpg",
		200, 150,
		"bf-03-1", "Delta: I love Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "60",
		"Format;Download@", "pd1180794656.htm",
		"", 1,
		"4000-10", "0",
		 0)
	
		Entry[371] = new Element(
		371, "assets/thumb/bf-004-listbild.jpg",
		200, 150,
		"bf-04-1", "Olga: First Time Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "60",
		"Format;Download@", "pd-2142971078.htm",
		"", 1,
		"4000-10", "0",
		 0)
	
		Entry[372] = new Element(
		372, "assets/thumb/bf-005-listbild.jpg",
		200, 150,
		"bf-05-1", "Melisa in Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "60",
		"Format;Download@", "pd1184773088.htm",
		"", 1,
		"4000-10", "0",
		 0)
	
		Entry[373] = new Element(
		373, "assets/thumb/bf-006-listbild.jpg",
		200, 150,
		"bf-06-1", "Delta &amp; Lightspear",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "60",
		"Format;Download@", "pd-100583335.htm",
		"", 1,
		"4000-10", "0",
		 0)
	
		Entry[374] = new Element(
		374, "assets/thumb/bf-007-listbild.jpg",
		200, 112,
		"bf-07-1", "Slavegirl Alyonka",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "60",
		"Format;Download@", "pd1188415344.htm",
		"", 1,
		"4000-10", "0",
		 0)
	
		Entry[375] = new Element(
		375, "assets/thumb/bf-008-listbild.jpg",
		200, 112,
		"bf-08-1", "Mirelle in tight bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "60",
		"Format;Download@", "pd2038286602.htm",
		"", 1,
		"4000-10", "0",
		 0)
	
		Entry[376] = new Element(
		376, "assets/thumb/bf-009-listbild.jpg",
		200, 150,
		"bf-09-1", "Playing cards with Delta",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "60",
		"Format;Download@", "pd-2061346268.htm",
		"", 1,
		"4000-10", "0",
		 0)
	
		Entry[377] = new Element(
		377, "assets/thumb/bf-010-listbild.jpg",
		200, 150,
		"bf-10-1", "Olga and the ropes",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "61",
		"Format;Download@", "pd673795277.htm",
		"", 1,
		"4000-20", "0",
		 0)
	
		Entry[378] = new Element(
		378, "assets/thumb/bg-51-listbild.jpg",
		200, 133,
		"bg-51-1", "Angel in Bondage (4)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "46",
		"Format;Download@", "pd1192963237.htm",
		"", 1,
		"1012-6", "0",
		 0)
	
		Entry[379] = new Element(
		379, "assets/thumb/ab-214-listbild.jpg",
		200, 150,
		"ab-214-1", "Private Prison 1",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "25",
		"Format;Download@", "pd1193478069.htm",
		"", 1,
		"10103", "0",
		 0)
	
		Entry[380] = new Element(
		380, "assets/thumb/ab-215-listbild.jpg",
		200, 150,
		"ab-215-1", "Lupina´s present",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "25",
		"Format;Download@", "pd-682993514.htm",
		"", 1,
		"10103", "0",
		 0)
	
		Entry[381] = new Element(
		381, "assets/thumb/ab-216-listbild.jpg",
		200, 150,
		"ab-216-1", "Sweet Gwendoline",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "25",
		"Format;Download@", "pd1135891997.htm",
		"", 1,
		"10103", "0",
		 0)
	
		Entry[382] = new Element(
		382, "assets/thumb/bf-011-listbild.jpg",
		200, 150,
		"bf-11-1", "Mirelle and Nelfa",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "61",
		"Format;Download@", "pd-1830541772.htm",
		"", 1,
		"4000-20", "0",
		 0)
	
		Entry[383] = new Element(
		383, "assets/thumb/bf-012-listbild.jpg",
		200, 112,
		"bf-12-1", "Alyonka and Eugenia",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "61",
		"Format;Download@", "pd1673754013.htm",
		"", 1,
		"4000-20", "0",
		 0)
	
		Entry[384] = new Element(
		384, "assets/thumb/bf-013-listbild.jpg",
		200, 112,
		"bf-13-1", "Melisa and Klara",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "61",
		"Format;Download@", "pd-686618446.htm",
		"", 1,
		"4000-20", "0",
		 0)
	
		Entry[385] = new Element(
		385, "assets/thumb/bg-52-listbild.jpg",
		200, 133,
		"bg-52-1", "Marion in Bondage (1)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "46",
		"Format;Download@", "pd1195835715.htm",
		"", 1,
		"1012-6", "0",
		 0)
	
		Entry[386] = new Element(
		386, "assets/thumb/bg-53-listbild.jpg",
		200, 133,
		"bg-53-1", "Die gezähmte Ballerina",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "46",
		"Format;Download@", "pd-1857485664.htm",
		"", 1,
		"1012-6", "0",
		 0)
	
		Entry[387] = new Element(
		387, "assets/thumb/tag-147-listbild.jpg",
		200, 153,
		"tag-147-1", "Carmel",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "78",
		"Format;Download@", "pd-1866505703.htm",
		"", 1,
		"8000-149", "0",
		 0)
	
		Entry[388] = new Element(
		388, "assets/thumb/ab-217-listbild.jpg",
		200, 150,
		"ab-217-1", "Tie me up please!",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "25",
		"Format;Download@", "pd1823618684.htm",
		"", 1,
		"10103", "0",
		 0)
	
		Entry[389] = new Element(
		389, "assets/thumb/ab-218-listbild.jpg",
		200, 150,
		"ab-218-1", "The cop and the rider girl",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "25",
		"Format;Download@", "pd-981835963.htm",
		"", 1,
		"10103", "0",
		 0)
	
		Entry[390] = new Element(
		390, "assets/thumb/ab-219-listbild.jpg",
		200, 150,
		"ab-219-1", "Lazy Daughter",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "25",
		"Format;Download@", "pd-300514246.htm",
		"", 1,
		"10103", "0",
		 0)
	
		Entry[391] = new Element(
		391, "assets/thumb/ab-220-listbild.jpg",
		200, 150,
		"ab-220-1", "Captured in raincoats (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "26",
		"Format;Download@", "pd562718827.htm",
		"", 1,
		"10104", "0",
		 0)
	
		Entry[392] = new Element(
		392, "assets/thumb/bg-54-listbild.jpg",
		200, 133,
		"bg-54-1", "Irina + Kristin in bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "46",
		"Format;Download@", "pd-122953591.htm",
		"", 1,
		"1012-6", "0",
		 0)
	
		Entry[393] = new Element(
		393, "assets/thumb/ht-01-listbild.jpg",
		200, 153,
		"ht-01-1", "Die Bewerbung",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "88",
		"Format;Download@", "pd-2058396265.htm",
		"", 1,
		"ht-01", "0",
		 0)
	
		Entry[394] = new Element(
		394, "assets/thumb/bg-27-listbild.jpg",
		200, 164,
		"bg-27-1", "Einbrecherin Miri festgesetzt",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "43",
		"Format;Download@", "pd1197051704.htm",
		"", 1,
		"1012-003", "0",
		 0)
	
		Entry[395] = new Element(
		395, "assets/thumb/bg-29-listbild.jpg",
		200, 164,
		"bg-29-1", "Funny und das Tortenproblem",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "43",
		"Format;Download@", "pd322103056.htm",
		"", 1,
		"1012-003", "0",
		 0)
	
		Entry[396] = new Element(
		396, "assets/thumb/ab-221-listbild.jpg",
		200, 150,
		"ab-221-1", "The Interview",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "26",
		"Format;Download@", "pd384677152.htm",
		"", 1,
		"10104", "0",
		 0)
	
		Entry[397] = new Element(
		397, "assets/thumb/ab-222-listbild.jpg",
		200, 150,
		"ab-222-1", "Tight Mittens (3)",
		"The Hood", "",
		"39", "0",
		"1", 1,
		"Stück", "26",
		"Format;Download@", "pd967751833.htm",
		"", 1,
		"10104", "0",
		 0)
	
		Entry[398] = new Element(
		398, "assets/thumb/bf-14-listbild.jpg",
		200, 112,
		"bf-14-1", "Floggind and Waxing",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "61",
		"Format;Download@", "pd1334131838.htm",
		"", 1,
		"4000-20", "0",
		 0)
	
		Entry[399] = new Element(
		399, "assets/thumb/bf-15-listbild.jpg",
		200, 150,
		"bf-15-1", "Olga &amp; Alyonka",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "61",
		"Format;Download@", "pd679569119.htm",
		"", 1,
		"4000-20", "0",
		 0)
	
		Entry[400] = new Element(
		400, "assets/thumb/hg-01-listbild.jpg",
		200, 160,
		"hg-01-1", "Patricia is mugged",
		"Helpless Girls Vol. 1", "",
		"39", "0",
		"1", 1,
		"Stück", "55",
		"Format;Download@", "pd-407178055.htm",
		"", 1,
		"hg-001-009", "0",
		 0)
	
		Entry[401] = new Element(
		401, "assets/thumb/hg-02-listbild.jpg",
		200, 150,
		"hg-02-1", "Margo",
		"Helpless Girls Vol. 2", "",
		"39", "0",
		"1", 1,
		"Stück", "55",
		"Format;Download@", "pd-982643134.htm",
		"", 1,
		"hg-001-009", "0",
		 0)
	
		Entry[402] = new Element(
		402, "assets/thumb/hg-03-listbild.jpg",
		200, 150,
		"hg-03-1", "Nastya",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "55",
		"Format;Download@", "pd652777086.htm",
		"", 1,
		"hg-001-009", "0",
		 0)
	
		Entry[403] = new Element(
		403, "assets/thumb/hg-04-listbild.jpg",
		200, 150,
		"hg-04-1", "Mona",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "55",
		"Format;Download@", "pd-168027573.htm",
		"", 1,
		"hg-001-009", "0",
		 0)
	
		Entry[404] = new Element(
		404, "assets/thumb/hg-05-listbild.jpg",
		200, 150,
		"hg-05-1", "Iris",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "55",
		"Format;Download@", "pd-1152301427.htm",
		"", 1,
		"hg-001-009", "0",
		 0)
	
		Entry[405] = new Element(
		405, "assets/thumb/hg-06-listbild.jpg",
		200, 150,
		"hg-06-1", "Margo",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "55",
		"Format;Download@", "pd2114750898.htm",
		"", 1,
		"hg-001-009", "0",
		 0)
	
		Entry[406] = new Element(
		406, "assets/thumb/hg-07-listbild.jpg",
		200, 150,
		"hg-07-1", "Jessica",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "55",
		"Format;Download@", "pd-1027009988.htm",
		"", 1,
		"hg-001-009", "0",
		 0)
	
		Entry[407] = new Element(
		407, "assets/thumb/hg-08-listbild.jpg",
		200, 150,
		"hg-08-1", "Bad Girl",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "55",
		"Format;Download@", "pd1194969062.htm",
		"", 1,
		"hg-001-009", "0",
		 0)
	
		Entry[408] = new Element(
		408, "assets/thumb/hg-09-listbild.jpg",
		200, 150,
		"hg-09-1", "Nastya",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "55",
		"Format;Download@", "pd-1611634393.htm",
		"", 1,
		"hg-001-009", "0",
		 0)
	
		Entry[409] = new Element(
		409, "assets/thumb/hg-010-listbild.jpg",
		200, 150,
		"hg-10-1", "Maryann",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "56",
		"Format;Download@", "pd647608754.htm",
		"", 1,
		"hg-010-019", "0",
		 0)
	
		Entry[410] = new Element(
		410, "assets/thumb/hg-011-listbild.jpg",
		200, 150,
		"hg-11-1", "Lilit",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "56",
		"Format;Download@", "pd779120136.htm",
		"", 1,
		"hg-010-019", "0",
		 0)
	
		Entry[411] = new Element(
		411, "assets/thumb/bg-55-listbild.jpg",
		200, 133,
		"bg-55-1", "Tamara + Sophia in Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "46",
		"Format;Download@", "pd2140188640.htm",
		"", 1,
		"1012-6", "0",
		 0)
	
		Entry[412] = new Element(
		412, "assets/thumb/ht-02-listbild.jpg",
		200, 153,
		"ht-02-1", "Sabrina in Bondage (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "88",
		"Format;Download@", "pd1130198353.htm",
		"", 1,
		"ht-01", "0",
		 0)
	
		Entry[413] = new Element(
		413, "assets/thumb/ab-223-listbild.jpg",
		200, 150,
		"ab-223-1", "Private Prison (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "26",
		"Format;Download@", "pd1199098239.htm",
		"", 1,
		"10104", "0",
		 0)
	
		Entry[414] = new Element(
		414, "assets/thumb/bg-56-listbild.jpg",
		200, 153,
		"bg-56-1", "Tamara + Sophia in Bondage (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "46",
		"Format;Download@", "pd-1426447811.htm",
		"", 1,
		"1012-6", "0",
		 0)
	
		Entry[415] = new Element(
		415, "assets/thumb/wol-04-listbild.jpg",
		200, 153,
		"wol-04-1", "Simone bound by Wolfi",
		"", "",
		"29", "0",
		"1", 1,
		"Stück", "39",
		"Format;Download@", "pd-595465171.htm",
		"", 1,
		"1011-1", "0",
		 0)
	
		Entry[416] = new Element(
		416, "assets/thumb/wol-05-listbild.jpg",
		200, 153,
		"wol-05-1", "Simone in Scarf Bondage",
		"", "",
		"14.95", "0",
		"1", 1,
		"Stück", "39",
		"Format;Download@", "pd620968869.htm",
		"", 1,
		"1011-1", "0",
		 0)
	
		Entry[417] = new Element(
		417, "assets/thumb/ab-224-listbild.jpg",
		200, 150,
		"ab-224-1", "The Experiment (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "26",
		"Format;Download@", "pd1201546167.htm",
		"", 1,
		"10104", "0",
		 0)
	
		Entry[418] = new Element(
		418, "assets/thumb/ab-225-listbild.jpg",
		200, 150,
		"ab-225-1", "Lilith - The Schoolgirl",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "26",
		"Format;Download@", "pd880795189.htm",
		"", 1,
		"10104", "0",
		 0)
	
		Entry[419] = new Element(
		419, "assets/thumb/bf-16-listbild.jpg",
		200, 112,
		"bf-16-1", "Delta",
		"Selfbondage &amp; Hogtied", "",
		"39", "0",
		"1", 1,
		"Stück", "61",
		"Format;Download@", "pd1791453802.htm",
		"", 1,
		"4000-20", "0",
		 0)
	
		Entry[420] = new Element(
		420, "assets/thumb/bf-17-listbild.jpg",
		200, 112,
		"bf-17-1", "Melisa in Bondage again",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "61",
		"Format;Download@", "pd-1904622974.htm",
		"", 1,
		"4000-20", "0",
		 0)
	
		Entry[421] = new Element(
		421, "assets/thumb/hg-12-listbild.jpg",
		200, 150,
		"hg-12-1", "Britney",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "56",
		"Format;Download@", "pd16717210.htm",
		"", 1,
		"hg-010-019", "0",
		 0)
	
		Entry[422] = new Element(
		422, "assets/thumb/hg-13-listbild.jpg",
		200, 150,
		"hg-13-1", "Marysabele",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "56",
		"Format;Download@", "pd-1156725838.htm",
		"", 1,
		"hg-010-019", "0",
		 0)
	
		Entry[423] = new Element(
		423, "assets/thumb/ab-226-listbild.jpg",
		200, 150,
		"ab-226-1", "Captured in Raincoats (3)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "26",
		"Format;Download@", "pd1117880659.htm",
		"", 1,
		"10104", "0",
		 0)
	
		Entry[424] = new Element(
		424, "assets/thumb/ab-227-listbild.jpg",
		200, 150,
		"ab-227-1", "Special Training",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "26",
		"Format;Download@", "pd-582151285.htm",
		"", 1,
		"10104", "0",
		 0)
	
		Entry[425] = new Element(
		425, "assets/thumb/ab-228-listbild.jpg",
		200, 150,
		"ab-228-1", "Hidden Desires",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "26",
		"Format;Download@", "pd-1600158525.htm",
		"", 1,
		"10104", "0",
		 0)
	
		Entry[426] = new Element(
		426, "assets/thumb/bf-18-listbild.jpg",
		200, 112,
		"bf-18-1", "Alyonka in Tight Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "61",
		"Format;Download@", "pd1203444793.htm",
		"", 1,
		"4000-20", "0",
		 0)
	
		Entry[427] = new Element(
		427, "assets/thumb/bg-57-listbild.jpg",
		200, 153,
		"bg-57-1", "Angel, die Schlafmütze",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "46",
		"Format;Download@", "pd-788895439.htm",
		"", 1,
		"1012-6", "0",
		 0)
	
		Entry[428] = new Element(
		428, "assets/thumb/hg-14-listbild.jpg",
		200, 150,
		"hg-14-1", "Jessica in Bondage (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "56",
		"Format;Download@", "pd-1835349983.htm",
		"", 1,
		"hg-010-019", "0",
		 0)
	
		Entry[429] = new Element(
		429, "assets/thumb/ht-03-listbild.jpg",
		200, 150,
		"ht-03-1", "Irina in bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "88",
		"Format;Download@", "pd-1499751911.htm",
		"", 1,
		"ht-01", "0",
		 0)
	
		Entry[430] = new Element(
		430, "assets/thumb/tag-152-listbild.jpg",
		200, 164,
		"tag-152-1", "Dale",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "79",
		"Format;Download@", "pd-1074412633.htm",
		"", 1,
		"8000-159", "0",
		 0)
	
		Entry[431] = new Element(
		431, "assets/thumb/tag-07-listbild.jpg",
		200, 150,
		"tag-7-1", "Anna",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "71",
		"Format;Download@", "pd-1408766396.htm",
		"", 1,
		"8000-009", "0",
		 0)
	
		Entry[432] = new Element(
		432, "assets/thumb/rc-15-listbild.jpg",
		200, 153,
		"rc-015-1", "Chaingang Girls",
		"", "",
		"39", "0.3",
		"1", 1,
		"Stück", "67",
		"Format;Download@", "pd1203776660.htm",
		"", 1,
		"7000-20", "0",
		 0)
	
		Entry[433] = new Element(
		433, "assets/thumb/saskia-007-listbild.jpg",
		200, 150,
		"sas-007", "Saskia and her snake",
		"", "",
		"9", "0",
		"1", 1,
		"Stück", "38",
		"", "pd1204969624.htm",
		"", 1,
		"1011", "0",
		 0)
	
		Entry[434] = new Element(
		434, "assets/thumb/ab-229-listbild.jpg",
		200, 150,
		"ab-229-1", "The Bridesmaid",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "26",
		"Format;Download@", "pd2076291334.htm",
		"", 1,
		"10104", "0",
		 0)
	
		Entry[435] = new Element(
		435, "assets/thumb/ab-230-listbild.jpg",
		200, 150,
		"ab-230-1", "I want to be your Fur-Slave-Girl",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "27",
		"Format;Download@", "pd-830297954.htm",
		"", 1,
		"10105", "0",
		 0)
	
		Entry[436] = new Element(
		436, "assets/thumb/ab-231-listbild.jpg",
		200, 150,
		"ab-231-1", "I love bags",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "27",
		"Format;Download@", "pd-1139170120.htm",
		"", 1,
		"10105", "0",
		 0)
	
		Entry[437] = new Element(
		437, "assets/thumb/hg-listbild.jpg",
		200, 150,
		"hg-15-1", "Natasha",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "56",
		"Format;Download@", "pd932785296.htm",
		"", 1,
		"hg-010-019", "0",
		 0)
	
		Entry[438] = new Element(
		438, "assets/thumb/bf-019-listbild.jpg",
		200, 112,
		"bf-19-1", "Helpless Olga",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "61",
		"Format;Download@", "pd330065768.htm",
		"", 1,
		"4000-20", "0",
		 0)
	
		Entry[439] = new Element(
		439, "assets/thumb/tag-23-listbild.jpg",
		200, 153,
		"tag-23-1", "Jennifer &amp; Robyn",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "72",
		"Format;Download@", "pd-1506233024.htm",
		"", 1,
		"8000-029", "0",
		 0)
	
		Entry[440] = new Element(
		440, "assets/thumb/ht-04-listbild.jpg",
		200, 153,
		"ht-04-1", "Irina in bondage (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "88",
		"Format;Download@", "pd-755936711.htm",
		"", 1,
		"ht-01", "0",
		 0)
	
		Entry[441] = new Element(
		441, "assets/thumb/bg-58-listbild.jpg",
		200, 153,
		"bg-58-1", "Topless Girls",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "46",
		"Format;Download@", "pd-1491615330.htm",
		"", 1,
		"1012-6", "0",
		 0)
	
		Entry[442] = new Element(
		442, "assets/thumb/ab-232-listbild.jpg",
		200, 150,
		"ab-232-1", "House of correction",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "27",
		"Format;Download@", "pd-853795845.htm",
		"", 1,
		"10105", "0",
		 0)
	
		Entry[443] = new Element(
		443, "assets/thumb/ab-233-listbild.jpg",
		200, 150,
		"ab-233-1", "E.A.W.",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "27",
		"Format;Download@", "pd728550195.htm",
		"", 1,
		"10105", "0",
		 0)
	
		Entry[444] = new Element(
		444, "assets/thumb/bf-020-listbild.jpg",
		200, 150,
		"bf-20-1", "Valentia",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "62",
		"Format;Download@", "pd-511051312.htm",
		"", 1,
		"4000-30", "0",
		 0)
	
		Entry[445] = new Element(
		445, "assets/thumb/bf-021-listbild.jpg",
		200, 150,
		"bf-21-1", "Alyonka flogged again",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "62",
		"Format;Download@", "pd-2007172727.htm",
		"", 1,
		"4000-30", "0",
		 0)
	
		Entry[446] = new Element(
		446, "assets/thumb/hg-16-listbild.jpg",
		200, 150,
		"hg-16-1", "Patricia",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "56",
		"Format;Download@", "pd1514373249.htm",
		"", 1,
		"hg-010-019", "0",
		 0)
	
		Entry[447] = new Element(
		447, "assets/thumb/hg-17-listbild.jpg",
		200, 150,
		"hg-17-1", "Britney captured at home",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "56",
		"Format;Download@", "pd-172802439.htm",
		"", 1,
		"hg-010-019", "0",
		 0)
	
		Entry[448] = new Element(
		448, "assets/thumb/ht-05-listbild.jpg",
		200, 153,
		"ht-05-1", "Irina in bondage (3)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "88",
		"Format;Download@", "pd1612059505.htm",
		"", 1,
		"ht-01", "0",
		 0)
	
		Entry[449] = new Element(
		449, "assets/thumb/bg-59-listbild.jpg",
		200, 153,
		"bg-59-1", "Die Schuldnerin",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "46",
		"Format;Download@", "pd2106808255.htm",
		"", 1,
		"1012-6", "0",
		 0)
	
		Entry[450] = new Element(
		450, "assets/thumb/bg-60-listbild.jpg",
		200, 153,
		"bg-60-1", "Die Schuldnerin (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "47",
		"Format;Download@", "pd913281911.htm",
		"", 1,
		"1012-60", "0",
		 0)
	
		Entry[451] = new Element(
		451, "assets/thumb/tag-08-listbild.jpg",
		200, 153,
		"tag-8-1", "Cindy",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "71",
		"Format;Download@", "pd-36583356.htm",
		"", 1,
		"8000-009", "0",
		 0)
	
		Entry[452] = new Element(
		452, "assets/thumb/tag-21-listbild.jpg",
		200, 153,
		"tag-21-1", "Alex",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "72",
		"Format;Download@", "pd-404751251.htm",
		"", 1,
		"8000-029", "0",
		 0)
	
		Entry[453] = new Element(
		453, "assets/thumb/sw-12-listbild.jpg",
		200, 153,
		"sw-12-1", "Ewa´s first spandex video",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "100",
		"Format;Download@", "pd-885550949.htm",
		"", 1,
		"vid-sw", "0",
		 0)
	
		Entry[454] = new Element(
		454, "assets/thumb/sw-13-listbild.jpg",
		200, 153,
		"sw-13-1", "Ewa´s second strike",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "100",
		"Format;Download@", "pd-1742901736.htm",
		"", 1,
		"vid-sw", "0",
		 0)
	
		Entry[455] = new Element(
		455, "assets/thumb/ab-234-listbild.jpg",
		200, 150,
		"ab-234-1", "Suffocation Games",
		"", "",
		"44", "0",
		"1", 1,
		"Stück", "27",
		"Format;Download@", "pd1208451333.htm",
		"", 1,
		"10105", "0",
		 0)
	
		Entry[456] = new Element(
		456, "assets/thumb/ab-235-listbild.jpg",
		200, 150,
		"ab-235-1", "Sleepy Girls",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "27",
		"Format;Download@", "pd-80796803.htm",
		"", 1,
		"10105", "0",
		 0)
	
		Entry[457] = new Element(
		457, "assets/thumb/bf-022-listbild.jpg",
		200, 150,
		"bf-22-1", "Daughter: Selfbondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "62",
		"Format;Download@", "pd1209137097.htm",
		"", 1,
		"4000-30", "0",
		 0)
	
		Entry[458] = new Element(
		458, "assets/thumb/bg-61-listbild.jpg",
		200, 153,
		"bg-61-1", "Sophia and Tamara: watergames",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "47",
		"Format;Download@", "pd-71072063.htm",
		"", 1,
		"1012-60", "0",
		 0)
	
		Entry[459] = new Element(
		459, "assets/thumb/ticket_001.jpg",
		200, 160,
		"ticket-001-1", "Metal Toys 1",
		"", "",
		"14.95", "0",
		"1", 1,
		"Stück", "95",
		"Ticket-Preis;Mitglieder@", "pd-143736294.htm",
		"", 1,
		"sm-clips", "0",
		 0)
	
		Entry[460] = new Element(
		460, "assets/thumb/ticket_002.jpg",
		200, 160,
		"ticket-002-1", "Metal Toys 2",
		"", "",
		"14.95", "0",
		"1", 1,
		"Stück", "95",
		"Ticket-Preis;Mitglieder@", "pd1623107733.htm",
		"", 1,
		"sm-clips", "0",
		 0)
	
		Entry[461] = new Element(
		461, "assets/thumb/ticket_003.jpg",
		200, 160,
		"ticket-003-1", "Metal Toys 3",
		"", "",
		"14.95", "0",
		"1", 1,
		"Stück", "95",
		"Ticket-Preis;Mitglieder@", "pd138359793.htm",
		"", 1,
		"sm-clips", "0",
		 0)
	
		Entry[462] = new Element(
		462, "assets/thumb/ticket_004.jpg",
		200, 160,
		"ticket-004-1", "Metal Toys 4",
		"", "",
		"14.95", "0",
		"1", 1,
		"Stück", "95",
		"Ticket-Preis;Mitglieder@", "pd-1482814195.htm",
		"", 1,
		"sm-clips", "0",
		 0)
	
		Entry[463] = new Element(
		463, "assets/thumb/ticket_005.jpg",
		200, 150,
		"ticket-005-1", "Hogtied",
		"", "",
		"14.95", "0",
		"1", 1,
		"Stück", "95",
		"Ticket-Preis;Mitglieder@", "pd-100036631.htm",
		"", 1,
		"sm-clips", "0",
		 0)
	
		Entry[464] = new Element(
		464, "assets/thumb/suspension.jpg",
		150, 200,
		"ticket-006", "Suspension",
		"", "",
		"14.95", "0",
		"1", 1,
		"Stück", "95",
		"Ticket-Preis;Mitglieder@", "pd1057420775.htm",
		"", 1,
		"sm-clips", "0",
		 0)
	
		Entry[465] = new Element(
		465, "assets/thumb/whip.jpg",
		200, 150,
		"ticket-007", "Whip",
		"", "",
		"9.95", "0",
		"1", 1,
		"Stück", "95",
		"Ticket-Preis;Mitglieder@", "pd-1052269751.htm",
		"", 1,
		"sm-clips", "0",
		 0)
	
		Entry[466] = new Element(
		466, "assets/thumb/smg-001-listbild.JPG",
		250, 188,
		"smg-001", "The Beginning",
		"First Experiences", "",
		"39", "0",
		"1", 1,
		"Stück", "97",
		"", "pd164448229.htm",
		"", 1,
		"smg 1-9", "0",
		 0)
	
		Entry[467] = new Element(
		467, "assets/thumb/smg-002-listbild.jpg",
		250, 200,
		"smg-002", "Whipped and more...",
		"Fire-Play", "",
		"39", "0",
		"1", 1,
		"Stück", "97",
		"", "pd278619291.htm",
		"", 1,
		"smg 1-9", "0",
		 0)
	
		Entry[468] = new Element(
		468, "assets/thumb/smg-003-listbild.jpg",
		250, 200,
		"smg-003", "Suspension, Metall",
		"Segufix", "",
		"39", "0",
		"1", 1,
		"Stück", "97",
		"", "pd1107791440.htm",
		"", 1,
		"smg 1-9", "0",
		 0)
	
		Entry[469] = new Element(
		469, "assets/thumb/smg-006-1-listbild.jpg",
		250, 200,
		"smg-006-1", "Ice-Torture and Wire",
		"- Download -", "",
		"29", "0",
		"1", 1,
		"Stück", "97",
		"", "pd-208511746.htm",
		"", 1,
		"smg 1-9", "0",
		 0)
	
		Entry[470] = new Element(
		470, "assets/thumb/smg-6-2-listbild.jpg",
		250, 200,
		"smg-006-2", "Elektro Torture",
		"- Download -", "",
		"29", "0",
		"1", 1,
		"Stück", "97",
		"", "pd2140164518.htm",
		"", 1,
		"smg 1-9", "0",
		 0)
	
		Entry[471] = new Element(
		471, "assets/thumb/smg-007-listbild.jpg",
		250, 200,
		"smg-007", "Wax, Whip, Water-Torture",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "97",
		"", "pd285524828.htm",
		"", 1,
		"smg 1-9", "0",
		 0)
	
		Entry[472] = new Element(
		472, "assets/thumb/smg-008-listbild.jpg",
		200, 160,
		"smg-008", "Violet Wand",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "97",
		"", "pd1144400707.htm",
		"", 1,
		"smg 1-9", "0",
		 0)
	
		Entry[473] = new Element(
		473, "assets/thumb/smg-009-listbild.jpg",
		200, 160,
		"smg-009", "Tortured Girls",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "97",
		"", "pd923508790.htm",
		"", 1,
		"smg 1-9", "0",
		 0)
	
		Entry[474] = new Element(
		474, "assets/thumb/smg-010-listbild.jpg",
		200, 160,
		"smg-010", "Heavy Metal",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "96",
		"", "pd-1980029823.htm",
		"", 1,
		"smg 10-19", "0",
		 0)
	
		Entry[475] = new Element(
		475, "assets/thumb/smg-015-listbild.jpg",
		250, 200,
		"smg-015", "Slave Girl",
		"Sklavin", "",
		"39", "0",
		"1", 1,
		"Stück", "96",
		"", "pd1117362570.htm",
		"", 1,
		"smg 10-19", "0",
		 0)
	
		Entry[476] = new Element(
		476, "assets/thumb/smg-016-listbild.jpg",
		200, 150,
		"smg-016", "Chasity Electro-Torture",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "96",
		"", "pd-1733451195.htm",
		"", 1,
		"smg 10-19", "0",
		 0)
	
		Entry[477] = new Element(
		477, "assets/thumb/tag-156-2-listbild.jpg",
		200, 154,
		"tag-156-2-1", "Jelo (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "79",
		"Format;Download@", "pd1209654042.htm",
		"", 1,
		"8000-159", "0",
		 0)
	
		Entry[478] = new Element(
		478, "assets/thumb/ds-001-listbild.jpg",
		200, 150,
		"ds-001-1", "The Sadists - Eva´s torture (1)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "48",
		"Format;Download@", "pd273641566.htm",
		"", 1,
		"103", "0",
		 0)
	
		Entry[479] = new Element(
		479, "assets/thumb/ab-236-listbild.jpg",
		200, 153,
		"ab-236-1", "Home Alone",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "27",
		"Format;Download@", "pd1211020008.htm",
		"", 1,
		"10105", "0",
		 0)
	
		Entry[480] = new Element(
		480, "assets/thumb/ab-237-listbild.jpg",
		200, 153,
		"ab-237-1", "The bad therapist",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "27",
		"Format;Download@", "pd-527044416.htm",
		"", 1,
		"10105", "0",
		 0)
	
		Entry[481] = new Element(
		481, "assets/thumb/smg-012-listbild.jpg",
		200, 153,
		"smg-012", "Steel and water torture",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "96",
		"", "pd-1110399661.htm",
		"", 1,
		"smg 10-19", "0",
		 0)
	
		Entry[482] = new Element(
		482, "assets/thumb/ab-238-listbild.jpg",
		200, 150,
		"ab-238-1", "Die Rabenmutter",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "27",
		"Format;Download@", "pd1211648476.htm",
		"", 1,
		"10105", "0",
		 0)
	
		Entry[483] = new Element(
		483, "assets/thumb/ab-239-listbild.jpg",
		200, 150,
		"ab-239-1", "Jackets, Boots and Barefoot",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "27",
		"Format;Download@", "pd692939316.htm",
		"", 1,
		"10105", "0",
		 0)
	
		Entry[484] = new Element(
		484, "assets/thumb/ds-002-listbild.jpg",
		200, 150,
		"ds-002-1", "The Sadists - Eva´s torture (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "48",
		"Format;Download@", "pd-1026830964.htm",
		"", 1,
		"103", "0",
		 0)
	
		Entry[485] = new Element(
		485, "assets/thumb/ab-240-listbild.jpg",
		200, 150,
		"ab-240-1", "Hot Girls - Cold Steel",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "28",
		"Format;Download@", "pd409537001.htm",
		"", 1,
		"10106", "0",
		 0)
	
		Entry[486] = new Element(
		486, "assets/thumb/ab-241-listbild.jpg",
		200, 150,
		"ab-241-1", "Kacys First Time",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "28",
		"Format;Download@", "pd345315726.htm",
		"", 1,
		"10106", "0",
		 0)
	
		Entry[487] = new Element(
		487, "assets/thumb/smg-013-listbild.jpg",
		200, 150,
		"smg-013", "Pain (1)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "96",
		"", "pd1343244838.htm",
		"", 1,
		"smg 10-19", "0",
		 0)
	
		Entry[488] = new Element(
		488, "assets/thumb/smg-026-listbild.jpg",
		200, 150,
		"smg-026", "Saskia - Nettle Torture",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "98",
		"", "pd849592074.htm",
		"", 1,
		"smg 20-29", "0",
		 0)
	
		Entry[489] = new Element(
		489, "assets/thumb/ab-242-listbild.jpg",
		200, 150,
		"ab-242-1", "Private Prison (3)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "28",
		"Format;Download@", "pd-1204730954.htm",
		"", 1,
		"10106", "0",
		 0)
	
		Entry[490] = new Element(
		490, "assets/thumb/bf-023-listbild.jpg",
		200, 150,
		"bf-23-1", "Mirelle &amp; Nelfa",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "62",
		"Format;Download@", "pd-1656251487.htm",
		"", 1,
		"4000-30", "0",
		 0)
	
		Entry[491] = new Element(
		491, "assets/thumb/ab-243-listbild.jpg",
		200, 150,
		"ab-243-1", "Katja´s Zofe",
		"(Katja´s Slave)", "",
		"39", "0",
		"1", 1,
		"Stück", "28",
		"Format;Download@", "pd1216380102.htm",
		"", 1,
		"10106", "0",
		 0)
	
		Entry[492] = new Element(
		492, "assets/thumb/gvz-2-listbild.jpg",
		200, 150,
		"gvz-02-1", "David´s Education",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "53",
		"Format;Download@", "pd-670978978.htm",
		"", 1,
		"11000-gvz", "0",
		 0)
	
		Entry[493] = new Element(
		493, "assets/thumb/smg-014-listbild.gif",
		250, 200,
		"smg-014", "Pain (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "96",
		"", "pd1217092267.htm",
		"", 1,
		"smg 10-19", "0",
		 0)
	
		Entry[494] = new Element(
		494, "assets/thumb/lnd-01-listbild.jpg",
		200, 112,
		"lnd-01", "Punished in Atelier Luzifer",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "89",
		"", "pd-485104793.htm",
		"", 1,
		"ldn-010", "0",
		 0)
	
		Entry[495] = new Element(
		495, "assets/thumb/ab-244-listbild.jpg",
		200, 150,
		"ab-244-1", "The red jacket",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "28",
		"Format;Download@", "pd1217774081.htm",
		"", 1,
		"10106", "0",
		 0)
	
		Entry[496] = new Element(
		496, "assets/thumb/ab-245-listbild.jpg",
		200, 150,
		"ab-245-1", "The gravel pit",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "28",
		"Format;Download@", "pd1384984569.htm",
		"", 1,
		"10106", "0",
		 0)
	
		Entry[497] = new Element(
		497, "assets/thumb/smg-035-listbild.jpg",
		200, 150,
		"smg-035-1", "Eva´s Suspension",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "99",
		"Format;Download@", "pd63525982.htm",
		"", 1,
		"smg 30-39", "0",
		 0)
	
		Entry[498] = new Element(
		498, "assets/thumb/smg-036-listbild.jpg",
		200, 150,
		"smg-036-1", "Eva´s pool torture",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "99",
		"Format;Download@", "pd-252629624.htm",
		"", 1,
		"smg 30-39", "0",
		 0)
	
		Entry[499] = new Element(
		499, "assets/thumb/ab-246-listbild.jpg",
		200, 150,
		"ab-246-1", "Lia captured at home",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "28",
		"Format;Download@", "pd1218828209.htm",
		"", 1,
		"10106", "0",
		 0)
	
		Entry[500] = new Element(
		500, "assets/thumb/ab-247-listbild.jpg",
		200, 150,
		"ab-247-1", "Neck &amp; Sleepy Fetish",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "28",
		"Format;Download@", "pd766626632.htm",
		"", 1,
		"10106", "0",
		 0)
	
		Entry[501] = new Element(
		501, "assets/thumb/ab-248-listbild.jpg",
		200, 150,
		"ab-248-1", "Asphyx Challenge",
		"", "",
		"44", "0",
		"1", 1,
		"Stück", "28",
		"Format;Download@", "pd-227097605.htm",
		"", 1,
		"10106", "0",
		 0)
	
		Entry[502] = new Element(
		502, "assets/thumb/lnd-002-listbild.jpg",
		200, 150,
		"lnd-02", "A slave as a present",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "89",
		"", "pd1220087197.htm",
		"", 1,
		"ldn-010", "0",
		 0)
	
		Entry[503] = new Element(
		503, "assets/thumb/bg-62-listbild.jpg",
		200, 150,
		"bg-62-1", "The blanket customer (1)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "47",
		"Format;Download@", "pd-262291278.htm",
		"", 1,
		"1012-60", "0",
		 0)
	
		Entry[504] = new Element(
		504, "assets/thumb/smg-037-listbild.jpg",
		200, 150,
		"smg-037-1", "Eva´s hard whipping",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "99",
		"Format;Download@", "pd356505614.htm",
		"", 1,
		"smg 30-39", "0",
		 0)
	
		Entry[505] = new Element(
		505, "assets/thumb/bf-024-listbild.jpg",
		200, 150,
		"bf-24-1", "Eugenia &amp; Delta",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "62",
		"Format;Download@", "pd1514110809.htm",
		"", 1,
		"4000-30", "0",
		 0)
	
		Entry[506] = new Element(
		506, "assets/thumb/hg-18-listbild.jpg",
		200, 150,
		"hg-18-1", "Kleo captured in the forest",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "56",
		"Format;Download@", "pd1045745745.htm",
		"", 1,
		"hg-010-019", "0",
		 0)
	
		Entry[507] = new Element(
		507, "assets/thumb/sb-02-listbild.jpg",
		200, 150,
		"sb-02-1", "Ewa - Tied Outdoor",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "57",
		"Format;Download@", "pd-656500663.htm",
		"", 1,
		"11000-sb", "0",
		 0)
	
		Entry[508] = new Element(
		508, "assets/thumb/tag-161-listbild.jpg",
		200, 150,
		"tag-161-1", "Heidi",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "80",
		"Format;Download@", "pd-1787276457.htm",
		"", 1,
		"8000-169", "0",
		 0)
	
		Entry[509] = new Element(
		509, "assets/thumb/ab-249-listbild.jpg",
		200, 150,
		"ab-249-1", "Rag Doll",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "28",
		"Format;Download@", "pd1223137774.htm",
		"", 1,
		"10106", "0",
		 0)
	
		Entry[510] = new Element(
		510, "assets/thumb/ab-250-listbild.jpg",
		200, 150,
		"ab-250-1", "The new pet",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "29",
		"Format;Download@", "pd531003791.htm",
		"", 1,
		"10107", "0",
		 0)
	
		Entry[511] = new Element(
		511, "assets/thumb/ab-251-listbild.jpg",
		200, 150,
		"ab-251-1", "Strappado",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "29",
		"Format;Download@", "pd1435937148.htm",
		"", 1,
		"10107", "0",
		 0)
	
		Entry[512] = new Element(
		512, "assets/thumb/ab-252-listbild.jpg",
		200, 150,
		"ab-252-1", "Asphyx Extreme",
		"", "",
		"44", "0",
		"1", 1,
		"Stück", "29",
		"Format;Download@", "pd-216539692.htm",
		"", 1,
		"10107", "0",
		 0)
	
		Entry[513] = new Element(
		513, "assets/thumb/ab-253-listbild.jpg",
		200, 150,
		"ab-253-1", "The Breakdown",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "29",
		"Format;Download@", "pd1224836842.htm",
		"", 1,
		"10107", "0",
		 0)
	
		Entry[514] = new Element(
		514, "assets/thumb/aus-01-listbild.jpg",
		200, 149,
		"aus-01-1", "Maria is captured",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "38",
		"Format;Download@", "pd-864071614.htm",
		"", 1,
		"1011", "0",
		 0)
	
		Entry[515] = new Element(
		515, "assets/thumb/ue-25-listbild.jpg",
		200, 150,
		"ue-epi-25-1", "Unhappy End - Video 25",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "101",
		"Format;Download@", "pd760392403.htm",
		"", 1,
		"11500", "0",
		 0)
	
		Entry[516] = new Element(
		516, "assets/thumb/ab-254-listbild.jpg",
		200, 150,
		"ab-254-1", "Strangled in Hypnose",
		"", "",
		"44", "0",
		"1", 1,
		"Stück", "29",
		"Format;Download@", "pd1225443466.htm",
		"", 1,
		"10107", "0",
		 0)
	
		Entry[517] = new Element(
		517, "assets/thumb/smg-038-listbild.jpg",
		200, 150,
		"smg-038-1", "Jassi, the housekeeper",
		"", "",
		"44", "0",
		"1", 1,
		"Stück", "99",
		"Format;Download@", "pd-1177975646.htm",
		"", 1,
		"smg 30-39", "0",
		 0)
	
		Entry[518] = new Element(
		518, "assets/thumb/bf-025-listbild.jpg",
		200, 163,
		"bf-25-1", "Mirelle &amp; Nelfa",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "62",
		"Format;Download@", "pd1226411904.htm",
		"", 1,
		"4000-30", "0",
		 0)
	
		Entry[519] = new Element(
		519, "assets/thumb/anja-1-listbild.jpg",
		200, 150,
		"anja-1-1", "Anja´s first Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "83",
		"Format;Download@", "pd1227689206.htm",
		"", 1,
		"Anja", "0",
		 0)
	
		Entry[520] = new Element(
		520, "assets/thumb/anja-2-listbild.jpg",
		200, 150,
		"anja-2-1", "The Prisoner, Raincoat Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "83",
		"Format;Download@", "pd1724568428.htm",
		"", 1,
		"Anja", "0",
		 0)
	
		Entry[521] = new Element(
		521, "assets/thumb/anja-3-listbild.jpg",
		200, 150,
		"anja-3-1", "Lycra, Fur and Chastity Belt",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "83",
		"Format;Download@", "pd1418589636.htm",
		"", 1,
		"Anja", "0",
		 0)
	
		Entry[522] = new Element(
		522, "assets/thumb/ab-256-listbild.jpg",
		200, 150,
		"ab-256-1", "Anja meets crazy Santa Claus",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "102,1,102,1,112,1,108,1,29,83",
		"Format;Download@", "pd1229167593.htm",
		"", 1,
		"12000,100011,12000,100011,13004-2,100011,13001-4,100011,10107,Anja", "0",
		 0)
	
		Entry[523] = new Element(
		523, "assets/thumb/ab-257-listbild.jpg",
		200, 150,
		"ab-257-1", "Anja  -Die Einbrecherin ",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "29",
		"Format;Download@", "pd1323261336.htm",
		"", 1,
		"10107", "0",
		 0)
	
		Entry[524] = new Element(
		524, "assets/thumb/ab-258-listbild.jpg",
		200, 150,
		"ab-258-1", "The Babysitter",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "29",
		"Format;Download@", "pd-1388813429.htm",
		"", 1,
		"10107", "0",
		 0)
	
		Entry[525] = new Element(
		525, "assets/thumb/ab-259-listbild.jpg",
		200, 150,
		"ab-259-1", "Sorority",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "29",
		"Format;Download@", "pd-1475308790.htm",
		"", 1,
		"10107", "0",
		 0)
	
		Entry[526] = new Element(
		526, "assets/thumb/ab-121-listbild.jpg",
		200, 160,
		"ab-121-1", "The Burglar",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "16",
		"Format;Download@", "pd1095055929.htm",
		"", 1,
		"10094", "0",
		 0)
	
		Entry[527] = new Element(
		527, "assets/thumb/ab-122-listbild.jpg",
		200, 160,
		"ab-122-1", "The Bondage Contest (1)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "16",
		"Format;Download@", "pd-730279466.htm",
		"", 1,
		"10094", "0",
		 0)
	
		Entry[528] = new Element(
		528, "assets/thumb/ab-123-listbild.jpg",
		200, 150,
		"ab-123-1", "Kallisti: Slave Girl (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "16",
		"Format;Download@", "pd1215258833.htm",
		"", 1,
		"10094", "0",
		 0)
	
		Entry[529] = new Element(
		529, "assets/thumb/ab-124-listbild.jpg",
		200, 160,
		"ab-124-1", "Punished for Stealing (1)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "16",
		"Format;Download@", "pd337486056.htm",
		"", 1,
		"10094", "0",
		 0)
	
		Entry[530] = new Element(
		530, "assets/thumb/ab-125-listbild.jpg",
		200, 160,
		"ab-125-1", "The Assault",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "16",
		"Format;Download@", "pd1098698721.htm",
		"", 1,
		"10094", "0",
		 0)
	
		Entry[531] = new Element(
		531, "assets/thumb/ab-126-listbild.jpg",
		200, 160,
		"ab-126-1", "Illegal Interrogtion",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "16",
		"Format;Download@", "pd947545028.htm",
		"", 1,
		"10094", "0",
		 0)
	
		Entry[532] = new Element(
		532, "assets/thumb/ab-127-listbild.jpg",
		200, 160,
		"ab-127-1", "Punished for Stealing (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "16",
		"Format;Download@", "pd1100516438.htm",
		"", 1,
		"10094", "0",
		 0)
	
		Entry[533] = new Element(
		533, "assets/thumb/ab-128-listbild.jpg",
		200, 160,
		"ab-128-1", "Entrance Examination",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "16",
		"Format;Download@", "pd-1858259747.htm",
		"", 1,
		"10094", "0",
		 0)
	
		Entry[534] = new Element(
		534, "assets/thumb/ab-130-listbild.jpg",
		200, 160,
		"ab-130-1", "Punished for Stealing (3)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "17",
		"Format;Download@", "pd1102324687.htm",
		"", 1,
		"10095", "0",
		 0)
	
		Entry[535] = new Element(
		535, "assets/thumb/ab-131-listbild.jpg",
		200, 160,
		"ab-131-1", "Santa Kallisti",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "17",
		"Format;Download@", "pd-1035813898.htm",
		"", 1,
		"10095", "0",
		 0)
	
		Entry[536] = new Element(
		536, "assets/thumb/ab-129-listbild.jpg",
		200, 160,
		"ab-129-1", "Revenge is sweet (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "16",
		"Format;Download@", "pd1577127795.htm",
		"", 1,
		"10094", "0",
		 0)
	
		Entry[537] = new Element(
		537, "assets/thumb/ab-132-listbild.jpg",
		200, 160,
		"ab-132-1", "Attack in the forest",
		"", "",
		"29", "0",
		"1", 1,
		"Stück", "17",
		"Format;Download@", "pd1103019632.htm",
		"", 1,
		"10095", "0",
		 0)
	
		Entry[538] = new Element(
		538, "assets/thumb/ue-epi-01-Listbild.jpg",
		200, 160,
		"ue-epi-01", "Unhappy End - Video 1",
		"Ein Mord aus Eifersucht", "",
		"39", "0",
		"1", 1,
		"Stück", "101",
		"Format;Download@", "pd-27775017.htm",
		"", 1,
		"11500", "0",
		 0)
	
		Entry[539] = new Element(
		539, "assets/thumb/ue-epi-02-Listbild.jpg",
		200, 160,
		"ue-epi-02", "Unhappy End - Video 2",
		"Du sollst nicht ehebrechen!", "",
		"39", "0",
		"1", 1,
		"Stück", "101",
		"Format;Download@", "pd-27519523.htm",
		"", 1,
		"11500", "0",
		 0)
	
		Entry[540] = new Element(
		540, "assets/thumb/ue-epi-03-listbild.jpg",
		200, 160,
		"ue-epi-03-1", "Unhappy End - Video 3",
		"Die Rivalin", "",
		"39", "0",
		"1", 1,
		"Stück", "101",
		"Format;Download@", "pd1831880121.htm",
		"", 1,
		"11500", "0",
		 0)
	
		Entry[541] = new Element(
		541, "assets/thumb/ab-133-listbild.jpg",
		200, 160,
		"ab-133-1", "Evil Sister - The Revenge",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "17",
		"Format;Download@", "pd860634900.htm",
		"", 1,
		"10095", "0",
		 0)
	
		Entry[542] = new Element(
		542, "assets/thumb/ab-134-listbild.jpg",
		200, 160,
		"ab-134-1", "The Bondage Contest (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "17",
		"Format;Download@", "pd603385144.htm",
		"", 1,
		"10095", "0",
		 0)
	
		Entry[543] = new Element(
		543, "assets/thumb/ue-epi-05-listbild.jpg",
		139, 200,
		"ue-epi-05-1", "Unhappy End - Video 5",
		"Die Schulfeindin", "",
		"39", "0",
		"1", 1,
		"Stück", "101",
		"Format;Download@", "pd1105030218.htm",
		"", 1,
		"11500", "0",
		 0)
	
		Entry[544] = new Element(
		544, "assets/thumb/ue-epi-08-Listbild.jpg",
		200, 160,
		"ue-epi-08", "Unhappy End - Video 8",
		"One way ticket ins Paradies", "",
		"39", "0",
		"1", 1,
		"Stück", "101",
		"Format;Download@", "pd1105795050.htm",
		"", 1,
		"11500", "0",
		 0)
	
		Entry[545] = new Element(
		545, "assets/thumb/ue-epi-09-listbild.jpg",
		139, 200,
		"ue-epi-09", "Unhappy End - Video 9",
		"Nachtschatten", "",
		"39", "0",
		"1", 1,
		"Stück", "101",
		"Format;Download@", "pd-1577058209.htm",
		"", 1,
		"11500", "0",
		 0)
	
		Entry[546] = new Element(
		546, "assets/thumb/ab-135-listbild.jpg",
		200, 160,
		"ab-135-1", "Photosession  live",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "17",
		"Format;Download@", "pd1106904251.htm",
		"", 1,
		"10095", "0",
		 0)
	
		Entry[547] = new Element(
		547, "assets/thumb/ab-136-listbild.jpg",
		200, 160,
		"ab-136-1", "We like bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "17",
		"Format;Download@", "pd-1266550481.htm",
		"", 1,
		"10095", "0",
		 0)
	
		Entry[548] = new Element(
		548, "assets/thumb/ue-epi-04-listbild.jpg",
		200, 164,
		"ue-epi-04-1", "Die Szenendiebin",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "101",
		"Format;Download@", "pd-1954461462.htm",
		"", 1,
		"11500", "0",
		 0)
	
		Entry[549] = new Element(
		549, "assets/thumb/ue-epi-06-listbild.jpg",
		200, 164,
		"ue-epi-06-1", "Unhappy End - Video 6",
		"The murderer with the cigarillo", "",
		"39", "0",
		"1", 1,
		"Stück", "101",
		"Format;Download@", "pd1853645105.htm",
		"", 1,
		"11500", "0",
		 0)
	
		Entry[550] = new Element(
		550, "assets/thumb/ue-epi-19-listbild.jpg",
		200, 164,
		"ue-epi-19-1", "Unhappy End - Video 19",
		"The witch - die Hexe", "",
		"39", "0",
		"1", 1,
		"Stück", "101",
		"Format;Download@", "pd318517642.htm",
		"", 1,
		"11500", "0",
		 0)
	
		Entry[551] = new Element(
		551, "assets/thumb/ab-137-listbild.jpg",
		200, 160,
		"ab-137-1", "Barefoot in the forest",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "17",
		"Format;Download@", "pd-938877386.htm",
		"", 1,
		"10095", "0",
		 0)
	
		Entry[552] = new Element(
		552, "assets/thumb/ab-138-listbild.jpg",
		200, 160,
		"ab-138-1", "The Trap",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "17",
		"Format;Download@", "pd1111400984.htm",
		"", 1,
		"10095", "0",
		 0)
	
		Entry[553] = new Element(
		553, "assets/thumb/ab-139-listbild.jpg",
		200, 160,
		"ab-139-1", "Nora´s Torture (1)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "17",
		"Format;Download@", "pd594647239.htm",
		"", 1,
		"10095", "0",
		 0)
	
		Entry[554] = new Element(
		554, "assets/thumb/ab-140-listbild.jpg",
		200, 160,
		"ab-140-1", "Feanora",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "18",
		"Format;Download@", "pd-1275544140.htm",
		"", 1,
		"10096", "0",
		 0)
	
		Entry[555] = new Element(
		555, "assets/thumb/ab-141-listbild.jpg",
		200, 160,
		"ab-141-1", "Foot Slave",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "18",
		"Format;Download@", "pd1115630819.htm",
		"", 1,
		"10096", "0",
		 0)
	
		Entry[556] = new Element(
		556, "assets/thumb/bg-listbild.jpg",
		200, 133,
		"mitglied-bg", "Become a member of www.bound-girls.com",
		"", "",
		"12", "0",
		"1", 1,
		"", "122",
		"", "pd1116762328.htm",
		"", 1,
		"16000", "0",
		 0)
	
		Entry[557] = new Element(
		557, "assets/thumb/ab-142-listbild.jpg",
		200, 160,
		"ab-142-1", "Trauma",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "18",
		"Format;Download@", "pd1116765795.htm",
		"", 1,
		"10096", "0",
		 0)
	
		Entry[558] = new Element(
		558, "assets/thumb/se-004-listbild.JPG",
		200, 150,
		"se-004-3", "cotton rope with core",
		"", "",
		"1.3", "0",
		"1", 1,
		"Meter", "109",
		"color;red@", "pd1117274163.htm",
		"", 1,
		"13003", "0",
		 0)
	
		Entry[559] = new Element(
		559, "assets/thumb/ab-151-listbild.jpg",
		200, 160,
		"ab-151-1", "Kidnapped (1)",
		"- in der Hand der Domina -", "",
		"39", "0",
		"1", 1,
		"Stück", "19",
		"Format;Download@", "pd1124550549.htm",
		"", 1,
		"10097", "0",
		 0)
	
		Entry[560] = new Element(
		560, "assets/thumb/ab-152-listbild.jpg",
		200, 160,
		"ab-152-1", "Kidnapped (2)",
		"- in der Hand der Domina -", "",
		"39", "0",
		"1", 1,
		"Stück", "19",
		"Format;Download@", "pd483216458.htm",
		"", 1,
		"10097", "0",
		 0)
	
		Entry[561] = new Element(
		561, "assets/thumb/ab-153-listbild.jpg",
		200, 160,
		"ab-153-1", "The Aptitude Test",
		"Der Eignungstest", "",
		"39", "0",
		"1", 1,
		"Stück", "19",
		"Format;Download@", "pd1125839125.htm",
		"", 1,
		"10097", "0",
		 0)
	
		Entry[562] = new Element(
		562, "assets/thumb/ab-154-listbild.jpg",
		200, 160,
		"ab-154-1", "Farmgirl",
		"Die Zofe", "",
		"39", "0",
		"1", 1,
		"Stück", "19",
		"Format;Download@", "pd1126886966.htm",
		"", 1,
		"10097", "0",
		 0)
	
		Entry[563] = new Element(
		563, "assets/thumb/ab-155-listbild.jpg",
		200, 160,
		"ab-155-1", "Wrapped and Shrinked",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "19",
		"Format;Download@", "pd1128350459.htm",
		"", 1,
		"10097", "0",
		 0)
	
		Entry[564] = new Element(
		564, "assets/thumb/ab-156-listbild.jpg",
		200, 160,
		"ab-156-1", "Holidays with Surprise",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "19",
		"Format;Download@", "pd1131818290.htm",
		"", 1,
		"10097", "0",
		 0)
	
		Entry[565] = new Element(
		565, "assets/thumb/ab-157-listbild.jpg",
		200, 160,
		"ab-157-1", "The Burglar (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "19",
		"Format;Download@", "pd1133700795.htm",
		"", 1,
		"10097", "0",
		 0)
	
		Entry[566] = new Element(
		566, "assets/thumb/ab-158-listbild.jpg",
		200, 160,
		"ab-158-1", "Tied in Leather and Boots",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "19",
		"Format;Download@", "pd-1639235846.htm",
		"", 1,
		"10097", "0",
		 0)
	
		Entry[567] = new Element(
		567, "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", "19",
		"Format;Download@", "pd-115576587.htm",
		"", 1,
		"10097", "0",
		 0)
	
		Entry[568] = new Element(
		568, "assets/thumb/bg-01-listbild.jpg",
		200, 164,
		"bg-01-1", "Silvana in Bondage (1)",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "41",
		"Format;Download@", "pd269762210.htm",
		"", 1,
		"1012-001", "0",
		 0)
	
		Entry[569] = new Element(
		569, "assets/thumb/bg-02-listbild.jpg",
		200, 164,
		"bg-02-1", "Silvana in Bondage (2)",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "41",
		"Format;Download@", "pd-588694920.htm",
		"", 1,
		"1012-001", "0",
		 0)
	
		Entry[570] = new Element(
		570, "assets/thumb/bg-03-listbild.jpg",
		200, 164,
		"bg-03-1", "Anna in Bondage (1)",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "41",
		"Format;Download@", "pd1127052966.htm",
		"", 1,
		"1012-001", "0",
		 0)
	
		Entry[571] = new Element(
		571, "assets/thumb/bg-04-listbild.jpg",
		200, 164,
		"bg-04-1", "Purgatori in Bondage",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "41",
		"Format;Download@", "pd1130694224.htm",
		"", 1,
		"1012-001", "0",
		 0)
	
		Entry[572] = new Element(
		572, "assets/thumb/bg-05-listbild.jpg",
		200, 164,
		"bg-05-1", "Jasmin in Bondage",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "41",
		"Format;Download@", "pd282001642.htm",
		"", 1,
		"1012-001", "0",
		 0)
	
		Entry[573] = new Element(
		573, "assets/thumb/bg-06-listbild.jpg",
		200, 164,
		"bg-06-1", "Sandra in Bondage",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "41",
		"Format;Download@", "pd1566346164.htm",
		"", 1,
		"1012-001", "0",
		 0)
	
		Entry[574] = new Element(
		574, "assets/thumb/bg-07-listbild.jpg",
		200, 164,
		"bg-07-1", "Sandra in Bondage (2)",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "41",
		"Format;Download@", "pd-163621312.htm",
		"", 1,
		"1012-001", "0",
		 0)
	
		Entry[575] = new Element(
		575, "assets/thumb/bg-08-listbild.jpg",
		200, 164,
		"bg-08-1", "Anna in Bondage (2)",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "41",
		"Format;Download@", "pd-274003622.htm",
		"", 1,
		"1012-001", "0",
		 0)
	
		Entry[576] = new Element(
		576, "assets/thumb/bg-09-listbild.jpg",
		200, 164,
		"bg-09-1", "Anna in Bondage (3)",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "41",
		"Format;Download@", "pd-792278876.htm",
		"", 1,
		"1012-001", "0",
		 0)
	
		Entry[577] = new Element(
		577, "assets/thumb/bg-10-listbild.jpg",
		200, 164,
		"bg-10-1", "Anna in Bondage (4)",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "42",
		"Format;Download@", "pd1048251380.htm",
		"", 1,
		"1012-002", "0",
		 0)
	
		Entry[578] = new Element(
		578, "assets/thumb/bg-11-listbild.jpg",
		200, 133,
		"bg-11-1", "Sabrina in Bondage (1)",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "42",
		"Format;Download@", "pd1135945156.htm",
		"", 1,
		"1012-002", "0",
		 0)
	
		Entry[579] = new Element(
		579, "assets/thumb/ab-160-listbild.jpg",
		200, 160,
		"ab-160-1", "Unexpected Return",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "20",
		"Format;Download@", "pd-136205395.htm",
		"", 1,
		"10098", "0",
		 0)
	
		Entry[580] = new Element(
		580, "assets/thumb/bg-12-listbild.jpg",
		200, 164,
		"bg-12-1", "Susi in Bondage (1)",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "42",
		"Format;Download@", "pd-548565074.htm",
		"", 1,
		"1012-002", "0",
		 0)
	
		Entry[581] = new Element(
		581, "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", "38",
		"Format;Download@", "pd1725521273.htm",
		"", 1,
		"1011", "0",
		 0)
	
		Entry[582] = new Element(
		582, "assets/thumb/bg-13-listbild.jpg",
		133, 200,
		"bg-13-1", "Sabrina in Steel",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "42",
		"Format;Download@", "pd1138367022.htm",
		"", 1,
		"1012-002", "0",
		 0)
	
		Entry[583] = new Element(
		583, "assets/thumb/ab-161-listbild.jpg",
		200, 160,
		"ab-161-1", "Straitjackets",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "20",
		"Format;Download@", "pd1139575248.htm",
		"", 1,
		"10098", "0",
		 0)
	
		Entry[584] = new Element(
		584, "assets/thumb/bg-14-listbild.jpg",
		133, 200,
		"bg-14-1", "Sabrina in Bondage (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "42",
		"Format;Download@", "pd-907653409.htm",
		"", 1,
		"1012-002", "0",
		 0)
	
		Entry[585] = new Element(
		585, "assets/thumb/bg-15-listbild.jpg",
		200, 164,
		"bg-15-1", "Susi + Sabrina",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "42",
		"Lieferform;Download@", "pd1140347876.htm",
		"", 1,
		"1012-002", "0",
		 0)
	
		Entry[586] = new Element(
		586, "assets/thumb/bg-16-listbild.jpg",
		200, 164,
		"bg-16-1", "Sabrina in Bondage (4)",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "42",
		"Format;Download@", "pd1142102078.htm",
		"", 1,
		"1012-002", "0",
		 0)
	
		Entry[587] = new Element(
		587, "assets/thumb/ab-162-listbild.jpg",
		200, 160,
		"ab-162-1", "The Disk",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "20",
		"Format;Download@", "pd1069768607.htm",
		"", 1,
		"10098", "0",
		 0)
	
		Entry[588] = new Element(
		588, "assets/thumb/ab-163-listbild.jpg",
		200, 160,
		"ab-163-1", "Hogtied !!!",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "20",
		"Format;Download@", "pd-725286189.htm",
		"", 1,
		"10098", "0",
		 0)
	
		Entry[589] = new Element(
		589, "assets/thumb/bg-17-listbild.jpg",
		133, 200,
		"bg-17-1", "Susi und die Mietschulden",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "42",
		"Format;Download@", "pd1142682733.htm",
		"", 1,
		"1012-002", "0",
		 0)
	
		Entry[590] = new Element(
		590, "assets/thumb/ab-260-listbild.jpg",
		200, 150,
		"ab-260-1", "Captured during a walk",
		"", "",
		"51", "0",
		"1", 1,
		"Stück", "30",
		"Format;Download@", "pd949848389.htm",
		"", 1,
		"10108", "0",
		 0)
	
		Entry[591] = new Element(
		591, "assets/thumb/ab-261-listbild.jpg",
		200, 150,
		"ab-261-1", "Biggi´s Dream",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "30",
		"Format;Download@", "pd-1730730438.htm",
		"", 1,
		"10108", "0",
		 0)
	
		Entry[592] = new Element(
		592, "assets/thumb/ab-262-listbild.jpg",
		200, 150,
		"ab-262-1", "Lia: The new Bondagegirl",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "30",
		"Format;Download@", "pd124290357.htm",
		"", 1,
		"10108", "0",
		 0)
	
		Entry[593] = new Element(
		593, "assets/thumb/ab-263-listbild.jpg",
		200, 150,
		"ab-263-1", "Dept Service",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "30",
		"Format;Download@", "pd-1299026980.htm",
		"", 1,
		"10108", "0",
		 0)
	
		Entry[594] = new Element(
		594, "assets/thumb/ab-264-listbild.jpg",
		200, 150,
		"ab-264-1", "Marlin: Slave-Chastity-Girl",
		"", "",
		"44", "0",
		"1", 1,
		"Stück", "30",
		"Format;Download@", "pd1019500511.htm",
		"", 1,
		"10108", "0",
		 0)
	
		Entry[595] = new Element(
		595, "assets/thumb/ab-265-listbild.jpg",
		200, 150,
		"ab-265-1", "Anja kidnapped for randsom",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "30",
		"Format;Download@", "pd-989726290.htm",
		"", 1,
		"10108", "0",
		 0)
	
		Entry[596] = new Element(
		596, "assets/thumb/ab-266-listbild.jpg",
		200, 150,
		"ab-266-1", "Leather Bound",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "30",
		"Format;Download@", "pd-1199575175.htm",
		"", 1,
		"10108", "0",
		 0)
	
		Entry[597] = new Element(
		597, "assets/thumb/ab-267-listbild.jpg",
		200, 150,
		"ab-267-1", "Fur Queen (2) ",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "30",
		"Format;Download@", "pd1232022576.htm",
		"", 1,
		"10108", "0",
		 0)
	
		Entry[598] = new Element(
		598, "assets/thumb/ab-269-listbild.jpg",
		200, 160,
		"ab-269-1", "Noseplay (4)",
		"with Anja und Lia", "",
		"39", "0",
		"1", 1,
		"Stück", "30",
		"Format;Download@", "pd1036930018.htm",
		"", 1,
		"10108", "0",
		 0)
	
		Entry[599] = new Element(
		599, "assets/thumb/ab-270-listbild.jpg",
		200, 150,
		"ab-270", "Anja raped &amp; hypnotized",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "31",
		"Format;Download@", "pd-1607351427.htm",
		"", 1,
		"10109", "0",
		 0)
	
		Entry[600] = new Element(
		600, "assets/thumb/ab-271-listbild.jpg",
		200, 150,
		"ab-271-1", "Training",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "31",
		"Format;Download@", "pd-1294291644.htm",
		"", 1,
		"10109", "0",
		 0)
	
		Entry[601] = new Element(
		601, "assets/thumb/ab-272-listbild.jpg",
		200, 150,
		"ab-272-1", "Far off slave",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "31",
		"Format;Download@", "pd-1680322329.htm",
		"", 1,
		"10109", "0",
		 0)
	
		Entry[602] = new Element(
		602, "assets/thumb/ab-273-listbild.jpg",
		200, 150,
		"ab-273", "Rent arreas",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "31",
		"Format;Download@", "pd-639250218.htm",
		"", 1,
		"10109", "0",
		 0)
	
		Entry[603] = new Element(
		603, "assets/thumb/ab-274-listbild.jpg",
		200, 150,
		"ab-274-1", "Revenge is sweet",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "31",
		"Format;Download@", "pd-160987839.htm",
		"", 1,
		"10109", "0",
		 0)
	
		Entry[604] = new Element(
		604, "assets/thumb/ab-275-listbild.jpg",
		200, 150,
		"ab-275", "House Rules Broken",
		"There must be punishment", "",
		"39", "0",
		"1", 1,
		"Stück", "31",
		"Format;Download@", "pd-861830376.htm",
		"", 1,
		"10109", "0",
		 0)
	
		Entry[605] = new Element(
		605, "assets/thumb/ab-276-listbild.jpg",
		200, 150,
		"ab-276-1", "Anja: grabbed at home",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "31",
		"Format;Download@", "pd1196097291.htm",
		"", 1,
		"10109", "0",
		 0)
	
		Entry[606] = new Element(
		606, "assets/thumb/ab-277-listbild.jpg",
		200, 150,
		"ab-277-1", "Pamela: First Time Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "31",
		"Format;Download@", "pd-1544749942.htm",
		"", 1,
		"10109", "0",
		 0)
	
		Entry[607] = new Element(
		607, "assets/thumb/ab-279-listbild.jpg",
		200, 150,
		"ab-279-1", "Biggi´s Hanging Torture",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "31",
		"Format;Download@", "pd752908485.htm",
		"", 1,
		"10109", "0",
		 0)
	
		Entry[608] = new Element(
		608, "assets/thumb/ab-280-listbild.jpg",
		200, 150,
		"ab-280-1", "Lia: Cruzified",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "32",
		"Format;Download@", "pd2069391599.htm",
		"", 1,
		"10110", "0",
		 0)
	
		Entry[609] = new Element(
		609, "assets/thumb/ab-281-listbild.jpg",
		200, 150,
		"ab-281-1", "The friend",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "32",
		"Format;Download@", "pd1649531228.htm",
		"", 1,
		"10110", "0",
		 0)
	
		Entry[610] = new Element(
		610, "assets/thumb/ab-282-listbild.jpg",
		200, 150,
		"ab-282-1", "Far off slave (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "32",
		"Format;Download@", "pd1133730655.htm",
		"", 1,
		"10110", "0",
		 0)
	
		Entry[611] = new Element(
		611, "assets/thumb/ab-283-listbild.jpg",
		200, 150,
		"ab-283-1", "The Jogger",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "32",
		"Format;Download@", "pd1996385070.htm",
		"", 1,
		"10110", "0",
		 0)
	
		Entry[612] = new Element(
		612, "assets/thumb/ab-284-listbild.jpg",
		200, 150,
		"ab-284-1", "Latexparty (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "32",
		"Format;Download@", "pd-2044918023.htm",
		"", 1,
		"10110", "0",
		 0)
	
		Entry[613] = new Element(
		613, "assets/thumb/ab-285-listbild.jpg",
		200, 150,
		"ab-285-1", "The spy in the gravel pit",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "32",
		"Format;Download@", "pd-909966928.htm",
		"", 1,
		"10110", "0",
		 0)
	
		Entry[614] = new Element(
		614, "assets/thumb/ab-286-listbild.jpg",
		200, 150,
		"ab-286-1", "Strangled Games (1)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "32",
		"Format;Download@", "pd636995075.htm",
		"", 1,
		"10110", "0",
		 0)
	
		Entry[615] = new Element(
		615, "assets/thumb/ab-287-listbild.jpg",
		200, 150,
		"ab-287-1", "Angel´s Casting (1)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "32",
		"Format;Download@", "pd-1254300318.htm",
		"", 1,
		"10110", "0",
		 0)
	
		Entry[616] = new Element(
		616, "assets/thumb/ab-288-listbild.jpg",
		200, 150,
		"ab-288-1", "The insurance agent",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "32",
		"Format;Download@", "pd-785669379.htm",
		"", 1,
		"10110", "0",
		 0)
	
		Entry[617] = new Element(
		617, "assets/thumb/ab-289-listbild.jpg",
		200, 150,
		"ab-289-1", "Lazy Daughter (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "32",
		"Format;Download@", "pd-24781166.htm",
		"", 1,
		"10110", "0",
		 0)
	
		Entry[618] = new Element(
		618, "assets/thumb/ab-290-listbild.jpg",
		200, 150,
		"ab-290-1", "Sabine´s Punishment (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "33",
		"Format;Download@", "pd-432872345.htm",
		"", 1,
		"10111", "0",
		 0)
	
		Entry[619] = new Element(
		619, "assets/thumb/ab-291-listbild.jpg",
		200, 150,
		"ab-291-1", "Special Therapy",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "33",
		"Format;Download@", "pd1323344119.htm",
		"", 1,
		"10111", "0",
		 0)
	
		Entry[620] = new Element(
		620, "assets/thumb/ab-292-listbild.jpg",
		200, 150,
		"ab-292-1", "The Photosession",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "33",
		"Format;Download@", "pd202954022.htm",
		"", 1,
		"10111", "0",
		 0)
	
		Entry[621] = new Element(
		621, "assets/thumb/ab-293-listbild.jpg",
		200, 150,
		"ab-293-1", "Attack against Lia and Anja",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "33",
		"Format;Download@", "pd425647825.htm",
		"", 1,
		"10111", "0",
		 0)
	
		Entry[622] = new Element(
		622, "assets/thumb/ab-294-listbild.jpg",
		200, 150,
		"ab-294-1", "Tied Feet (Lia &amp; Vanessa)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "33",
		"Format;Download@", "pd276600552.htm",
		"", 1,
		"10111", "0",
		 0)
	
		Entry[623] = new Element(
		623, "assets/thumb/ab-295-listbild.jpg",
		200, 150,
		"ab-295-1", "Pony-Time (Nora &amp; Jana)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "33",
		"Format;Download@", "pd466814491.htm",
		"", 1,
		"10111", "0",
		 0)
	
		Entry[624] = new Element(
		624, "assets/thumb/ab-296-listbild.jpg",
		200, 150,
		"ab-296-1", "Denise in Bondage &amp; Steel",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "33",
		"Format;Download@", "pd-2000858150.htm",
		"", 1,
		"10111", "0",
		 0)
	
		Entry[625] = new Element(
		625, "assets/thumb/ab-297-listbild.jpg",
		200, 150,
		"ab-297 -1", "Revenge on the Domina",
		"", "",
		"19.9", "0",
		"1", 1,
		"Stück", "33",
		"Format;Download@", "pd1064579413.htm",
		"", 1,
		"10111", "0",
		 0)
	
		Entry[626] = new Element(
		626, "assets/thumb/ab-298-listbild.jpg",
		200, 150,
		"ab-298-1", "Attack against Pamela",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "33",
		"Format;Download@", "pd1354150012.htm",
		"", 1,
		"10111", "0",
		 0)
	
		Entry[627] = new Element(
		627, "assets/thumb/ab-299-listbild.jpg",
		200, 150,
		"ab-299-1", "Revenge on the Domina (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "33",
		"Format;Download@", "pd1230845695.htm",
		"", 1,
		"10111", "0",
		 0)
	
		Entry[628] = new Element(
		628, "assets/thumb/smg-020-listbild.jpg",
		200, 150,
		"smg-020-1", "Pain for the girls",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "98",
		"Format;Download@", "pd1323428612.htm",
		"", 1,
		"smg 20-29", "0",
		 0)
	
		Entry[629] = new Element(
		629, "assets/thumb/smg-021-listbild.jpg",
		200, 150,
		"smg-021-1", "Bags, wax and whip",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "98",
		"Format;Download@", "pd-1708820388.htm",
		"", 1,
		"smg 20-29", "0",
		 0)
	
		Entry[630] = new Element(
		630, "assets/thumb/smg-022-listbild.jpg",
		200, 150,
		"smg-022-1", "Whip and stick",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "98",
		"Format;Download@", "pd-1135622903.htm",
		"", 1,
		"smg 20-29", "0",
		 0)
	
		Entry[631] = new Element(
		631, "assets/thumb/smg-031-listbild.jpg",
		200, 150,
		"smg-031-1", "Heavy Torture",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "99",
		"Format;Download@", "pd1554070529.htm",
		"", 1,
		"smg 30-39", "0",
		 0)
	
		Entry[632] = new Element(
		632, "assets/thumb/smg-032-listbild.jpg",
		200, 150,
		"smg-032-1", "Trained Girls: Jassi &amp; Kallisti",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "99",
		"Format;Download@", "pd-1001716520.htm",
		"", 1,
		"smg 30-39", "0",
		 0)
	
		Entry[633] = new Element(
		633, "assets/thumb/smg-039-listbild.jpg",
		200, 150,
		"smg-039-1", "Marlin: Frist Time SM",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "99",
		"Format;Download@", "pd1401046622.htm",
		"", 1,
		"smg 30-39", "0",
		 0)
	
		Entry[634] = new Element(
		634, "assets/thumb/smg-004-listbild.jpg",
		200, 160,
		"smg-004-1", "Tortured Kallisit",
		"", "",
		"51", "0",
		"1", 1,
		"Stück", "97",
		"Format;Download@", "pd308570857.htm",
		"", 1,
		"smg 1-9", "0",
		 0)
	
		Entry[635] = new Element(
		635, "assets/thumb/smg-005-listbild.jpg",
		200, 160,
		"smg-005-1", "Whipped, Ice, Wire",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "97",
		"Format;Download@", "pd-1597742203.htm",
		"", 1,
		"smg 1-9", "0",
		 0)
	
		Entry[636] = new Element(
		636, "assets/thumb/smg-017-listbild.jpg",
		200, 150,
		"smg-017-1", "Nora´s  Electro-Torture",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "96",
		"Format;Download@", "pd-461407497.htm",
		"", 1,
		"smg 10-19", "0",
		 0)
	
		Entry[637] = new Element(
		637, "assets/thumb/bf-26-listbild.jpg",
		200, 150,
		"bf-26-1", "Foxy &amp; Stark",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "62",
		"Format;Download@", "pd1006829683.htm",
		"", 1,
		"4000-30", "0",
		 0)
	
		Entry[638] = new Element(
		638, "assets/thumb/tf_001_listbild.jpg",
		200, 134,
		"tf-002, tf-003-1", "Tortured Feet 1 + 2",
		"", "",
		"59", "0.3",
		"1", 1,
		"Stück", "63",
		"Format;Download@", "pd1514533566.htm",
		"", 1,
		"4001", "0",
		 0)
	
		Entry[639] = new Element(
		639, "assets/thumb/tf-3-listbild.jpg",
		200, 150,
		"tf-003-1", "Biggi´s Bastonade",
		"", "",
		"49", "0.3",
		"1", 1,
		"Stück", "63",
		"Format;Download@", "pd1068668773.htm",
		"", 1,
		"4001", "0",
		 0)
	
		Entry[640] = new Element(
		640, "assets/thumb/el-06-listbild.jpg",
		200, 150,
		"el-06-1", "Kimberly",
		"", "",
		"19.9", "0",
		"1", 1,
		"Stück", "49",
		"Format;Download@", "pd-1678269748.htm",
		"", 1,
		"11000-el", "0",
		 0)
	
		Entry[641] = new Element(
		641, "assets/thumb/tag-165-listbild.jpg",
		200, 150,
		"tag-165-1", "Kidnapping of Jamie",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "80",
		"Format;Download@", "pd-475913856.htm",
		"", 1,
		"8000-169", "0",
		 0)
	
		Entry[642] = new Element(
		642, "assets/thumb/aus-02-listbild.jpg",
		200, 150,
		"aus-02-1", "Sabine is tied",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "38",
		"Format;Download@", "pd-1896479184.htm",
		"", 1,
		"1011", "0",
		 0)
	
		Entry[643] = new Element(
		643, "assets/thumb/aus-03-listbild.jpg",
		200, 150,
		"aus-03-1", "Meli is tied",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "38",
		"Format;Download@", "pd331781384.htm",
		"", 1,
		"1011", "0",
		 0)
	
		Entry[644] = new Element(
		644, "assets/thumb/gvz-03-listbild.jpg",
		200, 150,
		"gvz-03-1", "David´s Education (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "53",
		"Format;Download@", "pd664888507.htm",
		"", 1,
		"11000-gvz", "0",
		 0)
	
		Entry[645] = new Element(
		645, "assets/thumb/gvz-04-listbild.jpg",
		200, 150,
		"gvz-04-1", "Bizzares Dinner for one",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "53",
		"Format;Download@", "pd-1174213645.htm",
		"", 1,
		"11000-gvz", "0",
		 0)
	
		Entry[646] = new Element(
		646, "assets/thumb/ds-03-listbild.jpg",
		134, 200,
		"ds-003-1", "Extrem slave S",
		"", "",
		"46", "0",
		"1", 1,
		"Stück", "48",
		"Format;Download@", "pd-1792871893.htm",
		"", 1,
		"103", "0",
		 0)
	
		Entry[647] = new Element(
		647, "assets/thumb/tag-50-listbild.jpg",
		200, 150,
		"tag-50-1", "Kayleen",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "73",
		"Format;Download@", "pd1396298322.htm",
		"", 1,
		"8000-059", "0",
		 0)
	
		Entry[648] = new Element(
		648, "assets/thumb/tag-89-listbild.jpg",
		200, 150,
		"tag-89-1", "Lisa",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "70",
		"Format;Download@", "pd544288618.htm",
		"", 1,
		"8000-0089", "0",
		 0)
	
		Entry[649] = new Element(
		649, "assets/thumb/tag-177-listbild.jpg",
		200, 150,
		"tag-177-1", "Jax",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "81",
		"Format;Download@", "pd-1829262760.htm",
		"", 1,
		"8000-179", "0",
		 0)
	
		Entry[650] = new Element(
		650, "assets/thumb/nicky-001-listbild.jpg",
		200, 150,
		"nicky-001-1", "Breath Play",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "90",
		"Format;Download@", "pd-610144180.htm",
		"", 1,
		"Nicky-001", "0",
		 0)
	
		Entry[651] = new Element(
		651, "assets/thumb/nicky-002-listbild.jpg",
		200, 150,
		"nicky-002-1", "Asphyx Orgasm",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "90",
		"Format;Download@", "pd998182564.htm",
		"", 1,
		"Nicky-001", "0",
		 0)
	
		Entry[652] = new Element(
		652, "assets/thumb/nicky-003-listbild.jpg",
		200, 150,
		"nicky-003-1", "Caned to orgasm",
		"", "",
		"29", "0",
		"1", 1,
		"Stück", "90",
		"Format;Download@", "pd-608292921.htm",
		"", 1,
		"Nicky-001", "0",
		 0)
	
		Entry[653] = new Element(
		653, "assets/thumb/nicky-004-listbild.jpg",
		200, 150,
		"nicky-004-1", "The stalker",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "90",
		"Format;Download@", "pd437846838.htm",
		"", 1,
		"Nicky-001", "0",
		 0)
	
		Entry[654] = new Element(
		654, "assets/thumb/bws-01-listbild.jpg",
		200, 150,
		"bws-01-1", "Bondage Workshop Vol. 1",
		"", "",
		"29", "0",
		"1", 1,
		"Stück", "85",
		"Format;Download@", "pd-1351810644.htm",
		"", 1,
		"BWS-001", "0",
		 0)
	
		Entry[655] = new Element(
		655, "assets/thumb/rm-01-listbild.jpg",
		200, 112,
		"rm-01", "Art Series 1",
		"", "",
		"51", "0",
		"1", 1,
		"Stück", "92",
		"", "pd-724387551.htm",
		"", 1,
		"rm-001", "0",
		 0)
	
		Entry[656] = new Element(
		656, "assets/thumb/rm-02-listbild.jpg",
		200, 112,
		"rm-02", "A studie in red",
		"", "",
		"51", "0",
		"1", 1,
		"Stück", "92",
		"", "pd664423378.htm",
		"", 1,
		"rm-001", "0",
		 0)
	
		Entry[657] = new Element(
		657, "assets/thumb/ab-300-listbild.jpg",
		200, 150,
		"ab-300-1", "Marlin´s first bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "34",
		"Format;Download@", "pd2106195278.htm",
		"", 1,
		"10112", "0",
		 0)
	
		Entry[658] = new Element(
		658, "assets/thumb/ab-301-listbild.jpg",
		200, 150,
		"ab-301-1", "Girlfriends and Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "34",
		"Format;Download@", "pd-337360487.htm",
		"", 1,
		"10112", "0",
		 0)
	
		Entry[659] = new Element(
		659, "assets/thumb/ab-302-listbild.jpg",
		200, 150,
		"ab-302-1", "Three girlfriends in trouble",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "34",
		"Format;Download@", "pd1369200336.htm",
		"", 1,
		"10112", "0",
		 0)
	
		Entry[660] = new Element(
		660, "assets/thumb/ab-303-listbild.jpg",
		200, 150,
		"ab-302-1-1", "The reluctant home help",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "34",
		"Format;Download@", "pd1727633315.htm",
		"", 1,
		"10112", "0",
		 0)
	
		Entry[661] = new Element(
		661, "assets/thumb/ab-304-listbild.jpg",
		200, 150,
		"ab-304-1", "Attack at the Winterjacket-Store",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "34",
		"Format;Download@", "pd511165826.htm",
		"", 1,
		"10112", "0",
		 0)
	
		Entry[662] = new Element(
		662, "assets/thumb/ab-305-listbild.jpg",
		200, 150,
		"ab-305-1", "Two girls at the mercy of the intruder",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "34",
		"Format;Download@", "pd1807018909.htm",
		"", 1,
		"10112", "0",
		 0)
	
		Entry[663] = new Element(
		663, "assets/thumb/ab-306-listbild.jpg",
		200, 150,
		"ab-3061", "Noseplay with Janie and Anja",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "34",
		"Format;Download@", "pd995581412.htm",
		"", 1,
		"10112", "0",
		 0)
	
		Entry[664] = new Element(
		664, "assets/thumb/ab-307-listbild.jpg",
		200, 150,
		"ab-307-1", "Fur slave girl",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "34",
		"Format;Download@", "pd-1359328249.htm",
		"", 1,
		"10112", "0",
		 0)
	
		Entry[665] = new Element(
		665, "assets/thumb/ab-308-listbild.jpg",
		200, 150,
		"ab-308-1", "Nora &amp; Kallisti: Kidnapped",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "34",
		"Format;Download@", "pd-35233674.htm",
		"", 1,
		"10112", "0",
		 0)
	
		Entry[666] = new Element(
		666, "assets/thumb/ab-309-listbild.jpg",
		200, 150,
		"ab-309-1", "Suicide Girls",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "34",
		"Format;Download@", "pd1759353697.htm",
		"", 1,
		"10112", "0",
		 0)
	
		Entry[667] = new Element(
		667, "assets/thumb/ab-310-listbild.jpg",
		200, 150,
		"ab-310-1", "Bagged",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "35",
		"Format;Download@", "pd1803180472.htm",
		"", 1,
		"10113", "0",
		 0)
	
		Entry[668] = new Element(
		668, "assets/thumb/ab-310-listbild.jpg",
		200, 150,
		"ab-311-1", "Jealousy",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "35",
		"Format;Download@", "pd1512912939.htm",
		"", 1,
		"10113", "0",
		 0)
	
		Entry[669] = new Element(
		669, "assets/thumb/ab-312-listbild.jpg",
		200, 150,
		"ab-312-1", "Lupinas present",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "35",
		"Format;Download@", "pd1406157354.htm",
		"", 1,
		"10113", "0",
		 0)
	
		Entry[670] = new Element(
		670, "assets/thumb/ab-314-listbild.jpg",
		200, 150,
		"ab-314-1", "Janie is bagged",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "35",
		"Format;Download@", "pd1662295628.htm",
		"", 1,
		"10113", "0",
		 0)
	
		Entry[671] = new Element(
		671, "assets/thumb/ab-313-listbild.jpg",
		200, 150,
		"ab-313-1", "Janie: 4 Shortstories",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "35",
		"Format;Download@", "pd-951345947.htm",
		"", 1,
		"10113", "0",
		 0)
	
		Entry[672] = new Element(
		672, "assets/thumb/ab-316-listbild.jpg",
		200, 150,
		"ab-316-1", "Extreme Bondage",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "35",
		"Format;Download@", "pd-1480679778.htm",
		"", 1,
		"10113", "0",
		 0)
	
		Entry[673] = new Element(
		673, "assets/thumb/ab-315-listbild.jpg",
		200, 150,
		"ab-315-1", "Janie caught in the forest",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "35",
		"Format;Download@", "pd-1757413361.htm",
		"", 1,
		"10113", "0",
		 0)
	
		Entry[674] = new Element(
		674, "assets/thumb/ab-317-listbild.jpg",
		200, 150,
		"ab-317-1", "The Nanny",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "35",
		"Format;Download@", "pd-1369408897.htm",
		"", 1,
		"10113", "0",
		 0)
	
		Entry[675] = new Element(
		675, "assets/thumb/ab-318-listbild.jpg",
		200, 150,
		"ab-318-1", "Strangled",
		"", "",
		"44", "0",
		"1", 1,
		"Stück", "35",
		"Format;Download@", "pd1432071886.htm",
		"", 1,
		"10113", "0",
		 0)
	
		Entry[676] = new Element(
		676, "assets/thumb/ab-319-listbild.jpg",
		200, 150,
		"ab-319-1", "Janie caught at home",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "35",
		"Format;Download@", "pd1690018073.htm",
		"", 1,
		"10113", "0",
		 0)
	
		Entry[677] = new Element(
		677, "assets/thumb/ab-320-listbild.jpg",
		200, 150,
		"ab-320-1", "The window cleaner",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "36",
		"Format;Download@", "pd-1000117168.htm",
		"", 1,
		"10114", "0",
		 0)
	
		Entry[678] = new Element(
		678, "assets/thumb/ab-321-listbild.jpg",
		200, 150,
		"ab-321-1", "Attack on mother and daugther",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "36",
		"Format;Download@", "pd-118430941.htm",
		"", 1,
		"10114", "0",
		 0)
	
		Entry[679] = new Element(
		679, "assets/thumb/ab-322-listbild.jpg",
		200, 150,
		"ab-322-1", "Lia´s revenge",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "36",
		"Format;Download@", "pd-490234110.htm",
		"", 1,
		"10114", "0",
		 0)
	
		Entry[680] = new Element(
		680, "assets/thumb/ab-323-listbild.jpg",
		200, 150,
		"ab-323-1", "Ronja - captured at home",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "36",
		"Format;Download@", "pd-500888803.htm",
		"", 1,
		"10114", "0",
		 0)
	
		Entry[681] = new Element(
		681, "assets/thumb/ab-324-listbild.jpg",
		200, 150,
		"ab-324-1", "Ronja - Asphyx Challenge",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "36",
		"Format;Download@", "pd-733717660.htm",
		"", 1,
		"10114", "0",
		 0)
	
		Entry[682] = new Element(
		682, "assets/thumb/dia-01-listbild.jpg",
		200, 150,
		"ama-sm-01", "Die Probe",
		"", "",
		"51", "0",
		"1", 1,
		"Stück", "82",
		"", "pd839740367.htm",
		"", 1,
		"AMA-SM-001", "0",
		 0)
	
		Entry[683] = new Element(
		683, "assets/thumb/bb-2-listbild.jpg",
		200, 150,
		"bb-02-1", "Bound, Torture, Crucifixion",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "84",
		"Format;Download@", "pd-1984239266.htm",
		"", 1,
		"bb-001", "0",
		 0)
	
		Entry[684] = new Element(
		684, "assets/thumb/bb-4-listbild.jpg",
		200, 150,
		"bb-04-1", "Girls in Pain",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "84",
		"Format;Download@", "pd67934856.htm",
		"", 1,
		"bb-001", "0",
		 0)
	
		Entry[685] = new Element(
		685, "assets/thumb/hk-01-listbild.jpg",
		200, 150,
		"hk-01-1", "Bondagefantasies with Helena",
		"", "",
		"29", "0",
		"1", 1,
		"Stück", "87",
		"Format;Download@", "pd418966624.htm",
		"", 1,
		"HK-001", "0",
		 0)
	
		Entry[686] = new Element(
		686, "assets/thumb/hk-02-listbild.jpg",
		200, 150,
		"hk-02-1", "Tricked Photomodel",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "87",
		"Format;Download@", "pd-115068616.htm",
		"", 1,
		"HK-001", "0",
		 0)
	
		Entry[687] = new Element(
		687, "assets/thumb/hk-03-1-listbild.jpg",
		200, 150,
		"hk-03-1", "Curiosity is not always good",
		"", "",
		"19", "0",
		"1", 1,
		"Stück", "87",
		"Format;Download@", "pd-214905429.htm",
		"", 1,
		"HK-001", "0",
		 0)
	
		Entry[688] = new Element(
		688, "assets/thumb/hk-03-2-listbild.jpg",
		200, 150,
		"hk-03-2-1", "BondageOlympics",
		"", "",
		"29.9", "0",
		"1", 1,
		"Stück", "87",
		"Format;Download@", "pd-1013576278.htm",
		"", 1,
		"HK-001", "0",
		 0)
	
		Entry[689] = new Element(
		689, "assets/thumb/hk-04-listbild.jpg",
		200, 151,
		"hk-04-1", "Tricked Model Helena",
		"", "",
		"29.9", "0",
		"1", 1,
		"Stück", "87",
		"Format;Download@", "pd-2117863835.htm",
		"", 1,
		"HK-001", "0",
		 0)
	
		Entry[690] = new Element(
		690, "assets/thumb/hk-05-listbild.jpg",
		200, 149,
		"hk-05-1", "Julia alone in the office",
		"", "",
		"29", "0",
		"1", 1,
		"Stück", "87",
		"Format;Download@", "pd-168870452.htm",
		"", 1,
		"HK-001", "0",
		 0)
	
		Entry[691] = new Element(
		691, "assets/thumb/hk-06-listbild.jpg",
		200, 150,
		"hk-06-1", "Das verhinderte casting",
		"", "",
		"29", "0",
		"1", 1,
		"Stück", "87",
		"Format;Download@", "pd174161295.htm",
		"", 1,
		"HK-001", "0",
		 0)
	
		Entry[692] = new Element(
		692, "assets/thumb/hk-07-listbild.jpg",
		200, 151,
		"hk-07-1", "Die diebische Elster",
		"", "",
		"29", "0",
		"1", 1,
		"Stück", "87",
		"Format;Download@", "pd1802236446.htm",
		"", 1,
		"HK-001", "0",
		 0)
	
		Entry[693] = new Element(
		693, "assets/thumb/hk-08-listbild.jpg",
		200, 150,
		"hk-08-1", "Aus Spaß wird Ernst",
		"", "",
		"29", "0",
		"1", 1,
		"Stück", "87",
		"Format;Download@", "pd-1029710921.htm",
		"", 1,
		"HK-001", "0",
		 0)
	
		Entry[694] = new Element(
		694, "assets/thumb/dia-01-listbild.jpg",
		200, 150,
		"dia-01", "Katharina Vol. 1",
		"", "",
		"51", "0",
		"1", 1,
		"Stück", "86",
		"", "pd499510895.htm",
		"", 1,
		"dia-001", "0",
		 0)
	
		Entry[695] = new Element(
		695, "assets/thumb/re-001-listbild.jpg",
		143, 200,
		"re-001-1", "Damsesl in Distress Vol re-001",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "91",
		"Format;Download@", "pd399555203.htm",
		"", 1,
		"re-001", "0",
		 0)
	
		Entry[696] = new Element(
		696, "assets/thumb/ab-325-listbild.jpg",
		200, 150,
		"ab-325-1", "Special Holidays (Crucifixion)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "102,1,102,1,112,1,108,1,29,83,36,0",
		"Format;Download@", "pd-6648147.htm",
		"", 1,
		"12000,100011,12000,100011,13004-2,100011,13001-4,100011,10107,Anja,10114,1", "0",
		 0)
	
		Entry[697] = new Element(
		697, "assets/thumb/ab-326-listbild.jpg",
		200, 150,
		"ab-326-1", "Special Holidays (Electric Torture)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "102,1,102,1,112,1,108,1,29,83,36,0,36,0",
		"Format;Download@", "pd-1805205196.htm",
		"", 1,
		"12000,100011,12000,100011,13004-2,100011,13001-4,100011,10107,Anja,10114,1,10114,1", "0",
		 0)
	
		Entry[698] = new Element(
		698, "assets/thumb/ab-327-listbild.jpg",
		200, 150,
		"ab-327-1", "Special Holidays (Wire)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "102,1,102,1,112,1,108,1,29,83,36,0,36,0,36,0",
		"Format;Download@", "pd-744472425.htm",
		"", 1,
		"12000,100011,12000,100011,13004-2,100011,13001-4,100011,10107,Anja,10114,1,10114,1,10114,1", "0",
		 0)
	
		Entry[699] = new Element(
		699, "assets/thumb/ab-328-listbild.jpg",
		200, 150,
		"ab-328-1", "Special Holidays (drowning)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "102,1,102,1,112,1,108,1,29,83,36,0,36,0,36,0,36,0",
		"Format;Download@", "pd1082014534.htm",
		"", 1,
		"12000,100011,12000,100011,13004-2,100011,13001-4,100011,10107,Anja,10114,1,10114,1,10114,1,10114,1", "0",
		 0)
	
		Entry[700] = new Element(
		700, "assets/thumb/fd-01-listbild.jpg",
		200, 164,
		"fd-01-1", "Under her Feet",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "51",
		"Format;Download@", "pd-1757428200.htm",
		"", 1,
		"fd-1", "0",
		 0)
	
		Entry[701] = new Element(
		701, "assets/thumb/fd-02-listbild.jpg",
		200, 164,
		"fd-02-1", "Under her Feet (2)",
		"", "",
		"22.75", "0",
		"1", 1,
		"Stück", "51",
		"Format;Download@", "pd-1865552986.htm",
		"", 1,
		"fd-1", "0",
		 0)
	
		Entry[702] = new Element(
		702, "assets/thumb/fd-03-listbild.jpg",
		200, 164,
		"fd-03-1", "Asphyxiation",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "51",
		"Format;Download@", "pd1174908820.htm",
		"", 1,
		"fd-1", "0",
		 0)
	
		Entry[703] = new Element(
		703, "assets/thumb/fd-04-listbild.jpg",
		200, 154,
		"fd-04-1", "The Trainee",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "51",
		"Format;Download@", "pd1677172460.htm",
		"", 1,
		"fd-1", "0",
		 0)
	
		Entry[704] = new Element(
		704, "assets/thumb/fd-05-listbild.jpg",
		200, 153,
		"fd-05-1", "Nylon Freaks",
		"", "",
		"19.95", "0",
		"1", 1,
		"Stück", "51",
		"Format;Download@", "pd497549103.htm",
		"", 1,
		"fd-1", "0",
		 0)
	
		Entry[705] = new Element(
		705, "assets/thumb/fd-06-listbild.jpg",
		200, 153,
		"fd-06-1", "Domina by chance",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "51",
		"Format;Download@", "pd331252825.htm",
		"", 1,
		"fd-1", "0",
		 0)
	
		Entry[706] = new Element(
		706, "assets/thumb/FD-07-listbild.jpg",
		200, 153,
		"fd-07-1", "Nylon Games with Peggy",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "51",
		"Format;Download@", "pd-190479435.htm",
		"", 1,
		"fd-1", "0",
		 0)
	
		Entry[707] = new Element(
		707, "assets/thumb/fd-08-listbild.jpg",
		200, 150,
		"fd-08-1", "Heikes Jackets",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "51",
		"Format;Download@", "pd446278953.htm",
		"", 1,
		"fd-1", "0",
		 0)
	
		Entry[708] = new Element(
		708, "assets/thumb/fd-09-listbild.jpg",
		200, 150,
		"fd-09-1", "Nylon Games",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "51",
		"Format;Download@", "pd618955027.htm",
		"", 1,
		"fd-1", "0",
		 0)
	
		Entry[709] = new Element(
		709, "assets/thumb/fd-11-listbild.jpg",
		300, 225,
		"fd-11-1", "Mistress Nicole",
		"", "",
		"29", "0",
		"1", 1,
		"Stück", "52",
		"Format;Download@", "pd1895282319.htm",
		"", 1,
		"fd-2", "0",
		 0)
	
		Entry[710] = new Element(
		710, "assets/thumb/fd-12-listbild.jpg",
		200, 150,
		"fd-12-1", "Caught",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "52",
		"Format;Download@", "pd457723678.htm",
		"", 1,
		"fd-2", "0",
		 0)
	
		Entry[711] = new Element(
		711, "assets/thumb/fd-13-listbild.jpg",
		200, 150,
		"fd-13-1", "The nasty employer",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "52",
		"Format;Download@", "pd2092828329.htm",
		"", 1,
		"fd-2", "0",
		 0)
	
		Entry[712] = new Element(
		712, "assets/thumb/fd-14-listbild.jpg",
		200, 150,
		"fd-14-1", "Lia´s new pet",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "52",
		"Format;Download@", "pd625785888.htm",
		"", 1,
		"fd-2", "0",
		 0)
	
		Entry[713] = new Element(
		713, "assets/thumb/fd-15-listbild.jpg",
		200, 150,
		"fd-15-1", "Pain-Therapy",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "52",
		"Format;Download@", "pd145954355.htm",
		"", 1,
		"fd-2", "0",
		 0)
	
		Entry[714] = new Element(
		714, "assets/thumb/ab-278-listbild.jpg",
		200, 150,
		"ab-278-1", "The nwe pet (2)",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "31",
		"Format;Download@", "pd317145640.htm",
		"", 1,
		"10109", "0",
		 0)
	
		Entry[715] = new Element(
		715, "assets/thumb/ab-329-listbild.jpg",
		200, 150,
		"ab-329-1", "Lia´s Asphyx Challenge",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "102,1,102,1,112,1,108,1,29,83,36,0,36,0,36,0,36,0,36,0",
		"Format;Download@", "pd1327137127.htm",
		"", 1,
		"12000,100011,12000,100011,13004-2,100011,13001-4,100011,10107,Anja,10114,1,10114,1,10114,1,10114,1,10114,1", "0",
		 0)
	
		Entry[716] = new Element(
		716, "assets/thumb/ab-330-listbild.jpg",
		200, 150,
		"ab-330-1", "Ronja´s punishment",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "102,1,102,1,112,1,108,1,29,83,36,0,36,0,36,0,36,0,36,0,36,0",
		"Format;Download@", "pd1654690164.htm",
		"", 1,
		"12000,100011,12000,100011,13004-2,100011,13001-4,100011,10107,Anja,10114,1,10114,1,10114,1,10114,1,10114,1,10114,1", "0",
		 0)
	
		Entry[717] = new Element(
		717, "assets/thumb/ab-331-listbild.jpg",
		200, 150,
		"ab-331-1", "Biggie: Traning a ponygirl",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "102,1,102,1,112,1,108,1,29,83,36,0,36,0,36,0,36,0,36,0,36,0,36,0",
		"Format;Download@", "pd1174086103.htm",
		"", 1,
		"12000,100011,12000,100011,13004-2,100011,13001-4,100011,10107,Anja,10114,1,10114,1,10114,1,10114,1,10114,1,10114,1,10114,1", "0",
		 0)
	
		Entry[718] = new Element(
		718, "assets/thumb/ab-332-listbild.jpg",
		200, 150,
		"ab-332-1", "Bondage School (1) ",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "102,1,102,1,112,1,108,1,29,83,36,0,36,0,36,0,36,0,36,0,36,0,36,0,36,0",
		"Format;Download@", "pd-930500218.htm",
		"", 1,
		"12000,100011,12000,100011,13004-2,100011,13001-4,100011,10107,Anja,10114,1,10114,1,10114,1,10114,1,10114,1,10114,1,10114,1,10114,1", "0",
		 0)
	
		Entry[719] = new Element(
		719, "assets/thumb/ab-333-listbild.jpg",
		200, 150,
		"ab-333-1", "Bondage School (2) ",
		"", "",
		"39", "0",
		"1", 1,
		"Stück", "102,1,102,1,112,1,108,1,29,83,36,0,36,0,36,0,36,0,36,0,36,0,36,0,36,0,36,0",
		"Format;Download@", "pd-2127633231.htm",
		"", 1,
		"12000,100011,12000,100011,13004-2,100011,13001-4,100011,10107,Anja,10114,1,10114,1,10114,1,10114,1,10114,1,10114,1,10114,1,10114,1,10114,1", "0",
		 0)
	
// ** 1109
	function SetupSearchEngineForm(){
		mySearchEngine = xmlConfig.getFirstItem("SearchEngine");
		if(mySearchEngine.term!="null") document.SearchEngine.Term.value = mySearchEngine.term;
		for(var i=0;i<document.SearchEngine.Mode.length;i++){
			if(i==mySearchEngine.mode) document.SearchEngine.Mode[i].selected = true;
			};
		if(mySearchEngine.maxPrice>0) document.SearchEngine.Maxprice.value = mySearchEngine.maxPrice;
		else{
			document.SearchEngine.Maxprice.value="";
			mySearchEngine.maxPrice = -1;
			};
		if(xmlConfig.getFirstItem("SearchEngine").ByCategory=="1"){
			for(var i=0;i<document.SearchEngine.navselect.length; i++){
				if(document.SearchEngine.navselect[i].value.split(';;')[2]==mySearchEngine.categoryId){
					xmlConfig.getFirstItem("SearchEngine").categoryIndex = document.SearchEngine.navselect[i].value.split(';;')[0];
					document.SearchEngine.navselect[i].selected = true;
					};
				};
			}
		else{
			xmlConfig.getFirstItem("SearchEngine").categoryIndex = "null";
			};
		};
// enable smartstore to display amount of found products ...
	var counter = 0;
// ** 1111b
	function SearchFor(Term,Mode){
	var foundItems = new Array();
	var itemPrice = 0; var currentCategory = 0;
		mySearchEngine = xmlConfig.getFirstItem("SearchEngine");
		if((Term!="null" && Term!="")||mySearchEngine.maxPrice>=0){
			if(Mode=="") Mode=0;
			Term = Term.toLowerCase();
			var result = "<form name=\"ProductIndex\" onSubmit=\"return false;\">";
			var matchCategory = true;
			var productCategory;
			for(var i=0;i<Entry.length;i++){
				if(xmlConfig.getFirstItem("SearchEngine").ByCategory=="1"){
					// Search for matching categories
					if(xmlConfig.getFirstItem("SearchEngine").categoryIndex!="null"&&xmlConfig.getFirstItem("SearchEngine").categoryIndex!="nada"){
						for(var j=0; j<Entry[i].Category.split(",").length; j++){
							matchCategory = (navigation[mySearchEngine.categoryIndex].categoryId == Entry[i].Category.split(",")[j]) ? true : false;
							if(matchCategory!=true){
								productCategory = getNavElementByCatID(Entry[i].Category.split(",")[j]);
								while(productCategory!=null&&matchCategory==false){
									if(productCategory.parentId!=null){
										if(navigation[productCategory.parentId].categoryId==xmlConfig.getFirstItem("SearchEngine").categoryId){
											currentCategory = Entry[i].Category.split(",")[j];
											matchCategory=true;
											break;
											}
										else productCategory = navigation[productCategory.parentId];
										}
									else{
										currentCategory = Entry[i].Category.split(",")[j];
										productCategory = null;
										};
									};
								}
							else{
								currentCategory = Entry[i].Category.split(",")[j];
								break;
								};
							};
						}
					else{
						currentCategory = Entry[i].Category.split(",")[0];
						matchCategory = true;
						};
					}
				else{
					currentCategory = Entry[i].Category.split(",")[0];
					matchCategory = true;
					};
				// Update current Category
				Entry[i].NavIndex = getNavElementByCatID(currentCategory).id;
				// Continue
				var foundDesc1 = Entry[i].Title.toLowerCase().indexOf(Term)!=-1;
				var foundDesc2 = Entry[i].Subtitle.toLowerCase().indexOf(Term)!=-1;
				var foundProdId = Entry[i].Prod_nr.toLowerCase().indexOf(Term)!=-1;
				var foundManufac = Entry[i].Manufac.toLowerCase().indexOf(Term)!=-1;
				// SearchFor All
				itemPrice = Entry[i].Price
				if(Entry[i].catDiscount!=0&&Entry[i].Discount==""){
					itemPrice = Entry[i].Price * (1 - Entry[i].catDiscount / 100 );
					};
				//
				itemPrice = displPrice(itemPrice, Entry[i].Tax);
				//
				if(Mode==0){
					if((foundDesc1 || foundDesc2 || foundProdId || foundManufac || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				// SearchFor Description
				if(Mode==1){
					if((foundDesc1 || foundDesc2 || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				// SearchFor ProdId
				if(Mode==2){
					if((foundProdId || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				// SearchFor Manufac
				if(Mode==3){
					if((foundManufac || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				};
			// found elements: foundItems.length
			for(var i=0; i<foundItems.length;i++){
				result += foundItems[i].Print();
				};
			result += "</form>";
			if(counter>0){
				mySearchEngine.init="false";
				return result;
				}
			else{
				if(mySearchEngine.init=="false")	return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap>Sorry, no matching product was found. Please try again...</TD></TR>"
				else return("");
				};
			};
		if(mySearchEngine.init=="false") return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap>You did not enter any search criteria. Please enter your search term.</TD></TR>"
		else return("");
		};
// ** 11112
	function chkMaxprice(aPrice,aMaxPrice){
		aMaxPrice = replace(aMaxPrice.toString(),",",".");
		aPrice = calculateCurrencyAmount(aPrice, objPriCurrency);
		if(parseFloat(aMaxPrice)>0){
			if(parseFloat(aPrice)<=parseFloat(aMaxPrice)) return(true)
			else return(false);
			}
		else return(true);
		};
// ** 1111b
	function displPrice(aPrice,aTaxindex){
		var taxamount = taxarea[xmlConfig.taxarea][parseInt(aTaxindex) + 1];
		if(boolDisplTaxIncl){
			if(boolPriceTaxIncl) return(aPrice)
			else return(aPrice * ( 1 + taxamount/100 ) );
			}
		else{
			if(boolPriceTaxIncl) return(aPrice * ( 1 - taxamount/( 100 + taxamount ) ) )
			else return(aPrice);
			};
		};
// ** 1113
	function callpage(address, defValues, NavIndex){
		xmlConfig.getFirstItem("QueryStringData").putValue(defValues);
		xmlConfig.navIndex = NavIndex.toString();
		safeData();
		location.href = address;
		};
// ** 1114
	function newSearch(){
	var queryString = ""; var site = "";
	var xmlSearchEngine = xmlConfig.getFirstItem("SearchEngine");
		xmlSearchEngine.init='false';
		safeData();
		queryString += "mode=" + xmlSearchEngine.mode
			+ "&term=" + escape(xmlSearchEngine.term)
			+ "&maxPrice=" + escape(xmlSearchEngine.maxPrice)
			+ "&categoryId=" + escape(xmlSearchEngine.categoryIndex);
		if(location.href.indexOf("?")==-1) location.href = "search.htm?" + queryString
		else location.href = location.href.substring(0, location.href.indexOf("?")) + "?" + queryString;
		};
// ** 1115
	function searchOnEnter(){
		if(window.event.keyCode==13){
			xmlConfig.getFirstItem('SearchEngine').maxPrice=valNumber(document.SearchEngine.Maxprice.value,'0','');
			xmlConfig.getFirstItem('SearchEngine').term=document.SearchEngine.Term.value;
			newSearch();
			};
		};
