jQuery(function() {
  // dont show a link frame
  jQuery("a").focus(function() {jQuery(this).blur();});
  
  jQuery("a.pdf").each(function(i, obj) {
    if (!jQuery(obj).attr('target')) jQuery(obj).attr('target', '_blank');
  });  
  
  jQuery('#searchinput').focusin(function() {jQuery(this).val('');})
    .focusout(function(){
      if (jQuery(this).val() == '') jQuery(this).val('IHR SUCHBEGRIFF');
    });
});
