I'm posting this mostly as a "note to self." I don't often have to change the owner of an object in Sql Server, but when I do I always have to scratch my head saying, "how did I do that?" The answer is simple. There is a system stored proc that you can use to do it, sp_changeobjectowner. It takes two paramaters, the name of the object you wish to change as a string, and the name of the new owner of the object.
exec
sp_changeobjectowner 'MyObjectName','myNewOwner'