// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

// Automatically focus the first element in a form if the page has a form on it
Event.observe(window, 'load', function() {
  if((form = document.forms[0])) {
    $($(form)).focusFirstElement();
  }
});
