//TECH NOTE:

//If you would like to use quote marks ("), you must precede each
//quote with a backslash, \"beauty\", otherwise the script
//will break.


// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "<h1>Every second</h1><h3>a public school student is suspended</h3>";
Quotation[1] = "<h1>Every 10 seconds</h1><h3>a high school student drops out</h3>";
Quotation[2] = "<h1>Every 17 seconds</h1><h3>a public school student is corporally punished</h3>";
Quotation[3] = "<h1>Every 25 seconds</h1><h3>a child is arrested</h3>";
Quotation[4] = "<h1>Every 35 seconds</h1><h3>a baby is born into poverty</h3>";
Quotation[5] = "<h1>Every 40 seconds</h1><h3>a child is confirmed as abused or neglected</h3>";
Quotation[6] = "<h1>Every 42 seconds</h1><h3>a baby is born without health insurance</h3>";
Quotation[7] = "<h1>Every minute</h1><h3>a baby is born to a teen mother</h3>";
Quotation[8] = "<h1>Every 2 minutes</h1><h3>a baby is born at low birthweight</h3>";
Quotation[9] = "<h1>Every 5 minutes</h1><h3>a child is arrested for a drug offense</h3>";
Quotation[10] = "<h1>Every 9 minutes</h1><h3>a child is arrested for a violent crime</h3>";
Quotation[11] = "<h1>Every 18 minutes</h1><h3>a baby dies before his first birthday</h3>";
Quotation[12] = "<h1>Every 3 hours</h1><h3>a child or teen is killed by a firearm</h3>";
Quotation[13] = "<h1>Every 5 hours</h1><h3>a child or teen commits suicide</h3>";
Quotation[14] = "<h1>Every 6 hours</h1><h3>a child is killed by abuse or neglect</h3>";
Quotation[15] = "<h1>Every 14 hours</h1><h3>a woman dies from complications of childbirth or pregnancy</h3>";


// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();