$(document).ready(function()
{
  // Alle Links mit der Klasse new-win in neuem Fenster oeffnen
  $('a.new-win').click(function() {window.open($(this).attr('href'), '', '');return false;});
});
