//
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/bulletcat1st.gif" width="13" height="14" 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(){
	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="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/bulletcatact.gif" width="13" height="14" 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/bulletcat1stcls.gif" width="13" height="14" alt="BulletCat1stCls.gif" border="0" align="bottom" hspace="0" vspace="0" class="catnav"></td>'
		else strHTML += '<td width=\"1%\"><img src="assets/images/bulletcat1st.gif" width="13" height="14" 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,"Cases / Casebau","pi121887871.htm",null,"03");
navigation[1] = new navElem(1,"CD Cases","pi1079436664.htm",0,"03-2");
navigation[2] = new navElem(2,"CD-Player Cases","pi-1193128825.htm",0,"03-5");
navigation[3] = new navElem(3,"Effekt Racks","pi-834223301.htm",0,"03-7");
navigation[4] = new navElem(4,"Mikrofon Cases","pi-709461782.htm",0,"03-9");
navigation[5] = new navElem(5,"Mixer-Cases","pi1733734311.htm",0,"03-3");
navigation[6] = new navElem(6,"SKB-Cases","pi1112352191.htm",0,"01-9-4-01");
navigation[7] = new navElem(7,"Spezial Cases","pi-662324716.htm",0,"03-6");
navigation[8] = new navElem(8,"Turntable Cases","pi1407531206.htm",0,"03-4");
navigation[9] = new navElem(9,"Verstärker Racks","pi160127265.htm",0,"03-8");
navigation[10] = new navElem(10,"Vinyl Cases","pi600300628.htm",0,"03-1");
navigation[11] = new navElem(11,"DJ-Equipment","pi197244067.htm",null,"9");
navigation[12] = new navElem(12,"CD Player","pi-2123924011.htm",11,"01-4");
navigation[13] = new navElem(13,"Denon","pi1737223544.htm",12,"01-4-2");
navigation[14] = new navElem(14,"Numark","pi-1962486519.htm",12,"4015");
navigation[15] = new navElem(15,"Omnitronic","pi1075126114.htm",12,"01-4-3");
navigation[16] = new navElem(16,"Pioneer","pi1075297946.htm",12,"01-4-4");
navigation[17] = new navElem(17,"Stage Line","pi1759086742.htm",12,"4030");
navigation[18] = new navElem(18,"Stanton","pi-1770797473.htm",12,"4035");
navigation[19] = new navElem(19,"Tascam","pi1934833844.htm",12,"4040");
navigation[20] = new navElem(20,"Technics","pi-1282232411.htm",12,"4045");
navigation[21] = new navElem(21,"Vestax","pi-891871742.htm",12,"4050");
navigation[22] = new navElem(22,"Kopfhörer","pi-2040446992.htm",11,"01-8");
navigation[23] = new navElem(23,"AKG","pi719937818.htm",22,"8005");
navigation[24] = new navElem(24,"Beyerdynamic","pi2093182355.htm",22,"8010");
navigation[25] = new navElem(25,"Denon","pi1217156312.htm",22,"8015");
navigation[26] = new navElem(26,"Gemini","pi-756745735.htm",22,"8020");
navigation[27] = new navElem(27,"Numark","pi739616454.htm",22,"8025");
navigation[28] = new navElem(28,"Pioneer","pi1050748682.htm",22,"01-8-2");
navigation[29] = new navElem(29,"Sennheiser","pi-1340912568.htm",22,"01-8-3");
navigation[30] = new navElem(30,"Shure","pi-2027670321.htm",22,"8040");
navigation[31] = new navElem(31,"Stanton","pi1061915317.htm",22,"01-8-8");
navigation[32] = new navElem(32,"Technics","pi238413726.htm",22,"01-8-1");
navigation[33] = new navElem(33,"Mikrofone","pi-360035317.htm",11,"01-7");
navigation[34] = new navElem(34,"AKG","pi760821262.htm",33,"01-7-1");
navigation[35] = new navElem(35,"AKG Funkmikrofone","pi1063974818.htm",33,"01-7-1-2");
navigation[36] = new navElem(36,"Sennheiser","pi851128819.htm",33,"01-7-5");
navigation[37] = new navElem(37,"Sennheiser Funkmikrofone","pi2127106939.htm",33,"01-7-6");
navigation[38] = new navElem(38,"Shure","pi-700833674.htm",33,"01-7-3");
navigation[39] = new navElem(39,"Shure Funkmikrofone","pi1063115092.htm",33,"01-7-3-1");
navigation[40] = new navElem(40,"Mischpulte","pi1154141604.htm",11,"01-5");
navigation[41] = new navElem(41,"Bühnen und Recording Mischpulte","pi2095679183.htm",40,"01-5-2");
navigation[42] = new navElem(42,"Soundcraft","pi1375074060.htm",41,"01-5-2-1");
navigation[43] = new navElem(43,"DJ Mischpulte","pi185325321.htm",40,"01-5-1");
navigation[44] = new navElem(44,"Denon","pi-1386045072.htm",43,"01-5-1-7");
navigation[45] = new navElem(45,"ECLER","pi106144651.htm",43,"01-5-1-4");
navigation[46] = new navElem(46,"Numark","pi-1336687193.htm",43,"3040");
navigation[47] = new navElem(47,"Omnitronic","pi358316615.htm",43,"01-5-1-8-1");
navigation[48] = new navElem(48,"Pioneer","pi1130430641.htm",43,"01-5-1-8");
navigation[49] = new navElem(49,"Rodec","pi-1831773667.htm",43,"01-5-1-5");
navigation[50] = new navElem(50,"Soundcraft (Urei)","pi1684987949.htm",43,"3065");
navigation[51] = new navElem(51,"Stanton","pi-1788372703.htm",43,"01-5-1-6");
navigation[52] = new navElem(52,"Technics","pi493295144.htm",43,"3085");
navigation[53] = new navElem(53,"Vestax","pi-377036138.htm",43,"01-5-1-1");
navigation[54] = new navElem(54,"Zubehör, Erfader","pi-1543078919.htm",43,"01-5-1-9");
navigation[55] = new navElem(55,"Powermischpulte ( Mit eingebauter Endstufe)","pi1088152713.htm",40,"01-5-3");
navigation[56] = new navElem(56,"Dynacord","pi-1344762316.htm",55,"01-5-3-3");
navigation[57] = new navElem(57,"Soundcraft","pi725238294.htm",55,"01-5-3-1");
navigation[58] = new navElem(58,"Plattenspieler","pi-964789134.htm",11,"01-6");
navigation[59] = new navElem(59,"Numark","pi-481947045.htm",58,"5030");
navigation[60] = new navElem(60,"Omnitronic","pi-141624320.htm",58,"5040");
navigation[61] = new navElem(61,"Stage Line","pi-91599871.htm",58,"5050");
navigation[62] = new navElem(62,"Stanton","pi-579394625.htm",58,"01-6-3");
navigation[63] = new navElem(63,"Technics","pi1395113354.htm",58,"01-6-1");
navigation[64] = new navElem(64,"Vestax","pi-2100933309.htm",58,"01-6-2");
navigation[65] = new navElem(65,"Systeme/Nadeln/Slipmat","pi1745209032.htm",11,"01-6a");
navigation[66] = new navElem(66,"Numark","pi98058798.htm",65,"6010");
navigation[67] = new navElem(67,"Ortofon","pi1134272809.htm",65,"01-10-1");
navigation[68] = new navElem(68,"Concorde Set`s","pi-425885299.htm",67,"01-10-1-1");
navigation[69] = new navElem(69,"Concorde Systeme","pi1851028426.htm",67,"01-10-1-2");
navigation[70] = new navElem(70,"Concorde Twin-Set`s","pi-666115443.htm",67,"01-10-1-1A");
navigation[71] = new navElem(71,"Nadeln","pi-1700442671.htm",67,"01-10-1-6");
navigation[72] = new navElem(72,"OM Set`s","pi758957174.htm",67,"01-10-1-3");
navigation[73] = new navElem(73,"OM Systeme","pi-150123415.htm",67,"01-10-1-4");
navigation[74] = new navElem(74,"Shure","pi1161556154.htm",65,"01-10-2");
navigation[75] = new navElem(75,"Shure Ersatznadeln","pi1075822567.htm",74,"01-10-2-2");
navigation[76] = new navElem(76,"Shure Systeme","pi-563547037.htm",74,"01-10-2-1");
navigation[77] = new navElem(77,"Slipmat","pi-696564195.htm",65,"6080");
navigation[78] = new navElem(78,"Stanton ","pi1064223499.htm",65,"01-10-3");
navigation[79] = new navElem(79,"Ersatznadeln ","pi266413859.htm",78,"01-10-3-3");
navigation[80] = new navElem(80,"Plug In DJ Systeme","pi1064566589.htm",78,"01-10-3-1");
navigation[81] = new navElem(81,"Unterdeck Systeme (Headshell)","pi956434923.htm",78,"01-10-3-2");
navigation[82] = new navElem(82,"Vestax","pi2012804631.htm",65,"6060");
navigation[83] = new navElem(83,"Zubehör / Diverse","pi379317260.htm",65,"6090");
navigation[84] = new navElem(84,"Event-Zubehör","pi1226587477.htm",null,"ADAM HALL");
navigation[85] = new navElem(85,"Event Floor","pi-762313821.htm",84,"ZAHEF");
navigation[86] = new navElem(86,"Feinriefenmatten","pi-2035199092.htm",84,"ZKBM");
navigation[87] = new navElem(87,"Kabelbrücken","pi-1521408526.htm",84,"AHZ");
navigation[88] = new navElem(88,"Lautsprecher Selbstbau","pi1381658820.htm",null,"01-2");
navigation[89] = new navElem(89,"Aktivmodule","pi1264191133.htm",88,"LSBAKTIV");
navigation[90] = new navElem(90,"Car HiFI Chassis","pi1249715105.htm",88,"01-2-3");
navigation[91] = new navElem(91,"Adapterringe","pi1112032721.htm",90,"LSBCHADAPT");
navigation[92] = new navElem(92,"Breitband","pi-1749894989.htm",90,"CH-BRTB");
navigation[93] = new navElem(93,"Visaton","pi706431352.htm",92,"CH-BBV");
navigation[94] = new navElem(94,"Hochton","pi-494062254.htm",90,"LSBCHCHT");
navigation[95] = new navElem(95,"Visaton","pi-348517525.htm",94,"LSBCHCHTV");
navigation[96] = new navElem(96,"Koaxialsysteme","pi-262452323.htm",90,"01-2-3-1");
navigation[97] = new navElem(97,"Visaton","pi200648366.htm",96,"Visaton1");
navigation[98] = new navElem(98,"Mittelton","pi-2093603888.htm",90,"LSBCHCMT");
navigation[99] = new navElem(99,"Visaton","pi-746000770.htm",98,"LSBCHCMTV");
navigation[100] = new navElem(100,"Tiefton","pi-1733219439.htm",90,"LSBCHCTT");
navigation[101] = new navElem(101,"Visaton","pi-556326873.htm",100,"LSBCHCTTV");
navigation[102] = new navElem(102,"Frequenzweichen","pi1885259714.htm",88,"01-2-6");
navigation[103] = new navElem(103,"HiFi-Frequenzweichen","pi2054016139.htm",102,"LSBFWHIFI");
navigation[104] = new navElem(104,"Visaton","pi-18582173.htm",103,"LSBFRQHIVI");
navigation[105] = new navElem(105,"PA-Frequenzweichen","pi1523371762.htm",102,"LSBFWPA");
navigation[106] = new navElem(106,"Link Dynamics","pi-263748611.htm",105,"LSBFRQLD");
navigation[107] = new navElem(107,"Frequenzweichen Bauteile","pi-388356929.htm",88,"01-2-7");
navigation[108] = new navElem(108,"Kondensatoren","pi1542305029.htm",107,"Z1-2");
navigation[109] = new navElem(109,"Elko glatt EGL","pi-929000234.htm",108,"Z1-2-3");
navigation[110] = new navElem(110,"Elko rau ERA","pi292711839.htm",108,"Z1-2-2");
navigation[111] = new navElem(111,"Mini Elko ELCAP","pi-787809958.htm",108,"Z1-2-1");
navigation[112] = new navElem(112,"MKP  Q4 400 V","pi-946821283.htm",108,"Z1-2-7");
navigation[113] = new navElem(113,"MKP Audyn Cap QS 400 V","pi928667969.htm",108,"Z1-2-8");
navigation[114] = new navElem(114,"MKP Audyn Cap QS 630 V","pi-1303243154.htm",108,"Z1-2-9");
navigation[115] = new navElem(115,"MKT A 160 V","pi-56186651.htm",108,"Z1-2-5");
navigation[116] = new navElem(116,"MKT A 250 V","pi-1521914302.htm",108,"Z1-2-6");
navigation[117] = new navElem(117,"MKT R 100 V","pi1136838208.htm",108,"Z1-2-4");
navigation[118] = new navElem(118,"Leiterplatinen","pi1667372731.htm",107,"Z1-4");
navigation[119] = new navElem(119,"Spulen","pi-1608773740.htm",107,"Z1-1");
navigation[120] = new navElem(120,"Bandspulen","pi1163504549.htm",119,"I.T. H-B");
navigation[121] = new navElem(121,"HQ Rollenkernspulen","pi1101919124.htm",119,"Z1-1-9-1");
navigation[122] = new navElem(122,"I-Punkt Spulen","pi1717529391.htm",119,"Z1-1-8");
navigation[123] = new navElem(123,"Luftspulen / 0,50 mm ","pi-1876926119.htm",119,"Z1-1-1");
navigation[124] = new navElem(124,"Luftspulen / 0,71 mm","pi671503800.htm",119,"Z1-1-2");
navigation[125] = new navElem(125,"Luftspulen / 0,95 mm","pi1056169459.htm",119,"Z1-1-3");
navigation[126] = new navElem(126,"Luftspulen / 1,40 mm","pi-629985542.htm",119,"Z1-1-4");
navigation[127] = new navElem(127,"Luftspulen / 2,00 mm","pi387962749.htm",119,"Z1-1-5");
navigation[128] = new navElem(128,"Luftspulen / 3,00 mm","pi1879261958.htm",119,"Z1-1-6");
navigation[129] = new navElem(129,"Trafokernspulen","pi1096544849.htm",119,"Z1-1-9");
navigation[130] = new navElem(130,"Widerstände","pi-1582608414.htm",107,"Z1-3");
navigation[131] = new navElem(131,"Keramik 10 Watt","pi362974245.htm",130,"Z1-3-6");
navigation[132] = new navElem(132,"Keramik 20 Watt","pi842323764.htm",130,"Z1-3-7");
navigation[133] = new navElem(133,"Keramik 5 Watt","pi-407117694.htm",130,"Z1-3-5");
navigation[134] = new navElem(134,"Guitar Chassis","pi1078311249.htm",88,"01-2-4");
navigation[135] = new navElem(135,"Celestion","pi-1713793105.htm",134,"01-2-4-3");
navigation[136] = new navElem(136,"Celestion Acoustic","pi1397482197.htm",135,"01-2-4-3-3");
navigation[137] = new navElem(137,"Celestion Bass","pi509754738.htm",135,"01-2-4-3-4");
navigation[138] = new navElem(138,"Celestion Classic","pi269046287.htm",135,"01-2-4-3-1");
navigation[139] = new navElem(139,"Celestion General","pi-1440946524.htm",135,"01-2-4-3-2");
navigation[140] = new navElem(140,"Eminence","pi-826744300.htm",134,"01-2-4-1");
navigation[141] = new navElem(141,"Eminence Legend Bass-Chassis","pi-139330518.htm",140,"01-2-4-1-3");
navigation[142] = new navElem(142,"Eminence Legend E-Guitar Chassis","pi727125859.htm",140,"01-2-4-1-1");
navigation[143] = new navElem(143,"Eminence Patriot","pi-1631132179.htm",140,"01-2-4-1-8");
navigation[144] = new navElem(144,"Eminence Red Coat","pi1917402396.htm",140,"01-2-4-1-9");
navigation[145] = new navElem(145,"HiFi Chassis","pi903911567.htm",88,"01-2-2");
navigation[146] = new navElem(146,"Breitband","pi88820159.htm",145,"Breitband");
navigation[147] = new navElem(147,"Oval","pi1216024734.htm",146,"HFCBO");
navigation[148] = new navElem(148,"Visaton","pi-191422468.htm",147,"HFCBOV");
navigation[149] = new navElem(149,"Rund","pi-535830585.htm",146,"HFCBR");
navigation[150] = new navElem(150,"Visaton","pi-666040499.htm",149,"HFCBRV");
navigation[151] = new navElem(151,"Hochton","pi1156517896.htm",145,"Hochtöner");
navigation[152] = new navElem(152,"Davis","pi680311010.htm",151,"Davis");
navigation[153] = new navElem(153,"Eton","pi-367768818.htm",151,"Eton");
navigation[154] = new navElem(154,"Excel","pi848421985.htm",151,"Excel");
navigation[155] = new navElem(155,"Gradient","pi397251040.htm",151,"Gradient");
navigation[156] = new navElem(156,"Mivoc","pi-675355322.htm",151,"LSBHIHOMIV");
navigation[157] = new navElem(157,"Morel","pi-581465157.htm",151,"Morel");
navigation[158] = new navElem(158,"Peerless","pi1585431927.htm",151,"Peerless");
navigation[159] = new navElem(159,"Seas","pi1454858757.htm",151,"Seas");
navigation[160] = new navElem(160,"Vifa","pi29730602.htm",151,"Vifa");
navigation[161] = new navElem(161,"Visaton","pi-2026008428.htm",151,"Visaton");
navigation[162] = new navElem(162,"Mittelton","pi-1066598039.htm",145,"Mitteltöne");
navigation[163] = new navElem(163,"Davis","pi-1234111757.htm",162,"Davis-MT");
navigation[164] = new navElem(164,"Eton","pi1937756207.htm",162,"Eton-MT");
navigation[165] = new navElem(165,"Excel","pi895822758.htm",162,"Excel-MT");
navigation[166] = new navElem(166,"Gradient","pi-1097367975.htm",162,"Gradient-M");
navigation[167] = new navElem(167,"Mivoc","pi631124136.htm",162,"LSBHIFIMIV");
navigation[168] = new navElem(168,"Morel","pi-907999560.htm",162,"Morel-MT");
navigation[169] = new navElem(169,"Peerless","pi-2092838332.htm",162,"PeerlessMT");
navigation[170] = new navElem(170,"Seas","pi-1335969798.htm",162,"Seas-MT");
navigation[171] = new navElem(171,"Vifa","pi-223347091.htm",162,"Vifa-MT");
navigation[172] = new navElem(172,"Visaton","pi1217406077.htm",162,"Visaton-MT");
navigation[173] = new navElem(173,"Tiefton","pi-810707594.htm",145,"Tiefton");
navigation[174] = new navElem(174,"Davis","pi1920667125.htm",173,"Davis-TT");
navigation[175] = new navElem(175,"Eton","pi577475090.htm",173,"Eton-TT");
navigation[176] = new navElem(176,"Excel","pi1554307371.htm",173,"Excel-TT");
navigation[177] = new navElem(177,"Gradient","pi399953552.htm",173,"GradientTT");
navigation[178] = new navElem(178,"Morel","pi39300945.htm",173,"Morel-TT");
navigation[179] = new navElem(179,"Peerless","pi808228670.htm",173,"PeerlessTT");
navigation[180] = new navElem(180,"Seas","pi-1590146585.htm",173,"Seas-TT");
navigation[181] = new navElem(181,"Vifa","pi537560988.htm",173,"Vifa-TT");
navigation[182] = new navElem(182,"Visaton","pi1070357258.htm",173,"01-2-2-1");
navigation[183] = new navElem(183,"Körperschallwandler","pi-603820778.htm",88,"LSBKSW");
navigation[184] = new navElem(184,"Visaton","pi837742815.htm",183,"LSBKSWVI");
navigation[185] = new navElem(185,"Lautsprecherbausätze","pi1203668695.htm",88,"01-01");
navigation[186] = new navElem(186,"LS-Bauteile und Zubehör","pi1076334605.htm",88,"01-2-8");
navigation[187] = new navElem(187,"Abdeckköpfe","pi-1298816720.htm",186,"LSBBZAK");
navigation[188] = new navElem(188,"Visaton","pi790525297.htm",187,"LSBBZAKVI");
navigation[189] = new navElem(189,"Anschluß-Terminals ","pi659112681.htm",186,"01-2-8-4");
navigation[190] = new navElem(190,"PA-Terminals","pi-727482936.htm",189,"LSBBZATPA");
navigation[191] = new navElem(191,"Visaton","pi1795964995.htm",189,"LSBBZATVIS");
navigation[192] = new navElem(192,"Bassreflexrohre","pi-525678712.htm",186,"01-2-8-3");
navigation[193] = new navElem(193,"Visaton","pi261265665.htm",192,"LSBBZBRVIS");
navigation[194] = new navElem(194,"Boxenfüße / Spikes","pi-1218848031.htm",186,"LSBBZBFS");
navigation[195] = new navElem(195,"Dämpfungsmaterial / Bespannstoffe","pi-561252552.htm",186,"LSBBZDÄMPF");
navigation[196] = new navElem(196,"Ecken, Griffe, Alu-Profile","pi1076927560.htm",186,"01-2-6-6");
navigation[197] = new navElem(197,"Ersatzteile","pi1209191363.htm",186,"LSBBZERSAT");
navigation[198] = new navElem(198,"Visaton","pi-266403000.htm",197,"LSBBZERSVI");
navigation[199] = new navElem(199,"Kompensationsmagnete","pi-780611431.htm",186,"LSBBZKOMPE");
navigation[200] = new navElem(200,"LS-Akustik Schaumfronten","pi-1058895613.htm",186,"01-2-8-2");
navigation[201] = new navElem(201,"LS-Schutzgitter","pi1419771978.htm",186,"01-2-8-1");
navigation[202] = new navElem(202,"Monacor","pi-1193602313.htm",201,"01-2-6-1-1");
navigation[203] = new navElem(203,"Visaton","pi-836038628.htm",201,"LSBLSSVIS");
navigation[204] = new navElem(204,"Miniaturverstärker","pi1559041532.htm",186,"LSBBZMINIV");
navigation[205] = new navElem(205,"Regler","pi1724789924.htm",186,"LSBBZREG");
navigation[206] = new navElem(206,"Visaton","pi1250597077.htm",205,"LSBBZREGVI");
navigation[207] = new navElem(207,"Schrauben / Dübel","pi-1055793314.htm",186,"LSBBZSD");
navigation[208] = new navElem(208,"Übertrager","pi-1195065545.htm",186,"LSBBZÜT");
navigation[209] = new navElem(209,"Visaton","pi958465708.htm",208,"LSBBZÜTVI");
navigation[210] = new navElem(210,"Miniaturlautsprecher","pi-1826304644.htm",88,"LSBMINI");
navigation[211] = new navElem(211,"Visaton","pi-518682931.htm",210,"LSBMINIV");
navigation[212] = new navElem(212,"PA-Chassis","pi599752760.htm",88,"01-2-1");
navigation[213] = new navElem(213,"Celestion","pi-1491938449.htm",212,"01-2-1-3");
navigation[214] = new navElem(214,"Eminence","pi1272699353.htm",212,"01-2-1-1");
navigation[215] = new navElem(215,"Hochtöner","pi1879071038.htm",212,"01-2-5");
navigation[216] = new navElem(216,"B&C Treiber und Hörner","pi-429466770.htm",215,"01-2-5-5-1");
navigation[217] = new navElem(217,"Beyma","pi1085741013.htm",215,"01-2-5-5");
navigation[218] = new navElem(218,"Eminence Hochtöner und Zubehör","pi1055414367.htm",215,"01-2-5-1");
navigation[219] = new navElem(219,"Mivoc","pi150328341.htm",215,"LSBPAHTMIV");
navigation[220] = new navElem(220,"Monacor","pi1076084300.htm",215,"01-2-5-4");
navigation[221] = new navElem(221,"Piezo","pi-602398347.htm",215,"01-2-5-3");
navigation[222] = new navElem(222,"Mivoc","pi-1854721874.htm",212,"LSBPAMIVOC");
navigation[223] = new navElem(223,"Visaton","pi-727826138.htm",212,"01-2-1-2");
navigation[224] = new navElem(224,"Light","pi-1375372209.htm",null,"02");
navigation[225] = new navElem(225,"Controller / Lichtsteuerpulte","pi-1494060078.htm",224,"02-5");
navigation[226] = new navElem(226,"Martin","pi-1811559398.htm",225,"02-5-5");
navigation[227] = new navElem(227,"Deko-Light","pi971329028.htm",224,"02-8");
navigation[228] = new navElem(228,"Spiegelkugeln","pi1965153855.htm",227,"02-8-3");
navigation[229] = new navElem(229,"UV-Lampen","pi-1721717996.htm",227,"02-8-4");
navigation[230] = new navElem(230,"Leuchtmittel","pi816974469.htm",224,"02-10");
navigation[231] = new navElem(231,"GE Lighting","pi1113688546.htm",230,"02-10-1");
navigation[232] = new navElem(232,"Omnilux","pi1447826657.htm",230,"02-10-4");
navigation[233] = new navElem(233,"Lichteffekte","pi1743193720.htm",224,"02-3");
navigation[234] = new navElem(234,"Eurolite","pi-775652343.htm",233,"02-3-2");
navigation[235] = new navElem(235,"Martin","pi-692930264.htm",233,"02-3-1");
navigation[236] = new navElem(236,"Lichtstative","pi-1634347753.htm",224,"07-1");
navigation[237] = new navElem(237,"K & M","pi1252415288.htm",236,"LLSTKM");
navigation[238] = new navElem(238,"Stage-Line","pi2127670628.htm",236,"07-1-1");
navigation[239] = new navElem(239,"VMB Lifte","pi-252184653.htm",236,"07-1-4");
navigation[240] = new navElem(240,"Nebelmaschinen/Fluid","pi2107781478.htm",224,"02-6");
navigation[241] = new navElem(241,"Antari","pi-468593308.htm",240,"02-6-1");
navigation[242] = new navElem(242,"JEM / Martin","pi-2116396395.htm",240,"02-6-2");
navigation[243] = new navElem(243,"PAR Scheinwerfer","pi426504985.htm",224,"02-4");
navigation[244] = new navElem(244,"PAR 16","pi-574171531.htm",243,"02-4-1");
navigation[245] = new navElem(245,"PAR 20","pi-1260334958.htm",243,"02-4-2");
navigation[246] = new navElem(246,"PAR 30","pi-1855466069.htm",243,"02-4-3");
navigation[247] = new navElem(247,"PAR 36","pi-262565538.htm",243,"02-4-4");
navigation[248] = new navElem(248,"PAR 56","pi-1176960633.htm",243,"02-4-5");
navigation[249] = new navElem(249,"PAR 64","pi-1589342532.htm",243,"02-4-6");
navigation[250] = new navElem(250,"Scanner","pi1051102525.htm",224,"02-1");
navigation[251] = new navElem(251,"Eurolite","pi1058965644.htm",250,"02-1-4");
navigation[252] = new navElem(252,"Martin ","pi-802831009.htm",250,"02-1-1");
navigation[253] = new navElem(253,"Strobe`s","pi-1453042961.htm",224,"02-7");
navigation[254] = new navElem(254,"Eurolite","pi-1368947894.htm",253,"02-7-2");
navigation[255] = new navElem(255,"Martin","pi-2002350077.htm",253,"02-7-3");
navigation[256] = new navElem(256,"Strobe Controller","pi648675374.htm",253,"02-7-5");
navigation[257] = new navElem(257,"Sound","pi1042562118.htm",null,"01");
navigation[258] = new navElem(258,"Boxen","pi1050586711.htm",257,"01-1");
navigation[259] = new navElem(259,"Aktiv","pi-1859596024.htm",258,"akt");
navigation[260] = new navElem(260,"JBL","pi-1867120961.htm",259,"jbl");
navigation[261] = new navElem(261,"JBL EON Serie","pi1953526760.htm",260,"JBL4");
navigation[262] = new navElem(262,"KRK Systems","pi1249309768.htm",259,"SBAKRK");
navigation[263] = new navElem(263,"Expose","pi682238003.htm",262,"SBAKRKEXPO");
navigation[264] = new navElem(264,"Rokit","pi-1604214615.htm",262,"SBAKRKRO");
navigation[265] = new navElem(265,"VXT","pi-1313128928.htm",262,"SBAKRKVXT");
navigation[266] = new navElem(266,"LD Systems","pi1234280028.htm",259,"SBALD");
navigation[267] = new navElem(267,"Mivoc","pi1216647719.htm",259,"SNDMIVOC");
navigation[268] = new navElem(268,"RCF","pi235599805.htm",259,"SBRCFA");
navigation[269] = new navElem(269,"ART-Serie","pi1354848826.htm",268,"SBRCFAART");
navigation[270] = new navElem(270,"Wharfedale","pi-1443297352.htm",259,"actwhd");
navigation[271] = new navElem(271,"EVP-X Serie","pi1232460062.htm",270,"SBWHDAEVP");
navigation[272] = new navElem(272,"Titan-Serie","pi-62382521.htm",270,"SBWHDATIT");
navigation[273] = new navElem(273,"Passiv","pi1241116265.htm",258,"psv");
navigation[274] = new navElem(274,"Electro Voice","pi958724845.htm",273,"01-1A-3");
navigation[275] = new navElem(275,"ELIMINATOR Serie","pi1900066545.htm",274,"01-1-Elli");
navigation[276] = new navElem(276,"EVID Serie","pi-1951011633.htm",274,"01-1-1Evid");
navigation[277] = new navElem(277,"Gladiator Serie","pi1091611675.htm",274,"01-1-GLAD");
navigation[278] = new navElem(278,"SX Serie System 2000","pi709788352.htm",274,"01-1-SX");
navigation[279] = new navElem(279,"JBL","pi-904597022.htm",273,"jblp");
navigation[280] = new navElem(280,"Contractor-Control Serie ","pi-236531767.htm",279,"JBL2");
navigation[281] = new navElem(281,"Control Serie","pi506792082.htm",279,"JBL1");
navigation[282] = new navElem(282,"JBL EON Serie","pi-444624709.htm",279,"jblpeon");
navigation[283] = new navElem(283,"JBL JRX Serie","pi-1367109320.htm",279,"JBL5");
navigation[284] = new navElem(284,"JBL SRX 700 Serie","pi-902216376.htm",279,"JBL6");
navigation[285] = new navElem(285,"KRK Systems","pi-338669201.htm",273,"SBPKRKR6");
navigation[286] = new navElem(286,"LD Systems","pi-1914733011.htm",273,"SBPLD");
navigation[287] = new navElem(287,"RCF","pi980459813.htm",273,"SBPRCF");
navigation[288] = new navElem(288,"ART-Serie","pi-959213182.htm",287,"SBPRCFART");
navigation[289] = new navElem(289,"Visaton","pi966480452.htm",273,"SDBNVIS");
navigation[290] = new navElem(290,"Wharfedale","pi1093254261.htm",273,"01-4W");
navigation[291] = new navElem(291,"DLX-Serie","pi-1580773942.htm",290,"sbwhddlx");
navigation[292] = new navElem(292,"EVP-X Serie","pi1231946637.htm",290,"sbwhd");
navigation[293] = new navElem(293,"Titan-Serie","pi-2140395389.htm",290,"sbwhdtitan");
navigation[294] = new navElem(294,"ELA","pi311476719.htm",257,"SNDELA");
navigation[295] = new navElem(295,"Visaton","pi1651429636.htm",294,"SNDELAVIS");
navigation[296] = new navElem(296,"Endstufen / Verstärker","pi-378653425.htm",257,"01-3");
navigation[297] = new navElem(297,"Crest","pi42674386.htm",296,"2060");
navigation[298] = new navElem(298,"Crown","pi1509656403.htm",296,"01-3-2");
navigation[299] = new navElem(299,"Crown XLS MKII-Serie","pi1075992610.htm",298,"01-3-2-8");
navigation[300] = new navElem(300,"Crown XS-Serie","pi1217342616.htm",298,"01-3-2-7");
navigation[301] = new navElem(301,"Crown XTI-Serie","pi-873409999.htm",298,"SEVCROWN");
navigation[302] = new navElem(302,"ECLER","pi1067607492.htm",296,"01-3-3");
navigation[303] = new navElem(303,"Electro Voice","pi1242859506.htm",296,"01-3-4");
navigation[304] = new navElem(304,"LD-Systems","pi384775868.htm",296,"SENDLD");
navigation[305] = new navElem(305,"QSC","pi-725616715.htm",296,"2050");
navigation[306] = new navElem(306,"GX Serie","pi-533055959.htm",305,"SEVQSCGX");
navigation[307] = new navElem(307,"RMX Serie","pi-771174456.htm",305,"SEVQSCRMX");
navigation[308] = new navElem(308,"Zubehör","pi1082039485.htm",257,"01-9");
navigation[309] = new navElem(309,"Neutrik Klinke","pi-1840555016.htm",308,"01-9-2-");
navigation[310] = new navElem(310,"Neutrik Powercon","pi1220838118.htm",308,"01-9-4-");
navigation[311] = new navElem(311,"Neutrik Speakon","pi-1847592295.htm",308,"01-9-3-");
navigation[312] = new navElem(312,"Neutrik XLR","pi270345523.htm",308,"01-9-1-");

// 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"));

