$(document).ready(function(){
	$('div.closeButton').click(function() {
		$('div#person-bubble').hide();
		moveText();
	});
	$(window).resize(function() {
		moveText();
	});
	moveText();
});

function moveText()
{
	if($('#person-bubble:visible').length > 0){
		var height = $('#person-bubble').height();
		$('#questions-list').css('padding-top', height - 90 + 'px');
	}else{
		$('#questions-list').css('padding-top', '160px');
	}
}

