$(document).ready(function(){
$("img.berlinde_end").hover(
function() {
$(this).stop().animate({"opacity": "1"},  "medium");
},
function() {
$(this).stop().animate({"opacity": "0"},  "slow");
});
});

