var myScroller1 = new Scroller(0, 0, 150, 180, 1, 5); //(xpos, ypos, width, height, border, padding)
myScroller1.setColors("#CC3300", "#E6E6FF", "#E6E6FF"); //(fgcolor, bgcolor, bdcolor)
myScroller1.setFont("Verdana,Arial,Helvetica", 2);
myScroller1.addItem("<strong>Allow Us to Call You to Discuss Your Entitlement</strong> - Fill in Your Full Name and a Contact Number and Press Please Call Me ..... And We'll do the Rest !");
myScroller1.addItem("<strong>Start Your Claim On Line</strong><a href='http://www.accident-assist.co.uk/personal-injury-claim-start.asp'></a> - Free Advice and Claim Assessment, No Risk, No Fee and No Obligation");
myScroller1.addItem("<strong>Find Out Your Claim Entitlement</strong> - Move Your Mouse Curser Over the Skeleton, for an Estimate of Your Personal Injury Claim Entitlement");
myScroller1.addItem("<strong>Claim by Free Text Message</strong> - Send us a Text Message and We will call You. There is no cost for this service");

//SET SCROLLER PAUSE
myScroller1.setPause(5000); //set pause beteen msgs, in milliseconds

function runmikescroll() {

  var layer;
  var mikex, mikey;

  // Locate placeholder layer so we can use it to position the scrollers.

  layer = getLayer("placeholder");
  mikex = getPageLeft(layer);
  mikey = getPageTop(layer);

  // Create the first scroller and position it.

  myScroller1.create();
  myScroller1.hide();
  myScroller1.moveTo(mikex, mikey);
  myScroller1.setzIndex(100);
  myScroller1.show();
}

window.onload=runmikescroll