// JavaScript Document
// ************ RANDOM DID YOU KNOW? CONTENT GENERATOR *******************
// This code handles the random quotes generated for the Did You Know box.
// * Each short fact is in a separate array item
// * Use HTML to format text - no Returns and no quotes marks 
// *************** RANDOM QUOTE GENERATOR ********************************
	//var a1 = Math.random() + ""
	var a2 = Math.random() + ""
<!-- Select the 5th digit (0-9) of the generated random number and display the cooresponding feature from the array. -->
	//var rand1 = 1
	var rand2 = a2.charAt(5)
<!-- facts (10 of them) -->		
	fact = new Array
	fact[1] = "<p>In <b>1954</b>, Jonas Salk developed the world's first polio vaccine. In <b>1960</b>, the FDA approved the first oral contraceptives for marketing in the United States.</p>"	
	fact[2] = "<p>In <b>1936</b>, a fermentation-free method for fermenting ascorbic acid (Vitamin C) was developed by Dr. Richard Pasternack. Pfizer became the world's leading producer.</p>"	
	fact[3] = "<p>In <b>1989</b>, the FDA approved the male impotence drug Viagra. Zyvox, the first new antibotic in 35 years, was approved byt the FDA in <b>2000</b>.</p>"
	fact[4] = "<p>In <b>1970</b>, the FDA required that oral contraceptives contain information for the patient about specific risks and benefits, introducing the first patient package insert.</p>"
	fact[5] = "<p>In <b>1963</b>, Valium was developed by Roche labs. In <b>1966</b>, Insulin was first synthesized in China. In <b>1970</b>, Lithium was approved for the treatment of manic depression.</p>"
	fact[6] = "<p>In <b>2003</b>, Prilosec OTC became the first proton pump inhibitor to be sold over the counter.</p>"
	fact[7] = "<p>In <b>2005</b>, the Pharmacy Society of Wisconsin celebrated 125 years of organized pharmacy in the state. <b>Peter Morton</b> served as the organization's president from 1977-1978.</p>"
	fact[8] = "<p>In <b>1972</b>, the antidepressant Prozac (fluoxetine) was developed. It wasn't until 1987 that Prozac received approval for use in the United States.</p>"
	fact[9] = "<p>In <b>1986</b>, the first genetically-engineered vaccine for hepatitis B gained FDA approval. In <b>1987</b>, the FDA approved the use of AZT in the treatment of AIDS.</p>"
	fact[0] = "<p>In <b>1989</b>, Optometrists in Wisconsin were authorized to prescribe. In <b>1993</b>, advanced practice nurses in Wisconsin were granted prescription authority.</p>"
	var fact = fact[rand2]
