Hi Sara
Here's an overview of how to configure your mongos.
http://www.mongodb.org/display/DOCS/A+Sample+Configuration+Session
It looks to me like you didn't add a shard before you enabled sharding
on your Mongos, so your DB can't recognize it yet.
Add this
switched to db admin
> db.runCommand( { addshard : "localhost:10000" } )
{ "shardadded" : "shard0000", "ok" : 1 }
> db.runCommand( { addshard : "localhost:10001" } )
{ "shardadded" : "shard0001", "ok" : 1 }
should work.
In the meantime, it might be helpful to read up on how to configure
your db for sharding. this overview is more detailed than the first,
but it will be helpful going forward.
http://www.mongodb.org/display/DOCS/Configuring+Sharding
thanks!