$(document).ready(function(){
    $('#bildspalte a').hover(function(){
        $(this).attr('class','hover');
      },
      function(){
        $(this).attr('class','');
      }
        );
});
