//<!--
var myScroller = new Scroller(0, 0, 162, 115, 0, 1);
myScroller.setColors("transparent");
myScroller.setFont("Arial", "2");
		
		myScroller.addItem("<span class=\"scroll\"><strong>$12.2 Million for medical malpractice at childbirth</strong></span>"); 
		
		myScroller.addItem("<span class=\"scroll\"><strong>$8.3 Million for victims of Sept 11th</strong></span>"); 

        myScroller.addItem("<span class=\"scroll\"><strong>$5.5 Million for truck accidents</strong></span>"); 
		
		myScroller.addItem("<span class=\"scroll\"><strong>$4.0 Million for death of construction worker</strong></span>"); 

		myScroller.addItem("<span class=\"scroll\"><strong>$3.2 Million for car accident victim</strong></span>"); 
		
        myScroller.addItem("<span class=\"scroll\"><strong>$$2.5 Million for building collapse</strong></span>"); 
		
		myScroller.addItem("<span class=\"scroll\"><strong>$1.25 Million for improper spinal surgery</strong></span>"); 
		

//SET SCROLLER PAUSE
myScroller.setPause(2000); //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;
//-->
