var tf = new TextFader("tf");
var res = new Array();

var x = new Array();
x['v'] = "Distribution of Child Pornography";
x['f'] = "97-121 Months";
x['r'] = "60 Months";
res[0] = x;
var x = new Array();
x['v'] = "Child Molestation - 4 Victims";
x['f'] = "Mandatory 30-60 Years in Prison";
x['r'] = "Not Guilty on All Charges";
res[1] = x;
var x = new Array();
x['v'] = "College Campus Sexual Assault";
x['f'] = "Jail Time and Sex Offender Registration For Life";
x['r'] = "Dismissed Before Trial";
res[2] = x;
var x = new Array();
x['v'] = "Child Sexual Assault";
x['f'] = "99 Years";
x['r'] = "Not Guilty!";
res[3] = x;
var x = new Array();
x['v'] = "Multiple Counts of Child Molestation";
x['f'] = "Life in Prison";
x['r'] = "Probation Only";
res[4] = x;
var x = new Array();
x['v'] = "Indecent Liberties 3 Counts";
x['f'] = "5-10 Years and Sex Offender Registration";
x['r'] = "Case Dismissed!";
res[5] = x;
var x = new Array();
x['v'] = "6 Counts of Rape, Molestation Plus 1 Count Kidnapping";
x['f'] = "Life Prison + 24 Years";
x['r'] = "3 Years";
res[6] = x;
var x = new Array();
x['v'] = "Child Molestation";
x['f'] = "8 Years in Prison";
x['r'] = "Probation + Work Release";
res[7] = x;
var x = new Array();
x['v'] = "Operation Falcon Internet Child Porn";
x['f'] = "Mandatory Prison Time";
x['r'] = "Case Dropped!";
res[8] = x;
var x = new Array();
x['v'] = "Possession of and Trafficking in Child Pornography";
x['f'] = "70-87 Months in Federal Prison";
x['r'] = "33 Months";
res[9] = x;
var x = new Array();
x['v'] = "Child Abuse and Molestation";
x['f'] = "Substantial Prison Time";
x['r'] = "Case Dropped!";
res[10] = x;
var x = new Array();
x['v'] = "Third Strike Rape Charges";
x['f'] = "Life in Prison";
x['r'] = "Hung Jury!";
res[11] = x;
var x = new Array();
x['v'] = "Child Pornography Appeal";
x['f'] = "Originally Sentenced to 12 Years";
x['r'] = "12 Year Sentence VACATED!<br>Re-Sentenced to 63 Months!";
res[12] = x;

var cup = new Array("dddddd", "cccccc", "bbbbbb", "aaaaaa", "999999","888888", "777777", "666666", "555555", "444444", "333333", "222222", "111111", "000000");
var cdown = new Array("dddddd", "cccccc", "bbbbbb", "aaaaaa", "999999","888888", "777777", "666666", "555555", "444444", "333333", "222222", "111111", "000000");
tf.setColorArrays(cup, cdown);
tf.setPause(3000);
tf.setElementId("scrollresult");
tf.setRepeatCount(-1);
tf.setFinalHTML("");

var ie5 = document.getElementById && document.all;
var ie6 = document.getElementById && document.all && 
	(navigator.appVersion.indexOf("MSIE 6.") != -1);
var macos = navigator.appVersion.indexOf("Mac") != -1;
if (ie5 && !ie6 && !macos) {
	document.write("<style type='text/css'>td {font-size:85%;}</style>");
}
var m = new Array();
var c = 0;
for ( i=0; i<res.length; i++ ) {
	m[c] = "";
	m[c] += "<div class='restxt'><span class='style60'>VIOLATION:</span></div>";
	m[c] += "<div class='restxt'><span class='style54'>" + res[i]['v'] + "</span></div><br>";
	m[c] += "<div class='restxt'><span class='style60'>FACING:</span></div>";
	m[c] += "<div class='restxt'><span class='style54'>" + res[i]['f'] + "</span></div><br>";
	m[c] += "<div class='restxt'><span class='style60'>RESULT:</span></div>";
	m[c] += "<div class='restxt'><span class='style54'>" + res[i]['r'] + "</span></div>";
	c++;
}
tf.setMessageArray(m);


