// JavaScript Document

$j(document).ready(function() {
	jQuery("ul li:nth-child(even)").addClass('even');
	jQuery("ul li:nth-child(odd)").addClass('odd');
	jQuery("ul li:first-child").addClass('first');
	jQuery("ul li:last-child").addClass('last');
});
