$.extend($.expr[':'],{
  external: function(a,i,m) {
    if(!a.href) {
      return false;
    }
    return a.hostname && a.hostname !== window.location.hostname;   }
});

$(function(){
  $('a:external').addClass('external');
});

$(function(){
  $('a:external').addClass('external').click(function(){
    window.open(this.href);
    return false;
  });
});

$(function(){
   $('div.subnav ul').tabs();
});

$(document).ready(function() {
    $('a.zoom').fancyZoom();
});
