function P7_MultiClass2() { //v1.0 by PVII
  var args=P7_MultiClass2.arguments;
  if(document.getElementById){
    for(var i=0;i<args.length;i+=2){
      if(document.getElementById(args[i])!=null){
        if(document.p7setdown){
          for(var k=0;k<p7dco.length-1;k+=2){
            if(args[i]==p7dco[k]){
              args[i+1]=p7dco[k+1];
              break;
            }
          }
        }
        document.getElementById(args[i]).className=args[i+1];
      }
    }
  }
}
$(function(){
  $('table#listView td[width=99%], table#listView th[width=99%]').attr('width','');
  $('table#listView > tbody > tr > td:last-child').each(function(){
    if ($(this).find("p.textSprechblase").length == 0) {
      $(this).attr('width',58);
    }
  });
});
