Programming Tips - How can I load jQuery faster?

Date: 2009aug4 Language: javaScript Q. How can I load jQuery faster? A. If you have this:
<script src="js/jquery.min.js"></script> <script src="js/ui.core.js"></script>
Change it to:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script> <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js"></script>
Adjust the version numbers as necessary.