var myTimeout;

var pattern = new Array();
	pattern[0] = new Array()
	pattern[0][0] = '.childNodes[1].childNodes[1]';
	pattern[0][1] = '.childNodes[1]';
	pattern[0][2] = 170; // max. Breite
	
	pattern[1] = new Array()
	pattern[1][0] = '.childNodes[1].childNodes[2]';
	pattern[1][1] = '.childNodes[1]';
	pattern[1][2] = 170; // max. Breite
	
	pattern[2] = new Array()
	pattern[2][0] = '.childNodes[2]';
	pattern[2][1] = '.childNodes[2]';
	pattern[2][2] = 150; // max. Breite

function scrolltitle(info,p){
	document.getElementById('lauftext_aktiv').id='';
	eval('info'+pattern[p][0]+'.id=\'lauftext_aktiv\'; var TitleWidth=info'+pattern[p][1]+'.scrollWidth;');
	if(TitleWidth>pattern[p][2]){
		var ziel = TitleWidth-pattern[p][2]^-1;
		ziel-=10;
		scrolltitle_ani(0,ziel);
		}
}

function scrolltitle_ani(frame,ziel){
	if(ziel!=frame){
		document.getElementById('lauftext_aktiv').style.textIndent = frame+"px";
		frame--;
		myTimeout = setTimeout('scrolltitle_ani(\''+frame+'\',\''+ziel+'\')', 25);
    	}
}


function resettitle(info,p){
	clearTimeout(myTimeout);
	document.getElementById('lauftext_aktiv').style.textIndent = '0px';
	}
