jQuery(document).ready(function($){

	var highestCol = Math.max($('#sidebar').height(),$('#content-wrap').height());
	$('#sidebar').height(highestCol);
	$('#content-wrap').height(highestCol);
	
	$("tr:odd").addClass("odd");
	$("tr:even").addClass("even");
	
	$("#description .pages tr:odd").addClass("odd");
	$("#description .pages tr:even").addClass("even");
	

});


