$(document).ready(function() {
  $(".delitem").click(function() {
    var a = $(this).attr("rel");
    $(this);
    $.post("/cms/auswahl.php", {action:"del", str:a}, function() {
      $("#" + a).fadeOut("")
    })
  })
});
