// Copyright (c) 2007 Tobie Langel (http://tobielangel.com)
// Use as you please - just don't make it the new black!
// Full tutorial available here: http://tobielangel.com/2007/3/11/a-fistful-of-dollars
// Based on an idea by Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)

Event.observe(window, 'load', function() {
  $$('a[href^=#]:not([href=#])').each(function(element) {
    element.observe('click', function(event) {
      new Effect.ScrollTo(this.hash.substr(1));
      Event.stop(event);
    }.bindAsEventListener(element))
  })
})
