// $Id$

// Global Killswitch on the <html> element
if (Drupal.jsEnabled) {
  $(document).ready(function() {
    $("input.form-submit").mouseover(function () {
      $(this).css("background-color", "#A74812");
    });
    $("input.form-submit").mouseout(function () {
      $(this).css("background-color", "transparent");
    }); 
  });
}