// JavaScript Document

$(document).ready(function(){
	var prHeight 		= $("#productCategory").height();
	var contentHeight = $("#productContent").height();
	
	if(prHeight < contentHeight)
		$("#productCategory").height(contentHeight + "px");
});
