var news = new Array(0);
var fehler = false;

var speed;
var font;
var fontstyle;
var fontsize;
var fontcolor;

function addNews(news_in) {
	news.push(news_in);
}

function setTickAttributes(spd, fnt, fst, fsz, fcl) {
	speed = spd;
	font = fnt;
	fontstyle = fst;
	fontsize = fsz;
	fontcolor = "#"+fcl;
}