jQuery(document).ready( function()
{
	try{
	jQuery('div.noticia').each(function()
	{
		jQuery(this).find('div.imagen').each(function()
		{
			try
			{
				jQuery(this).width( jQuery(this).find("img:first").width() );
			} catch(e){}
		});
	});
	}catch(e){}
});