//author: B.G. Ulrich
//publisher: Kunstverein Trier Junge Kunst e.V.
//copyright: Kunstverein Trier Junge Kunst e.V.
//Letzte Aktualisierung: 27.01.2012 14:41:32

var aktuell="";
var diePosition=0;

function startTicker()
{
	if (window.location.pathname=="/jukutickerphp.htm")
	{
		window.document.tick.ticker.size=Math.ceil(screen.width/8);
	}

	var datum=new Date();
	if (datum.getYear()<1900)
	{
		var dw=10000*(datum.getYear()+1900);
	}
	else
	{
		var dw=10000*datum.getYear();
	}
	dw+=100*(datum.getMonth()+1)+datum.getDate();
	if (dw>=20120121)
	{
		aktuell="Aktuelle Ausstellung: Art Trier - Kunst York: Nathan Chenery, William Bradley, Kirsty Boutle, Tom Hodgson, Tom Rodgers, Sally Taylor. Galerie Junge Kunst, noch bis 25. Februar";
	}
	if (dw>=20120226)
	{
		aktuell="Nächster Termin: Rosemarie Stuffer, Much: Köpfe, Plastiken, Galerie Junge Kunst,  Eröffnung: Freitag, 2. März, 20.30 Uhr";
	}
	if (dw>=20120303)
	{
		aktuell="Aktuelle Ausstellung: Rosemarie Stuffer, Much: Köpfe, Plastiken, Galerie Junge Kunst, noch bis 14. April";
	}
	if (dw>=20120415)
	{
		aktuell="";
	}

	if (aktuell!="")
	{
		aktuell+=" +++ ";
	}
	if (window.document.tick.ticker.value!="")
	{
		aktuell+=window.document.tick.ticker.value+" +++ ";
	}
	if (aktuell=="")
	{
		if (window.location.href.indexOf("tickerphp")>0)
		{
			window.location.replace("jukutickerleer.htm");
		}
	}
	else
	{
		if (window.location.href.indexOf("tickerleer")>0)
		{
			window.location.replace("jukutickerphp.htm");
		}
		else
		{
			while (aktuell.length<200)
			{
				aktuell+=aktuell;
			}
			window.document.tick.ticker.value=aktuell;
			window.setTimeout("tickIt()",250);
		}
	}
}

function tickIt()
{
	diePosition++;
	if (diePosition==aktuell.length)
	{
		diePosition=0;
	}
	window.document.tick.ticker.value=aktuell.substr(diePosition,aktuell.length)+aktuell.substr(0,diePosition);
	window.setTimeout("tickIt()",250);
}

