$(document).ready(function() {
  
  $('.top a').before('<a id="print" href=\"javascript:window.print();\">Seite drucken</a> | ');
  
  $('html[lang=de] input#f_suche[value=]').attr('value','Suche');
  $('html[lang=de] input#f_suche').blur( function() { if(this.value=='') { this.value='Suche'; } } ).focus( function () { if(this.value=='Suche') { this.value=''; } } );
  
  $('#content a[href$=.pdf]').before('<img class="a-ico" src="/fileadmin/html/images/ico_pdf.png" alt="" />');
  $('#content a[href$=.doc]').before('<img class="a-ico" src="/fileadmin/html/images/ico_doc.png" alt="" />');
  $('#content a[href$=.zip]').before('<img class="a-ico" src="/fileadmin/html/images/ico_zip.png" alt="" />');
  
  // Pressearchiv
  //$('dt.sl a.open').next().slideDown("slow");
  $('dl.sl dt a').click(function(){
    if ($(this).attr('class') != 'open') {
      $('dl.sl dd:visible').slideUp('slow');
      $('dl.sl a.open').removeClass('open');
      $(this).addClass('open');
      $(this).parent().next().slideDown("slow");
    } else {
      $('dl.sl dt a.open').removeClass('open');
      $('dl.sl dd:visible').slideUp('slow');
      $('#inhalt').focus();
    }
    return false;
  });
  
  $('.gallery a').fancybox({'titlePosition':'inside','titleFormat':formatTitle});
  
});
/* Fancybox Title */
function formatTitle(title, currentArray, currentIndex, currentOpts) { return (title && title.length ? '<b>' + title + '</b><br />' : '' ) + 'Bild ' + (currentIndex + 1) + ' von ' + currentArray.length; }