$(document).ready(function(){
	var TopBarHeight = $('.TopBar').height();
	var FooterHeight = $('.Footer').height()+15;
	$('.TopBar').css('margin-bottom',0-TopBarHeight);
	$('.ContentWrapper').css({'padding-top':TopBarHeight-5,'padding-bottom':FooterHeight});
	// RESIZE FUNCTION
	function FullHeight() {	
		$('.ContentWrapper').css('height', '');
		if ($('#Form').height() < $(window).height()) {
			var val = $(document).height() - $('.ContentWrapper').css('padding-top').replace('px', '') - $('.ContentWrapper').css('padding-bottom').replace('px', '') - $('.ControlPanel').height();
			$('.ContentWrapper').css('height',val);
		}
	}
	// RESIZE ON PAGE LOAD
	$(window).load(function(){ FullHeight(); });
	
	// RESIZE ON PAGE RESIZE
	$(window).resize(function(){ FullHeight(); });
});
