function checkFauxHeight(){
		if (document.getElementById('content').offsetHeight+230>document.getElementById('sb2').offsetHeight){
			document.getElementById('sb2').style.height=document.getElementById('content').offsetHeight+230+'px'
			document.getElementById('sb').style.height=document.getElementById('content').offsetHeight+230+'px'
			
		}
	}
	
window.onload=checkFauxHeight
window.onresize=checkFauxHeight
