var myScroller1 = new Scroller(0, 0, 600, 32, 2, 8);

myScroller1.setColors("navy", "#ccffcc", "navy");

myScroller1.setFont("Verdana,Arial,Helvetica", 2);

myScroller1.addItem("<b><center>Welcome to Uniquely Yours at GiftsEasy.com!</center></b>");

myScroller1.addItem("<b><center>Check out our new fragrances of Yankee Candles and Accessories.</center></b>");

myScroller1.addItem("<b><center>Have you tried Yankee Bath Products???  Indulge!!! Enjoy!!!</center></b>");

myScroller1.addItem("<b><center>Let our staff help you find the perfect gift for that special someone</center></b>");

myScroller1.addItem("<b><center>with our gift shopping service.  Thousands of gifts at our fingertips.</center></b>");

myScroller1.addItem("<b><center>Let our staff help you find the perfect gift for that special someone.</center></b>");

myScroller1.addItem("<b><center>Thank You for shopping with us at www.giftseasy.com </center></b>");

myScroller1.addItem("<center>------------------------------------------------------------------</center>");
function init() {

  var img;

  var x, y;

  // Locate placeholder image so we can use it to position the scrollers.

  img = getImage("placeholder");

  x = getImagePageLeft(img);

  y = getImagePageTop(img);

  // Create the first scroller and position it.

  myScroller1.create();

  myScroller1.hide();

  myScroller1.moveTo(x, y);

  myScroller1.setzIndex(100);

  myScroller1.show();

}
