$(function(){
	
	var browserHeight = $(document).height();
	
	$('#divOne').css({
		'margin-top':( browserHeight - ($('#divOne').height()) )/2 + 'px',
	});
	
	$('#divTwo').css({
		'margin-left':( ($('#divTwo').parent().width()) - ($('#divTwo').width())  )/2 + 'px',
	});
	
	$('p.divOneText').css({
		'margin-left':( ($('p.divOneText').parent().width()) - ($('p.divOneText').width()) )/2 + 'px',
	});
	
	$('#divOne img').css({
		'margin-left':( ($('#divOne img').parent().width()) - ($('#divOne img').width()) )/2 +'px',
	});	
	
	$('p.other').css({
		'margin-left':( ($('p.other').parent().width()) - ($('p.other').width()) )/2 + 'px',
	});
	
	$('a.backToTutorial').css({
		'margin-left':( ($('a.backToTutorial').parent().width()) - ($('a.backToTutorial').width()) )/2 + 'px',
	});
	
});
