In version one (v1) of Google's Custom Search Engine code, there was a method called .setSearchCompleteCallback which would allow you to call some Javascript when the search results had returned. The documentation for that code can be found here.
The search engine object has been moved from google.search.CustomSearchControl in v1 to google.search.cse.element in v2.
The current version (v2) doesn't seem to have the .setSearchCompleteCallback method, and I can't see a way to register a callback for when the search results are finished. I have experimented to varying degrees of success with Jquery's ajaxStart and ajaxEnd methods, but I wondered if there was an "official" way to do this built into the Google CSE code.
window.__gcseobject and it seems only to be called upon the CSE initialization. – Andy F Oct 8 '12 at 14:03