//
function miniCart(){
var prdCount = 0, prdString = "", subTotal = (xmlConfig.cartSubTotal > 0)?xmlConfig.cartSubTotal:0;
	if(xmlOHeader.childNodes.length==0) subTotal = 0;
	for(var i=0;i<xmlOHeader.childNodes.length;i++){
		prdCount = prdCount+(parseInt(xmlOHeader.childNodes[i].QuantityAmount));
		};
	prdString += "Artikel auf Merkzettel:<strong>&nbsp;" + prdCount + "</strong><br>";
	prdString += "Zwischensumme:<strong>&nbsp;" + TFormatCurrency(subTotal, objPriCurrency) + "</strong><br><br>";
	prdString += "<a class=\"WAGRUNAV\" href=\"orderform." + xmlConfig.fileExtension + "\">";
	prdString += "<strong>" + '<img src="assets/images/bullet.gif" width="11" height="14" alt="Korsett Schuhe Nylons" border="0" align="absmiddle" hspace="0" vspace="0" class="catnav">' + "Zum Warenkorb</strong></a>";
	return(prdString);
	};
//
var TNavDropDownIndent = ".."
//
function NavLinkedDropDownList(){
	return(TNavDropDownList(true));
	};
//
function NavDropDownList(){
	return(TNavDropDownList(false));
	};
//
function storeSearchParameters(optionValueArray){
var xmlSearchEngine = xmlConfig.getFirstItem("SearchEngine");
	if(optionValueArray[0]!="null"&&optionValueArray[0]!="nada"){
		xmlSearchEngine.categoryIndex = optionValueArray[0];
		xmlSearchEngine.categoryId = optionValueArray[2];
		xmlSearchEngine.ByCategory = "1";
		}
	else{
		xmlSearchEngine.categoryIndex = "null";
		xmlSearchEngine.categoryId = "null";
		xmlSearchEngine.ByCategory = "0";
		};
	};
//
function TNavDropDownList(asLink){
var rString = "";
var myNavIndex = "";
	if(asLink) myNavIndex = xmlConfig.navIndex;
	else myNavIndex = xmlConfig.getFirstItem("SearchEngine").categoryIndex;
	if(!(myNavIndex=="null"||myNavIndex=="")){ navigation[parseInt(myNavIndex)].active = true; };
	if(asLink) rString += "<select name=\"navselect\" onChange=\"changeLoc(this[this.selectedIndex].value.split(';;')[0],this[this.selectedIndex].value.split(';;')[1])\">"
	else rString += "<select name=\"navselect\" onChange=\"storeSearchParameters(this[this.selectedIndex].value.split(';;'))\">";
	rString += "<option value=\"nada;;start.htm;;null\">Gesamtübersicht</option>";
	for(var i=0; i<navigation.length; i++){
		if(navigation[i].parentId==null){
			rString += TNavDropDownItem(navigation[i], "");
			};
		};
	rString += "</select>";
	return(rString);
	};
//
function TNavDropDownItem(navItem, cptPreFix){
var rString = "";
	rString += "<option value=\"" + navItem.id + ";;" + navItem.linkUrl + ";;" + navItem.categoryId + "\"";
	if(navItem.active) rString += " selected";
	rString += ">" + cptPreFix + navItem.caption + "</option>";
	for(var i=0; i<navigation.length;i++) if(navigation[i].parentId==navItem.id) rString += TNavDropDownItem(navigation[i], cptPreFix + TNavDropDownIndent);
	return(rString);	
	};
//
	function openItem(itemId){
	var objActiveItem = null;
		if(itemId!=null){
			objActiveItem = navigation[itemId];
			if(objActiveItem!=null){
				objActiveItem.open = true;
				openItem(objActiveItem.parentId);
				};
			};
		};
		
	function activateItem(itemId){
	var objActiveItem = null;
		if(itemId!=null){
			objActiveItem = navigation[itemId];
			if(objActiveItem!=null){
				objActiveItem.active = true;
				openItem(objActiveItem.parentId);
				};
			};
		};
		
	function itemHasSubelems(itemId){
		for(var i=0; i<navigation.length;i++) if(navigation[i].parentId==itemId) return(true);
		return(false);
		};
	
	function TNavLinkList(){
	var strHTML = "";
		for(var i=0; i<navigation.length; i++) if(navigation[i].parentId==null) strHTML += printItem(navigation[i], 0);
		return(strHTML);
		};	
		
	function printItem(navItem, depth){
	var strHTML = "";
	var elemWidth = 1;
		strHTML += '<table width="100%" class="CATLINKS1STPARENT" border="0" cellpadding="1" cellspacing="0" >';
		strHTML += "<tr>"
		for(var i=0; i<depth; i++){
			strHTML += "<td";
			if(navItem.active) strHTML += " class=\"ACTIVECATEGORY\""
			else strHTML += " class=\"CATLINKS1STBULLET\"";
			strHTML += ' width="1%"><img src="assets/images/spacer.gif" width="11" height="1" height="1" alt="" border="0"></td>';
			};
		if(navItem.active) strHTML += '<td width="1%" class="ACTIVECATEGORY"><img src="assets/images/bulletcatact.gif" width="11" height="14" alt="Fethishuniverse Onlineshop" border="0" align="bottom" hspace="0" vspace="0" class="catnav"></td>'
		else if(navItem.open&&itemHasSubelems(navItem.id)) strHTML += '<td width="1%" class="CATLINKS1STBULLET"><img src="assets/images/bulletcat1stcls.gif" width="11" height="14" alt="Hier bestellen" border="0" align="bottom" hspace="0" vspace="0" class="catnav"></td>'
		else strHTML += '<td width=\"1%\"><img src="assets/images/bulletcat1st.gif" width="11" height="14" alt="Leicht finden im Onlineshop" border="0" align="bottom" hspace="0" vspace="0" class="catnav"></td>'
		strHTML += "<td";
		if(navItem.active) strHTML += " class=\"ACTIVECATEGORY\""
		else strHTML += " class=\"CATLINKS1STBULLET\"";
		strHTML += "width=\"" + ( 100 - ( depth + 1 ) ) + "%\">"
			+ "<a href=\"" + navItem.linkUrl + "?categoryId=" + escape(navItem.id) + "\" class=\"WAGRUNAV\">"
			+ navItem.caption
			+ "</a>"
			+ "</td>";
		strHTML += "</tr>"
		strHTML += "</table>"
		depth++;
		if(navItem.active||navItem.open){
			for(var i=0; i<navigation.length;i++) if(navigation[i].parentId==navItem.id) strHTML += printItem(navigation[i], depth);
			};
		return(strHTML);
		};


//

// navElem
	function navElem(id,caption,linkUrl,parentId,categoryId){
		this.id = id;
		this.caption = caption;
		this.linkUrl = linkUrl;
		this.parentId = parentId;
		this.active = false;
		this.open = false;
		this.categoryId = categoryId;
		};
// navigation
var navigation = new Array();
//
navigation[0] = new navElem(0,"Korsetts","pi-141020991.htm",null,"0001");
navigation[1] = new navElem(1,"Satinkorsetts","pi41183447.htm",0,"0002");
navigation[2] = new navElem(2,"Brokat Seide &..","pi733639713.htm",0,"0003");
navigation[3] = new navElem(3,"Lackkorsetts","pi-1768491299.htm",0,"0005");
navigation[4] = new navElem(4,"Latexkorsetts","pi1083437786.htm",0,"0007");
navigation[5] = new navElem(5,"Lederkorsetts","pi984714323.htm",0,"0006");
navigation[6] = new navElem(6,"High Heels","pi-1875380397.htm",null,"5000");
navigation[7] = new navElem(7,"Pumps","pi-230889593.htm",6,"5200");
navigation[8] = new navElem(8,"Sandalen & Slipper","pi1015770158.htm",6,"5300");
navigation[9] = new navElem(9,"Stiefeletten","pi934465374.htm",6,"5140");
navigation[10] = new navElem(10,"Stiefel Kniehoch","pi1159527409.htm",6,"5120");
navigation[11] = new navElem(11,"Stiefel Oberschenkellang","pi258265520.htm",6,"5100");
navigation[12] = new navElem(12,"Ballarinas & Extremes","pi-1926014953.htm",6,"5400");
navigation[13] = new navElem(13,"Latex","pi-1317893086.htm",null,"0999");
navigation[14] = new navElem(14,"Latex Mode Damen","pi694036957.htm",13,"1000");
navigation[15] = new navElem(15,"Latex Catsuits","pi1017677179.htm",14,"1020");
navigation[16] = new navElem(16,"Latexkleider","pi-1422261517.htm",14,"0110");
navigation[17] = new navElem(17,"Latex Tops","pi1017919831.htm",14,"1040");
navigation[18] = new navElem(18,"Latex Korsetts","pi1018163573.htm",14,"1047");
navigation[19] = new navElem(19,"Latex BHs & Slips","pi-957579307.htm",14,"1130");
navigation[20] = new navElem(20,"Latex Bodies","pi-22292878.htm",14,"1140");
navigation[21] = new navElem(21,"Latex Röcke","pi1229715616.htm",14,"1030");
navigation[22] = new navElem(22,"Latex Hosen & Leggins","pi1845989383.htm",14,"1045");
navigation[23] = new navElem(23,"Latex Jacken & Mäntel","pi1120996152.htm",14,"1042");
navigation[24] = new navElem(24,"Latex Halsbänder","pi-1115942822.htm",14,"1120");
navigation[25] = new navElem(25,"Latex Fantasy Outfits","pi-120573951.htm",14,"1300");
navigation[26] = new navElem(26,"Latex Mode Herren","pi1060860449.htm",13,"1400");
navigation[27] = new navElem(27,"Latex Herrentops","pi-1199371977.htm",26,"1420");
navigation[28] = new navElem(28,"Latex Herrencatsuits","pi691844558.htm",26,"1410");
navigation[29] = new navElem(29,"Latex Herrenhosen","pi-1542453076.htm",26,"1430");
navigation[30] = new navElem(30,"Latex Herrenslips","pi-1216786758.htm",26,"1440");
navigation[31] = new navElem(31," .. mit Innenleben","pi-913444173.htm",30,"1445");
navigation[32] = new navElem(32,"Latex Mäntel & Jacken","pi1673558904.htm",26,"1450");
navigation[33] = new navElem(33,"Latex Accessoires","pi-611544853.htm",26,"1470");
navigation[34] = new navElem(34,"Latex Masken","pi1217019468.htm",13,"1090");
navigation[35] = new navElem(35,"Getauchte Basic Masken & Hauben","pi-288726251.htm",34,"0915");
navigation[36] = new navElem(36,"Latex Aufblasmasken","pi-1992759760.htm",34,"0917");
navigation[37] = new navElem(37,"Gasmasken","pi1030443296.htm",34,"0916");
navigation[38] = new navElem(38,"Latex Strümpfe & Handschuhe","pi189086557.htm",13,"1110");
navigation[39] = new navElem(39,"Latexbasics","pi1015416826.htm",13,"0100");
navigation[40] = new navElem(40,"Latex mit Gleitoberfläche","pi1038255028.htm",39,"0911");
navigation[41] = new navElem(41,"Latex Plug & Play","pi157228555.htm",39,"1200");
navigation[42] = new navElem(42,"Latex Dildos","pi-1860515314.htm",41,"6556");
navigation[43] = new navElem(43,"Latex Plugs","pi1354635383.htm",41,"6668");
navigation[44] = new navElem(44,"Latex Knebel","pi103102188.htm",41,"6689");
navigation[45] = new navElem(45,"Latex Penishüllen","pi-2120687972.htm",41,"6672");
navigation[46] = new navElem(46,"Gummi BDSM","pi1950317305.htm",39,"0907");
navigation[47] = new navElem(47,"Latexslips für Sie","pi-354924366.htm",39,"0920");
navigation[48] = new navElem(48,".. mit Innenleben","pi703884650.htm",47,"0921");
navigation[49] = new navElem(49,"Latexslips für Ihn","pi-875252917.htm",39,"0930");
navigation[50] = new navElem(50,".. mit Innenleben","pi-1027311709.htm",49,"0931");
navigation[51] = new navElem(51,"Basic Kleidung","pi1018941412.htm",39,"0910");
navigation[52] = new navElem(52,"Latex Specials","pi-674718592.htm",39,"0900");
navigation[53] = new navElem(53,"Latexstiefel","pi-1620660033.htm",39,"0627");
navigation[54] = new navElem(54,"Meterware","pi1018853848.htm",39,"0905");
navigation[55] = new navElem(55,"Latex Pflegemittel","pi-2126158709.htm",39,"0904");
navigation[56] = new navElem(56,"Latex Bettwäsche","pi655347405.htm",39,"0906");
navigation[57] = new navElem(57,"Lack & Kunstleder","pi1015687904.htm",null,"2000");
navigation[58] = new navElem(58,"Lack Tops & Corsagen","pi1016372871.htm",57,"2100");
navigation[59] = new navElem(59,"Lack BHs & Slips","pi1537890042.htm",57,"2440");
navigation[60] = new navElem(60,"Lack Röcke","pi1800218556.htm",57,"2150");
navigation[61] = new navElem(61,"Lack Hosen & Hotpants","pi-1812583544.htm",57,"2450");
navigation[62] = new navElem(62,"Lack Kleider kurz","pi1900209165.htm",57,"2200");
navigation[63] = new navElem(63,"Lack Kleider lang","pi-2082094006.htm",57,"2300");
navigation[64] = new navElem(64,"Lack Bodies & Catsuits","pi-1103233789.htm",57,"2400");
navigation[65] = new navElem(65,"Lack Mäntel & Jacken","pi1409132073.htm",57,"2170");
navigation[66] = new navElem(66,"Lack Rollenspiel","pi1016373117.htm",57,"2370");
navigation[67] = new navElem(67,"Lack Handschuhe &..","pi-2056559702.htm",57,"2128");
navigation[68] = new navElem(68,"Lack Accessoires","pi2030989841.htm",57,"2900");
navigation[69] = new navElem(69,"Lack Bettwäsche","pi1037384519.htm",57,"2174");
navigation[70] = new navElem(70,"Lack Herren","pi-198404320.htm",57,"99992");
navigation[71] = new navElem(71,"Leder","pi-982914598.htm",null,"4273");
navigation[72] = new navElem(72,"Leder Korsetts","pi-1798591215.htm",71,"0470");
navigation[73] = new navElem(73,"Leder Corsagen","pi646931941.htm",71,"0400");
navigation[74] = new navElem(74,"Leder Tops","pi-729107970.htm",71,"0480");
navigation[75] = new navElem(75,"Leder BHs - Slips und Strapse","pi1015583492.htm",71,"0420");
navigation[76] = new navElem(76,"Leder Röcke & Hosen","pi85422005.htm",71,"0430");
navigation[77] = new navElem(77,"Leder Kleider","pi398147794.htm",71,"0450");
navigation[78] = new navElem(78,"Leder Harnesse & Co","pi-1906420525.htm",71,"0495");
navigation[79] = new navElem(79,"Leder Handschuhe","pi-514258792.htm",71,"0477");
navigation[80] = new navElem(80,"Leder Accessoires & Halsbänder","pi1951472464.htm",71,"0460");
navigation[81] = new navElem(81,"Leder Herren","pi597512353.htm",71,"99995");
navigation[82] = new navElem(82,"Perücken","pi620442231.htm",null,"7000");
navigation[83] = new navElem(83,"Langhaar","pi714239745.htm",82,"7010");
navigation[84] = new navElem(84,"Mittellang glatt","pi1114231063.htm",82,"7030");
navigation[85] = new navElem(85,"Mittellang lockig","pi-785093876.htm",82,"7040");
navigation[86] = new navElem(86,"Kurz","pi1701026077.htm",82,"7060");
navigation[87] = new navElem(87,"Trendy & farbig","pi-461559335.htm",82,"7250");
navigation[88] = new navElem(88,"Party & Fasching","pi1031136154.htm",82,"7252");
navigation[89] = new navElem(89,"Perücken Zubehör","pi1031175013.htm",82,"7255");
navigation[90] = new navElem(90,"Nylons & Handschuhe","pi1015688128.htm",null,"5500");
navigation[91] = new navElem(91,"Strumpf & Straps","pi81999545.htm",90,"5520");
navigation[92] = new navElem(92,"Strumpfhosen","pi-799353722.htm",90,"5530");
navigation[93] = new navElem(93,"Bodies & Catsuits","pi1046986639.htm",90,"5540");
navigation[94] = new navElem(94,"Netz Shirts & Kleider","pi-1741313738.htm",90,"5550");
navigation[95] = new navElem(95,"Glamourhandschuhe","pi-1962394472.htm",90,"5510");
navigation[96] = new navElem(96,"Lingerie","pi715301556.htm",90,"5227");
navigation[97] = new navElem(97,"Babydoll & Petticoat","pi-2028526044.htm",90,"5600");
navigation[98] = new navElem(98,"Glamour Wetlook &  Zentai","pi-1555498889.htm",null,"2172");
navigation[99] = new navElem(99,"Glamour Outfits","pi1043310809.htm",98,"2173");
navigation[100] = new navElem(100,"Spandex","pi1152253615.htm",98,"2175");
navigation[101] = new navElem(101,"Zentai Catsuits","pi-433652028.htm",98,"2177");
navigation[102] = new navElem(102,"Wetlook Cire Laque","pi-2072176545.htm",98,"2182");
navigation[103] = new navElem(103,"Sexy Costumes","pi1967361178.htm",98,"2184");
navigation[104] = new navElem(104,"Accessoires","pi-1170290452.htm",null,"6500");
navigation[105] = new navElem(105,"Vampirzähne ","pi-219017065.htm",104,"6520");
navigation[106] = new navElem(106,"Bodyparts & Blut","pi-398794849.htm",104,"6540");
navigation[107] = new navElem(107,"Engelsflügel","pi220929551.htm",104,"6510");
navigation[108] = new navElem(108,"Wimpern & Nägel","pi519212757.htm",104,"6610");
navigation[109] = new navElem(109,"Character-Brillen","pi-1849662344.htm",104,"6532");
navigation[110] = new navElem(110,"Handbags","pi2103683989.htm",104,"6617");
navigation[111] = new navElem(111,"Halloween Masks","pi1378862347.htm",104,"6702");
navigation[112] = new navElem(112,"Female Masks","pi-2041199964.htm",104,"6701");
navigation[113] = new navElem(113,"Faschings Kostüme","pi1236534706.htm",104,"6622");
navigation[114] = new navElem(114,"Halloween Deko","pi-1456047758.htm",104,"6620");
navigation[115] = new navElem(115,"Kostüm Accessoires","pi2126614142.htm",104,"6890");
navigation[116] = new navElem(116,"Metall","pi1720093710.htm",104,"8500");
navigation[117] = new navElem(117,"Play","pi1825437678.htm",null,"6501");
navigation[118] = new navElem(118,"Halsbänder","pi-2083289078.htm",117,"6502");
navigation[119] = new navElem(119,"Fesseln & Fixieren","pi-1998068285.htm",117,"6504");
navigation[120] = new navElem(120,"Knebel","pi-1338206047.htm",117,"6604");
navigation[121] = new navElem(121,"Peitsche & Co","pi1071276332.htm",117,"6612");
navigation[122] = new navElem(122,"Flogger","pi1102756607.htm",121,"3370");
navigation[123] = new navElem(123,"Gerten","pi982594885.htm",121,"3350");
navigation[124] = new navElem(124,"Paddel, Riemen, Klatschen","pi-571830021.htm",121,"3330");
navigation[125] = new navElem(125,"Schlag- und Rohrstöcke","pi1480392224.htm",121,"3320");
navigation[126] = new navElem(126,"Peitschen","pi923364257.htm",121,"3310");
navigation[127] = new navElem(127,"Elektrostimulation","pi33752533.htm",117,"3000");
navigation[128] = new navElem(128,"Elektrostimulationsgeräte","pi-1008699290.htm",127,"3010");
navigation[129] = new navElem(129,"Elektrostimulation - Elektroden","pi318980533.htm",127,"3030");
navigation[130] = new navElem(130,"Dildos & Lovetoys","pi-1022806533.htm",117,"6601");
navigation[131] = new navElem(131,"mit Vibration","pi-388289838.htm",130,"3040");
navigation[132] = new navElem(132,"Dildos","pi2040683298.htm",130,"3340");
navigation[133] = new navElem(133,"Plugs","pi1452538068.htm",130,"3360");
navigation[134] = new navElem(134,"Strap On","pi833876772.htm",130,"5824");
navigation[135] = new navElem(135,"Love Balls & Female Toys","pi399276799.htm",130,"5844");
navigation[136] = new navElem(136,"Penis Rings & Male Toys","pi-365774636.htm",130,"5448");
navigation[137] = new navElem(137,"Batterien","pi517674320.htm",130,"3060");
navigation[138] = new navElem(138,"Kopfharnesse","pi1257280840.htm",117,"6506");
navigation[139] = new navElem(139,"Masken","pi-1984785481.htm",117,"6609");
navigation[140] = new navElem(140,"Spielkleidung","pi-884217388.htm",117,"6600");
navigation[141] = new navElem(141,"Wasserspiele","pi1725824800.htm",117,"6602");
navigation[142] = new navElem(142,"Cock & Ball Toys","pi-1239364113.htm",117,"3020");
navigation[143] = new navElem(143,"Keuschheitskontrolle","pi1013509545.htm",117,"6508");
navigation[144] = new navElem(144,"Pet Play","pi789019214.htm",117,"6607");
navigation[145] = new navElem(145,"Metall","pi-1482136699.htm",117,"6616");
navigation[146] = new navElem(146,"Klammern & Gewichte","pi-1452720030.htm",117,"6618");
navigation[147] = new navElem(147,"Medical Toys","pi2128730935.htm",117,"2515");
navigation[148] = new navElem(148,"Gleit- und Pflegemittel","pi-1215056691.htm",117,"9318");
navigation[149] = new navElem(149,"Bestseller","pi1157272741.htm",117,"10001");
navigation[150] = new navElem(150,"Dark Romantic & Bourlesque","pi516868449.htm",null,"8000");
navigation[151] = new navElem(151,"Gothic Kleider","pi-166164414.htm",150,"8030");
navigation[152] = new navElem(152,"Gothic Accessoires","pi1011839040.htm",150,"8100");
navigation[153] = new navElem(153,"Sale ","pi1015665185.htm",null,"9000");
navigation[154] = new navElem(154,"Plug Sale - Abrüstung","pi1943287369.htm",153,"5170");
navigation[155] = new navElem(155,"Fancy Plops","pi1415842203.htm",154,"5175");
navigation[156] = new navElem(156,"Fetishfashion und Toys Sale","pi1197971404.htm",153,"2520");
navigation[157] = new navElem(157,"High Heels","pi-48536730.htm",153,"5421");
navigation[158] = new navElem(158,"Gothic & Dark Romantic","pi-619041812.htm",153,"9320");
navigation[159] = new navElem(159,"Lack Sonderpreise","pi1356465960.htm",153,"9300");
navigation[160] = new navElem(160,"Leder Einzelstücke","pi440636878.htm",153,"9400");
navigation[161] = new navElem(161,"Magazin Restposten","pi-667697512.htm",153,"0774");
navigation[162] = new navElem(162,"Magazine, Bücher & Medien","pi1030652252.htm",null,"4100");
navigation[163] = new navElem(163,"Geschenkgutschein","pi1205776931.htm",162,"4110");
navigation[164] = new navElem(164,"Fetischmagazine","pi1038134004.htm",162,"4120");
navigation[165] = new navElem(165,"Fachbücher","pi94936849.htm",162,"4130");
navigation[166] = new navElem(166,"Bücher-Stories","pi-1395835906.htm",162,"4140");
navigation[167] = new navElem(167,"Bücher-Bilder","pi1299824551.htm",162,"4150");
navigation[168] = new navElem(168,"Hörbücher & Medien","pi-413746596.htm",162,"4170");
navigation[169] = new navElem(169,"Neu im Shop","pi1025438962.htm",null,"0500");
navigation[170] = new navElem(170,"Latex Collection 1","pi1069470784.htm",null,"6300");
navigation[171] = new navElem(171,"Katalog S 2-3","pi2000473921.htm",170,"6301");
navigation[172] = new navElem(172,"Katalog S 4-5","pi-484125586.htm",170,"6302");
navigation[173] = new navElem(173,"Katalog S 6-7","pi2043947863.htm",170,"6303");
navigation[174] = new navElem(174,"Katalog S 8-9","pi1811662924.htm",170,"6304");
navigation[175] = new navElem(175,"Katalog S 10-11","pi-935953059.htm",170,"6305");
navigation[176] = new navElem(176,"Katalog S 12-13","pi1819645786.htm",170,"6306");
navigation[177] = new navElem(177,"Katalog S 14-15","pi1260811987.htm",170,"6307");
navigation[178] = new navElem(178,"Katalog S 16-17","pi-1706789608.htm",170,"6308");
navigation[179] = new navElem(179,"Katalog S 18-19","pi1832658233.htm",170,"6309");
navigation[180] = new navElem(180,"Katalog S 20-21","pi776192262.htm",170,"6310");
navigation[181] = new navElem(181,"Katalog S 22-23","pi-1529589233.htm",170,"6311");
navigation[182] = new navElem(182,"Katalog S 24-01","pi-1846905043.htm",170,"6312");
navigation[183] = new navElem(183,"News Booklet","pi1999659089.htm",170,"9987");
navigation[184] = new navElem(184,"Newsbooklet S 2-3","pi1127401325.htm",183,"6200");
navigation[185] = new navElem(185,"Newsbooklet S 4-5","pi-380044246.htm",183,"6201");
navigation[186] = new navElem(186,"Newsbooklet S 6-7","pi-1347285149.htm",183,"6202");
navigation[187] = new navElem(187,"Newsbooklet S 8-9","pi98543208.htm",183,"6203");
navigation[188] = new navElem(188,"Newsbooklet S 10-11","pi-1982746551.htm",183,"6204");
navigation[189] = new navElem(189,"Newsbooklet S 12-13","pi58561238.htm",183,"6205");
navigation[190] = new navElem(190,"Newsbooklet S 14-15","pi1988039583.htm",183,"6206");
navigation[191] = new navElem(191,"Newsbooklet S 16-17","pi213339380.htm",183,"6207");
navigation[192] = new navElem(192,"Newsbooklet S 18-19","pi1683734245.htm",183,"6208");
navigation[193] = new navElem(193,"Newsbooklet S 20-21","pi300043330.htm",183,"6209");
navigation[194] = new navElem(194,"Newsbooklet S 22-23","pi-1144343653.htm",183,"6212");
navigation[195] = new navElem(195,"Newsbooklet S 24-01","pi1127553884.htm",183,"6213");
navigation[196] = new navElem(196,"Mindbending Fashion","pi1147882647.htm",null,"4610");
navigation[197] = new navElem(197,"Matrix Rancho","pi-529784692.htm",196,"4612");
navigation[198] = new navElem(198,"Black Matrix II","pi-12615523.htm",196,"4614");
navigation[199] = new navElem(199,"Atomic","pi-1040799334.htm",196,"4616");
navigation[200] = new navElem(200,"Atomic II","pi-1724109805.htm",196,"4618");
navigation[201] = new navElem(201,"Purple Diamond","pi-454241960.htm",196,"4620");
navigation[202] = new navElem(202,"Spacetubbies","pi-1615471495.htm",196,"4622");
navigation[203] = new navElem(203,"Scandal","pi-129206458.htm",196,"4624");
navigation[204] = new navElem(204,"Scandal II","pi609519332.htm",196,"4626");
navigation[205] = new navElem(205,"Orange Diamond","pi-1727230443.htm",196,"4628");
navigation[206] = new navElem(206,"Essentials","pi186374066.htm",196,"4630");
navigation[207] = new navElem(207,"Balloon Girl","pi-366029237.htm",196,"4632");
navigation[208] = new navElem(208,"Restriction","pi-1702687440.htm",196,"4634");
navigation[209] = new navElem(209,"Psycho Clinic","pi1122136433.htm",196,"4636");
navigation[210] = new navElem(210,"Strange Animals","pi452556510.htm",196,"4638");
navigation[211] = new navElem(211,"Furry Animals","pi-1071294201.htm",196,"4640");
navigation[212] = new navElem(212,"Fetishuniverse Kalender 2007","pi-494007186.htm",196,"7740");

// getNavElementByCatID
function getNavElementByCatID(categoryId){
	for(var i=0; i<navigation.length; i++){
		if(navigation[i].categoryId==categoryId){
			return(navigation[i]);
			break;
			};
		};
		return(null);
	};
// changeLoc
function changeLoc(id,linkUrl){
	if(id!="nada"){
		xmlConfig.navIndex = id.toString();
		if(xmlConfig.getFirstItem("SearchEngine").ByCategory == "1"){
			if(id=="null") xmlConfig.getFirstItem("SearchEngine").categoryId = "null"
			else xmlConfig.getFirstItem("SearchEngine").categoryId = navigation[id].categoryId;
			xmlConfig.getFirstItem("SearchEngine").categoryIndex = id;
			}
		else{
			xmlConfig.getFirstItem("SearchEngine").categoryId = "null";
			xmlConfig.getFirstItem("SearchEngine").categoryIndex = "null";
			};
		safeData();
		location.href = linkUrl + "?categoryId=" + id.toString();
		};
	};
// searchOnEnterNavi
function searchOnEnterNavi(){
	if(window.event.keyCode==13){
		xmlConfig.getFirstItem('SearchEngine').term=document.searchEngine.searchTerm.value;
		location.href = "search.htm";
		};
	};
// activates entries for categories
activateItem(getParameterFromURL("categoryId"));


