$(document).ready(function () {

    $("#hnav li.nav1:last").addClass("last");

    $("#hnav li.nav1").mouseenter(function (e) {
        $(this).find(".ulNav2").show();
        $("#hnav a.nav1on").removeClass("nav1on").addClass("nav1 off");

    });

    $("#hnav li.nav1").mouseleave(function (e) {
        $(this).find(".ulNav2").hide();
        $("#hnav a.off").removeClass("nav1 off").addClass("nav1on");
    });

    $('a.interstitial').click(function () {
        $("#interstitialMessage").html("<h2>You are now leaving the CareZ website.</h2>The site you are accessing is maintained by a third party over whom CSL Behring has no control. CSL Behring does not review, approve, or necessarily endorse viewpoints, inferences, or conclusions stated in or implied by the content of this site. CSL Behring is not responsible for third-party content or the consequences of your use thereof.");
        $("#interstitialYes").attr("href", $(this).attr("href")).attr("target", "_blank");
        $("#interstitial").dialog({ modal: true, width: 560, height: 300 });
        return false;
    });
    $('a.intrastitial').click(function () {
        $("#interstitialMessage").html("<h2>You are now leaving the CareZ website.</h2>You are accessing a CSL Behring site containing information about products marketed by the company.");
        $("#interstitialYes").attr("href", $(this).attr("href")).attr("target", "_blank");
        $("#interstitial").dialog({ modal: true, width: 560, height: 300 });
        return false;
    });

    $(".references").colorTip({ color: 'carez' });

    if (!document.getElementsByTagName) return;
    var anchors = document.getElementsByTagName("a");
    for (var i = 0; i < anchors.length; i++) {
        var anchor = anchors[i];
        if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external") {
            anchor.target = "_blank";
        }
    }

});


  
