Drupal.behaviors.myModuleBehavior = function (context) {
  // IE6 & less-specific functions
  // Add hover class to form submit button elements on hover
  if ($.browser.msie && ($.browser.version < 7)) {
    $('.form-submit').hover(function() {
      $(this).addClass('hover');
      }, function() {
        $(this).removeClass('hover');
    });
    $('#search-box input.search_submit').hover(function() {
      $(this).addClass('hover');
      }, function() {
        $(this).removeClass('hover');
    });
    $('#checkout-form-bottom #edit-continue').hover(function() {
      $(this).addClass('hover');
      }, function() {
        $(this).removeClass('hover');
    });
    $('#checkout-form-bottom #edit-checkout').hover(function() {
      $(this).addClass('hover');
      }, function() {
        $(this).removeClass('hover');
    });
    $('.category-grid-products td').hover(function() {
      $(this).addClass('hover');
      }, function() {
        $(this).removeClass('hover');
    });
    $('.category td').hover(function() {
      $(this).addClass('hover');
      }, function() {
        $(this).removeClass('hover');
    });
  };
};