// see http://norman.walsh.name/2009/03/24/jQueryIE#comment0012
$(function () {
    if ($.browser.msie) {
        $('input:radio').click(function () {
            this.blur();
            this.focus();
        });
    }
});