//<!--
var myScroller = new Scroller(0, 0, 170, 151, 0, 1);
myScroller.setColors("transparent");
//myScroller.setFont("Tahoma", "11");
		
		myScroller.addItem("<span class=\"scroll\" ><b>Food Poisoning</b><br> Over $1,000,000 recovered for victims of food poisoning.</span>"); 
		
		myScroller.addItem("<span class=\"scroll\" ><b>Trucking Accident</b><br> $980,000 recovery for wrongful death of 20 year old father of two.</span>"); 
		
		myScroller.addItem("<span class=\"scroll\"><b>Whistleblower</b><br>$730,000 recovery for client and United States government for Medicare and Medicaid fraud by a hospital.  Recovery included $75,000 for attorneys&#39; fees and costs.</span>");
		
		myScroller.addItem("<span class=\"scroll\" ><b>Police Brutality</b><br> $300,000 recovery for victim of police brutality and use of excessive force.</span>"); 	
		
		myScroller.addItem("<span class=\"scroll\"><b>Dog Bite</b><br>$50,000 recovery for client who was attacked by a vicious dog.</span>"); 
		
		
		

//SET SCROLLER PAUSE
myScroller.setPause(3000); //set pause beteen msgs, in milliseconds

function runScroller() {
  var layer;
  var x,y;

  // Locate placeholder layer so we can use it to position the scrollers.
  layer = getLayer("placeholder");
  x = getPageLeft(layer);
  y = getPageTop(layer);

  // Create the first scroller and position it.
  myScroller.create();
  myScroller.hide();
  myScroller.moveTo(x, y);
  myScroller.setzIndex(100);
  myScroller.show();
}

window.onload=runScroller;
//-->
