// JavaScript Document
$(document).ready(function () {
	
	$('#workIndex li').each(function(index) {
									 
		var addLast = index % 3;
		
		if( addLast == 2 ) {
			$(this).addClass('last');	
		}
	}); //end of each function

}); //End of document function