
$(document).ready(function(){
	/* add class="first" and class="last" to first/last child elements in <ol>/<ul> elements */
	$("li:first-child").addClass("first");
	$("li:last-child").addClass("last");
	
	
});


