// file        : extlinks.js
// version     : 1.01
// date        : 2011-12-16
// author      : uwe ruscheweyh
// description : open external links and pdf files in separate tab/window

// using jQuery.noConflict(); and jQuery instead of the shortcut $ to prevend namespace conflicts with other libraries
jQuery.noConflict();
jQuery(document).ready( function() {
  jQuery("a[href^='http://'], a[href^='https://'], a[href$='pdf']").attr('target', '_blank');
});
