$(function () {


$('.thumbs').each(function() {
$(this).hover(function() {
$(this).stop().fadeTo(900,0);
}, function() {
$(this).stop().fadeTo(900,1);
});

$(this).hover(function() {
$(this).stop().fadeTo(300,0.55);  /*(ausblenden bei maus over,dichte)*/
}, function() {
$(this).stop().fadeTo(2000,1);  /*(wieder einblenden beim verlassen,dichte)*/
});
});
});

