var theText = new Array()

// To add more image files, continue with the pattern below, adding to the array.
theText[0] = '<h2>Foundation Fact #1</h2><p>The expression &ldquo;If you have to have a heart attack, have it in Seattle,&rdquo; was coined by 60 Minutes senior correspondent Morley Safer in a 1974 report that featured the fledgling Medic One program.</p>'
theText[1] = '<h2>Foundation Fact #2</h2><p>A USA Today series on the nation&rsquo;s emergency medical systems studying 2001 data said, &ldquo;Seattle sets the standard among the largest cities. Its 45 percent survival rate is [the] highest.&rdquo;</p>'
theText[2] = '<h2>Foundation Fact #3</h2><p>A Seattle PI article from December 2006 reports that the most recent survival rate for sudden cardiac arrest in King County is 46 percent.  Nationally, resuscitation rates for sudden cardiac arrest are between 6 and 10 percent, making King County the gold standard for emergency medical care.</p>'
theText[3] = '<h2>Foundation Fact #4</h2><p>Today, more than 230 certified paramedics&mdash;some of the most successful and highly trained in the world&mdash;serve greater King County.</p>'
theText[4] = '<h2>Foundation Fact #5</h2><p>The Medic One Foundation provides funding to train paramedics from Medic One providers throughout our region including Bainbridge Island, Bellevue, Camano Island, Edmonds, Everett, Lynnwood, Marysville, Redmond, Seattle, Shoreline, Snohomish County Fire Districts, #1, #7, and #8, Vashon Island and South King County.</p>'
theText[5] = '<h2>Foundation Fact #6</h2><p>Medic One paramedics are trained by University of Washington School of Medicine physicians at Harborview Medical Center.</p>'
theText[6] = '<h2>Foundation Fact #7</h2><p>Medic One paramedic certification requires that candidates be a firefighter/<abbr title="Emergency Medical Technician">EMT</abbr> usually with three or more years of experience.</p>'
theText[7] = '<h2>Foundation Fact #8</h2><p>Medic One has achieved survival rates for cardiac arrest that are several times greater than the national average.</p>'
theText[8] = '<h2>Foundation Fact #9</h2><p>Medic One Foundation provides funding for innovative research and quality improvement programs that assure innovative and state-of-the-art treatment.</p>'
theText[9] = '<h2>Foundation Fact #10</h2><p>Emergency medical equipment is provided by the Medic One Foundation when other funding sources are not available.</p>'
theText[10] = '<h2>Foundation Fact #11</h2><p>The Medic One Foundation makes it possible for paramedic students to learn lifesaving skills directly from physicians.</p>'
theText[11] = '<h2>Foundation Fact #12</h2><p>Medic One paramedics are trained to be an extension of the emergency room physician.</p>'
theText[12] = '<h2>Foundation Fact #13</h2><p>Medic One paramedics can administer a variety of drugs, open airways and perform technically advanced emergency medical care.</p>'
theText[13] = '<h2>Foundation Fact #14</h2><p>The Medic One Foundation is a non-governmental, non-profit organization established to help ensure that the care delivered continues to be the best possible.</p>'
theText[14] = '<h2>Foundation Fact #15</h2><p>During training, Medic One paramedic students have an average of 700 patients contacts&mdash;more than three times the national average.</p>'
theText[15] = '<h2>Foundation Fact #16</h2><p>Medic One paramedic students undergo 2,000 hours of instruction, compared to the national recommendation of 1,100 hours.</p>'

var j = 0
var p = theText.length;
var whichText = Math.round(Math.random()*(p-1));
function showText(){
	document.write('<div id="notetext">'+theText[whichText]+'</div>');
}