Recursively chmod directories or files only
Great post here:
http://movabletripe.com/archive/recursively-chmod-directories-only/
# recursively chmod directories only
find . -type d -exec chmod 775 {} \;
# recursively chmod files only
find . -type f -exec chmod 664 {} \;