jQuery(function($) {
  $(document).ready(function() {

    $("#printthis > a").click(function() {
      window.print();
    });

    $("#translation_bar > a").click(function() {
      window.open( $(this).attr("title"), "_self" );
      return false;
    });

  });
});

