It was kinda hard to figure out what you were doing because the indentation in your code is rather boofed up....
But, I wouldn't approach the problem in the way that you are doing.
Firstly, you shouldn't use ajaxSuccess to do something this specific. The "global" ajax callback handlers are for setting up general things to do for all Ajax calls on a page. When using $.get() and wanting to handle its response, I'd pass the callback to $.get() and keep things tidy and focused rather than spreading things out all over the place. When passing the callback, the response data is passed as the first param to the callback.
Secondly, I wouldn't be using $.get() here at all. It looks like you are wanting to load the response into a target element. For that, the load() wrapper method is the preferred and easiest route.
[Edit: we all bonked heads!} [ May 30, 2008: Message edited by: Bear Bibeault ]