Load JQuery from Google
The preferred way to import the JQuery library from Google
The full article is here.
The skinny is this (add to your html <head>):
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
// Your stuff!
});
</script>
