$(document).ready(function() {		
	var tempModHeight = 0;
	var tempH1Height = 0;
	for(var heightloop=0; heightloop < ($("#altContent").find('div.prodContent').length);heightloop++){				
		if (tempModHeight < $("#altContent").find('div.prodContent').eq(heightloop).height()){
			tempModHeight = $("#altContent").find('div.prodContent').eq(heightloop).height();
		}	
		if (tempH1Height < $("#altContent").find('div.prodContent>h2').eq(heightloop).height()){
			tempH1Height = $("#altContent").find('div.prodContent>h2').eq(heightloop).height();
		}			
	}			
	$("#altContent").find('div.prodContent').css("height",tempModHeight);
	//$("#altContent").find('div.prodContent>h2').css("height",tempH1Height);
}); 