
$(document).ready(function() {
  //wenn div vorhanden ist  
  if ($("div.scrollbar").length > 0) {
    $("div.scrollbar").jScrollPane();
  }

  $("#link_quickfinder").click(function () {
    $("#quickfinder").slideToggle("slow");
    $("#quickfinder_lang").slideToggle("slow");
    $('html, body').stop().animate({scrollTop: $("#copyright").offset().top}, 2000);
    return false; //Prevent the browser jump to the link anchor
  });
  
  $("#link_quickfinder_lang").click(function () { 
    $("#quickfinder_lang").slideToggle("slow");
    $("#quickfinder").slideToggle("slow");
    return false; //Prevent the browser jump to the link anchor
  });
  
  //Wenn im Header nur 1 Bild angezeigt wird
  var slider_img = $("#slider img").length;
  if (slider_img == '1') $("#slider img").css("display","block");
  
  //Rechtsklick auf Bilder verhindern
  $("img").bind("contextmenu",function(e){
    return false;
  });
});


