$('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());
			max_height = Math.max(max_height, temp);
		})
		
		$(".equal_height").each(function(){
		$(this).css('height', max_height,'height', 'auto !important', 'height' , max_height );
		})
	}

	
	EqualHeight()
	
	
	
		});	
		
				
	
