// ROUNDED CORNERS
// http://www.malsup.com/jquery/corner/

// ADDS even/odd classes to tables with a class of zebratable
// From: http://www.alistapart.com/articles/zebratables



$(document).ready(function() {
	
	$(function(){
	//$(".blocknav ul.menu li").corner("8px");
	});
	
});

window.onload = function(){
    $("tr:nth-child(odd)").addClass("odd");
};

