$(document).ready(function(){
	// vertical centering content
	// height of the parent container must be fixed
	$('.mini-sponsor p').each(function(){
		var thish = $(this).height();
		var parenth = 92;
		var topmargin = (parenth - thish) / 2;
		$(this).css('margin-top', topmargin);
	});
	$('.sponsor p').each(function(){
		var thish = $(this).height();
		var parenth = 200;
		var topmargin = (parenth - thish) / 2;
		$(this).css('margin-top', topmargin);
	});
		
});