// JavaScript Document
 $(document).ready(function(){
	var col1Height;						
	var col2Height;
	col1Height = $("#col1").height();
	col2Height = $("#col2").height();	
	if(col2Height > col1Height ){
		$("#xamine_front").height(col2Height-4);
	}
 });
