$(function() { $('.boxHolder .box .arrow').toggle(function(e) { $(this).siblings().filter('.content').animate({ 'width': '0px' }, 500); $(this).parent().filter('.box').animate({ 'width': '18px' }, 500); $(this).siblings().filter('.content').find('.bild').css({ 'display': 'none' }, 300); $(this).css('background', 'url(\'/bilder/design/btn_pil.png\') no-repeat'); }, function(e) { $(this).parent().filter('.box').animate({ 'width': '230px' }, 300); $(this).siblings().filter('.content').animate({ 'width': '213px' }, 300); $(this).css('background', 'url(\'/bilder/design/btn_pil2.png\') no-repeat'); $(this).siblings().filter('.content').find('.bild').css({ 'display': 'block', 'opacity': 0 }).animate({ 'opacity': 1 }, 1000); }).css({ 'cursor': 'pointer' }); });