$(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'); }});
});


// change image by mouse over
function reload(image_obj, state)
{
  if (!image_obj || !trim(state))
    return;
  imageId = image_obj.name;
  arr     = eval('menuImages' + state);
  if (trim(imageId) && arr && document.images)
    image_obj.src = arr[imageId].src;
}

