﻿$(document).ready(function() {
  $("a[class='ext']").click(function() {
    _gaq.push(['_trackPageview', '/outgoing/' + $(this).attr('href')]);
  });
  
  $("a.trackable").click(function() {
    _gaq.push(['_trackPageview', $(this).attr('href')]);
  });
  
  $("a[href$=.pdf]").click(function(e) {
    openPDFWin($(this).attr('href'));
    e.preventDefault();
  });
  
  $("a[rel=colorbox]").colorbox();
  $("a[href^=http://").attr("target", "_blank");
});

function openPDFWin(url) {
  window.open(url, '', 'resizable');
}