
/*function Bildwechsel ( HTML_Tag, Popup, Ereignis, Bild ) {*/
function Bildwechsel ( HTML_Tag, Ereignis ) {
	var Bilder = HTML_Tag.getElementsByTagName("img");
	/*
	if ( document.getElementById( Popup ) ) {
		var Popup = document.getElementById( Popup );
	} else {
		var Popup = false;
	}
	*/
	HTML_Tag = HTML_Tag.parentNode;
	
	if ( Ereignis == "out" ) {
		Bilder[0].style.zIndex = "2";
		Bilder[1].style.zIndex = "1";
/*		if ( Popup ) {
			Popup.style.display = "none";
		}*/
		HTML_Tag.style.zIndex = "1";
	} else {
		Bilder[0].style.zIndex = "1";
		Bilder[1].style.zIndex = "2";
/*		if ( Popup ) {
			Popup.style.display = "block";
		}*/
		HTML_Tag.style.zIndex = "200";
	}
	
}
