$(document).ready(function(){

});


$(window).load(function () {
	//var cont, preFootWrap, footerWrap;
	var ch = $('.cont').outerHeight() + $('.preFootWrap').outerHeight() + $('.footerWrap').outerHeight();
	var fw = $('.footerWrap').outerHeight();
	var wh = $('body').height();
		
	if (ch < wh) {
		$('.footerWrap').css('height',(fw+(wh-ch))+'px');
	}
	
});
