$(document).ready(function(){
  $("#home_bild_b").hover(
  function() {
    $(this).stop().animate({"opacity": "0"}, "1000");
  },
  function() {
    $(this).stop().animate({"opacity": "1"}, "200");
  });
});
