$(document).ready(function(){
						   
	$(window).resize(function(){

		$('.content_wrapper').css({
			position:'relative',
			left: ($(window).width() - $('.content_wrapper').outerWidth())/2,
			top: ($(window).height() - $('.content_wrapper').outerHeight())/2
		});
		
	});
	// To initially run the function:
	$(window).resize();
});	
