﻿/***** Open all external links in a new window *****/
$(document).ready(function() {
    $("a[href^='http']").each(
        function() {
            if (this.href.indexOf(location.hostname) == -1 && this.href.indexOf("ziploc.com") == -1) {
                $(this).attr('target', '_blank');
            }
        }
    );
        $("a").click(function () {
            clear_tracking();
            return true;
        }
);
    
}); 

