$(document).ready(function(){
		
	// Ajusta altura das divs que estiverem com a class = equal_height
	function EqualHeight()
	{
		
		var max_height = 0;
		$(".equal_height").each(function() {
			temp = parseInt($(this).height());
			//alert(temp);
			max_height = Math.max(max_height, temp);
		})
		
		
		$(".equal_height").each(function(){
			//alert(max_height);
			$(this).css('height', max_height);
		})
	}

	EqualHeight();
	
	
});	