 $(function(){
	var x=$('.inner_container').height();
	var y= $('body').height();
	var diff=y-x;
	if (x<y) {
		$('.content').css('padding-bottom',diff-7);
	}
	else{$('.content').removeAttr('style');}
	$(window).resize(function() {
		var x=$('.inner_container').height();
		var y= $('body').height();
		var diff=y-x;

		if (x<y) {
			$('.content').css('padding-bottom',diff-22);
		}
		else{$('.content').removeAttr('style');}
	});
	
	
	$('.center p:first').addClass('first');
	$('.header_content').wrapInner('<div class="header_content_div"></div>')
	
		
 });
	