/**
 * @author Daniel Dahme
 * @date 19.03.2010
 */

$(document).ready(function() {
	$("tr:nth-child(odd)").addClass("odd").hover(function(){
		$(this).addClass("odd_over");
	},function(){
		$(this).removeClass("odd_over");
	});

	$("tr:nth-child(even)").addClass("even").hover(function(){
		$(this).addClass("even_over");
	},function(){
		$(this).removeClass("even_over");
	});
});

