var myScroller = new Scroller(0, 0, 190, 100, 0, 0); //(xpos, ypos, width, height, border, padding)
myScroller.setColors("none", "none", "none"); //(fgcolor, bgcolor, bdcolor)
<!--add News items below-->
myScroller.addItem("<a href='http://trustautomation.com/cm/About_Trust/News.html' target=_self>All Trust Automation Press Releases</a>");
myScroller.addItem("<a href='http://trustautomation.com/Library/pdf/Press_Release/090720_TA_to_Exhibit_at_ASPE_Press_Release.pdf' target=_blank>July 2009 – Trust Automation to Exhibit at ASPE</a>");
myScroller.addItem("<a href='http://trustautomation.com/Library/pdf/Press_Release/090720_TA333_Press_Release.pdf' target=_blank>June  2009 – New, High Current Linear Servo Amplifier</a>");
myScroller.addItem("<a href='http://trustautomation.com/Library/pdf/Press_Release/080228_TA_Moves_Press_Release.pdf' target=_blank>February  2008 – Trust Automation Moves to New and Larger Facilities</a>");
myScroller.addItem("<a href='http://trustautomation.com/Library/pdf/Press_Release/080130_TA2215_Press_Release.pdf' target=_blank>January 2008 – New, High High Current, Trapezoidal Drive for Battery Powered, Hall Commutated, 3-Phase Brushless Motors</a>");
myScroller.addItem("<a href='http://trustautomation.com/Library/pdf/Press_Release/070912%20TA2230%20Press%20Release.pdf' target=_blank>September 2007 – New, High Efficiency, AC Powered Brushless DC Motor Drive for Constant Velocity Applications</a>");
myScroller.addItem("<a href='http://trustautomation.com/Library/pdf/Press_Release/070216%20TA620%20Press%20Release.pdf' target=_blank>February 2007 – New Dual Processor Spindle Controller for DC and AC Brushless Motors Provides Advanced Position Control to 30,000 RPM</a>");

myScroller.setPause(3000); //set pause beteen msgs, in milliseconds

function scroll() {

  var layer;
  var x, y;

  layer = getLayer("scroller");
  x = getPageLeft(layer);
  y = getPageTop(layer);

  myScroller.create();
  myScroller.hide();
  myScroller.moveTo(x, y);
  myScroller.setzIndex(100);
  myScroller.show();
}

function onloadEvents() {
	scroll();
}

//window.onload = onloadEvents;
setTimeout('onloadEvents();',4000);
