$(document).ready(function altoCapas(){
  if ($("div.destacado1").height() > $("div.destacado2").height()) {
       $("div.destacado2").height($("div.destacado1").height());
  }else{
       $("div.destacado1").height($("div.destacado2").height());
  }
});
		
window.onresize=function(){altoCapas();}