Usernames are not very good at salts because they are not unique worldwide, and neither are they timewise.
The salt is meant to prevent an attacker from optimizing his research by attacking several password hashes "in parallel" and sharing the computational cost. "Parallelism" is a rather wide term; it does not necessarily mean "simultaneously". For instance, a precomputed table (e.g. rainbow table) of password-to-hash values is a kind of parallelism (I am just reasoning in space-time without distinguishing the time dimension from the three space dimensions here).
In practice, if your software uses the username as salt, like you suggest, then it becomes worthwhile to precompute a table for attacking the password of admin because chances are that many (most ?) servers using your software will have a user named admin. That's a breach of "worldwide uniqueness": user names are unique on a given server but not over all existing servers which use this software or a similar software, which allows for attack optimizations.
As for "timewise" uniqueness, I allude to a user changing his password. If the user name is the salt, then the old and the new password will use the same salt, and thus could be attacked in parallel for less than twice the cost of attacking one password. Old passwords are valuable for attackers, because:
When users change their password, they tend to use "guessable series" (i.e. if an old password of a user is "Password201207" then chances are that the new password, if chosen around Christmas, would be "Password201212").
Some users recycle passwords: when they change their password, often because of a change password policy enforced by the sysadmin, they walk through a short list of passwords and cycle; an old password could be the password they will use when they next change their password.
Users being users, they reuse passwords between sites (thus the old password on a server could be the current password for the same user on another site).
For these reasons, user names are not good salts.
Mandatory note: salting is only one part of the issue; you also need the password hashing to be slow. A single SHA-1 invocation is way too fast; an attacker with a couple GPU will compute one billion of those per second. The salts prevent the attacker from reusing the effort of cracking one password over another, but you also need the effort of cracking a single password to be non-negligible. Good password hashing functions are a tricky thing. Use bcrypt and refrain from designing your own schemes.