<script type="text/javascript">
  $(document).ready(function(){
    $(".tree > div a").css("width","100%");
    $(".tree > div span").css("width","100%");
    $(".tree div .tree").css("display","block").css("padding","0").css("width","100%");
    $("#ac").toggle(function(){
      $(".tree span").css("background-image","url('acik.png')");
      $(this).html("Hepsini Kapat");
      $(".tree div").show();
      $(".tree div .tree").css("display","block");
    },function(){
      $(".tree span").css("background-image","url('kapali.png')");
      $(this).html("Hepsini Göster");
      $(".tree div").hide();
      $(".tree div .tree").css("display","block");
    });
    $(".tree span").click(function(){
      var index = $(".tree > span").index(this);
      if($(".tree > div:eq("+index+")").is(":hidden"))
      {
        ac(index);
      }
      else
      {
        kapat(index);
      }
    });
  });
  function kapat(index)
  {
    $(".tree > span:eq("+index+")").css("background-image","url('kapali.png')");
    $(".tree > div:eq("+index+")").hide();
  }
  function ac(index)
  {
    $(".tree > span:eq("+index+")").css("background-image","url('acik.png')");
    $(".tree > div:eq("+index+")").show();
  }
</script>