$(document).ready(function () {
$('.toggle-button').toggle(
function() { // handlerEven
$(this).attr('src', 'images/btn_close_hersteller.jpg');
$(this).parent().siblings('.toggleable').slideToggle('slow');
},
function() { // handlerOdd
$(this).attr('src', 'images/btn_open_hersteller.jpg');
$(this).parent().siblings('.toggleable').slideToggle('slow');
}
);
});
