$(document).ready(function(){
	$(window).resize(function(){
		resizeLayout();
	});
	resizeLayout();
});

function resizeLayout() {
	var _cblock = $('div.main-hold-2');
	var _diff = _cblock.outerHeight(true) - _cblock.height() + $('#footer').height();

	if ($.browser.msie && $.browser.version == '6.0') {
		_cblock.css({height:"auto"});
	} else {
		_cblock.css({minHeight:0});
	}

	var _height;
	if (window.innerHeight) {
		_height = window.innerHeight;
	} else {
		_height = document.documentElement.clientHeight;
	}

	if(_diff+_cblock.height() < _height) {
		if ($.browser.msie && $.browser.version == '6.0') {
			_cblock.css({height:_height - _diff});
		} else {
			_cblock.css({minHeight:_height - _diff});
		}
	}
}