$(document).ready(function(){
    $(window).load(function() {
        $('img[@src$=.png]:not(.no-png-fix)').pngfix();  
      });

    $('img[@src$=.gif]').rollover();
  
    //$('div.tablehead.country').next('div.inhalt').hide(); document decision
	
    $("div.tablehead.country").click(function () {
        $(this).next('div.inhalt').slideToggle("slow");
        $(this).toggleClass("tableheadauf");
      });
  });

