//
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 += "Amount of Products:<strong>&nbsp;" + prdCount + "</strong><br>";
	prdString += "Subtotal:<strong>&nbsp;" + TFormatCurrency(subTotal, objPriCurrency) + "</strong><br><br>";
	prdString += "<a class=\"WAGRUNAV\" href=\"orderform." + xmlConfig.fileExtension + "\">";
	prdString += "<strong>" + '<img src="assets/images/bullet normal.jpg" width="13" height="13" alt="Bullet.gif" border="0" align="absmiddle" hspace="0" vspace="0" class="catnav">' + "Go to the Orderform</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\">Categories</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(start,end){
	var strHTML="";
	for(var i=start;i<Math.min(end+1,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="1" >';
		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="13" height="1" height="1" alt="" border="0"></td>';
			};
		if(navItem.active) strHTML += '<td width="1%" class="ACTIVECATEGORY"><img src="assets/images/bullet aufgeklappt.jpg" width="13" height="13" alt="BulletCatAct.gif" 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/bullet aufgeklappt.jpg" width="13" height="13" alt="BulletCat1stCls.gif" border="0" align="bottom" hspace="0" vspace="0" class="catnav"></td>'
		else strHTML += '<td width=\"1%\"><img src="assets/images/bullet normal.jpg" width="13" height="13" alt="BulletCat1st.gif" 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,"0-9","pi-1542629760.htm",null,"1.27");
navigation[1] = new navElem(1,"A-E","pi1170271198.htm",null,"P40");
navigation[2] = new navElem(2,"A","pi-1901990790.htm",1,"1.01");
navigation[3] = new navElem(3,"A Flock Of Seagulls","pi1087413058.htm",2,"1.A007");
navigation[4] = new navElem(4,"Alan Woxx","pi-2022086079.htm",2,"1.A008");
navigation[5] = new navElem(5,"Alien Sex Fiend","pi-1570584442.htm",2,"1.A005");
navigation[6] = new navElem(6,"All Gone Dead","pi-2118605141.htm",2,"P1");
navigation[7] = new navElem(7,"All Living Fear","pi1221997187.htm",2,"P111");
navigation[8] = new navElem(8,"Altered States","pi-531197793.htm",2,"1.A003");
navigation[9] = new navElem(9,"Antiworld","pi1088711979.htm",2,"1.A009");
navigation[10] = new navElem(10,"Astrovamps","pi-2037612838.htm",2,"1.A004");
navigation[11] = new navElem(11,"Asylum Party","pi1521408088.htm",2,"P33");
navigation[12] = new navElem(12,"Avant-Garde","pi1209904693.htm",2,"P100");
navigation[13] = new navElem(13,"B","pi-915657357.htm",1,"1.02");
navigation[14] = new navElem(14,"B-Movie","pi1229009396.htm",13,"1.B008");
navigation[15] = new navElem(15,"Balaam and the Angel","pi1553215518.htm",13,"1.B005");
navigation[16] = new navElem(16,"Bauhaus","pi1806588696.htm",13,"1.B014");
navigation[17] = new navElem(17,"Bellmer Dolls","pi-1157130541.htm",13,"P85");
navigation[18] = new navElem(18,"Birthday Party, The","pi1091391523.htm",13,"1.B12");
navigation[19] = new navElem(19,"Jacquy Bitch","pi1901298661.htm",13,"B.003");
navigation[20] = new navElem(20,"Black Ice","pi297043310.htm",13,"1.B004");
navigation[21] = new navElem(21,"Blacklist","pi-1310636881.htm",13,"P131");
navigation[22] = new navElem(22,"Blood & Roses","pi-1315039519.htm",13,"P97");
navigation[23] = new navElem(23,"Bloody Dead And Sexy","pi-217295086.htm",13,"1.B001");
navigation[24] = new navElem(24,"Blue Kremlin","pi1269894663.htm",13,"P136");
navigation[25] = new navElem(25,"Bohemien","pi1075759402.htm",13,"1.B007");
navigation[26] = new navElem(26,"Bolshoi, The","pi644400730.htm",13,"1.A010");
navigation[27] = new navElem(27,"Brotherhood Of Pagans","pi1357371175.htm",13,"P126");
navigation[28] = new navElem(28,"Burning Gates","pi413177698.htm",13,"1.B002");
navigation[29] = new navElem(29,"C","pi-157724872.htm",1,"1.03");
navigation[30] = new navElem(30,"Camp Z","pi1204984881.htm",29,"P98");
navigation[31] = new navElem(31,"Carillon Del Dolore","pi-957273499.htm",29,"P124");
navigation[32] = new navElem(32,"Casual","pi-1460438840.htm",29,"1.C008");
navigation[33] = new navElem(33,"Casual Sanity","pi-1475063519.htm",29,"P88");
navigation[34] = new navElem(34,"Cauda Pavonis","pi-1332262629.htm",29,"1.C10");
navigation[35] = new navElem(35,"Cave, Nick","pi-13198049.htm",29,"1.C018");
navigation[36] = new navElem(36,"Cell Division","pi-1780591391.htm",29,"1.C006");
navigation[37] = new navElem(37,"The Cemetary Girlz","pi1622239557.htm",29,"P127");
navigation[38] = new navElem(38,"Chameleons","pi302969074.htm",29,"1.C014");
navigation[39] = new navElem(39,"Chants of Maldoror","pi-221077622.htm",29,"1.C007");
navigation[40] = new navElem(40,"Charles De Goal","pi-1370601361.htm",29,"P104");
navigation[41] = new navElem(41,"Charlotte&#0039;s Shadow","pi-2118638135.htm",29,"P28");
navigation[42] = new navElem(42,"Children On Stun","pi384022173.htm",29,"1.C003");
navigation[43] = new navElem(43,"Christian Death","pi-258533610.htm",29,"1.C002");
navigation[44] = new navElem(44,"Cinema Strange","pi-1943721691.htm",29,"1.C015");
navigation[45] = new navElem(45,"Clair Obscur","pi-1128107931.htm",29,"1.C013");
navigation[46] = new navElem(46,"Clan Of Xymox","pi-1720022801.htm",29,"1.C017");
navigation[47] = new navElem(47,"Cocteau Twins","pi324435749.htm",29,"1.C016");
navigation[48] = new navElem(48,"Cold Phoenix","pi413676992.htm",29,"P125");
navigation[49] = new navElem(49,"Complicity","pi-1783151891.htm",29,"P122");
navigation[50] = new navElem(50,"Corpus Delicti","pi649957070.htm",29,"1.C004");
navigation[51] = new navElem(51,"Collapsing New People","pi-1947868676.htm",29,"1.C019");
navigation[52] = new navElem(52,"Complot Bronswick","pi-705940087.htm",29,"P106");
navigation[53] = new navElem(53,"Curious","pi1962015655.htm",29,"P4");
navigation[54] = new navElem(54,"Cult, The","pi-935337978.htm",29,"1.C009");
navigation[55] = new navElem(55,"D","pi-870368039.htm",1,"1.04");
navigation[56] = new navElem(56,"Darc Entries","pi33229318.htm",55,"1.D001");
navigation[57] = new navElem(57,"The Damned","pi1386779219.htm",55,"1.D009");
navigation[58] = new navElem(58,"The Danse Society","pi1000909737.htm",55,"1.D007");
navigation[59] = new navElem(59,"The Dark","pi883099418.htm",55,"1.D13");
navigation[60] = new navElem(60,"Date At Midnight","pi2037607376.htm",55,"P101");
navigation[61] = new navElem(61,"Deadchovsky","pi268132136.htm",55,"1.D015");
navigation[62] = new navElem(62,"Dead End Guys","pi-1012376937.htm",55,"P108");
navigation[63] = new navElem(63,"Deadfly Ensemble","pi844672023.htm",55,"P6");
navigation[64] = new navElem(64,"Death Cult","pi398779609.htm",55,"1.D005");
navigation[65] = new navElem(65,"Death in Dresden","pi1197399593.htm",55,"P96");
navigation[66] = new navElem(66,"Deathride 69","pi-1528006988.htm",55,"P5");
navigation[67] = new navElem(67,"The Deep Eynde","pi1679819446.htm",55,"1.D008");
navigation[68] = new navElem(68,"Gitane Demone","pi-900538186.htm",55,"P115");
navigation[69] = new navElem(69,"Descendants Of Cain","pi-549965477.htm",55,"P117");
navigation[70] = new navElem(70,"Desert + Fortune","pi-1777894956.htm",55,"1.D12");
navigation[71] = new navElem(71,"De Volanges","pi999361173.htm",55,"P119");
navigation[72] = new navElem(72,"Die Laughing","pi1045930152.htm",55,"1.D002");
navigation[73] = new navElem(73,"Diva Destruction","pi320832223.htm",55,"P38");
navigation[74] = new navElem(74,"Doppelgänger","pi-546517286.htm",55,"1.D014");
navigation[75] = new navElem(75,"Drama Of Spheres","pi1450571086.htm",55,"P128");
navigation[76] = new navElem(76,"Dronning Maud Land","pi1651063614.htm",55,"1.D11");
navigation[77] = new navElem(77,"Dresden Dolls","pi1107720837.htm",55,"1.D14");
navigation[78] = new navElem(78,"Dr. Arthur Krause","pi1207925257.htm",55,"P99");
navigation[79] = new navElem(79,"E","pi-1419204570.htm",1,"1.05");
navigation[80] = new navElem(80,"Eat Your Make Up","pi-2001843450.htm",79,"1.E009");
navigation[81] = new navElem(81,"Echoes Of Silence","pi1159804705.htm",79,"P35");
navigation[82] = new navElem(82,"The Eden House","pi1067234355.htm",79,"P129");
navigation[83] = new navElem(83,"Einstürzende Neubauten","pi-1185320826.htm",79,"1.E008");
navigation[84] = new navElem(84,"Elusive","pi1936701347.htm",79,"P30");
navigation[85] = new navElem(85,"The Eternal Fall","pi-90572342.htm",79,"P137");
navigation[86] = new navElem(86,"Eva O","pi-742258992.htm",79,"1.E005");
navigation[87] = new navElem(87,"Ex-Voto","pi-801960826.htm",79,"1.E007");
navigation[88] = new navElem(88,"F-J","pi1170350272.htm",null,"P41");
navigation[89] = new navElem(89,"Faces Of Sarah, The","pi-1158454976.htm",88,"1.F002");
navigation[90] = new navElem(90,"Faith and the Muse","pi1116787924.htm",88,"1.F010");
navigation[91] = new navElem(91,"Fangs On Fur","pi1268560602.htm",88,"P134");
navigation[92] = new navElem(92,"Fields Of The Nephilim","pi1722104519.htm",88,"1.F006");
navigation[93] = new navElem(93,"Fliehende Stürme","pi180135995.htm",88,"1.F004");
navigation[94] = new navElem(94,"Formfleisch","pi-799871579.htm",88,"1.F08");
navigation[95] = new navElem(95,"Frankenstein","pi1991317023.htm",88,"1.F009");
navigation[96] = new navElem(96,"Frank The Baptist","pi179675034.htm",88,"1.F003");
navigation[97] = new navElem(97,"The Fright","pi1877675930.htm",88,"P109");
navigation[98] = new navElem(98,"Frustration","pi1065452096.htm",88,"P22");
navigation[99] = new navElem(99,"Funhouse","pi-1703903367.htm",88,"1.F005");
navigation[100] = new navElem(100,"Gang Of Four","pi360409900.htm",88,"P23");
navigation[101] = new navElem(101,"Garden of Delight","pi1793046648.htm",88,"1.G005");
navigation[102] = new navElem(102,"Gestalt","pi-877608834.htm",88,"P105");
navigation[103] = new navElem(103,"Ghost of Lemora, The","pi-499437374.htm",88,"1.G004");
navigation[104] = new navElem(104,"Götterdämmerung","pi-796110965.htm",88,"1.G003");
navigation[105] = new navElem(105,"The Guests","pi364428685.htm",88,"P48");
navigation[106] = new navElem(106,"Hatesex","pi-1254260390.htm",88,"1.H007");
navigation[107] = new navElem(107,"Hearts Fail","pi-1457146677.htm",88,"1.H005");
navigation[108] = new navElem(108,"The Holy Kiss","pi-1106808305.htm",88,"P86");
navigation[109] = new navElem(109,"House Of Usher, The","pi-1413679868.htm",88,"1.H002");
navigation[110] = new navElem(110,"Human Disease","pi1721888297.htm",88,"1.H04");
navigation[111] = new navElem(111,"Ikon","pi1067985073.htm",88,"1.I001");
navigation[112] = new navElem(112,"Il Giardino Violetto","pi2006357043.htm",88,"1.I002");
navigation[113] = new navElem(113,"Joy Disaster","pi-518815171.htm",88,"P71");
navigation[114] = new navElem(114,"Joy Division","pi1809611326.htm",88,"P20");
navigation[115] = new navElem(115,"Judith","pi-706160849.htm",88,"P19");
navigation[116] = new navElem(116,"K-O","pi478953921.htm",null,"P42");
navigation[117] = new navElem(117,"Katzenjammer Kabarett","pi-1782654561.htm",116,"P21");
navigation[118] = new navElem(118,"Killing Joke","pi-334472892.htm",116,"1.K002");
navigation[119] = new navElem(119,"Kiss The Blade","pi96849997.htm",116,"1.K001");
navigation[120] = new navElem(120,"La Mamoynia","pi1730205718.htm",116,"P31");
navigation[121] = new navElem(121,"The Last Dance","pi-2051410132.htm",116,"1.L002");
navigation[122] = new navElem(122,"The Last Days of Jesus","pi-2067662147.htm",116,"1.L003");
navigation[123] = new navElem(123,"Le Vene Di Lucretia","pi-1475279742.htm",116,"P39");
navigation[124] = new navElem(124,"Lords Of The New Church","pi1096834371.htm",116,"1.L005");
navigation[125] = new navElem(125,"Lucie Cries","pi124457780.htm",116,"P107");
navigation[126] = new navElem(126,"Malaise","pi-32890686.htm",116,"P7");
navigation[127] = new navElem(127,"Manuskript","pi-1391883945.htm",116,"1.M12");
navigation[128] = new navElem(128,"March Violets","pi-1860689746.htm",116,"1.M002");
navigation[129] = new navElem(129,"Marquee Moon","pi-243151512.htm",116,"1.M11");
navigation[130] = new navElem(130,"Mephisto Walz","pi-1104055897.htm",116,"1.M006");
navigation[131] = new navElem(131,"Mighty Sphincter","pi-102612027.htm",116,"1.M001");
navigation[132] = new navElem(132,"Miguel And The Living Dead","pi1121029853.htm",116,"1.M012");
navigation[133] = new navElem(133,"Milita Christi","pi844060199.htm",116,"1.M009");
navigation[134] = new navElem(134,"Mission, The","pi-887885276.htm",116,"1.M014");
navigation[135] = new navElem(135,"Monozid","pi-1659029300.htm",116,"P9");
navigation[136] = new navElem(136,"Moonchild","pi2117700880.htm",116,"P121");
navigation[137] = new navElem(137,"Morticia","pi1119814389.htm",116,"1.M013");
navigation[138] = new navElem(138,"Murder At The Registry","pi1943104019.htm",116,"1.M005");
navigation[139] = new navElem(139,"Murnau&#0039;s Playhouse","pi2106425231.htm",116,"P135");
navigation[140] = new navElem(140,"Neva","pi903363074.htm",116,"1.N002");
navigation[141] = new navElem(141,"New Days Delay","pi-1162186337.htm",116,"P90");
navigation[142] = new navElem(142,"New Model Army","pi-2134729237.htm",116,"1.N003");
navigation[143] = new navElem(143,"Nim Vind","pi1975769018.htm",116,"1.V007");
navigation[144] = new navElem(144,"Nosferatu","pi409174243.htm",116,"1.N005");
navigation[145] = new navElem(145,"Norma Loy","pi1864726876.htm",116,"1.N004");
navigation[146] = new navElem(146,"One","pi-1968700730.htm",116,"1.O003");
navigation[147] = new navElem(147,"Ordeal By Fire","pi-18855291.htm",116,"1.O002");
navigation[148] = new navElem(148,"Other, The","pi-512497135.htm",116,"1.O004");
navigation[149] = new navElem(149,"Other Voices","pi-377506621.htm",116,"P10");
navigation[150] = new navElem(150,"P-T","pi1929049326.htm",null,"P43");
navigation[151] = new navElem(151,"P","pi-1929251603.htm",150,"1.16");
navigation[152] = new navElem(152,"Passion Play","pi1786135653.htm",151,"1.P001");
navigation[153] = new navElem(153,"La Peste Negra","pi986159555.htm",151,"P114");
navigation[154] = new navElem(154,"Phantom Limbs","pi-867257061.htm",151,"1.P002");
navigation[155] = new navElem(155,"Pink Turns Blue","pi-463675872.htm",151,"1.P04");
navigation[156] = new navElem(156,"Pins And Needles","pi1063877844.htm",151,"P11");
navigation[157] = new navElem(157,"Play Dead","pi437180409.htm",151,"1.P6");
navigation[158] = new navElem(158,"The Prids","pi-1217780165.htm",151,"1.P007");
navigation[159] = new navElem(159,"Q","pi-442172502.htm",150,"1.17");
navigation[160] = new navElem(160,"Quidam","pi1121115999.htm",159,"1.Q001");
navigation[161] = new navElem(161,"R","pi-1332021021.htm",150,"1.18");
navigation[162] = new navElem(162,"Red Lorry Yellow Lorry","pi-1477039345.htm",161,"1.R003");
navigation[163] = new navElem(163,"Red Voice Choir","pi1578030854.htm",161,"P95");
navigation[164] = new navElem(164,"Reptyle","pi316213568.htm",161,"1.R002");
navigation[165] = new navElem(165,"Return To Khafji","pi720769199.htm",161,"P120");
navigation[166] = new navElem(166,"Revue Noir","pi-4932582.htm",161,"P118");
navigation[167] = new navElem(167,"Rezurex ","pi-1420434181.htm",161,"P12");
navigation[168] = new navElem(168,"Monica Richards","pi689666670.htm",161,"P55");
navigation[169] = new navElem(169,"S","pi1352249832.htm",150,"1.19");
navigation[170] = new navElem(170,"Salvation","pi1162048039.htm",169,"P37");
navigation[171] = new navElem(171,"Saros","pi-1869025459.htm",169,"P87");
navigation[172] = new navElem(172,"Scarlet`s Remains","pi-666431751.htm",169,"1.S020");
navigation[173] = new navElem(173,"Scary Bitches","pi-1415987821.htm",169,"1.S010");
navigation[174] = new navElem(174,"Screaming Banshee Aircrew","pi-960406691.htm",169,"P56");
navigation[175] = new navElem(175,"Screaming Dead","pi-1075619864.htm",169,"P123");
navigation[176] = new navElem(176,"Sensorium","pi-1335212932.htm",169,"1.S13");
navigation[177] = new navElem(177,"Sex Gang Children","pi1276123903.htm",169,"1.S15");
navigation[178] = new navElem(178,"Shadow Project","pi-1629079978.htm",169,"1.S12");
navigation[179] = new navElem(179,"Shadow Reichenstein","pi170238233.htm",169,"1.S019");
navigation[180] = new navElem(180,"Shock Therapy","pi-1034199568.htm",169,"1.S009");
navigation[181] = new navElem(181,"Siouxsie & The Banshees","pi247818903.htm",169,"P26");
navigation[182] = new navElem(182,"The Sisters Of Mercy","pi-149524585.htm",169,"P47");
navigation[183] = new navElem(183,"Sixteens","pi-2129899900.htm",169,"P13");
navigation[184] = new navElem(184,"Skabs, The","pi1047844859.htm",169,"1.S11");
navigation[185] = new navElem(185,"Skeletal Family","pi-1648166122.htm",169,"1.S007");
navigation[186] = new navElem(186,"Sleeping Children","pi-1978437293.htm",169,"1.S018");
navigation[187] = new navElem(187,"Smiths, The","pi1128628093.htm",169,"1.S022");
navigation[188] = new navElem(188,"Solemn Novena","pi1271717093.htm",169,"P54");
navigation[189] = new navElem(189,"Soulscape","pi1169578852.htm",169,"1.S021");
navigation[190] = new navElem(190,"The Sound","pi-183742844.htm",169,"P130");
navigation[191] = new navElem(191,"Southern Death Cult, The","pi637525109.htm",169,"1.S006");
navigation[192] = new navElem(192,"Specimen","pi-1067718945.htm",169,"1.S008");
navigation[193] = new navElem(193,"Strange Dolls Cult","pi1111918340.htm",169,"P51");
navigation[194] = new navElem(194,"Sunshine Blind","pi792031693.htm",169,"1.S14");
navigation[195] = new navElem(195,"Super Heroines","pi-2146102866.htm",169,"P46");
navigation[196] = new navElem(196,"Swann Danger","pi-1311342728.htm",169,"P72");
navigation[197] = new navElem(197,"T","pi853194185.htm",150,"1.20");
navigation[198] = new navElem(198,"Telegram Frank","pi609183577.htm",197,"P133");
navigation[199] = new navElem(199,"Thelema ","pi578132955.htm",197,"P16");
navigation[200] = new navElem(200,"The Theatre of Hate","pi-775163252.htm",197,"1.T002");
navigation[201] = new navElem(201,"Tones On Tail","pi-564672055.htm",197,"1.T004");
navigation[202] = new navElem(202,"Tragic Black","pi-2002624706.htm",197,"1.T03");
navigation[203] = new navElem(203,"U-Z","pi-1012211241.htm",null,"P44");
navigation[204] = new navElem(204,"The Vanishing","pi1738907771.htm",203,"1.V009");
navigation[205] = new navElem(205,"Vendemmian","pi1885613638.htm",203,"P17");
navigation[206] = new navElem(206,"Violet Stigmata","pi-1964622227.htm",203,"1.V008");
navigation[207] = new navElem(207,"Virgin Prunes","pi2125762597.htm",203,"1.V001");
navigation[208] = new navElem(208,"Voices of Masada","pi1101652106.htm",203,"1.V006");
navigation[209] = new navElem(209,"Voodoo Church","pi1399061894.htm",203,"1.V005");
navigation[210] = new navElem(210,"The Wake","pi1705436167.htm",203,"P18");
navigation[211] = new navElem(211,"Wallenberg","pi1327195437.htm",203,"1.W005");
navigation[212] = new navElem(212,"Wasteland","pi-1072523209.htm",203,"1.W004");
navigation[213] = new navElem(213,"The Weegs","pi414139685.htm",203,"P32");
navigation[214] = new navElem(214,"Whispers In The Shadow","pi1235909556.htm",203,"P116");
navigation[215] = new navElem(215,"Rozz Williams","pi583748960.htm",203,"1.W002");
navigation[216] = new navElem(216,"Rozz Williams & Gitane Demone","pi-967176560.htm",203,"1.R004");
navigation[217] = new navElem(217,"Zadera","pi1097612713.htm",203,"1.Z001");
navigation[218] = new navElem(218,"Zero Le Crêche","pi1654565199.htm",203,"P110");
navigation[219] = new navElem(219,"Zombina and the Skeletones","pi1556079094.htm",203,"1.Z002");
navigation[220] = new navElem(220,"Zurueck Placenta","pi91107558.htm",203,"P73");
navigation[221] = new navElem(221,"Sampler","pi641035060.htm",null,"1.28");
navigation[222] = new navElem(222,"Electronics, Minimal","pi1067460400.htm",null,"7");
navigation[223] = new navElem(223,"The Actor","pi986582604.htm",222,"P93");
navigation[224] = new navElem(224,"Agent Side Grinder","pi1288258114.htm",222,"P91");
navigation[225] = new navElem(225,"Alien Skull Paint","pi817747096.htm",222,"1.MA001");
navigation[226] = new navElem(226,"Anti Trust","pi1756112464.htm",222,"P60");
navigation[227] = new navElem(227,"Datafreq","pi-1880837156.htm",222,"P29");
navigation[228] = new navElem(228,"Die Puppe","pi1174823584.htm",222,"P49");
navigation[229] = new navElem(229,"Echo West","pi-2006307706.htm",222,"1.ME001");
navigation[230] = new navElem(230,"Ende Shneafliet","pi1599356225.htm",222,"P92");
navigation[231] = new navElem(231,"Ensemble Pittoresque","pi-528275234.htm",222,"P113");
navigation[232] = new navElem(232,"The Evasion On Stake","pi534541668.htm",222,"P66");
navigation[233] = new navElem(233,"ExKurs","pi443243667.htm",222,"P65");
navigation[234] = new navElem(234,"Experiment Nnord","pi1586569563.htm",222,"P63");
navigation[235] = new navElem(235,"Geisterfahrer","pi-314309465.htm",222,"P61");
navigation[236] = new navElem(236,"Graphik Magazin","pi-1813270580.htm",222,"1.MG001");
navigation[237] = new navElem(237,"Das Institut","pi-1627159658.htm",222,"P62");
navigation[238] = new navElem(238,"Johnny Beton and The Moertels","pi-35744053.htm",222,"P67");
navigation[239] = new navElem(239,"Le Syndicat Electronique","pi-1962467224.htm",222,"1.ML001");
navigation[240] = new navElem(240,"Charles Lindbergh","pi-928269148.htm",222,"P58");
navigation[241] = new navElem(241,"Makina Girgir","pi-1070305611.htm",222,"P59");
navigation[242] = new navElem(242,"Matthias Schuster","pi-2038192432.htm",222,"1.MM001");
navigation[243] = new navElem(243,"Neongrau","pi1889106134.htm",222,"P53");
navigation[244] = new navElem(244,"Notstandskomitee","pi43556142.htm",222,"P64");
navigation[245] = new navElem(245,"Sampler","pi914164657.htm",222,"1.MV001");
navigation[246] = new navElem(246,"Solitairen Effekten","pi1241609427.htm",222,"P94");
navigation[247] = new navElem(247,"Sonnenbrandt","pi12643096.htm",222,"P57");
navigation[248] = new navElem(248,"Stoerung","pi1223206933.htm",222,"P112");
navigation[249] = new navElem(249,"Hungry Eye Records","pi1192970983.htm",null,"P74");
navigation[250] = new navElem(250,"Bellmer Dolls","pi2077734044.htm",249,"P75");
navigation[251] = new navElem(251,"Black Ice","pi-1406212243.htm",249,"P76");
navigation[252] = new navElem(252,"The Holy Kiss","pi1300967267.htm",249,"P78");
navigation[253] = new navElem(253,"The Phantom Limbs","pi-674609560.htm",249,"P79");
navigation[254] = new navElem(254,"Saros","pi1003475017.htm",249,"P80");
navigation[255] = new navElem(255,"Sixteens","pi-1645661482.htm",249,"P81");
navigation[256] = new navElem(256,"The Skabs","pi1294611359.htm",249,"P82");
navigation[257] = new navElem(257,"The Vanishing","pi-2020872972.htm",249,"P83");
navigation[258] = new navElem(258,"The Weegs","pi58449637.htm",249,"P84");
navigation[259] = new navElem(259,"Multimedia","pi-783992373.htm",null,"2");
navigation[260] = new navElem(260,"Merchandise","pi-1227388240.htm",null,"3");
navigation[261] = new navElem(261,"45 Grave","pi1352610142.htm",260,"P68");
navigation[262] = new navElem(262,"Blacklist","pi58007264.htm",260,"P132");
navigation[263] = new navElem(263,"The Deep Eynde","pi1087938898.htm",260,"3.D001");
navigation[264] = new navElem(264,"Frank the Baptist","pi-33763543.htm",260,"3.F001");
navigation[265] = new navElem(265,"Kiss The Blade","pi1104629850.htm",260,"3.K001");
navigation[266] = new navElem(266,"Norma Loy","pi-1033583223.htm",260,"P24");
navigation[267] = new navElem(267,"Ordeal By Fire","pi-883923347.htm",260,"3.O001");
navigation[268] = new navElem(268,"Party T-Shirts","pi1458895909.htm",260,"3.P002");
navigation[269] = new navElem(269,"Postkarten","pi1800177028.htm",260,"3.P001");
navigation[270] = new navElem(270,"Reptyle","pi-1522941997.htm",260,"3.R001");
navigation[271] = new navElem(271,"Scarlet&#0039;s Remains","pi730513115.htm",260,"P25");
navigation[272] = new navElem(272,"Skeletal Family","pi747891651.htm",260,"3.S001");
navigation[273] = new navElem(273,"Wipers","pi-1592923656.htm",260,"3.W001");
navigation[274] = new navElem(274,"Zombina And The Skeletons","pi553716094.htm",260,"P45");
navigation[275] = new navElem(275,"Books","pi1622803649.htm",null,"4.02");
navigation[276] = new navElem(276,"Magazines","pi436981696.htm",null,"4.01");
navigation[277] = new navElem(277,"Art-Irr","pi-459568352.htm",276,"4.01artirr");
navigation[278] = new navElem(278,"Ascension Magazine","pi1213539642.htm",276,"P103");
navigation[279] = new navElem(279,"Crawling Tunes Magazine","pi1187984032.htm",276,"P70");
navigation[280] = new navElem(280,"Deathrock Magazine","pi-191109459.htm",276,"P102");
navigation[281] = new navElem(281,"Equinoxe Magazine","pi906069987.htm",276,"4.01equ");
navigation[282] = new navElem(282,"Gothic Magazine","pi598730318.htm",276,"4.01gothic");
navigation[283] = new navElem(283,"Strobelight Magazine","pi-598372425.htm",276,"4.01strob");
navigation[284] = new navElem(284,"Transmission","pi467974417.htm",276,"4.06transm");
navigation[285] = new navElem(285,"Comics","pi1194895014.htm",null,"P89");
navigation[286] = new navElem(286,"Specials...WOW!","pi-376860324.htm",null,"6");

// 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"));

