When I use Betterzip to uncompress a directory tree, it chmods the dirs with 700. Here’s the command to solve this:

find . -type d | xargs chmod 755

It finds all subdirectories and chmod’em to 755. Clever, isn’t it?