$(document).ready(function() {
$('#product table tr').mouseover(function() {$(this).addClass('over');}).mouseout(function() {$(this).removeClass('over');});
$('#product table tbody tr:even').addClass('alt');
});