//ERDING
$(document).ready(function(){
$("img.ed").hover(
function() {
$("img.bubbles_ed").animate({"opacity": "1"}, "slow");
},
function() {
$("img.bubbles_ed").animate({"opacity": "0"}, "slow");
}); 
});

//Landshut
$(document).ready(function(){
$("img.la").hover(
function() {
$("img.bubbles_la").animate({"opacity": "1"}, "slow");
},
function() {
$("img.bubbles_la").animate({"opacity": "0"}, "slow");
}); 
});

//VILSBIBURG
$(document).ready(function(){
$("img.vib").hover(
function() {
$("img.bubbles_vib").animate({"opacity": "1"}, "slow");
},
function() {
$("img.bubbles_vib").animate({"opacity": "0"}, "slow");
}); 
});

//DACHAU
$(document).ready(function(){
$("img.da").hover(
function() {
$("img.bubbles_da").animate({"opacity": "1"}, "slow");
},
function() {
$("img.bubbles_da").animate({"opacity": "0"}, "slow");
}); 
});













