$(function()
{
	// identifying first and last li
	$("ul li:first-child").addClass("first-child");
	$("ul li:last-child").addClass("last-child");
});
