/*
|
| 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('contentArea');
			var subContentElement = document.getElementById('subLeft');
			var contentElementHeight = contentElement.offsetHeight;
			var subContentElementHeight  = subContentElement.offsetHeight;
			
			if (subContentElementHeight >= contentElementHeight) {
				contentElement.style.height = subContentElementHeight+50+"px";
			}
}
window.onload = function() {
	setContentFrame();
}
window.onresize = function() {
	setContentFrame();
}
//-->
