$(document).ready(function(){
    
  $(".abo-add-info-t.dohide").hide();
  $(".abo-add-infos td").attr("colspan", "6");
  
	$(".stdinfoh").prepend('<th>Infos</th>');
  $(".stdinfo").prepend('<td><a href="javascript:void(0);" class="abo-add-infos-a" title="Zus&auml;tzliche Informationen zum Abo"><img style="width:14; height:14px;" src="/gr/info_16.png"></a></td>');
  
	$('.abo-add-infos-a').click(function() {    
      $(this).parent().parent().next(".abo-add-infos").children().children(".abo-add-info-t").slideToggle(200);
	});
  
  /*
  $('.abo-add-infos').mouseover(function() {    
      $(this).children().css("background-color", "transparent");
	});
  */
}); 