function setColumnHeights()
{
   var size1 = $('#imageCell div').height();
   var size2 = $('#textCell div').height();
   
   
   if ((size1 < 450) && (size2 < 450))
   {
	   	$('#textCell div.content').height(450);
	   	$('#imageCell div.content').height(450);
   }
   else if (size1 < size2)
   {
	    $('#imageCell div.content').height(size2);
	    $('#textCell div.content').height(size2);
   }
   else
   {
       $('#imageCell div.content').height(size1);
	    $('#textCell div.content').height(size1);
   }
	    
   $('#imageCell div.content').css("border-left","1px solid #dbdbdb");
   $('#imageCell div.content').css("border-bottom","1px solid #dbdbdb");
   $('#imageCell div.content').css("border-right","1px solid #dbdbdb");
   $('#textCell div.content').css("border-left","1px solid #dbdbdb");
   $('#textCell div.content').css("border-bottom","1px solid #dbdbdb");
   $('#textCell div.content').css("border-right","1px solid #dbdbdb");
   
   $('#productTable').css("visibility","visible");

		
}

function delayedSetColumnHeights()
{
	setTimeout(setColumnHeights, 350);
}


window.onload = delayedSetColumnHeights;
