var $ = jQuery;
var oneTrueLayoutActive = 1;
(function($) {
	$.fn.equalHeights = function(minheight) {
                if (!oneTrueLayoutActive){ return(false);}

                $("#visual-portal-wrapper").css({'overflow':'visible', 'zoom':1});
                $(this).children("#portal-column-one, #portal-column-two, #portal-column-content").css({'height':'auto'});
                
		var maxheight = minheight || 0;
                var barraExtra =  $(this).children(".menu-veiculo").html() ?  $(this).children(".menu-veiculo").height() : 0;

		$(this).children("#portal-column-one, #portal-column-two, #portal-column-content").each(function(){
                        adjustedHeight = ($(this).is("#portal-column-content, #portal-column-two") &&  barraExtra ? barraExtra : 0);
			maxheight = ($(this).height()+adjustedHeight > maxheight ? $(this).height()+adjustedHeight : maxheight);
			});
		$(this).children("#portal-column-one, #portal-column-two, #portal-column-content").css({'min-height':maxheight, '_height':maxheight, 'padding-bottom':'20px','margin-bottom':'0'});
                $("#portal-opennav").css('margin-top',0);
                $("#rodapeSite").css('margin-top',0);
                oneTrueLayoutActive = 0;
	}
	})(jQuery);
$("document").ready(function(){
         if (!$("#content iframe[id='ifr'][height]").html()) {
            $("#portal-columns").equalHeights(400); }
      })


