	jQuery(document).ready(function() {
		jQuery('ul#grid-wrapper > li').each(function(index) {
		jQuery(this).addClass(function() {
		  return 'post' + jQuery(this).index();
		});		
	  });  
	});	
