try {

    $(function () {

        var urlSearchString = "today.com/id/52811221";

        var url = location.href.toString().toLowerCase();

        if (url.indexOf(urlSearchString) >= 0) {

            var submit = $("#article #slice-1.t-UGCSlice form p.submit").get(0);
            var checkBox = '<p class="note"><input type="checkbox" name="progressoOptIn" id="progressoOptIn" value="">Yes, I would like to receive marketing materials from Progresso&reg;</p>';

            var beBold = "BeBold";
            var beBoldId = "52811223";

            var progressoOptIn = "BeBoldProgressoOptIn";
            var progressoOptInId = "52814076";

            $(submit).after(checkBox);

            $("#progressoOptIn").click(function () {

                var $this = $(this);
                var $projName = $("#article #slice-1.t-UGCSlice form input[name='projName']");
                var $subDocId = $("#article #slice-1.t-UGCSlice form input[name='subDocId']");

                if ($this.is(':checked')) {

                    $projName.attr("value", progressoOptIn);
                    $subDocId.attr("value", progressoOptInId);

                } else {

                    $projName.attr("value", beBold);
                    $subDocId.attr("value", beBoldId);
                }
            });

        }
    });

}
catch (e) { }

$('.header-logo a').attr('href', 'http://www.today.com');