jquery関数があります。div class ='open'をクリックすると、別のセッションが開き、ボタンによって画像が変更されます。cssのIDを切り替えます
ただし、ボタンをもう一度クリックすると、ボタンの画像を元に戻す必要があります。
<script type="text/javascript">
$(document).ready(function(){
$(".content").hide();
$(".open1").click(function(){
$(this).next().slideToggle(400);
$('#btn_01').attr('id','btn_01_on');
});
});
</script>
<style>
#btn_01{width:510px; height:109px; background:url('images/btn_01_on.png') no-repeat;}
#btn_01:hover{width:510px; height:109px; background:url('images/btn_01_over.png') no-repeat;}
#btn_01_on{width:510px; height:109px; background:url('images/btn_01_over.png') no-repeat;}
</style)