function adjust_p_widths() {

$('#content * p').each( function() {

	if ( $(this).text().length > 0 )
	{
    	$(this).css({'width':600}); // new width	
	}

});		

}
