$(document).ready(function(){
	
	if( $('#cadastro').length > 0 ){
		
		var biggest = $('#cadastro-imagem').height() > $('#cadastro-formulario').height() ?
						$('#cadastro-imagem').height() :
						$('#cadastro-formulario').height() ;
		$('#cadastro-imagem').height(biggest);
		$('#cadastro-formulario').height(biggest);
	}
	
	if( $('#promocoes').length > 0 ){
		$('#promocoes img').each(function(){
			$(this).after('<div id="promocao-rodape"></div>');
		});
	}
});
