I recommend having a small javascript snippet to preload the rollover images. It looks nice though. As for the sub navigation. Like the Create Account - Search under Accounts, you should make those stand out a bit more or make it so people know those are links. I didn't notice them right away, and when I did, I wasn't aware they were links. Otherwise nice job, the system and design is really nice.
Also I'm sure you have passwords stored into a MySql database. If you're not already, I recommend using an irreversible encryption method that way if someone were to get into the database they couldn't steal passwords.
It would be something like this.
$password = $crypt($real_password, $salt);
Then lob $password into the database. Then to check if the password is correct, just encrypt the password from the form and compare it to the database.