// © 1995-2009 Healthwise, Incorporated. Healthwise, Healthwise for every health decision,
// and the Healthwise logo are trademarks of Healthwise, Incorporated.
(function($) {

    $(document).ready(function() {

        // PDF link behavior
        $(".HwLinkExternal").click(function() {

            var href = $(this).attr("href");
            $(document).trigger('org.healthwise.event.pdf', {
                documentId: href.match(/form_(.*)\.pdf/)[1],
                documentLocalization: org.healthwise.config.locale
            });

            window.open(href, '', ',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1');
            return false;
        });

        //508
        $("#HwBeforeSxChecker").bind("focus", function() {
            $("#flashcontent").focus();
        });
    });

})(jQuery);
