var tf = new TextFader("tf");
var res = new Array();

var x = new Array();
x['v'] = "Real Estate Fraud Ring";
x['f'] = "10 Years in Federal Prison";
x['r'] = "3 Years + Restitution";
res[0] = x;
var x = new Array();
x['v'] = "Conspiracy to Distribute Controlled Substance (Methamphetamine)";
x['f'] = "Mandatory 10 Years in Prison";
x['r'] = "24 Months";
res[1] = x;
var x = new Array();
x['v'] = "2 Counts Vessel Manslaughter Boating Under the Influence";
x['f'] = "12 Years in Prison";
x['r'] = "3 Years Probation";
res[2] = x;
var x = new Array();
x['v'] = "Conspiracy, Transportation of Drugs Plus Gang Enhancement";
x['f'] = "5 Years in Prison";
x['r'] = "Case Dismissed!";
res[3] = x;
var x = new Array();
x['v'] = "2 Counts of Forgery (Federal Class C Felony)";
x['f'] = "10 Years in Prison and $250,000 Fine";
x['r'] = "2 Years Probation, 200 Hours Community Service and $200 Fine";
res[4] = x;
var x = new Array();
x['v'] = "Embezzlement (Six Figures)";
x['f'] = "5-99 Years in Prison";
x['r'] = "1 Month in Jail + Restitution";
res[5] = x;
var x = new Array();
x['v'] = "Operation Falcon Internet Child Porn";
x['f'] = "Mandatory Prison Time";
x['r'] = "Case Dropped!";
res[6] = 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[7] = x;
var x = new Array();
x['v'] = "Computer Hacking";
x['f'] = "8-14 Months in Federal Prison";
x['r'] = "6 Months Home Detention";
res[8] = 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);


