Objects created by users belonging to db_owner role gets dbo schema (this was the behavior in SQL Server 2000, if I remember correctly). I think your windows user does not belong to db_owner role.
Anyway, use following syntax to change the default schema:
ALTER USER <user> WITH DEFAULT_SCHEMA = <schema>
Hope this helps you.