<script language="JavaScript">
<!--
function random_text()
{};
	var random_text = new random_text();
	// Set the number of text strings to zero to start
	var number = 0;
	// Incremental list of all possible Text
	random_text[number++] = "Without contraception, four out of five (4/5) couples will become pregnant within one year."
	random_text[number++] = "Sperm can live up to one week in the female body!"
	random_text[number++] = "An estimated 4.5 million people in the U.S. have herpes (HSV 2).  Up to 90% of people who have genital herpes are unaware of their infection and can transmit the virus unknowingly.  There is no cure for herpes."
	random_text[number++] = "One out of five people over the age of 12 have herpes (HSV 2).  There is no cure for herpes."
	random_text[number++] = "Teens (ages 12-19) are five times more likely to have herpes (HSV 2).  The largest increase in herpes infections is currently being seen in young, white teens.  There is no cure for herpes."
	random_text[number++] = "At least one-half (50%) of all new HIV infections in the U.S. are estimated to be among those under the age of 25.  There is no cure for HIV/AIDS."
	random_text[number++] = "Three out of four cases (75%) of Chlamydia occurs in people under the age of 25.  Chlamydia is easily treated with antibiotics."
	random_text[number++] = "Seventy-five percent (75%) of gonorrhea cases occur in people between ages 15-29.  Gonorrhea is easily treated with antibiotics."
	random_text[number++] = "An estimated 20 million people in the U.S. have human papillomavirus (HPV).  There are approximately 5.5 million new HPV infections each year."
	random_text[number++] = "There is no cure for human papillomavirus (HPV), but there is a vaccine for four strains of HPV that are associated with 70% of cervical cancers and 90% of genital warts.  The Center for Disease Control (CDC) recommends that all female teens (beginning at age 11 or before they are sexually active) receive the vaccine."
	random_text[number++] = "Over 1 million people in the U.S. are estimated to be living with HIV."
	random_text[number++] = "The Center for Disease Control (CDC) estimates that approximately 40,000 people become infected with HIV each year."
	random_text[number++] = "HIV is <strong>not</strong> transmitted by kissing, sharing drinking glasses, hugging or other forms of casual contact."
	random_text[number++] = "Chlamydia is known as the \"silent\" disease because about 75% of infected women and 50% of infected men have no symptoms."
	random_text[number++] = "HIV tests detect antibodies the body produces in response to the virus.  Since it takes time to develop enough antibodies that can be detected, testing is recommended 3 months and again at 6 months after potential exposure HIV."
	random_text[number++] = "The majority of cases of syphilis occur in people between 29-30 years old.  Syphilis can be treated with antibiotics."
	random_text[number++] = "If you are treated for a bacterial sexually transmitted infection (e.g. Chlamydia, gonorrhea, syphilis) your partner(s) must also be treated to prevent you from becoming re-infected."
	random_text[number++] = "Abstinence, defined as no genital contact, is the only 100% effective way to prevent sexually transmitted infections, HIV and unintended pregnancy."
	random_text[number++] = "Condoms are 97-99% effective at preventing pregnancy if used correctly and consistently."
	random_text[number++] = "Forty-three percent (43%) of a sample of college males reported using condoms incorrectly <em>(Crosby, et al, 2002)</em>."
	random_text[number++] = "Over the past thirty years, only 2-4% of Title X family planning clinic patients have been males <em>(DHHS, 2003)</em>."
	random_text[number++] = "Seventy-five percent (75%) of women want men to play a greater role in ensuring contraception is always used <em>(Henry J. Kaiser Family Foundation, 1997)</em>."
	random_text[number++] = "According to the 2006 Oregon Healthy Teens Survey, the majority of teens (59%) have not had sexual intercourse."
	random_text[number++] = "In 1846 the patent was issued for the first diaphragm contraceptive device <em>(Hock, R. R. (2007).  Human sexuality. New Jersey: Pearson Education, Inc.)</em>"
	random_text[number++] = "The first oral contraceptive was approved by the Food and Drug Administration in 1960 <em>(Hock, R. R., 2007)</em>.  Human sexuality. New Jersey: Pearson Education, Inc.)."
	random_text[number++] = "In 1993 the Food and Drug Administration approved the first female condom, known as \"Reality\" <em>(Hock, R. R., 2007)</em>.  Human sexuality. New Jersey: Pearson Education, Inc.)."
	random_text[number++] = "Over 50% of males would use a male contraceptive pill  if it was available and over 75% of their female partners would be supportive. <em>(Anderson and Baird Endocrine Reviews, December 2002, 23(6):735-762)</em>."
	random_text[number++] = "In 2005, there were approximately 4000 teen pregnancies in Oregon <em>(Oregon DHS Vital Statistics)</em>.  There was a 39% reduction in teen birth rates from 1990 to 2004 <em>(Oregon Center for Health Statistics, 2006)</em>"
	random_text[number++] = "Teen childbearing in the United States costs taxpayers at least $9.1 billion <em>(National Campaign to Prevent Teen Pregnancy, October 2006)</em>."
	random_text[number++] = "In Oregon, $91 million was spent in 2004 for costs associated with births to teenage parents billion <em>(National Campaign to Prevent Teen Pregnancy, October 2006)</em>."
	random_text[number++] = "Withdrawal is only 73% effective at preventing pregnancy and does not protect against sexually transmitted infections or HIV."
	random_text[number++] = "Emergency contraception (or Plan B), is available without a prescription at pharmacies for individuals 18 years old or older.  Emergency contraception is also available at reduced or no cost at county health departments."
	random_text[number++] = "Emergency contraception (or Plan B) is 83% effective at preventing pregnancy if taken within 72 hours of unprotected sex or contraception failure.  Emergency contraception may be taken up to five days after unprotected sex, but the sooner it is taken the better it works."
	random_text[number++] = "Communication can help strengthen your relationships... so talk away!"
	random_text[number++] = "Sex comes in many forms, from oral, anal, to vaginal intercourse. Got questions? Just ask us!"
	random_text[number++] = "Healthy relationships are found in both same-sex and opposite sex relationships (male-male, male-female, and female-female)."
	random_text[number++] = "Talking is a form of protecting yourself from STDs. The more you know about your partner’s sexual history, the better off you are.  Be proactive - share your stories and help each other stay healthy!"
	random_text[number++] = "Words are just as harmful as actions. Fag, gay, queer, butch, dyke, and lesbo aren’t weapons, so why use them as if they were?"
	// Create a random number with limits based on the number
	// of possible random text strings
	var random_number = Math.floor(Math.random() * number);
	// Write out the random text to the browser
	document.write(random_text[random_number]);
--></script>
