$(document).ready(function(){
	jQuery('table.tableCommon').each(function(){
	   $("tbody tr", this).mouseover(function(){$(this).addClass("over");}).mouseout(function(){$(this).removeClass("over");});
	   $("tbody tr:even", this).addClass("alt");
	});
});
