jQuery(document).ready(function(){
    jQuery('fieldset.rating .powermail_radio_inner').addClass('js');

    $groups = jQuery('fieldset.rating .tx_powermail_pi1_fieldwrap_html_radio').each(function() {

        jQuery(this).find('input[type=radio]').each(function() {
            var $radio = jQuery(this),
                $label = $radio.siblings('label');

            $label.click(function() {            	$label = jQuery(this);
            	$radio = $label.siblings('input[type=radio]');
            	$group = $label.parents('.tx_powermail_pi1_fieldwrap_html_radio');

            	$group.find('input[type=radio]').siblings('label').removeClass('selected');

            	$label.addClass('selected');                $radio.attr('checked', true);
            });

            if ($radio.attr('checked') == true) {                $label.click();
            }
        })
    })
})