$(document).ready(function(){
				$("#header ul li.noActive a").hover(function() {
                $(this).stop().animate({ backgroundColor: "#17711d", color: "#ffffff"}, 1000);
                },function() {
                $(this).stop().animate({ backgroundColor: "#ffffff", color: "#1F1A17" }, 500);
                });
                
      $('a[href^="http://"]').attr("target", "_blank");
      $('a[href$=".pdf"]').attr("target", "_blank");
      $('a.katalog').attr("target", "_blank");
                

});
		 
