function initHeight(){
	var _hardcode = 190;
	var _hold = $('div#wrapper');
	var _holdH = _hold.height(); 
	if (window.innerHeight) {
			_height = window.innerHeight;
			_width = window.innerWidth;
		}
	else {
		_height = document.documentElement.clientHeight;
		_width = document.documentElement.clientWidth;
	}
	if(_holdH + _hardcode < _height + 5){
		_hold.css('height', (_height - _hardcode));
	}
	
	$(window).resize(function(){
		if (window.innerHeight) {
				_height = window.innerHeight;
				_width = window.innerWidth;
			}
		else {
			_height = document.documentElement.clientHeight;
			_width = document.documentElement.clientWidth;
		}
		if(_holdH + _hardcode < _height + 5){
			_hold.css('height', (_height - _hardcode));
		}
	});
};
	
$(document).ready(function(){
	initHeight();
});
