jQuery(document).ready(function(){
        
         // Accordion
        jQuery(".accordion_start").accordion({ collapsible: true, active: 'ui-state-active', header: ".unterpunkt", autoHeight: false });
        jQuery(".unterpunkt").next().accordion({ collapsible: true, active: 'ui-state-active', header: ".toggler", autoHeight: false });		

  			//hover states on the static widgets
  			jQuery('.unterpunkt').hover(function() { $(this).addClass('ui-state-hover'); }, function() { $(this).removeClass('ui-state-hover'); });
        //PNG Fix
        jQuery(document).pngFix();
});
