document.observe('dom:loaded', function() {

  $$('form').each(function(e) {
    e.onsubmit = function() {
      $$('form input').each(function(e) { if (e.rel && e.value == e.rel) e.value = ''; });
    };
  });

  $$('.js_reset').each(function(e) {
    if (!e.rel) {
      e.rel = e.value;
      e.x_color = e.style.color;
      e.style.color = '#999';
    }
    e.onfocus = function() {
      if (e.value == e.rel)
        e.value = '';
      e.style.color = e.x_color;
    }
    e.onblur = function() {
      if (e.value == '') {
        e.value = e.rel;
        e.style.color = '#999';
      }
    }
  });

  $$('.js_focus').each(function(e) {
    if (window.location.href.indexOf('#') == -1) e.focus();
  });

});

