Gtalk Troubleshoot

I have all the correct stuff installed in order for Gtalk to work on Asterisk. I can’t seem to get it working though. When I make a call to a gtalk person I get the following error – Executing [11@default:1] Dial(“SIP/76365-082ebdb8”, “Gtalk/asterisk/duane.larson@gmail.com”) in new stack
[Sep 18 15:37:43] WARNING[23947]: chan_gtalk.c:1638 gtalk_request: Could not find recipient.
[Sep 18 15:37:43] WARNING[23947]: app_dial.c:1183 dial_exec_full: Unable to create channel of type ‘Gtalk’ (cause 0 - Unknown)
== Everyone is busy/congested at this time (1:0/0/1)
== Auto fallthrough, channel ‘SIP/76365-082ebdb8’ status is ‘CHANUNAVAIL’

If I do a “gtalk show channels” I get the following
Channel Jabber ID Resource Read Write
0 active gtalk channels

If I do a “jabber show connected” I get the following
Jabber Users and their status:
User: jabber.blah@gmail.com - Disconnected

And in my console with debug I keep seeing
ERROR[23585]: res_jabber.c:1889 aji_client_initialize: JABBER ERROR: No Connection

I looked at the configuration docs and I am sure it is set up right. Here are my configs.

jabber.conf
[general]
debug=yes
autoprune=no
autoregister=no

[asterisk]
type=client
serverhost=talk.google.com
username=jabber.blah@gmail.com/Talk
secret=******
port=5222
usetls=yes
usesasl=yes
buddy=person.called@gmail.com
statusmessage="I am available"
timeout=100

gtalk.conf
[general]
context=default
allowguest=yes

[guest]
disallow=all
allow=ulaw
context=guest

[google]
username=jabber.blah@gmail.com
disallow=all
allow=ulaw
context=default;order apparently matters, needs to be placed after username= ?
connection=asterisk

extensions.conf
exten => s,1,NoOP(“Calling Gtalk”)
exten => 11,1,Dial(Gtalk/asterisk/person.called@gmail.com)
exten => 44,1,JABBERSend(asterisk,person.called@gmail.com,This is a test Message)

Any help is appreciated.