$(document).ready(function() {

  //Add the class "new-window-link" into any <a> -element, 
  //to make it open into a new window.
  $('a.new-window-link').click( function() {
    window.open( $(this).attr('href'));
    return false;
  });
  
});
