$(document).ready(function(){
	
	$(window).resize(function() {
		$('#wrapper').css('top', Math.max((($(window).height() - 140) / 2), 0));
	});

	$(window).resize();
	
});



