Ext.onReady(function()
{
	Ext.get('cajaPrincipalNoticias').select('div.noticiasGrandes img').each(function(){
		ajustarAlto(this.dom, 130);
	});
	Ext.get('cajaPrincipalNoticias').select('div.noticiasChicas img').each(function(){
		ajustarAlto(this.dom, 100);
	});
});

function ajustarAlto(img, alto)
{
	if (img.height > alto)
	{
		img.height = alto;
	}
}
