var i=0;
var k=0;
var y=0;
var stext;
var message=new Array();
message[0]="Transportation with Intent to Sell over 3000 Tablets of Controlled Substances ... CASE DISMISSED!";
message[1]=" Child Sexual Assault FACING: 99 Years ... NOT GUILTY!";
message[2]=" NOT GUILTY jury verdict for distribution of over a half-kilo of cocaine.";
message[3]=" Renowned Attorney Guy Womack retained as defense counsel in Iraqi \"Abu Ghraib\" prisoner abuse case.";
message[4]=" Sexual Assault on a Minor charges DISMISSED BEFORE TRIAL.";
message[5]=" 6 counts of Rape & Molestation plus 1 count Kidnapping gets 3 YEARS INSTEAD OF Life + 24 years.";
var colors=new Array("#182c36","#444444","#666666","#999999","#aaaaaa","#eeeeee","#ffffff");
function display() {
 var text="";
 stext=document.getElementById('stext');
 stext.innerHTML=message[y];
 if (y<(message.length-1)) { y++; }
 else { y=0; }
 chgcolors();
}
function chgcolors() {
 if (k==0) {
  stext.style.color=colors[i];
  i++;
  if (i==7) {
   k=1;
   setTimeout('chgcolors()',5000); }
  else {
   setTimeout('chgcolors()',50); }
 }
 else {
  i--;
  stext.style.color=colors[i];
  if (i==0) {
   k=0;
   setTimeout('display()',1500); }
  else {
   setTimeout('chgcolors()',50); }
 }
}
window.onload=setTimeout('display()',3000);

