<!--
// Generelle Definitionen und Variablen
var arImageSrc = new Array ();
var arImageSrc = new Array ();
var FinishedPreload;

// Funktionen
// 1. Bildvorlader
function Vorlader()
{
	if (is_ie4up || is_nav4up)
	{
		arImageList = new Array ();
		for (counter in arImageSrc)
		{
			for(i = 0; i < arImageSrc[counter].length; i++)
			{
				arImageList[counter+"_"+i] = new Image();
				arImageList[counter+"_"+i].src = arImageSrc[counter][i];
			}
		}
		FinishedPreload = 1;
	}
}
// 2. Bildwechsel
function Bildwechsel(Name, Status)
{
	if(FinishedPreload == 1)
	{
		document[Name].src = arImageList[Name+"_"+Status].src;
	}
}
// 3. Detailfenster
function GoDetail()
{
	if(LastActive && LastActive != "")
	{
		self.location.href = arLinks[LastActive];
	}
	else
	{
		self.location.href = arLinks['DEFAULT'];
	}
}

//-->
