$(document).ready(function(){
	resizeleft();
})

// if left is larger adjust content, 
// if content is larger adjust left
function resizeleft(){
	/*lefth=$('#left').height()
	texth=$('#text-wrap').height()
	
	if( texth > lefth )
	  // #left padding-bottom == 86	
	  $('#left').height( texth - 86 )
	else
	  $('#text').height( lefth + 40 )	*/

	var h = Math.max( $('#left').height(), $('#text-wrap').height() );
	$('#left').height( h ); //+5 in ie only...
	$('#text').height( h-5 ); 
}
// always adjust to the size of the content
function resizeleft2(){
	texth=$('#text-wrap').height()
	$('#left').height( texth - 86 )
}