jQuery.fn.place = function() {
	return this.each(function () {
		var t = $(this);

		t.css({
			position:	'fixed', 
			left:		'50%', 
			top:		'40%',
		}).css({
			marginLeft:	'-' + (t.outerWidth() / 2) + 'px', 
			marginTop:	'-' + (t.outerHeight() / 1.6) + 'px'
		});
	});
};

$(document).ready(function() {
	$('#wrapper').place();
});

$('h1').fitText(1.47);

$(window).resize(function() {
	$('#wrapper').place();		
});
