/*
|
| TITLE:		DOM positioning hack, thank you A List Apart - http://www.alistapart.com/articles/footers/
| AUTHOR:		Eric Shiarla, emshiarla@gmail.com
| EMPLOYED: 	Pendergraphics Design Group, http://www.pendergraphics.com
| 
| CREATED:		October 14, 2005 
| MODIFIED: 	----------------
|
*/

<!--
function setContentFrame() {
			var contentElement = document.getElementById('content');
			var subContentElement = document.getElementById('subcontent');
			var contentElementHeight = contentElement.offsetHeight;
			var subContentElementHeight  = subContentElement.offsetHeight;
			
			if (subContentElementHeight >= contentElementHeight) {
				var newHeight = subContentElementHeight+75;
				contentElement.style.height = newHeight+"px";
			}
}

window.onload = function() {
	setContentFrame();
}
window.onresize = function() {
	setContentFrame();
}
//-->
