$(function() {
	$('#latest-news .news-item').each(function(){
			var divHeight = $(this).height();
			var infoHeight = $('.centered', this).height();
			var heightDiff = divHeight - infoHeight;
			var dividedSpacing = heightDiff*.5;
			$('.centered', this).attr('style', 'padding-top:'+ dividedSpacing +'px;');
	});
});
