$(document).ready(function()
{
  $('.stripeMe tr').mouseover(function() { $(this).addClass('over');}).mouseout(function() { if ($(this).hasClass('over')) { $(this).removeClass('over'); }});
  $('.stripeMe tr:odd').addClass('striped');
  $('input').bind('focus', function(){$(this).addClass('focused');});
  $('input').bind('blur', function() {if ($(this).hasClass('focused')) { $(this).removeClass('focused'); }});
});

