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

