//
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\">Kategorie</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/bgkleinl.gif" width="3" height="5" 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/bgklein.gif" width="3" height="5" 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,"5-HTP","pi1180772402.htm",null,"a111");
navigation[1] = new navElem(1,"7-Keto","pi1655704225.htm",null,"a112");
navigation[2] = new navElem(2,"Accessories","pi-1415214408.htm",null,"a113");
navigation[3] = new navElem(3,"Acai","pi1001454795.htm",null,"a115");
navigation[4] = new navElem(4,"Acetyl L-Carnitine","pi-50671184.htm",null,"a120");
navigation[5] = new navElem(5,"Acidophilus","pi-864355343.htm",null,"a125");
navigation[6] = new navElem(6,"Alfalfa","pi2000211806.htm",null,"a130");
navigation[7] = new navElem(7,"Algae","pi-2134186105.htm",null,"a135");
navigation[8] = new navElem(8,"Aloe Vera","pi1852701884.htm",null,"a140");
navigation[9] = new navElem(9,"Alpha-Lipoic Acid","pi-1117367027.htm",null,"a145");
navigation[10] = new navElem(10,"Amino Acids","pi-39411382.htm",null,"a150");
navigation[11] = new navElem(11,"Anabolic Formulas","pi-980570060.htm",null,"a152");
navigation[12] = new navElem(12,"Andrographis","pi-1414343165.htm",null,"a155");
navigation[13] = new navElem(13,"Anti-Aging","pi1615645345.htm",null,"a157");
navigation[14] = new navElem(14,"Anti-Estrogen Products","pi-1938403192.htm",null,"a160");
navigation[15] = new navElem(15,"Anti-Perspirants","pi1999001577.htm",null,"a165");
navigation[16] = new navElem(16,"Antibiotics/Antifungal","pi1571718207.htm",null,"a170");
navigation[17] = new navElem(17,"Antioxidants","pi1463671060.htm",null,"a175");
navigation[18] = new navElem(18,"Apple Cider Vinegar","pi-941154171.htm",null,"a180");
navigation[19] = new navElem(19,"Arachidonic Acid","pi320353634.htm",null,"a185");
navigation[20] = new navElem(20,"Aromatherapy","pi163016251.htm",null,"a190");
navigation[21] = new navElem(21,"Artichoke","pi705127008.htm",null,"a195");
navigation[22] = new navElem(22,"Ashwagandha","pi-1112634655.htm",null,"a200");
navigation[23] = new navElem(23,"Astaxanthin","pi1001688974.htm",null,"a205");
navigation[24] = new navElem(24,"Astragalus","pi1429655543.htm",null,"a210");
navigation[25] = new navElem(25,"Astringents","pi-1539671956.htm",null,"a215");
navigation[26] = new navElem(26,"ATP (adenosine 5’-triphosphate)","pi-1004297638.htm",null,"a217");
navigation[27] = new navElem(27,"Avena Sativa","pi1702376189.htm",null,"a220");
navigation[28] = new navElem(28,"Ayurvedic Herbs","pi1647330426.htm",null,"a225");
navigation[29] = new navElem(29,"B Vitamins","pi-595483277.htm",null,"b100");
navigation[30] = new navElem(30,"Baking Mixes","pi-1691392200.htm",null,"b105");
navigation[31] = new navElem(31,"Bar Soaps","pi1180865106.htm",null,"b110");
navigation[32] = new navElem(32,"Barley Grass","pi1766417515.htm",null,"b120");
navigation[33] = new navElem(33,"Bars and Snacks (Protein)","pi-1243690800.htm",null,"b125");
navigation[34] = new navElem(34,"Bath Salts/Crystals","pi1150561425.htm",null,"b130");
navigation[35] = new navElem(35,"BCAA&#0039;s (Branched Chain Amino Acids)","pi1029053310.htm",null,"b135");
navigation[36] = new navElem(36,"Bee Pollen","pi240519463.htm",null,"b140");
navigation[37] = new navElem(37,"Beef Liver","pi-1743215140.htm",null,"b145");
navigation[38] = new navElem(38,"Beta-Alanine","pi-1340270001.htm",null,"b147");
navigation[39] = new navElem(39,"Beta Carotene","pi207146925.htm",null,"b150");
navigation[40] = new navElem(40,"Betain HCl","pi1081208682.htm",null,"b155");
navigation[41] = new navElem(41,"Bilberry","pi-106933853.htm",null,"b170");
navigation[42] = new navElem(42,"Bioflavonoids","pi1682361256.htm",null,"b175");
navigation[43] = new navElem(43,"Biotin","pi-580207479.htm",null,"b180");
navigation[44] = new navElem(44,"Bitter Orange","pi107362838.htm",null,"b185");
navigation[45] = new navElem(45,"Black Cohosh","pi-1884816929.htm",null,"b190");
navigation[46] = new navElem(46,"Black Currant Oil","pi-2017114572.htm",null,"b200");
navigation[47] = new navElem(47,"Bone Health","pi-117377433.htm",null,"b203");
navigation[48] = new navElem(48,"Borage Oil","pi-1547694299.htm",null,"b205");
navigation[49] = new navElem(49,"Boron","pi647882626.htm",null,"b210");
navigation[50] = new navElem(50,"Brain & Mental Alertness","pi469599403.htm",null,"b213");
navigation[51] = new navElem(51,"Boswellia","pi2118155739.htm",null,"b215");
navigation[52] = new navElem(52,"Bromelain","pi-1842814592.htm",null,"b220");
navigation[53] = new navElem(53,"Brushes/Scrubbers","pi1271440257.htm",null,"b225");
navigation[54] = new navElem(54,"Burdock","pi-1335188562.htm",null,"b230");
navigation[55] = new navElem(55,"Cacao","pi-682813033.htm",null,"c100");
navigation[56] = new navElem(56,"Caffeine","pi-800380532.htm",null,"c105");
navigation[57] = new navElem(57,"Calcium","pi-880142947.htm",null,"c110");
navigation[58] = new navElem(58,"Candles","pi-319759718.htm",null,"c120");
navigation[59] = new navElem(59,"Carbohydrate Blockers","pi792512787.htm",null,"c125");
navigation[60] = new navElem(60,"Carbohydrate","pi269904472.htm",null,"c130");
navigation[61] = new navElem(61,"Carbolin","pi1202310109.htm",null,"c132");
navigation[62] = new navElem(62,"Cardiovascular Health","pi-713309831.htm",null,"c135");
navigation[63] = new navElem(63,"Carnitine","pi2010363974.htm",null,"c140");
navigation[64] = new navElem(64,"Cascara Sagrada","pi2068203599.htm",null,"c145");
navigation[65] = new navElem(65,"Cat&#0039;s Claw","pi-1726894108.htm",null,"c150");
navigation[66] = new navElem(66,"Cayenne","pi1361232661.htm",null,"c155");
navigation[67] = new navElem(67,"Celadrin","pi-1700714318.htm",null,"c160");
navigation[68] = new navElem(68,"Charcoal","pi727978827.htm",null,"c165");
navigation[69] = new navElem(69,"Chaste Tree Berry","pi632079920.htm",null,"c170");
navigation[70] = new navElem(70,"Chickweed","pi1970140785.htm",null,"c175");
navigation[71] = new navElem(71,"Children&#0039;s Supplements","pi-1761749026.htm",null,"c180");
navigation[72] = new navElem(72,"Chitosan","pi-1139775993.htm",null,"c185");
navigation[73] = new navElem(73,"Chlorella","pi1766603068.htm",null,"c190");
navigation[74] = new navElem(74,"Chlorophyll","pi550631309.htm",null,"c195");
navigation[75] = new navElem(75,"Cholesterol Support","pi1201907347.htm",null,"c198");
navigation[76] = new navElem(76,"Choline","pi1267806666.htm",null,"c200");
navigation[77] = new navElem(77,"Chondroitin","pi-1144963965.htm",null,"c205");
navigation[78] = new navElem(78,"Chromium Picolinate","pi1863669000.htm",null,"c210");
navigation[79] = new navElem(79,"Chrysin","pi-886758807.htm",null,"c215");
navigation[80] = new navElem(80,"Cinnamon","pi1605460598.htm",null,"c220");
navigation[81] = new navElem(81,"Citrimax","pi2380479.htm",null,"c225");
navigation[82] = new navElem(82,"Citrulline Malate","pi-579197548.htm",null,"c230");
navigation[83] = new navElem(83,"Citrus Seed Extract","pi758878981.htm",null,"c240");
navigation[84] = new navElem(84,"CLA (Conjugated Linoleic Acid)","pi-506505758.htm",null,"c245");
navigation[85] = new navElem(85,"Cleansers (internal)","pi-2028264261.htm",null,"c250");
navigation[86] = new navElem(86,"Cobalamin (B-12)","pi-360352032.htm",null,"c255");
navigation[87] = new navElem(87,"Cod Liver Oil","pi2051220833.htm",null,"c260");
navigation[88] = new navElem(88,"Coenzyme Q-10","pi77772814.htm",null,"c270");
navigation[89] = new navElem(89,"Cold Remedies","pi1064758903.htm",null,"c275");
navigation[90] = new navElem(90,"Collagen","pi-1931029268.htm",null,"c280");
navigation[91] = new navElem(91,"Colloidal Minerals","pi-958433923.htm",null,"c285");
navigation[92] = new navElem(92,"Colostrum","pi1729492218.htm",null,"c290");
navigation[93] = new navElem(93,"Combo - Stacks","pi1207510710.htm",null,"c297");
navigation[94] = new navElem(94,"Complexion Mists & Facial Sprays","pi-1250645005.htm",null,"c300");
navigation[95] = new navElem(95,"Conditioners (Hair)","pi901680056.htm",null,"c305");
navigation[96] = new navElem(96,"Copper","pi-100278439.htm",null,"c310");
navigation[97] = new navElem(97,"Coral Calcium","pi317864102.htm",null,"c315");
navigation[98] = new navElem(98,"Cordyceps","pi1593383215.htm",null,"c350");
navigation[99] = new navElem(99,"Cortisol Blocker","pi522823492.htm",null,"c355");
navigation[100] = new navElem(100,"COX-2 Enzyme Inhibitors","pi1671003893.htm",null,"c360");
navigation[101] = new navElem(101,"Cranberry","pi508260114.htm",null,"c365");
navigation[102] = new navElem(102,"Creatine","pi59552299.htm",null,"c370");
navigation[103] = new navElem(103,"Curcumin","pi-74583152.htm",null,"c375");
navigation[104] = new navElem(104,"Cyclodextrin Complexes","pi-725143471.htm",null,"c380");
navigation[105] = new navElem(105,"D-Ribose","pi-1523820072.htm",null,"d10");
navigation[106] = new navElem(106,"Dandelion","pi-1683209154.htm",null,"d100");
navigation[107] = new navElem(107,"Delta-5-E","pi-1708589234.htm",null,"d103");
navigation[108] = new navElem(108,"Dental & Oral Care","pi2081927911.htm",null,"d105");
navigation[109] = new navElem(109,"Deodorants","pi-1851392868.htm",null,"d110");
navigation[110] = new navElem(110,"Desiccated Liver","pi-702443667.htm",null,"d115");
navigation[111] = new navElem(111,"Detoxifiers","pi1157768234.htm",null,"d120");
navigation[112] = new navElem(112,"Devil&#0039;s Claw","pi156688390.htm",null,"d122");
navigation[113] = new navElem(113,"DHA (Docosahexaenoic Acid)","pi-966912157.htm",null,"d130");
navigation[114] = new navElem(114,"DHEA","pi-1857221016.htm",null,"d135");
navigation[115] = new navElem(115,"Digestive Aides","pi1467807817.htm",null,"d140");
navigation[116] = new navElem(116,"Digestive Enzymes","pi222902998.htm",null,"d145");
navigation[117] = new navElem(117,"Diindolylmethane (DIM)","pi674995103.htm",null,"d150");
navigation[118] = new navElem(118,"DIM","pi-1391774476.htm",null,"d155");
navigation[119] = new navElem(119,"Diuretics","pi-175405339.htm",null,"d160");
navigation[120] = new navElem(120,"DMAE (Dimethylaminoethanol)","pi-2064092094.htm",null,"d170");
navigation[121] = new navElem(121,"Dong Quai","pi-559957093.htm",null,"d175");
navigation[122] = new navElem(122,"Drinks (Sports)","pi-1000260544.htm",null,"d180");
navigation[123] = new navElem(123,"Ecdysterone","pi-1321658559.htm",null,"e100");
navigation[124] = new navElem(124,"Echinacea","pi-1121092498.htm",null,"e105");
navigation[125] = new navElem(125,"Egg Protein","pi-1807109289.htm",null,"e110");
navigation[126] = new navElem(126,"Elderberry","pi-1428901812.htm",null,"e115");
navigation[127] = new navElem(127,"Endurance Gels","pi-1262008995.htm",null,"e120");
navigation[128] = new navElem(128,"Endurance","pi362331994.htm",null,"e125");
navigation[129] = new navElem(129,"Energizers","pi-1673232685.htm",null,"e130");
navigation[130] = new navElem(130,"Energy Herbs","pi-675554024.htm",null,"e135");
navigation[131] = new navElem(131,"Enzymes (digestive)","pi-2102825671.htm",null,"e140");
navigation[132] = new navElem(132,"Essential Fatty Acids (EFAs)","pi556361990.htm",null,"e145");
navigation[133] = new navElem(133,"Estrogen Blockers","pi-1407002097.htm",null,"e150");
navigation[134] = new navElem(134,"Evening Primrose Oil","pi180997796.htm",null,"e155");
navigation[135] = new navElem(135,"Eye Treatments (Moisturizers)","pi-1440699691.htm",null,"e160");
navigation[136] = new navElem(136,"Eyebright","pi-1921424014.htm",null,"e170");
navigation[137] = new navElem(137,"Facial Cleansers/Washes","pi-1845804789.htm",null,"f100");
navigation[138] = new navElem(138,"Facial Exfoliants/Scrubs","pi-1319481104.htm",null,"f105");
navigation[139] = new navElem(139,"Facial Masks/Peels","pi-577250767.htm",null,"f110");
navigation[140] = new navElem(140,"Facial Moisturizers","pi-1191616354.htm",null,"f115");
navigation[141] = new navElem(141,"Fat Burners (cutting up)","pi572780487.htm",null,"f120");
navigation[142] = new navElem(142,"Fat Burners (dieting)","pi-1736577028.htm",null,"f125");
navigation[143] = new navElem(143,"Fat Burners w/o Stimulants","pi113219405.htm",null,"f130");
navigation[144] = new navElem(144,"Feverfew","pi1675413130.htm",null,"f135");
navigation[145] = new navElem(145,"Fiber","pi1487856195.htm",null,"f145");
navigation[146] = new navElem(146,"First Aid","pi935720904.htm",null,"f155");
navigation[147] = new navElem(147,"Fish & Marine Oils","pi-1268105687.htm",null,"f160");
navigation[148] = new navElem(148,"Flax Seed Oil","pi-1480211658.htm",null,"f165");
navigation[149] = new navElem(149,"Folic Acid","pi1789252735.htm",null,"f170");
navigation[150] = new navElem(150,"Foot Care","pi-1596951468.htm",null,"f175");
navigation[151] = new navElem(151,"Fragrances","pi-30938427.htm",null,"f180");
navigation[152] = new navElem(152,"Fruits and Health","pi528734969.htm",null,"f181");
navigation[153] = new navElem(153,"Functional plant materials","pi1068439408.htm",null,"f190");
navigation[154] = new navElem(154,"GABA","pi573653666.htm",null,"g100");
navigation[155] = new navElem(155,"Garlic","pi1124483707.htm",null,"g105");
navigation[156] = new navElem(156,"Ginger","pi-543936096.htm",null,"g110");
navigation[157] = new navElem(157,"Ginkgo","pi-1180534495.htm",null,"g120");
navigation[158] = new navElem(158,"Ginseng","pi-39653170.htm",null,"g125");
navigation[159] = new navElem(159,"GLA (Gamma-Linolenic Acid)","pi-1484953545.htm",null,"g130");
navigation[160] = new navElem(160,"Guarana","pi299250447.htm",null,"g132");
navigation[161] = new navElem(161,"Glucosamine","pi1466743724.htm",null,"g135");
navigation[162] = new navElem(162,"Glutamine","pi-1648786115.htm",null,"g140");
navigation[163] = new navElem(163,"Glycine","pi1167145402.htm",null,"g145");
navigation[164] = new navElem(164,"Goji Berry","pi14959027.htm",null,"g150");
navigation[165] = new navElem(165,"Golden Seal","pi1759927928.htm",null,"g155");
navigation[166] = new navElem(166,"Gotu Kola","pi-1352766695.htm",null,"g160");
navigation[167] = new navElem(167,"Grape Seed Extract","pi-1324267162.htm",null,"g165");
navigation[168] = new navElem(168,"Green Foods","pi-2089055505.htm",null,"g170");
navigation[169] = new navElem(169,"Green Tea","pi1816798724.htm",null,"g175");
navigation[170] = new navElem(170,"Growth Hormone","pi338708149.htm",null,"g180");
navigation[171] = new navElem(171,"Guarana extract","pi285635135.htm",null,"g183");
navigation[172] = new navElem(172,"Guggulsterones","pi-800912430.htm",null,"g185");
navigation[173] = new navElem(173,"Gymnema Sylvestre","pi854048747.htm",null,"g190");
navigation[174] = new navElem(174,"Hair Care & Grooming","pi-857088432.htm",null,"h100");
navigation[175] = new navElem(175,"Hand & Body Lotions","pi651686929.htm",null,"h105");
navigation[176] = new navElem(176,"Hawthorn","pi1216163070.htm",null,"h110");
navigation[177] = new navElem(177,"HCA (Hydroxycitric-Acid)","pi94341805.htm",null,"h113");
navigation[178] = new navElem(178,"Hemp Oil","pi-34792281.htm",null,"h120");
navigation[179] = new navElem(179,"Hemp Protein","pi-785640612.htm",null,"h125");
navigation[180] = new navElem(180,"Herbal Teas","pi1763970861.htm",null,"h130");
navigation[181] = new navElem(181,"Herbs","pi-1959192342.htm",null,"h140");
navigation[182] = new navElem(182,"HMB","pi-303325917.htm",null,"h145");
navigation[183] = new navElem(183,"Hoodia Cactus","pi1532498216.htm",null,"h155");
navigation[184] = new navElem(184,"Horny Goat Weed","pi-1343949815.htm",null,"h160");
navigation[185] = new navElem(185,"Horse Chestnut","pi868154262.htm",null,"h165");
navigation[186] = new navElem(186,"Horsetail","pi639303007.htm",null,"h180");
navigation[187] = new navElem(187,"Human Growth Hormone","pi-1356733516.htm",null,"h185");
navigation[188] = new navElem(188,"Hyaluronic Acid","pi-1534542171.htm",null,"h190");
navigation[189] = new navElem(189,"Hyssop","pi-141442814.htm",null,"h195");
navigation[190] = new navElem(190,"Immune System Support","pi780581211.htm",null,"i100");
navigation[191] = new navElem(191,"Inositol","pi133584640.htm",null,"i105");
navigation[192] = new navElem(192,"IP-6 (Inositol Hexaphosphate)","pi2021083905.htm",null,"i115");
navigation[193] = new navElem(193,"Iron","pi-711256786.htm",null,"i120");
navigation[194] = new navElem(194,"Isoflavones","pi-959836905.htm",null,"i125");
navigation[195] = new navElem(195,"Isoinokosterone","pi-1945700596.htm",null,"i130");
navigation[196] = new navElem(196,"Joint Support","pi1714304285.htm",null,"j100");
navigation[197] = new navElem(197,"Jojoba Oil","pi-266902502.htm",null,"j105");
navigation[198] = new navElem(198,"Kamut","pi1015805075.htm",null,"k100");
navigation[199] = new navElem(199,"Kelp","pi-401207336.htm",null,"k105");
navigation[200] = new navElem(200,"Krill Oil","pi1545394425.htm",null,"k110");
navigation[201] = new navElem(201,"L-Arginine","pi1027725766.htm",null,"l100");
navigation[202] = new navElem(202,"L-Carnitine","pi29043663.htm",null,"l105");
navigation[203] = new navElem(203,"L-Carnosine","pi-1610437276.htm",null,"l110");
navigation[204] = new navElem(204,"L-Cysteine","pi-314551659.htm",null,"l115");
navigation[205] = new navElem(205,"L-Glutamine","pi-88055246.htm",null,"l120");
navigation[206] = new navElem(206,"L-Glutathione","pi-24498485.htm",null,"l130");
navigation[207] = new navElem(207,"L-Histidine","pi-535520336.htm",null,"l135");
navigation[208] = new navElem(208,"L-Lysine","pi1669299697.htm",null,"l140");
navigation[209] = new navElem(209,"L-Methionine","pi-1882216098.htm",null,"l150");
navigation[210] = new navElem(210,"L-Ornithine","pi-617924217.htm",null,"l155");
navigation[211] = new navElem(211,"L-Phenylalanine","pi1527277244.htm",null,"l160");
navigation[212] = new navElem(212,"L-Theanine","pi-1574358074.htm",null,"l161");
navigation[213] = new navElem(213,"L-Tryptophan","pi-1882786035.htm",null,"l165");
navigation[214] = new navElem(214,"L-Tyrosine","pi1244601162.htm",null,"l170");
navigation[215] = new navElem(215,"Lactase","pi1028409347.htm",null,"l175");
navigation[216] = new navElem(216,"Lean Gainers","pi-2133108088.htm",null,"l190");
navigation[217] = new navElem(217,"Lecithin","pi-1276831255.htm",null,"l195");
navigation[218] = new navElem(218,"Licorice","pi567075830.htm",null,"l200");
navigation[219] = new navElem(219,"Lignans","pi1180876265.htm",null,"l205");
navigation[220] = new navElem(220,"Liquid Soaps","pi-1019561994.htm",null,"l210");
navigation[221] = new navElem(221,"Liver Support","pi-156833692.htm",null,"l213");
navigation[222] = new navElem(222,"Loofahs","pi-1038525889.htm",null,"l215");
navigation[223] = new navElem(223,"Lotions","pi2051634964.htm",null,"l220");
navigation[224] = new navElem(224,"Low-Carb Foods","pi-521804155.htm",null,"l230");
navigation[225] = new navElem(225,"Lutein","pi-574291102.htm",null,"l235");
navigation[226] = new navElem(226,"Lycopene","pi1798022203.htm",null,"l240");
navigation[227] = new navElem(227,"Maca Root","pi282735415.htm",null,"m090");
navigation[228] = new navElem(228,"Macadamia Nut Oil","pi871948384.htm",null,"m100");
navigation[229] = new navElem(229,"Magnesium","pi-195710751.htm",null,"m105");
navigation[230] = new navElem(230,"Mangosteen","pi-2093335154.htm",null,"m110");
navigation[231] = new navElem(231,"Marine Oils","pi-2113247753.htm",null,"m115");
navigation[232] = new navElem(232,"Melatonin","pi-1931685254.htm",null,"m140");
navigation[233] = new navElem(233,"Men&#0039;s Formulas","pi-462775437.htm",null,"m145");
navigation[234] = new navElem(234,"Men&#0039;s Herbs","pi-869882568.htm",null,"m150");
navigation[235] = new navElem(235,"Men&#0039;s Supplements","pi-784639271.htm",null,"m155");
navigation[236] = new navElem(236,"Mental Focus Support","pi124727394.htm",null,"m157");
navigation[237] = new navElem(237,"Methoxyflavone","pi1414393382.htm",null,"m160");
navigation[238] = new navElem(238,"Milk Thistle","pi556335279.htm",null,"m165");
navigation[239] = new navElem(239,"Minerals","pi-1416472380.htm",null,"m170");
navigation[240] = new navElem(240,"Mouthwashes","pi24752757.htm",null,"m175");
navigation[241] = new navElem(241,"MSM","pi-1392935790.htm",null,"m180");
navigation[242] = new navElem(242,"Multi-Nutrients","pi-290449375.htm",null,"m185");
navigation[243] = new navElem(243,"Multi-Vitamins","pi1480987051.htm",null,"m190");
navigation[244] = new navElem(244,"Muscle Building","pi-425540545.htm",null,"m192");
navigation[245] = new navElem(245,"Muscle Power","pi423755215.htm",null,"m193");
navigation[246] = new navElem(246,"MCTs (Medium-Chain Triglycerides)","pi506451564.htm",null,"m200");
navigation[247] = new navElem(247,"Meal Replacements","pi-938624771.htm",null,"m230");
navigation[248] = new navElem(248,"Meal Diet Aid","pi1667340132.htm",null,"m235");
navigation[249] = new navElem(249,"NAC (N-Acetyl-Cysteine)","pi-873415408.htm",null,"n100");
navigation[250] = new navElem(250,"N-acetyl-tyrosine","pi187397269.htm",null,"n103");
navigation[251] = new navElem(251,"NADH","pi388864977.htm",null,"n105");
navigation[252] = new navElem(252,"Nattokinase","pi-1404950082.htm",null,"n110");
navigation[253] = new navElem(253,"Nitric Oxide","pi-2086916174.htm",null,"n113");
navigation[254] = new navElem(254,"Niacin (B-3)","pi-224261529.htm",null,"n115");
navigation[255] = new navElem(255,"Noni Fruit","pi311713308.htm",null,"n135");
navigation[256] = new navElem(256,"Oat Bran","pi-1952337171.htm",null,"o100");
navigation[257] = new navElem(257,"Oatmeal","pi1042781971.htm",null,"o102");
navigation[258] = new navElem(258,"Octacosanol","pi762898147.htm",null,"o105");
navigation[259] = new navElem(259,"Olive Fruit","pi661686248.htm",null,"o110");
navigation[260] = new navElem(260,"Olive Leaf","pi2061652937.htm",null,"o120");
navigation[261] = new navElem(261,"Omega-3,-6,-9 Oils","pi-1236316074.htm",null,"o125");
navigation[262] = new navElem(262,"Oregano","pi899572511.htm",null,"o130");
navigation[263] = new navElem(263,"PABA","pi648365684.htm",null,"p100");
navigation[264] = new navElem(264,"Pancreatin","pi-1587963291.htm",null,"p105");
navigation[265] = new navElem(265,"Pantethine","pi1035395522.htm",null,"p110");
navigation[266] = new navElem(266,"Pantothenic Acid (B-5)","pi1316616987.htm",null,"p115");
navigation[267] = new navElem(267,"Papain (Papaya)","pi-489986624.htm",null,"p120");
navigation[268] = new navElem(268,"Pau D&#0039;Arco","pi1261134529.htm",null,"p125");
navigation[269] = new navElem(269,"Peppermint","pi1148732020.htm",null,"p128");
navigation[270] = new navElem(270,"Pepsin","pi-593903122.htm",null,"p130");
navigation[271] = new navElem(271,"Periwinkle Extract","pi1086515927.htm",null,"p135");
navigation[272] = new navElem(272,"Pet Products","pi1140879820.htm",null,"p140");
navigation[273] = new navElem(273,"Phosphatidylcholine (PC)","pi-783202083.htm",null,"p145");
navigation[274] = new navElem(274,"Phosphatidylserine (PS)","pi2030066906.htm",null,"p150");
navigation[275] = new navElem(275,"Phytonutrients","pi217853523.htm",null,"p165");
navigation[276] = new navElem(276,"Pine Bark Extract","pi263370392.htm",null,"p170");
navigation[277] = new navElem(277,"Policosanols","pi7776441.htm",null,"p180");
navigation[278] = new navElem(278,"Pomegranate","pi28434054.htm",null,"p185");
navigation[279] = new navElem(279,"Post Workout","pi-1380191371.htm",null,"p188");
navigation[280] = new navElem(280,"Potassium","pi-1649376881.htm",null,"p190");
navigation[281] = new navElem(281,"Pre-Workout","pi151403817.htm",null,"p193");
navigation[282] = new navElem(282,"Pregnenolone","pi623722532.htm",null,"p195");
navigation[283] = new navElem(283,"Prenatal Supplements","pi-2053857707.htm",null,"p200");
navigation[284] = new navElem(284,"Probiotics","pi-1156384399.htm",null,"p202");
navigation[285] = new navElem(285,"Prostate Health","pi-1973114134.htm",null,"p203");
navigation[286] = new navElem(286,"Protein Powders","pi-1382010126.htm",null,"p205");
navigation[287] = new navElem(287,"Psyllium","pi-177315701.htm",null,"p210");
navigation[288] = new navElem(288,"Pumice Stones","pi-85730704.htm",null,"p215");
navigation[289] = new navElem(289,"Pycnogenol","pi1011746225.htm",null,"p220");
navigation[290] = new navElem(290,"Pyridoxine (B-6)","pi1779697182.htm",null,"p230");
navigation[291] = new navElem(291,"Pyruvate","pi344196935.htm",null,"p235");
navigation[292] = new navElem(292,"Quercetin","pi1180879206.htm",null,"q100");
navigation[293] = new navElem(293,"Raw Foods","pi-70317329.htm",null,"r100");
navigation[294] = new navElem(294,"Red Clover","pi-1745377788.htm",null,"r105");
navigation[295] = new navElem(295,"Red Raspberry Leaves","pi-1565538635.htm",null,"r120");
navigation[296] = new navElem(296,"Red Yeast Rice","pi1772915666.htm",null,"r125");
navigation[297] = new navElem(297,"Reishi Mushroom","pi-210550805.htm",null,"r130");
navigation[298] = new navElem(298,"Resveratrol","pi-93364656.htm",null,"r135");
navigation[299] = new navElem(299,"Rhodiola","pi407860241.htm",null,"r140");
navigation[300] = new navElem(300,"Riboflavin (B-2)","pi394177790.htm",null,"r145");
navigation[301] = new navElem(301,"Rice Protein","pi-1171219289.htm",null,"r150");
navigation[302] = new navElem(302,"Royal Jelly","pi-1911975076.htm",null,"r155");
navigation[303] = new navElem(303,"RTD Shakes (Ready-to-Drink)","pi-1659662547.htm",null,"r160");
navigation[304] = new navElem(304,"Rutin","pi-648898326.htm",null,"r165");
navigation[305] = new navElem(305,"Salicin","pi-1855513309.htm",null,"s100");
navigation[306] = new navElem(306,"SAMe","pi1180887274.htm",null,"s105");
navigation[307] = new navElem(307,"Saw Palmetto","pi1696935203.htm",null,"s110");
navigation[308] = new navElem(308,"Selenium","pi131490088.htm",null,"s115");
navigation[309] = new navElem(309,"Senior Supplements","pi2113471497.htm",null,"s120");
navigation[310] = new navElem(310,"Sexual Stimulant","pi-39756750.htm",null,"S122");
navigation[311] = new navElem(311,"Shampoos","pi1940245398.htm",null,"s125");
navigation[312] = new navElem(312,"Shark Cartilage","pi-1064465057.htm",null,"s130");
navigation[313] = new navElem(313,"Shaving Creams","pi-1029360716.htm",null,"s135");
navigation[314] = new navElem(314,"Shiitake Mushroom","pi209571493.htm",null,"s140");
navigation[315] = new navElem(315,"Shower Gels","pi1778749698.htm",null,"s150");
navigation[316] = new navElem(316,"Skin Supplements","pi548544715.htm",null,"s155");
navigation[317] = new navElem(317,"Silicon","pi1505904987.htm",null,"s160");
navigation[318] = new navElem(318,"Silymarin","pi617522944.htm",null,"s175");
navigation[319] = new navElem(319,"Sleep & Relaxtion Aids","pi-497198335.htm",null,"s180");
navigation[320] = new navElem(320,"Smoke Health","pi-1645573291.htm",null,"s182");
navigation[321] = new navElem(321,"Soaps","pi627828014.htm",null,"s185");
navigation[322] = new navElem(322,"Soy Protein","pi1180888309.htm",null,"s190");
navigation[323] = new navElem(323,"Spirulina","pi1955054866.htm",null,"s195");
navigation[324] = new navElem(324,"St. John&#0039;s Wort","pi-513028053.htm",null,"s200");
navigation[325] = new navElem(325,"Stevia","pi-256231024.htm",null,"s205");
navigation[326] = new navElem(326,"Stress Relief","pi879984209.htm",null,"s210");
navigation[327] = new navElem(327,"Styling Products (Hair)","pi-1156974018.htm",null,"s215");
navigation[328] = new navElem(328,"Suma (Brazilian Ginseng)","pi-1324044057.htm",null,"s220");
navigation[329] = new navElem(329,"Superfoods","pi-1370316132.htm",null,"s225");
navigation[330] = new navElem(330,"Syrups & Flavorings","pi2107555181.htm",null,"s230");
navigation[331] = new navElem(331,"Sytrinol","pi-1386792406.htm",null,"s240");
navigation[332] = new navElem(332,"Tanning Products","pi253162851.htm",null,"t100");
navigation[333] = new navElem(333,"Taurine","pi-247458712.htm",null,"t105");
navigation[334] = new navElem(334,"Tea Tree Oil","pi211355209.htm",null,"t115");
navigation[335] = new navElem(335,"Testosterone Boosters","pi-1748258602.htm",null,"t120");
navigation[336] = new navElem(336,"Theanine","pi925784479.htm",null,"t125");
navigation[337] = new navElem(337,"Thermogenic Fat Burners","pi-462775564.htm",null,"t130");
navigation[338] = new navElem(338,"Thermogenic Stimulants","pi-420186907.htm",null,"t135");
navigation[339] = new navElem(339,"Thiamin (B-1)","pi-1170322878.htm",null,"t145");
navigation[340] = new navElem(340,"TMG (Trimethylglycine)","pi883407731.htm",null,"t147");
navigation[341] = new navElem(341,"Tocotrienols","pi2049595803.htm",null,"t150");
navigation[342] = new navElem(342,"Toners (Facial)","pi632488512.htm",null,"t155");
navigation[343] = new navElem(343,"Toothpastes","pi-998447807.htm",null,"t160");
navigation[344] = new navElem(344,"Tribulus Terrestris","pi-1960005010.htm",null,"t175");
navigation[345] = new navElem(345,"Turmeric","pi-1800785577.htm",null,"t180");
navigation[346] = new navElem(346,"Valerian","pi-318843316.htm",null,"v100");
navigation[347] = new navElem(347,"Vanadyl Sulfate","pi-1269566627.htm",null,"v105");
navigation[348] = new navElem(348,"Vein Support","pi-442018470.htm",null,"v125");
navigation[349] = new navElem(349,"Vinpocetine","pi-912728877.htm",null,"v130");
navigation[350] = new navElem(350,"Vision Support","pi470049560.htm",null,"v135");
navigation[351] = new navElem(351,"Vitamin Complex","pi813119190.htm",null,"v143");
navigation[352] = new navElem(352,"Vitamin A","pi734853945.htm",null,"v145");
navigation[353] = new navElem(353,"Vitamin B","pi1308450566.htm",null,"v150");
navigation[354] = new navElem(354,"Vitamin C","pi2087262223.htm",null,"v155");
navigation[355] = new navElem(355,"Vitamin D","pi1121367204.htm",null,"v160");
navigation[356] = new navElem(356,"Vitamin E","pi-1693902635.htm",null,"v165");
navigation[357] = new navElem(357,"Vitamin K","pi958970738.htm",null,"v170");
navigation[358] = new navElem(358,"Vitex","pi-955162869.htm",null,"v175");
navigation[359] = new navElem(359,"Water Loss","pi1241090367.htm",null,"w090");
navigation[360] = new navElem(360,"Weight Gainers","pi1697748720.htm",null,"w100");
navigation[361] = new navElem(361,"Weight Loss","pi1666394161.htm",null,"w105");
navigation[362] = new navElem(362,"Wheat Grass","pi49944222.htm",null,"w110");
navigation[363] = new navElem(363,"Whey Protein","pi1204284871.htm",null,"w125");
navigation[364] = new navElem(364,"White Willow","pi210081276.htm",null,"w130");
navigation[365] = new navElem(365,"Whole Food Supplements","pi-885275315.htm",null,"w135");
navigation[366] = new navElem(366,"Wild Yam","pi-1804246546.htm",null,"w137");
navigation[367] = new navElem(367,"Women&#0039;s Formulas","pi-16458614.htm",null,"w140");
navigation[368] = new navElem(368,"Women&#0039;s Herbs","pi578732099.htm",null,"w145");
navigation[369] = new navElem(369,"Women&#0039;s Supplements","pi-222036536.htm",null,"w155");
navigation[370] = new navElem(370,"Yeast","pi1282755625.htm",null,"y100");
navigation[371] = new navElem(371,"Yerba Mate","pi-800376522.htm",null,"y105");
navigation[372] = new navElem(372,"Yohimbe","pi-232811905.htm",null,"y110");
navigation[373] = new navElem(373,"Yucca","pi1374345812.htm",null,"y125");
navigation[374] = new navElem(374,"SAMBAZON","pi1182354111.htm",null,"yyy2");
navigation[375] = new navElem(375,"Natren","pi-1739488168.htm",null,"yyy3");
navigation[376] = new navElem(376,"ZMA","pi1745032313.htm",null,"z10");
navigation[377] = new navElem(377,"Zinc","pi1466947781.htm",null,"z100");
navigation[378] = new navElem(378,"A+ Skin Care","pi1181717054.htm",null,"z555");

// 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"));


