//<!--
var myScroller = new Scroller(0, 0, 170, 151, 0, 1);
myScroller.setColors("transparent");
//myScroller.setFont("Tahoma", "11");
		
		myScroller.addItem("<span class=\"scroll\"><b>Medical Malpractice</b><br>$501,500 recovery for wrongful death of 17 year old who died as a result of medical negligence.</span>");  

		myScroller.addItem("<span class=\"scroll\"><b>Medical Malpractice</b><br>$425,000 recovery for patient who suffered permanent disability from over-prescription of antibiotics.</span>");

		myScroller.addItem("<span class=\"scroll\"><b>Medical Malpractice</b><br>$200,000 recovery for medical negligence when doctor injured common bile duct during laproscopic gall bladder removal surgery.</span>");
		
		myScroller.addItem("<span class=\"scroll\"><b>Medical Malpractice</b><br>A confidential settlement in a medical malpractice case where a physician&#39;s medication error caused amputation of client&#39;s leg.</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;
//-->

