// ########################################################################
function topscroll_start() {
	TOPOBJEKT=document.getElementById("ja-header");
	topscroll();
}
// ########################################################################
var TOPSCROLL=0;
var TOPOBJEKT;


function topscroll() {
	TOPSCROLL-=1;
	if (TOPSCROLL<0) TOPSCROLL=1255;
	TOPOBJEKT.style.backgroundPosition=TOPSCROLL+"px top";
	setTimeout('topscroll()',100);
}
