function find_element(id)
{
	if (document.getElementById)
    {
		return document.getElementById(id);
	}
	else if (document.all)
    {
		return document.all[id];
	}
	else if (document.layers)
    {
		return document.layers[id];
	}
}

function alpha_ff() {
	if (parseFloat(find_element("bild").style.opacity) < 1.0)
    {
		find_element("bild").style.opacity = parseFloat(parseFloat(find_element("bild").style.opacity)) + 0.1;
		setTimeout("alpha_ff()",40);
	}
}

function alpha_ie()
{
	unser = document.getElementById("bild");
	if (parseInt(unser.filters.alpha.opacity) < 100)
    {
		unser.filters.alpha.opacity = parseInt(unser.filters.alpha.opacity) + 10;
		setTimeout("alpha_ie()",30);
	}
}
