//<!--
var myScroller = new Scroller(0, 0, 165, 243, 0, 1);
myScroller.setColors("#000000");
myScroller.setFont("Arial", "2");

myScroller.addItem("<span class=\"scroll\"><b>SlumLord Landlord, Tenant Case:</b><br>Breach of Warranty of Habitability. Water Leaks, Mold Infestation. Pre-Trial-Settlement: $175,000.00</span>");
		
		myScroller.addItem("<span class=\"scroll\"><b>Securities Case:</b><br>California federal judge awards plaintiff Attorney Winters $355,000 by default judgment.  Company CEO engage in a scheme to defraud investors.  Fraud, Money Laundering.</span>"); 
		
		myScroller.addItem("<span class=\"scroll\"><b>Real Property:</b><br>Commercial Lease Eviction, Conversion, Trespass.  Subtenant loses personal property after landlord wrongfully records lien.  Won verdict of $115,000 + $30,000 default or return of converted property.  Successfully defended client against defendant's cross complaint which sought $500,000 of toxic contamination to land.</span>"); 

        myScroller.addItem("<span class=\"scroll\"><b>Toxic Torts:</b><br>Mold, HOA, Negligent Repairs.  Pipe burst in condo, property and physical injuries claimed.  Jury verdict $163,900 and Post Trial settlement $220,000</span>"); 
	
		myScroller.addItem("<span class=\"scroll\"><b>Foreclosure:</b><br>HOA Dues, Toxic Mold. Successfully stopped the foreclosure initiated by the HOA against a family with two children.  Settlement received: $70,000 plus waiver of cross complaint of $40,000.</span>"); 

		myScroller.addItem("<span class=\"scroll\"><b>Assault and Battery:</b><br>Assault and battery in a nightclub.  Settlement of $60,000.</span>"); 
		
		myScroller.addItem("<span class=\"scroll\"><b>$859,000.00 Verdict to homeowner for nuisance, real property damage and emotional distress.</b><br>Water intrusion from the above neighbor resulting in molds infestations and asbestos contamination to ocean condo.</span>"); 
		



//SET SCROLLER PAUSE
myScroller.setPause(5000); //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;
//-->
