//<!--
var myScroller = new Scroller(0, 0, 160, 151, 0, 1);
myScroller.setColors("transparent");
myScroller.setFont("Arial", "2");
		
		myScroller.addItem("<span class=\"scroll\"><b>Spouse's unreported income determined for child support calculation</b><br>  </span>"); 
		
		myScroller.addItem("<span class=\"scroll\"><b>Hidden marital assets discovered and equitably distributed</b><br>  </span>"); 

        myScroller.addItem("<span class=\"scroll\"><b>Permanent maintenance awarded after long term marriage</b><br>  </span>"); 
	
		myScroller.addItem("<span class=\"scroll\"><b>Order of Protection granted after trial</b><br>  </span>"); 

		myScroller.addItem("<span class=\"scroll\"><b>Exclusive use and occupancy of marital residence opposed and denied due to failure of proof</b><br>  </span>"); 
		
		myScroller.addItem("<span class=\"scroll\"><b>Spouse made to contribute to carrying charges on the marital residence</b><br>  </span>");
		
		myScroller.addItem("<span class=\"scroll\"><b>Maintenance terminated after cohabitation with unrelated person for extended period of time</b><br>  </span>");
		
		myScroller.addItem("<span class=\"scroll\"><b>Child Support increased due to change of circumstances and inability to meet child's needs</b><br>  </span>");
		
		myScroller.addItem("<span class=\"scroll\"><b>Child Support reduced due to unforseen and substantial loss of income</b><br>  </span>");
		
		myScroller.addItem("<span class=\"scroll\"><b>Counsel Fees awarded due to disparity in income and delay of divorce case</b><br>  </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;
//-->
