There are two ways to use the Ajax library APIs.
First, you can just use Google to host your jQuery file:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
Secondly, you can use it to perform asynchronous jQuery downloads, which you are talking about. If you do this, the template will look like this:
<script type="text/javascript" src="http://www.google.com/jsapi?key=INSERT-YOUR-KEY"></script>
<script type="text/javascript">
google.load("jquery", "1.4.2");
google.load("swfobject", "2.2");
google.load('maps', '2', {'callback': googleMapSetup });
google.setOnLoadCallback(function() {
$(function() {
});
});
</script>
, google.setOnLoadCallback(), , jQuery , jQuery , .
, jQuery , , Javascript, .