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

Event.observe(window, 'load', function() {
  FormHighlter();
});

function FormHighlter() {
  forms = document.getElementsByTagName("form");
  for (var i=0; i<forms.length; i++) {
    inputs = Form.getElements(forms[i]);

    //inputs[0].style.backgroundColor='#FFD700';

    inputs.each(function(input) {
      input.observe("focus", function(){this.style.backgroundColor='#FF9'});
      input.observe("click", function(){this.style.backgroundColor='#FF9'});
      input.observe("blur", function(){this.style.backgroundColor=''});
    });
  }

}

