
	
function switch_to_over(bild,produktname,text)
	{
	document.getElementById("vorschau_bild").src=bild;
	document.getElementById("produktname").innerHTML=text;
	}
function switch_to_original()
	{
	document.getElementById("vorschau_bild").src=document.getElementById("vorschau_bild").lowsrc;
	document.getElementById("produktname").innerHTML=''
	}

