$(document).ready(function(){
	//First last in...
	$("ul li:first-child").addClass("first");
	$("ul li:last-child").addClass("last");
	$("tr td:first-child").addClass("first");
	$("tr td:last-child").addClass("last");
	$("tr th:first-child").addClass("first");
	$("tr th:last-child").addClass("last");
	//Zebra table
	$("table tbody tr:odd").addClass("odd");
	$("table tbody tr:even").addClass("even");
	
});
