function hideFrst(){
	document.getElementById("bild").style.display = 'none';
	}
	
function showFrst(){
	document.getElementById("bild").style.display = 'block';
	}
