/**
 * Utility to enable external links in new window.  
 */ 

var ExternalLinks = {

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

$(document).ready(ExternalLinks.init);