$(document).ready(function(e)
{
		
		$(".postbody img").load(function(e){
			
			 if ( $(this).width() > 600)
             {
				 $(this).width('600');
				 
			   $(this).attr('onclick', "window.open('" + $(this).attr('src') + "','recise','fullscale','width=400,height=400,scrollbars=1,resizable=1');");
			   $(this).css('cursor','pointer');
                $(this).attr('title','Clique para abrir a imagem em tamanho normal');
				
				
             }
		});		
    
});


