<!--
ImgHome = new Image();
ImgHome.src = "./img/Home0.png";
ImgHomeHi = new Image();
ImgHomeHi.src = "./img/Home1.png";

ImgFeatures = new Image();
ImgFeatures.src = "./img/Features0.png";
ImgFeaturesHi = new Image();
ImgFeaturesHi.src = "./img/Features1.png";

ImgDownload = new Image();
ImgDownload.src = "./img/Download0.png";
ImgDownloadHi = new Image();
ImgDownloadHi.src = "./img/Download1.png";

ImgBuying = new Image();
ImgBuying.src = "./img/Buying0.png";
ImgBuyingHi = new Image();
ImgBuyingHi.src = "./img/Buying1.png";

ImgSupport = new Image();
ImgSupport.src = "./img/Support0.png";
ImgSupportHi = new Image();
ImgSupportHi.src = "./img/Support1.png";

function Highlight(Bildnr, Bildobjekt)
{
	window.document.images[Bildnr].src = Bildobjekt.src;
}

function DownloadButtonOver(ButtonNr)
{
	if (ButtonNr == 1)
		window.document.images["DownloadButton1"].src = "./img/DownloadButtonHi.png";
	else
		window.document.images["DownloadButton2"].src = "./img/DownloadButtonHi.png";
}

function DownloadButtonOut(ButtonNr)
{
	if (ButtonNr == 1)
		window.document.images["DownloadButton1"].src = "./img/DownloadButton.png";
	else
		window.document.images["DownloadButton2"].src = "./img/DownloadButton.png";
}
//-->
