A ver, muchas gracias por toda la info, me está sirviendo muchisimo, solo que quisiera comentarte una cosa; tengo puesto el código así (en el header porque es ahí donde creo que debe ir, ¿estoy en lo cierto?):
    
Código Javascript
:
Ver original- <script> 
-     jQuery(document).ready(function($) { 
-     $('.divnoticia>div').addClass('newheight'); 
-     $('.divnoticia').each(function(){ 
-         var highestBox = 0; 
-         $('div.newheight', this).each(function(){ 
-             if($(this).height() > highestBox) 
-             highestBox = $(this).height(); 
-         }); 
-         $('div.newheight',this).height(highestBox); 
-     }); 
- }); 
-     </script> 
¿Cómo hago para enviarle la info de la medida al .blue? Porque se me queda el en auto el .divnoticia, pero desaparece sin la medida el .blue. 
PD: ¿Está bien escrito el código así?