//SET /SCROLLER APPEARANCE AND MESSAGES
var myScroller1 = new Scroller(0, 150, 590, 25, 0, 0); //(xpos, ypos, width, height, border, padding)
myScroller1.setColors("#006600", "#ffffff", "#C0C0C0"); //(fgcolor, bgcolor, bdcolor)
myScroller1.setFont("Arial", 1);
//myScroller1.addItem("High quality, affordable <a href='http://www.edt-jewellery.co.uk' target='_top'>jewellery.</a> Rings, earings, bracelets, etc.  Opal, Pearls, etc.");
myScroller1.addItem("Click on one of the arrows to scroll the images.  Click the same arrow to increase the scroll speed.  Click the stop button or the other arrow button to decrease the scroll speed or stop the scrolling.");

//SET SCROLLER PAUSE
myScroller1.setPause(3500); //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();
	//mikey = 160;
	myScroller1.moveTo(mikex, mikey);
	myScroller1.setzIndex(100);
	myScroller1.show();
}

window.onload=runmikescroll;