﻿if (typeof _gaq != 'undefined') {
    $(document).ready(function () {
        $(".navTop > a").click(function () {
            _gaq.push(['_trackEvent', 'Top Menu', $(this).text()]);
        });
        $(".navMain > div > a").click(function () {
            _gaq.push(['_trackEvent', 'Main Menu', $(this).text()]);
        });
        $(".rightCol > a").click(function () {
            _gaq.push(['_trackEvent', 'Rightside Menu', $(this).attr('title')]);
        });
        $("#dataShare > a").click(function () {
            _gaq.push(['_trackEvent', 'Data Share', $(this).attr('title')]);
        });
        $("#otherApplicaiton > a").click(function () {
            _gaq.push(['_trackEvent', 'Other Application', $(this).attr('title')]);
        });
    });
}

