// JavaScript Document
$(document).ready(function() {
						 
//======================================================================
   //alert("Hello");
	
	if ($("#BodyLeft").height()>$("#BodyRight").height()){
		
		$("#BodyRight").height($("#BodyLeft").height());
	} else{
		$("#BodyLeft").height($("#BodyRight").height());
		
	}
	
	
	$(".ContentPaneBody").height($("#BodyRight").height());

	
	

		
//======================================================================
});