function chgBild() {
	$("#bereiche img").hover(
		function() {
			$(this).attr({
				src: 'img/bereich_on.png'
			});
		},
		function() {
			$(this).attr({
				src: 'img/bereich_off.png'
			});
		}
	);
}

