$(function() {
	//Vertical center align...
	var margin = Math.floor( ( $('#quoteballon').height() - $('#quoteballon p').height() ) / 2 );
	
	if(margin < 0)
		margin = 0;
		
	$('#quoteballon p').css('margin-top', margin);
});
