$(document).ready(function() {
  if (typeof _gaq != 'undefined') {
    $('a[href^="http://"], a[href^="https://"], a[href^="ftp://"]', $('#content')).live('click', function() {
      _gaq.push(['_trackEvent', 'Views', 'External Links', $(this).attr('href')]);
    });
    $('a[href^="/?download="], a[href^="/probin/?download="]', $('#content')).live('click', function() {
      _gaq.push(['_trackEvent', 'Views', 'Downloads', $(this).attr('href')]);
    });
    $('a[href^="/img/"], a[href^="/probin/img/"]', $('#content')).live('click', function() {
      _gaq.push(['_trackEvent', 'Views', 'Large pictures', $(this).attr('href')]);
    });
  }
});

