//<!--
var myScroller = new Scroller(0, 0, 175, 160, 0, 1);
myScroller.setColors("#ffffff", "#513705", "#ffffff");
myScroller.setFont("Arial", "2");

		myScroller.addItem("<span class=\"scroll\"><i>Driving While Intoxicated</i> <b class=\"white\">(2007) Represented a woman charged with DWI with an Intoxilizer reading of .15 insufficient Sample.<br></b><div align=\"right\"><a href=\"CasesWeHandle.html\" class=\"white\">Read More -></a></div></span>");
		
		myScroller.addItem("<span class=\"scroll\"><i>Enterprise Corruption</i> <b class=\"white\">(2007) Representing an individual charged with Enterprise Corruption in connection with a massive gambling ring.<br></b><div align=\"right\"><a href=\"CasesWeHandle.html\" class=\"white\">Read More -></a></div></span>");

		myScroller.addItem("<span class=\"scroll\"><i>Attempted Grand Larceny in the 1st Degree</i> <b class=\"white\">(2007) Represented the chauffeur of a well known celebrity accused of attempting to extort $2 million dollars from her.<br></b><div align=\"right\"><a href=\"CasesWeHandle.html\" class=\"white\">Read More -></a></div></span>");
		
		myScroller.addItem("<span class=\"scroll\"><i>Resisting Arrest/Obstructing Governmental Administration </i> <b class=\"white\">(2006) Represented Prominent anti-war activist whose son was killed in Iraq after she was arrested while attempting to deliver a peace petition to the United States Mission to the United Nations.<br></b><div align=\"right\"><a href=\"CasesWeHandle.html\" class=\"white\">Read More -></a></div></span>");
		
		myScroller.addItem("<span class=\"scroll\"><i>Kidnapping/Sex Abuse</i> <b class=\"white\">(2006) New York, New York - Represented a man alleged to have gained entry into a woman’s Chelsea apartment by posing as a fireman and sexually abusing her for 13 hours.<br></b><div align=\"right\"><a href=\"CasesWeHandle.html\" class=\"white\">Read More -></a></div></span>"); 
		
		myScroller.addItem("<span class=\"scroll\"><i>Money Laundering/Promoting Prostitution</i> <b class=\"white\">(2006) New York, New York - Representing a man charged with setting up credit card accounts for New York City escort service.<br></b><div align=\"right\"><a href=\"CasesWeHandle.html\" class=\"white\">Read More -></a></div></span>"); 
		
		myScroller.addItem("<span class=\"scroll\"><i>Medicaid Fraud </i> <b class=\"white\">(2006) New York State - Represented two health providers in separate investigations of Medicaid fraud.<br></b><div align=\"right\"><a href=\"CasesWeHandle.html\" class=\"white\">Read More -></a></div></span>"); 

		myScroller.addItem("<span class=\"scroll\"><i>False Statement to Government Official </i> <b class=\"white\">(2006) Southern District of New York - Representing a man charged with making a false statement to FBI agents in an organized crime investigation. <br></b><div align=\"right\"><a href=\"CasesWeHandle.html\" class=\"white\">Read More -></a></div></span>"); 
		
		myScroller.addItem("<span class=\"scroll\"><i>Money Laundering </i> <b class=\"white\">(2006) Eastern District of New York - Representing an individual charged with money laundering in connection with an alleged scheme to distribute stolen goods involving a state judge.<br></b><div align=\"right\"><a href=\"CasesWeHandle.html\" class=\"white\">Read More -></a></div></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;
//-->
