jQuery(document).ready(function() {
function defaults() {
	jQuery("tr:nth-child(even)").addClass("zebra");
	jQuery("*:last-child").addClass("last");
	jQuery("*:first-child").addClass("first");
}
	
defaults()
});
