jQuery(document).ready
(
  function($)
  {
    var speed=2000;
    $("section.services a.order").click
    (
      function(event)
      {
        event.preventDefault();
        $("html, body").stop(true, true).animate
        (
          {
            scrollTop: Math.max(0, $("section.order").offset().top)+"px"
          },
          speed,
          "easeInOutBack"
        );
      }
    );
    
    $("span.card a.invitation-card").click
    (
      function(event)
      {
        event.preventDefault();
        $(this).parent().slideUp("fast");
        $(this).parent().siblings("span.email").slideDown("fast");
      }
    );
  }
);
