// JavaScript Document
//<!--

// Scroller(x, y, width, height, border, padding)
var myScroller1 = new Scroller(0, 0, 176, 140, 0, 5);
myScroller1.setColors("", "", "");

 //myScroller1.setColors("#000000", "#ffffff", "#F9F9FF");
 
myScroller1.setFont("Verdana, Arial, Helvetica", 1);
myScroller1.addItem("<b>BAKER STREET</b> <br>We are manufacturer, supplier and exporter of bakery products from Mumbai at India to USA, Canada, UK, Australia, Itally, Russia, etc");
myScroller1.addItem("<b>BISCUIT</b> <br> Delicious and Light with Crunchy Fruits <br><br> Flavours :<br> Chocolate, Coconut, Butter Scotch, Tutti Frutti, Coffee");
myScroller1.addItem("<b>COOKIE</b> <br> Double Taste  Double Fun in Single Cookie <br><br> Flavours :<br> Almond and Date, Cashew and Raisins, Royale, Panjabi, Coconut");
myScroller1.addItem("<b>KHARI</b> <br> Zingy Twisting Khari with Fresh Fenugreek and Touch of Spices <br><br> Flavours :<br> Jeera, Masala, Maska, Tomato, Methi");
myScroller1.addItem("<b>TOAST</b> <br> All Time Favourite Soft yet Crispy Toast <br><br> Flavours :<br> Crispy Toast, Herb and Garlic Toast");
myScroller1.addItem("<b>CAKE RUSK</b> <br> Very Yummy Cake yet Crisp and Crunchy <br><br> Flavours :<br> Eggless Cake Rusk, Tea Rusk, Suji Rusk");
myScroller1.addItem("<b>NANKHATAI</b> <br> Simply melts in a Mouth Indian Nankhatai <br><br> Flavours :<br> Rava, Ealaichi, Antouch of Jaiphal, Special");

//myScroller1.addItem("<b>October 2004</b> Successfully completed a Gaming site for Portuguese Client<br><center><a href='http://www.fixeland.com' target='_blank' class='banner'>www.fixeland.com</a></center>");

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

// -->