onload_functions[onload_functions.length] = "resize();";

function resize()
{
      for (var i=0; i<document.getElementsByTagName('img').length; i++) 
      {
         var pic = document.getElementsByTagName('img')[i];
		 
	     if (pic.className == "postimage") 
		 {
			if (pic.width > 660)
         	{
            pic.setAttribute('width','660');          
            pic.title = 'Clique aqui para ver a imagem em seu tamanho real.';
         	}
       }
   }
}
