$(document).ready(function() {

$("a")
.filter(".gunskirchen")
	.hover(function(){
		$(".gg").fadeIn("normal");
		$(".gk, .gw").fadeOut("normal");
 })
.end()
.filter(".kirchdorf")
	.hover(function(){
		$(".gk").fadeIn("normal");
		$(".gg, .gw").fadeOut("normal");
 })
.end()
.filter(".wels")
	.hover(function(){
		$(".gw").fadeIn("normal");
		$(".gg, .gk").fadeOut("normal");
 })
.end()
.filter(".clean")
	.hover(function(){
		$(".gg, .gk, .gw").fadeOut("normal");
 })
.end();

}); // close document.ready
