// JavaScript Document

window.onload = function() {
	heightFix();
}

function heightFix(){
    if(document.getElementById('innerWrapper').clientHeight+129 < document.getElementById('wrapper').clientHeight){
		var newHeight = window.innerHeight - 129;
		newHeight = newHeight+"px";
		document.getElementById('innerWrapper').style.height = newHeight;
	}	
}
