
		// Declare the variable "x" for later use.
		var x;
		
		// Create an array of all the ID names of the affected containers.
		var allContainers=new Array();
			allContainers[ 0]="AdreCore";
			allContainers[ 1]="ArcticOmega";
			allContainers[ 2]="AvoriaCalD";
			allContainers[ 3]="BalanceD";
			allContainers[ 4]="BalanceZyme";
			allContainers[ 5]="C1000";
			allContainers[ 6]="3ACalcium";
			allContainers[ 7]="CalmPRT";
			allContainers[ 8]="Carbo";
			allContainers[ 9]="CarniClear";
			allContainers[ 10]="HerbalChickweedSalve";
			allContainers[ 11]="CoenzymeQ10";
			allContainers[ 12]="Colostrum";
			allContainers[ 13]="CysNAC";
			allContainers[ 14]="DHEA";
			allContainers[ 15]="7KetoDHEA";
			allContainers[ 16]="Digest";
			allContainers[ 17]="DigestZyme";
			allContainers[ 18]="DIM";
			allContainers[ 19]="ExcellZyme";
			allContainers[ 20]="ExcitaCor";
			allContainers[ 21]="ExcitaPlus";
			allContainers[ 22]="GABAMax";
			allContainers[ 23]="Gastro";
			allContainers[ 24]="GastroZyme";
			allContainers[ 25]="Kavinace";
			allContainers[ 26]="LCarnitine";
			allContainers[ 27]="LGlutamine";
			allContainers[ 28]="LTaurine";
			allContainers[ 29]="LicoriceGI";
			allContainers[ 30]="LiverMaintenance";
			allContainers[ 31]="Lypo";
			allContainers[ 32]="MalePerformax";
			allContainers[ 33]="MediTropin";
			allContainers[ 34]="Melatonin";
			allContainers[ 35]="MetabolicSynergy";
			allContainers[ 36]="PaleoFiber";
			allContainers[ 37]="PernaPLUS";
			allContainers[ 38]="Pregnenolone";
			allContainers[ 39]="Probiotic";
			allContainers[ 40]="Protease";
			allContainers[ 41]="ProstateSupport";
			allContainers[ 42]="PureZyme";
			allContainers[ 43]="PZyme";
			allContainers[ 44]="ReleaseZyme";
			allContainers[ 45]="RepairZyme";
			allContainers[ 46]="SanoX";
			allContainers[ 47]="Serene";
			allContainers[ 48]="SerenePlus";
			allContainers[ 49]="SuperCellZyme";
			allContainers[ 50]="TransLean";
			allContainers[ 51]="TravaCor";
			allContainers[ 52]="TDM";
			allContainers[ 53]="TyrosineSpray";
			allContainers[ 54]="UTract";
			allContainers[ 55]="WTDEP";
	

		// Here is the function that does the work.
		function showThis(targetID)
		{
			for (x in allContainers)
			{
				document.getElementById(allContainers[ x]).style.height="0";
			}
			document.getElementById(targetID).style.height="auto";
		}
	
	

    