﻿$(document).ready(function() {
  $("a[class='ext']").click(function() {
    pageTracker._trackPageview('/outgoing/' + $(this).attr('href'));
  });
  
  $("a.trackable").click(function() {
    pageTracker._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');
}