$(document).ready(function(){
$(".table1 tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
$(".table1 tr:even").addClass("alt");
});

// two colls height
jQuery(document).ready(function(){
var h1 = $('#column1').height();
var h2 = $('#column2').height();
if(h1>h2){
$('#column2').height(h1);
}else{
$('#column1').height(h2);
}
});
