/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */

var num_of_quotes = 6;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
title="Fact";
body="Every 10 minutes, a woman or child is trafficked into the United States for forced labor.";
}

if (quotes==1) {
title="Fact";
body="In 1850 slaves cost $40,000 (todays dollar), today they only cost $30";
}

if (quotes==2) {
title="Fact";
body="Nearly every country is involved in the web of trafficking activities, either as a country of origin, destination or transit. ";
}

if (quotes==3) {
title="Fact";
body="There is a victim of trafficking in the world every sixty seconds.";
}

if (quotes==4) {
title="Fact";
body="Human trafficking will most likely surpass drug dealing and arms trading to be the largest criminal activity by 2010";
}

if (quotes==5) {
title="Fact";
body="The present rate of trafficking in children is already 10 times higher than the trans-Atlantic slave trade at its peak. ";
}

document.write('<div align=left>');
document.write('<strong>' + title + '</strong><br>');
document.write(''+ body +'');
document.write('</div>');
