jQuery(document).ready(function() {
	$("#topBoxes .sup_photo").each(function(index) {
		$(this).find('img').each(function(index){
			$(this).addClass('boxImage'+index);
		});
		/*
		$(this).find('p').each(function(index){
			$(this).addClass('boxP'+index);
			$(this).parent().addClass('boxPContainer');;
		});
		*/
	});
});

