/*
 This code was developed at DirectPerformance (www.directperformance.com.br) and is distributed under the Creative Commons - Attribution-NonCommercial 3.0. More details: http://creativecommons.org/licenses/by-nc/3.0/legalcode
 You can freely share, transmit and adapt, but you must attribute the work to the original author information and can not use for commercial purposes.
 Original Author: DirectPerformance - Website: www.directperformance.com.br - E-mail: contato@directperformance.com.br
 */
var dpc_conf = {
    link_track_event: {
        js: "a:hrefregex('^javascript:')"
    },
    
    link_live_track_event: {
        saiba_mais: "a[title='Saiba Mais']",
        pergunta: "#accordion h3",
        duvida: "#menu-faq li a"
    },
    
    link_track_pageview: {
        download: "a:hrefregex('.+\\.(docx?|od[fspt]|pdf|ppsx?|pptx?|ps|txt|xlsx?|xml)$')",
        menu: "a:hrefregex('#*')"
    }
};

var dpc_pathname = document.location.pathname.toLowerCase();

function dpc_encode(s){if(encodeURIComponent instanceof Function){return encodeURIComponent(s)}return escape(s)}function add_special_pageviews(b){if(typeof b!=='object'){return false}var i;for(i in b){if(b.hasOwnProperty(i)){jQuery(b[i]).mousedown(function(j){return function(){var a=jQuery(this).text()||jQuery(this).attr('id')||jQuery(this).attr('href')||jQuery(this).attr('alt')||jQuery(this).attr('title')||jQuery(this).attr('src')||jQuery(this).attr('class')||this.tagName;a=dpc_encode(jQuery.trim(a));a=a.substring(0,100);dpc_pageview(dpc_pathname+'/'+j+'/'+a)}}(i))}}}function add_special_events(b){if(typeof b!=='object'){return false}var i;for(i in b){if(b.hasOwnProperty(i)){jQuery(b[i]).mousedown(function(j){return function(){var a=jQuery(this).text()||jQuery(this).attr('id')||jQuery(this).attr('href')||jQuery(this).attr('alt')||jQuery(this).attr('title')||jQuery(this).attr('src')||jQuery(this).attr('class')||this.tagName;a=dpc_encode(jQuery.trim(a));a=a.substring(0,100);dpcTracker._trackEvent(j,dpc_pathname,a)}}(i))}}}function add_live_special_events(b){if(typeof b!=='object'){return false}var i;for(i in b){if(b.hasOwnProperty(i)){jQuery(b[i]).live("mousedown",function(j){return function(){var a=jQuery(this).attr('id')||jQuery(this).text()||jQuery(this).attr('href')||jQuery(this).attr('alt')||jQuery(this).attr('title')||jQuery(this).attr('src')||jQuery(this).attr('class')||this.tagName;a=dpc_encode(jQuery.trim(a));a=a.substring(0,100);dpcTracker._trackEvent(j,dpc_pathname,a)}}(i))}}}

jQuery(document).ready(function(){
    add_special_pageviews(dpc_conf.link_track_pageview);
    add_special_events(dpc_conf.link_track_event);
    add_live_special_events(dpc_conf.link_live_track_event);
});
