  $(document).ready(function() {
    $("a.ancLinks").click(function () {
      elementClick = $(this).attr("href");
      destination = $(elementClick).offset().top;
      $("html:not(:animated)" +( ! $.browser.opera ? ",body:not(:animated)" : "")).animate({ scrollTop: destination}, 2500 );
      return false;
    });
  });
