//
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 += "Produkte:<strong>&nbsp;" + prdCount + "</strong><br>";
	prdString += "Summe:<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">' + "Zum Bestellschein</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\">Gesamtkatalog</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","pi1170271314.htm",null,"P40");
navigation[2] = new navElem(2,"A","pi1170275837.htm",1,"P45");
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","pi1221995955.htm",2,"P121");
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","pi1209900922.htm",2,"P109");
navigation[13] = new navElem(13,"B","pi-178392198.htm",1,"P46");
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-1013796839.htm",13,"P95");
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","pi712695497.htm",13,"P120");
navigation[22] = new navElem(22,"Blood & Roses","pi1202654201.htm",13,"P106");
navigation[23] = new navElem(23,"Bloodsucking Zombies From Outer Space","pi779645307.htm",13,"P2");
navigation[24] = new navElem(24,"Bloody Dead And Sexy","pi-217295086.htm",13,"1.B001");
navigation[25] = new navElem(25,"Blue Kremlin","pi38855798.htm",13,"P147");
navigation[26] = new navElem(26,"Bohemien","pi1075759402.htm",13,"1.B007");
navigation[27] = new navElem(27,"Bolshoi, The","pi644400730.htm",13,"1.A010");
navigation[28] = new navElem(28,"Brotherhood Of Pagans","pi-2123996840.htm",13,"P136");
navigation[29] = new navElem(29,"Burning Gates","pi413177698.htm",13,"1.B002");
navigation[30] = new navElem(30,"C","pi-2034014093.htm",1,"P47");
navigation[31] = new navElem(31,"Camp Z","pi1204982833.htm",30,"P107");
navigation[32] = new navElem(32,"Carillon Del Dolore","pi-1354678549.htm",30,"P132");
navigation[33] = new navElem(33,"Casual","pi-1460438840.htm",30,"1.C008");
navigation[34] = new navElem(34,"Casual Sanity","pi-2103624494.htm",30,"P96");
navigation[35] = new navElem(35,"Cauda Pavonis","pi-1332262629.htm",30,"1.C10");
navigation[36] = new navElem(36,"Cave, Nick","pi-13198049.htm",30,"1.C018");
navigation[37] = new navElem(37,"Cell Division","pi-1780591391.htm",30,"1.C006");
navigation[38] = new navElem(38,"The Cemetary Girlz","pi1916840783.htm",30,"P137");
navigation[39] = new navElem(39,"Chameleons","pi302969074.htm",30,"1.C014");
navigation[40] = new navElem(40,"Chants of Maldoror","pi-221077622.htm",30,"1.C007");
navigation[41] = new navElem(41,"Charles De Goal","pi1480019185.htm",30,"P113");
navigation[42] = new navElem(42,"Charlotte&#0039;s Shadow","pi-2118638135.htm",30,"P28");
navigation[43] = new navElem(43,"Children On Stun","pi384022173.htm",30,"1.C003");
navigation[44] = new navElem(44,"Christian Death","pi-258533610.htm",30,"1.C002");
navigation[45] = new navElem(45,"Cinema Strange","pi-1943721691.htm",30,"1.C015");
navigation[46] = new navElem(46,"Clair Obscur","pi-1128107931.htm",30,"1.C013");
navigation[47] = new navElem(47,"Cocteau Twins","pi324435749.htm",30,"1.C016");
navigation[48] = new navElem(48,"Collapsing New People","pi-1947868676.htm",30,"1.C019");
navigation[49] = new navElem(49,"Cold Phoenix","pi-1975601154.htm",30,"P133");
navigation[50] = new navElem(50,"Complicity","pi-333855052.htm",30,"P135");
navigation[51] = new navElem(51,"Complot Bronswick","pi-2101618885.htm",30,"P115");
navigation[52] = new navElem(52,"Corpus Delicti","pi649957070.htm",30,"1.C004");
navigation[53] = new navElem(53,"Curious","pi1962015655.htm",30,"P4");
navigation[54] = new navElem(54,"The Cult","pi-935337978.htm",30,"1.C009");
navigation[55] = new navElem(55,"D","pi1576054328.htm",1,"P48");
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","pi438340569.htm",55,"P110");
navigation[61] = new navElem(61,"Deadchovsky","pi268132136.htm",55,"1.D015");
navigation[62] = new navElem(62,"Dead End Guys","pi-2014302605.htm",55,"P117");
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","pi1197394058.htm",55,"P105");
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,"Descendants Of Cain","pi-769721714.htm",55,"P127");
navigation[69] = new navElem(69,"Desert + Fortune","pi-1777894956.htm",55,"1.D12");
navigation[70] = new navElem(70,"De Volanges","pi-742838614.htm",55,"P129");
navigation[71] = new navElem(71,"Die Laughing","pi1045930152.htm",55,"1.D002");
navigation[72] = new navElem(72,"Diva Destruction","pi677816710.htm",55,"P38");
navigation[73] = new navElem(73,"Doppelgänger","pi-546517286.htm",55,"1.D014");
navigation[74] = new navElem(74,"Drama Of The Spheres","pi-755065552.htm",55,"P138");
navigation[75] = new navElem(75,"Dronning Maud Land","pi1651063614.htm",55,"1.D11");
navigation[76] = new navElem(76,"Dresden Dolls","pi1107720837.htm",55,"1.D14");
navigation[77] = new navElem(77,"Dr. Arthur Krause","pi1207922412.htm",55,"P108");
navigation[78] = new navElem(78,"E","pi903147481.htm",1,"P49");
navigation[79] = new navElem(79,"Eat Your Make Up","pi-2001843450.htm",78,"1.E009");
navigation[80] = new navElem(80,"Echoes Of Silence","pi1159812955.htm",78,"P35");
navigation[81] = new navElem(81,"The Eden House","pi-30004985.htm",78,"P139");
navigation[82] = new navElem(82,"Einstürzende Neubauten","pi-1185320826.htm",78,"1.E008");
navigation[83] = new navElem(83,"Elusive","pi1936701347.htm",78,"P30");
navigation[84] = new navElem(84,"The Eternal Fall","pi1269891079.htm",78,"P146");
navigation[85] = new navElem(85,"Eva O","pi-742258992.htm",78,"1.E005");
navigation[86] = new navElem(86,"Ex-Voto","pi-801960826.htm",78,"1.E007");
navigation[87] = new navElem(87,"F-J","pi-1850001813.htm",null,"P41");
navigation[88] = new navElem(88,"Faces Of Sarah, The","pi-1158454976.htm",87,"1.F002");
navigation[89] = new navElem(89,"Faith and the Muse","pi1116787924.htm",87,"1.F010");
navigation[90] = new navElem(90,"Fangs On Fur","pi1248163480.htm",87,"P145");
navigation[91] = new navElem(91,"Fields Of The Nephilim","pi1722104519.htm",87,"1.F006");
navigation[92] = new navElem(92,"Fliehende Stürme","pi180135995.htm",87,"1.F004");
navigation[93] = new navElem(93,"Formfleisch","pi-799871579.htm",87,"1.F08");
navigation[94] = new navElem(94,"Frankenstein","pi1991317023.htm",87,"1.F009");
navigation[95] = new navElem(95,"Frank The Baptist","pi179675034.htm",87,"1.F003");
navigation[96] = new navElem(96,"The Fright","pi-1558012634.htm",87,"P118");
navigation[97] = new navElem(97,"Frustration","pi1065452096.htm",87,"P22");
navigation[98] = new navElem(98,"Funhouse","pi-1703903367.htm",87,"1.F005");
navigation[99] = new navElem(99,"Gang Of Four","pi360409900.htm",87,"P23");
navigation[100] = new navElem(100,"Garden of Delight","pi1793046648.htm",87,"1.G005");
navigation[101] = new navElem(101,"Gestalt","pi-776002168.htm",87,"P114");
navigation[102] = new navElem(102,"Ghost of Lemora, The","pi-499437374.htm",87,"1.G004");
navigation[103] = new navElem(103,"Gitane Demone","pi-998194283.htm",87,"P124");
navigation[104] = new navElem(104,"Götterdämmerung","pi-796110965.htm",87,"1.G003");
navigation[105] = new navElem(105,"The Guests","pi1471955412.htm",87,"P55");
navigation[106] = new navElem(106,"Hatesex","pi-1254260390.htm",87,"1.H007");
navigation[107] = new navElem(107,"Hearts Fail","pi-1457146677.htm",87,"1.H005");
navigation[108] = new navElem(108,"The Holy Kiss","pi-1869359240.htm",87,"P94");
navigation[109] = new navElem(109,"House Of Usher, The","pi-1413679868.htm",87,"1.H002");
navigation[110] = new navElem(110,"Human Disease","pi1721888297.htm",87,"1.H04");
navigation[111] = new navElem(111,"Ikon","pi1067985073.htm",87,"1.I001");
navigation[112] = new navElem(112,"Il Giardino Violetto","pi2006357043.htm",87,"1.I002");
navigation[113] = new navElem(113,"Joy Disaster","pi1750932681.htm",87,"P80");
navigation[114] = new navElem(114,"Joy Division","pi1809611326.htm",87,"P20");
navigation[115] = new navElem(115,"Judith","pi-706160849.htm",87,"P19");
navigation[116] = new navElem(116,"K-O","pi-1802718512.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","pi1236395349.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","pi1901726862.htm",116,"P116");
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","pi-1343851418.htm",116,"P131");
navigation[137] = new navElem(137,"Mors Syphilitica","pi676986138.htm",116,"1.M008");
navigation[138] = new navElem(138,"Morticia","pi1119814389.htm",116,"1.M013");
navigation[139] = new navElem(139,"Murder At The Registry","pi1943104019.htm",116,"1.M005");
navigation[140] = new navElem(140,"Murnau&#0039;s Playhouse","pi1268558551.htm",116,"P144");
navigation[141] = new navElem(141,"New Days Delay","pi-617790203.htm",116,"P99");
navigation[142] = new navElem(142,"New Model Army","pi-2134729237.htm",116,"1.N003");
navigation[143] = new navElem(143,"Neva","pi903363074.htm",116,"1.N002");
navigation[144] = new navElem(144,"Nim Vind","pi1975769018.htm",116,"1.V007");
navigation[145] = new navElem(145,"Nosferatu","pi409174243.htm",116,"1.N005");
navigation[146] = new navElem(146,"Norma Loy","pi1864726876.htm",116,"1.N004");
navigation[147] = new navElem(147,"One","pi-1968700730.htm",116,"1.O003");
navigation[148] = new navElem(148,"Ordeal By Fire","pi-18855291.htm",116,"1.O002");
navigation[149] = new navElem(149,"Other, The","pi-512497135.htm",116,"1.O004");
navigation[150] = new navElem(150,"Other Voices","pi-377506621.htm",116,"P10");
navigation[151] = new navElem(151,"P-T","pi694308497.htm",null,"P43");
navigation[152] = new navElem(152,"P","pi1059790630.htm",151,"P50");
navigation[153] = new navElem(153,"Passion Play","pi1786135653.htm",152,"1.P001");
navigation[154] = new navElem(154,"La Peste Negra","pi-1092004258.htm",152,"P125");
navigation[155] = new navElem(155,"Phantom Limbs","pi-867257061.htm",152,"1.P002");
navigation[156] = new navElem(156,"Pink Turns Blue","pi-463675872.htm",152,"1.P04");
navigation[157] = new navElem(157,"Pins And Needles","pi1063877844.htm",152,"P11");
navigation[158] = new navElem(158,"Play Dead","pi437180409.htm",152,"1.P6");
navigation[159] = new navElem(159,"The Prids","pi-1217780165.htm",152,"1.P007");
navigation[160] = new navElem(160,"Q","pi1678810543.htm",151,"P51");
navigation[161] = new navElem(161,"Quidam","pi1121115999.htm",160,"1.Q001");
navigation[162] = new navElem(162,"R","pi-984157756.htm",151,"P52");
navigation[163] = new navElem(163,"Red Lorry Yellow Lorry","pi-1477039345.htm",162,"1.R003");
navigation[164] = new navElem(164,"Red Voice Choir","pi-292407022.htm",162,"P104");
navigation[165] = new navElem(165,"Reptyle","pi316213568.htm",162,"1.R002");
navigation[166] = new navElem(166,"Return To Khafji","pi-646525891.htm",162,"P130");
navigation[167] = new navElem(167,"Revue Noir","pi1025330137.htm",162,"P128");
navigation[168] = new navElem(168,"Rezurex ","pi-1420434181.htm",162,"P12");
navigation[169] = new navElem(169,"Monica Richards","pi-1217704145.htm",162,"P64");
navigation[170] = new navElem(170,"S","pi1786681205.htm",151,"P53");
navigation[171] = new navElem(171,"Salvation","pi211270103.htm",170,"P37");
navigation[172] = new navElem(172,"Saros","pi1891909299.htm",170,"P93");
navigation[173] = new navElem(173,"Scarlet`s Remains","pi-666431751.htm",170,"1.S020");
navigation[174] = new navElem(174,"Screaming Dead","pi-1555272951.htm",170,"P134");
navigation[175] = new navElem(175,"Scary Bitches","pi-1415987821.htm",170,"1.S010");
navigation[176] = new navElem(176,"Screaming Banshee Aircrew","pi-51962606.htm",170,"P65");
navigation[177] = new navElem(177,"Sensorium","pi-1335212932.htm",170,"1.S13");
navigation[178] = new navElem(178,"Sex Gang Children","pi1276123903.htm",170,"1.S15");
navigation[179] = new navElem(179,"Shadow Project","pi-1629079978.htm",170,"1.S12");
navigation[180] = new navElem(180,"Shadow Reichenstein","pi170238233.htm",170,"1.S019");
navigation[181] = new navElem(181,"Shock Therapy","pi-1034199568.htm",170,"1.S009");
navigation[182] = new navElem(182,"Siouxsie & The Banshees","pi247818903.htm",170,"P26");
navigation[183] = new navElem(183,"The Sisters Of Mercy","pi1588826273.htm",170,"P56");
navigation[184] = new navElem(184,"Sixteens","pi-2129899900.htm",170,"P13");
navigation[185] = new navElem(185,"Skabs, The","pi1047844859.htm",170,"1.S11");
navigation[186] = new navElem(186,"Skeletal Family","pi-1648166122.htm",170,"1.S007");
navigation[187] = new navElem(187,"Sleeping Children","pi-1978437293.htm",170,"1.S018");
navigation[188] = new navElem(188,"Smiths, The","pi1128628093.htm",170,"1.S022");
navigation[189] = new navElem(189,"Solemn Novena","pi-693247238.htm",170,"P63");
navigation[190] = new navElem(190,"Soulscape","pi1169578852.htm",170,"1.S021");
navigation[191] = new navElem(191,"The Sound","pi402983944.htm",170,"P140");
navigation[192] = new navElem(192,"Southern Death Cult, The","pi637525109.htm",170,"1.S006");
navigation[193] = new navElem(193,"Specimen","pi-1067718945.htm",170,"1.S008");
navigation[194] = new navElem(194,"Strange Dolls Cult","pi1174753833.htm",170,"P59");
navigation[195] = new navElem(195,"Sunshine Blind","pi792031693.htm",170,"1.S14");
navigation[196] = new navElem(196,"Super Heroines","pi1234377446.htm",170,"P57");
navigation[197] = new navElem(197,"Swann Danger","pi628401012.htm",170,"P81");
navigation[198] = new navElem(198,"T","pi-929841774.htm",151,"P54");
navigation[199] = new navElem(199,"Telegram Frank","pi-1927762573.htm",198,"P142");
navigation[200] = new navElem(200,"Thelema ","pi578132955.htm",198,"P16");
navigation[201] = new navElem(201,"The Theatre of Hate","pi-775163252.htm",198,"1.T002");
navigation[202] = new navElem(202,"Tones On Tail","pi-564672055.htm",198,"1.T004");
navigation[203] = new navElem(203,"Tragic Black","pi-2002624706.htm",198,"1.T03");
navigation[204] = new navElem(204,"U-Z","pi673060222.htm",null,"P44");
navigation[205] = new navElem(205,"The Vanishing","pi1738907771.htm",204,"1.V009");
navigation[206] = new navElem(206,"Vendemmian","pi1885613638.htm",204,"P17");
navigation[207] = new navElem(207,"Violet Stigmata","pi-1964622227.htm",204,"1.V008");
navigation[208] = new navElem(208,"Virgin Prunes","pi2125762597.htm",204,"1.V001");
navigation[209] = new navElem(209,"Voices of Masada","pi1101652106.htm",204,"1.V006");
navigation[210] = new navElem(210,"Voodoo Church","pi1399061894.htm",204,"1.V005");
navigation[211] = new navElem(211,"The Wake","pi1705436167.htm",204,"P18");
navigation[212] = new navElem(212,"Wallenberg","pi1327195437.htm",204,"1.W005");
navigation[213] = new navElem(213,"Wasteland","pi-1072523209.htm",204,"1.W004");
navigation[214] = new navElem(214,"The Weegs","pi414139685.htm",204,"P32");
navigation[215] = new navElem(215,"Whispers In The Shadow","pi1235897659.htm",204,"P126");
navigation[216] = new navElem(216,"Rozz Williams","pi583748960.htm",204,"1.W002");
navigation[217] = new navElem(217,"Rozz Williams & Gitane Demone","pi-967176560.htm",204,"1.R004");
navigation[218] = new navElem(218,"Zadera","pi1097612713.htm",204,"1.Z001");
navigation[219] = new navElem(219,"Zero Le Creche","pi-1622342485.htm",204,"P119");
navigation[220] = new navElem(220,"Zombina and the Skeletones","pi1556079094.htm",204,"1.Z002");
navigation[221] = new navElem(221,"Zurueck Placenta","pi-1336756980.htm",204,"P82");
navigation[222] = new navElem(222,"Sampler","pi641035060.htm",null,"1.28");
navigation[223] = new navElem(223,"Electronics, Minimal","pi1067460400.htm",null,"7");
navigation[224] = new navElem(224,"The Actor","pi290792888.htm",223,"P102");
navigation[225] = new navElem(225,"Agent Side Grinder","pi1030988302.htm",223,"P100");
navigation[226] = new navElem(226,"Alien Skull Paint","pi817747096.htm",223,"1.MA001");
navigation[227] = new navElem(227,"Anti Trust","pi-275096235.htm",223,"P69");
navigation[228] = new navElem(228,"Datafreq","pi-1880837156.htm",223,"P29");
navigation[229] = new navElem(229,"Die Puppe","pi1936940972.htm",223,"P60");
navigation[230] = new navElem(230,"Echo West","pi-2006307706.htm",223,"1.ME001");
navigation[231] = new navElem(231,"Ende Shneafliet","pi1226925949.htm",223,"P101");
navigation[232] = new navElem(232,"Ensemble Pittoresque","pi-1672861804.htm",223,"P123");
navigation[233] = new navElem(233,"The Evasion On Stake","pi2040640921.htm",223,"P75");
navigation[234] = new navElem(234,"ExKurs","pi-1878427604.htm",223,"P74");
navigation[235] = new navElem(235,"Experiment Nnord","pi-225369900.htm",223,"P72");
navigation[236] = new navElem(236,"Geisterfahrer","pi1740547440.htm",223,"P70");
navigation[237] = new navElem(237,"Graphik Magazin","pi-1813270580.htm",223,"1.MG001");
navigation[238] = new navElem(238,"Das Institut","pi-1200543549.htm",223,"P71");
navigation[239] = new navElem(239,"Johnny Beton and The Moertels","pi-1466633596.htm",223,"P76");
navigation[240] = new navElem(240,"Le Syndicat Electronique","pi-1962467224.htm",223,"1.ML001");
navigation[241] = new navElem(241,"Charles Lindbergh","pi1409497756.htm",223,"P67");
navigation[242] = new navElem(242,"Makina Girgir","pi166347142.htm",223,"P68");
navigation[243] = new navElem(243,"Matthias Schuster","pi-2038192432.htm",223,"1.MM001");
navigation[244] = new navElem(244,"Neongrau","pi-485727113.htm",223,"P62");
navigation[245] = new navElem(245,"Notstandskomitee","pi1610209531.htm",223,"P73");
navigation[246] = new navElem(246,"Sampler","pi914164657.htm",223,"1.MV001");
navigation[247] = new navElem(247,"Solitairen Effekten","pi-153322705.htm",223,"P103");
navigation[248] = new navElem(248,"Sonnenbrandt","pi2104145489.htm",223,"P66");
navigation[249] = new navElem(249,"Stoerung","pi1223138495.htm",223,"P122");
navigation[250] = new navElem(250,"Hungry Eye Records","pi1192954374.htm",null,"P83");
navigation[251] = new navElem(251,"Bellmer Dolls","pi-1816273721.htm",250,"P92");
navigation[252] = new navElem(252,"Black Ice","pi445915550.htm",250,"P91");
navigation[253] = new navElem(253,"The Holy Kiss","pi-1854980303.htm",250,"P90");
navigation[254] = new navElem(254,"The Phantom Limbs","pi-914860124.htm",250,"P85");
navigation[255] = new navElem(255,"Saros","pi-238086542.htm",250,"P87");
navigation[256] = new navElem(256,"Sixteens","pi860580336.htm",250,"P89");
navigation[257] = new navElem(257,"The Skabs","pi1913740811.htm",250,"P88");
navigation[258] = new navElem(258,"The Vanishing","pi-1371396337.htm",250,"P84");
navigation[259] = new navElem(259,"The Weegs","pi1038401493.htm",250,"P86");
navigation[260] = new navElem(260,"Multimedia","pi-783992373.htm",null,"2");
navigation[261] = new navElem(261,"Merchandise","pi-1227388240.htm",null,"3");
navigation[262] = new navElem(262,"45 Grave","pi615249515.htm",261,"P77");
navigation[263] = new navElem(263,"Blacklist","pi-1006479726.htm",261,"P143");
navigation[264] = new navElem(264,"The Deep Eynde","pi1087938898.htm",261,"3.D001");
navigation[265] = new navElem(265,"Frank the Baptist","pi-33763543.htm",261,"3.F001");
navigation[266] = new navElem(266,"Kiss The Blade","pi1104629850.htm",261,"3.K001");
navigation[267] = new navElem(267,"Norma Loy","pi-1033583223.htm",261,"P24");
navigation[268] = new navElem(268,"Ordeal By Fire","pi-883923347.htm",261,"3.O001");
navigation[269] = new navElem(269,"Party T-Shirts","pi1458895909.htm",261,"3.P002");
navigation[270] = new navElem(270,"Postkarten","pi1800177028.htm",261,"3.P001");
navigation[271] = new navElem(271,"Reptyle","pi-1522941997.htm",261,"3.R001");
navigation[272] = new navElem(272,"Scarlet&#0039;s Remains","pi730513115.htm",261,"P25");
navigation[273] = new navElem(273,"Skeletal Family","pi747891651.htm",261,"3.S001");
navigation[274] = new navElem(274,"Wipers","pi-1592923656.htm",261,"3.W001");
navigation[275] = new navElem(275,"Zombina and the Skeletons","pi1700973419.htm",261,"P58");
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","pi-389519260.htm",276,"P112");
navigation[279] = new navElem(279,"Crawling Tunes","pi1607886506.htm",276,"P79");
navigation[280] = new navElem(280,"Deathrock Magazine","pi-1687885422.htm",276,"P111");
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,"Books","pi1622803649.htm",null,"4.02");
navigation[286] = new navElem(286,"Comics","pi1993580592.htm",null,"P98");
navigation[287] = new navElem(287,"Specials...WOW!","pi-376860324.htm",null,"6");
navigation[288] = new navElem(288,"Z123456","pi1161253162.htm",null,"P36");

// 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"));

