$(document).ready(function(){
						   
	$(window).resize(function(){

		$('.page_margins').css({
			position:'relative',
			top: ($(document).height() - $('.page_margins').outerHeight())/3
		});
		
	});
	// To initially run the function:
	$(window).resize();

});
