[jQuery] Ajax call within ajax called page: IE error?

[jQuery] Ajax call within ajax called page: IE error?


I'm running into a problem with a simple Ajax call within an ajax
called page in IE. I did a forum search and it didn't really clue me
into what's going on.
In the page:
http://www.cyma.com/NEWCYMA/support/updatecenter/ (Page 1)
Clicking on "Version 9" loads a page with two god ugly tabs:
"Downloads / Updates" and "Documents"
Clicking on either tab loads the appropriate page.
In FireFox it loads the appropriate page, in IE7 nothing happens.
The page that is being loaded is:
http://www.cyma.com/NEWCYMA/support/updatecenter/v9.asp (Page 2)
This page does indeed work in IE7 and in FireFox.
The calls are similar. Is this a known issue?
-------------------------
(Page 1 Ajax call)
$(this).find('a.version').click(function(){
        $('#CYMA_Version').load(this.id + '.asp');
return false;
});
-------------------------
(Page 2 Ajax call)
$(this).find('a.tab').click(function(){
        $('#UpdateCenter_Request').load('v9/' + this.id + '.asp');
    return false;
});
-------------------------