[jQuery] Google setOnLoadCallback & jQuery $(window).load()

[jQuery] Google setOnLoadCallback & jQuery $(window).load()


Hello,
This does not seem to work:
// http://code.google.com/apis/ajaxlibs/documentation/
google.load("jquery", "1");
function OnLoad() {
    $(window).load(function () { alert('foo'); }
}
google.setOnLoadCallback(OnLoad);
What am I doing wrong?
Thank you!
Cheers,
M