function columnResize(){

}

$(window).load(function(){

// If the right column is higher than the content area
	if($('#RightCol').height() > $('#ContBgHolder').height()){
		//alert($('#TopGraphic').height());
		$('#ContBgHolder').height($('#RightCol').height() - 6 - 7 - 7);
	}

/*
	// ----- left Menu Settings -----

	// If the right column is higher than the content area
	if($('#RightCol').height() > $('#MainContent').height()){
		//alert($('#TopGraphic').height());
		if($('#RightCol').height() > $('#MainContent').height() && $('#TopGraphic').height() < 20){
			$('#ContentContainer').css('height','509px');
			//$('#ContentContainer').css('min-height','509px');
			//$('#ContentContainer').css('_height','509px');	
		}
		
		if($('#RightCol').height() > $('#MainContent').height() && $('#TopGraphic').height() > 20){
			$('#ContentContainer').css('height','340px');
			//$('#ContentContainer').css('min-height','340px');
			//$('#ContentContainer').css('_height','340px');	
		}
		
		if($('#MainContent').height() > $('#LeftCol').height()){
			$('#LeftColBtmFill').css('height',
				$('#MainContent').height() - 4 - (
					$('#PageName').height() +
					$('#LeftMenu').height() +
					$('#LeftColBtm').height()
					)
			);
			//alert('done');
		}
	}
	// If the content area is higher than the right column
	else{
		if($('#MainContent').height() > $('#LeftCol').height()){
			if($.browser.msie){
				$('#LeftColBtmFill').css('height',
				$('#MainContent').height() + 1 - (
					$('#PageName').height() +
					$('#LeftMenu').height() +
					$('#LeftColBtm').height()
					)
				);
				//alert('ie');
			}
			else{
				$('#LeftColBtmFill').css('height',
					$('#MainContent').height() - 4 - (
						$('#PageName').height() +
						$('#LeftMenu').height() +
						$('#LeftColBtm').height()
						)
				);
			//alert('done');
			}
		}
	}
	
	
	*/
	
	// ------------------------------
});
