//SET SCROLLER APPEARANCE AND MESSAGES
var myScroller1 = new Scroller(0, 0, 150, 71, 1, 5); //(xpos, ypos, width, height, border, padding)
myScroller1.setColors("#ffffff", "#ffffff", "#ffffff"); //(fgcolor, bgcolor, bdcolor)
myScroller1.setFont("Verdana,Arial,Helvetica", 2);

myScroller1.addItem("<span class=txtStyle1><a href=\"company/news_room.htm\">id-Confirm and SecuredUser Unite Biometric Authentication and Single Sign-On</a></span>");
myScroller1.addItem("<span class=txtStyle1><a href=\"company/news_room.htm\">Fujitsu and Secured Services Combine Biometric and Identity Management Authentication</a></span>");
myScroller1.addItem("<span class=txtStyle1><a href=\"company/news_room.htm\">Secured Services Joins SAIC Public Safety Integration Center</a></span>");
myScroller1.addItem("<span class=txtStyle1><a href=\"company/news_room.htm\">Secured Services Partners with Wireless Integrator Invictus Networks</a></span>");

//SET SCROLLER

myScroller1.setPause(2500); //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();
myScroller1.moveTo(mikex, mikey);
myScroller1.setzIndex(100);
myScroller1.show();
}

window.onload=runmikescroll
