// JavaScript Document

<!--//--><![CDATA[//><!--


// Calculate random number 1 - ? (randomitems)
var randomitems = 8;
var bigNumber = Math.ceil(1000 * Math.random());
var randomNum = (bigNumber % randomitems) + 1;
var ar = new Array(randomitems);

// The facts are loaded into an array
	ar[1] = "50% of males and 70% of females who have <a href='/stiaids/list.htm#chlam' class='factsLink'>Chlamydia</a> don't even know it.";
	ar[2] = "STIs have become a serious health risk to the youth of Peel, with <a href='/stiaids/list.htm#chlam' class='factsLink'>Chlamydia</a> and <a href='/stiaids/list.htm#gonno' class='factsLink'>Gonorrhea</a> rates highest in the 15 to 24 age range.";
	ar[3] = "As of December 2004, there were 7,651 cases of <a href='/stiaids/faqsaids.htm' class='factsLink'>AIDS</a> among males and females in Ontario.";
	ar[4] = "In Peel, men and women aged 30 - 39 have the highest incidence rate of <a href='/stiaids/faqsaids.htm' class='factsLink'>HIV</a>. The second highest rate is among the 20 - 29 year olds.";
	ar[5] = "Sexually active women aged 15 - 24 are at a particular risk of <a href='/stiaids/faqssti.htm' class='factsLink'>sexually transmitted infections</a> (including <a href='/stiaids/faqsaids.htm' class='factsLink'>AIDS</a>) because the cells of their <a href='/glossary/index.htm#cervix' class='factsLink'>cervix</a> are still maturing and are therefore more vulnerable to change.";
	ar[6] = "Globally, young women and girls are 2.5 times more likely to be <a href='/stiaids/faqsaids.htm' class='factsLink'>HIV</a>-infected than their male counterparts.";
	ar[7] = "Every woman who is pregnant or who is anticipating a pregnancy should be tested for <a href='/stiaids/faqsaids.htm' class='factsLink'>HIV</a>."; 
	ar[8] ="The incidence of <a href='/stiaids/list.htm#syph' class='factsLink'>syphilis</a> has increased considerably since 2002. Twenty new cases were reported in Peel in 2004 compared to 1-2 cases per year reported from 1999 to 2002.";
	
// Print one fact from array above
document.write(ar[randomNum]);

//--><!]]>
