/* RGWP Google Analytics Page/Event Tracking */
if (typeof jQuery === "function") {
jQuery(function ($) {
//global tracking
$('body').on('click', '#gn-community li a[target=_blank]', function () {
var label = $(this).text();
tmEventtrack("Social", label, "Header-Menu");
});
$('body').on('click', '#gn-community .gn-promos a[target=_blank]', function () {
var label = $(this).find('h4').text();
tmEventtrack("Social", label, "Header-Banner");
});
$('body').on('click', '#globalfooter .gf-share a', function () {
var label = $(this).text();
tmEventtrack("Social", label, "Footer-Icon");
});
$('body').on('click', '#directorynav a[target=_blank]', function () {
var label = $(this).text();
tmEventtrack("Social", label, "Footer-Menu");
});
$('body').on('click', '#globalfooter .gf-links a[target=_blank]', function () {
var link = $(this).attr('href');
tmEventtrack("Link", "External", link);
});
$('body').on('click', '#globalfooter .gf-promos a[target=_blank]', function () {
var link = $(this).attr('href');
tmEventtrack("Link", "External", link);
});
$('body').on('click', '#gn-products .cb-container a[target=_blank]', function () {
var link = $(this).attr('href');
tmEventtrack("Link", "External", link);
});
//section-specific tracking
var path = $(location).attr('pathname');
var section;
if (path !== "/") {
path = path.split("/");
section = path[1];
}
if (section == "company") {
$('#content-container').on('click', '#news-release a', function () {
var link = $(this).attr('href');
tmPagetrack(link);
});
$('#content-container').on('click', '#result a', function () {
var link = $(this).attr('href');
tmPagetrack(link);
});
}
if (section == "community") {
$('#content-container').on('click', '.contentnav a[target=_blank]', function () {
var label = $(this).text();
tmEventtrack("Social", label, "Community-Menu");
});
$('#content-container').on('click', '.category-main a[target=_blank]', function () {
var label = $(this).find('h2').text();
tmEventtrack("Social", label, "Community-Banner");
});
$('#content-container').on('click', '.cn-social a', function () {
var label = $(this).text();
tmEventtrack("Social", label, "Community-Icon");
});
}
//language switching
$('#globalfooter .language-selector').on('change', function () {
//window.location = "https://" + $(this).val() + window.location.pathname;
//window.location = "https://" + $(this).val();
window.location = $(this).val();
});
});
}