Thanks guys. I got it working
changed
client.println("GET www.nfl.com/liveupdate/scorestrip/scorestrip.json HTTP/1.0");
to
client.println("GET http://www.nfl.com/liveupdate/scorestrip/scorestrip.json HTTP/1.0");
and it returned
connecting...
connected
HTTP/1.0 200 OK
Server: Apache
Last-Modified: Sun, 22 Jul 2012 22:33:50 GMT
ETag: "841a4-48-b9250f80"
Content-Type: text/plain
Cache-Control: max-age=15
Expires: Sun, 22 Jul 2012 22:34:15 GMT
Date: Sun, 22 Jul 2012 22:34:00 GMT
Content-Length: 72
Connection: close
X-Akamai-Edgescape: country_code=US
{"ss":[["Sun","8:00","Pregame",,"ARI",,"NO",,,,"55760",,"PRE0","2012"]]}
disconnecting.
Now I just need to filter the header text, but that will be easy.