//configure the below five variables to change the style of the scroller
var scrollerdelay='3000'; //delay between msg scrolls. 3000=3 seconds.
var scrollerwidth='375px';
var scrollerheight='18px';
var scrollerbgcolor='#ffffff';
//set below to '' if you don't wish to use a background image
var scrollerbackground='';

function setDelay(newsec) {
  scrollerdelay = newsec*1000;
}
function setWidth(newwidth) {
  scrollerwidth = newwidth;
}
function setHeight(newheight) {
  scrollerheight = newheight;
}
function setBgcolor(newbgcolor) {
  scrollerbgcolor = newbgcolor;
}
