$(function() { $('div.collapsePanelHeader').toggle( function() { $(this).next('div.content').show('slow'); $(this).children('div:last').removeClass('expand').addClass('close'); }, function() { $(this).next('div.content').hide('slow'); $(this).children('div:last').removeClass('close').addClass('expand'); }); });
.collapsePanelHeader { background-image: url(Images/bg-menu-main.png); } .arrow.expand { background-image: url(Images/expand_blue.jpg); } .arrow.close { background-image: url(Images/collapse_blue.jpg); }