$(document).ready(function(){
  $(".zebra tr:even").addClass("alt");
  $(".over tr").mouseover(function(){
    $(this).addClass("over");})
    .mouseout(function(){
    $(this).removeClass("over");});

  $('.rollover').mouseover(function(){
    if($(this).children('img').hasClass('in'))
    {
      if($(this).children('img').hasClass('out'))
        $(this).children('img.out').hide();

      $(this).children('img.in').show();
      $(this).animate({
      }, 100);
    }
  });
  $('.rollover').mouseout(function(){
    if($(this).children('img').hasClass('out'))
    {
      if($(this).children('img').hasClass('in'))
        $(this).children('img.in').hide();

      $(this).children('img.out').show();
      $(this).animate({
      }, 100);
    }
  });


});


