﻿$(function () {
    if ($.browser.msie) {
        $("input:checkbox").click(function () {
            this.blur();
            this.focus();
        });
    }
});
