jQuery(document).ready
(
  function($)
  {
    $("nav.primary a").not(".item-kontakt").bind
    (
      "click",
      function(e)
      {
        e.preventDefault();
      }
    );
    
    $("nav.primary a").not(".item-kontakt").css("cursor", "progress");
  }
);
