

$(document).ready(function(){
    $('a').each(function(){
        if (this.href.indexOf(location.host) == -1) {
            if(this.href.indexOf("https:") != -1)
            {
                this.href = 'http://www.internationaldelight.com/outgoing-links-secure/' + this.href.replace('https://','');
                $(this).click(function(){
                    _gaq.push(['_trackPageview', '/outgoing-links/' + this.href.replace('https://','')]);
                    return true;
                });
            } else {
                if(this.href.indexOf("http:") != -1)
                {
                    this.href = 'http://www.internationaldelight.com/outgoing-links/' + this.href.replace('http://','');
                }
                $(this).click(function(){
                    _gaq.push(['_trackPageview', '/outgoing-links/' + this.href.replace('http://','')]);
                    return true;
                });
            }
        } else {
            //inbound
        }
    });
});
        

