/*
Mike's DHTML scroller (By Mike Hall)
Permission granted to Dynamicdrive.com to include script in archive
For this and 100's more DHTML scripts, visit http://dynamicdrive.com
*/

var myScroller1 = new Scroller(0, 0, 160, 150, 2, 8);
myScroller1.setColors("#FFFFFF", "#000000", "#000000");
myScroller1.setFont("Arial,Helvetica", 2);
myScroller1.setPause("6000");

myScroller1.addItem("<b>Welcome to the Count Blue Website. <br> Here you can find all the up to date info about Appearances, CD's, Special Events, and More.</b>");
myScroller1.addItem("<b>Are you a Blues Musician? Do you want to jam with Count Blue?  Then come on out to the Bobby Counts Jam on Thursdays @ the <a href='http://www.keyslounge.com/'>Key's Lounge</a></b>");
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