// JavaScript Document
$(function()
{	
	$("ul li:first-child").addClass("firstChild");
	$("ul li:last-child").addClass("lastChild");

});


