/**
 * This file is for click tracking on specific pages
 *
 */
$(document).ready (function(){

    var w = window.location.pathname;
    var dip, ltl, health = false;

    // Disability Protection Page -----------------------
    if(w.indexOf('/products/disability-protection/disability-income-insurance.html')>-1){ dip = true; }

    // Level Term Life Page -----------------------------
    if(w.indexOf('/products/leveltermlife.html')>-1){ ltl = true; }

    // Major Medial Page --------------------------------
    if(w.indexOf('/products/health/majormedical.html')>-1){  health = true; }


    // Only connect to clicks if we're in one of the pages *****************************
    if(dip || ltl || health){

        // Clicking on the Print button
        $('#utilities .print.tool a').click(function(){
            if(dip){ _gaq.push(['_trackEvent', 'Share', 'Print', 'DIP']); }
            if(ltl){ _gaq.push(['_trackEvent', 'Share', 'Print', 'LTL']); }
            if(health){ _gaq.push(['_trackEvent', 'Share', 'Print', 'Health']); }
            return false;
        });

        // Clicking on the Email button
        $('#utilities .email.tool a').click(function(){
            if(dip){ _gaq.push(['_trackEvent', 'Share', 'Email', 'DIP']) }
            if(ltl){ _gaq.push(['_trackEvent', 'Share', 'Email', 'LTL']); }
            if(health){ _gaq.push(['_trackEvent', 'Share', 'Email', 'Health']); }
            return false;
        });
    } // ******************************************************************************
});
