I have tried without the google JQUERY.JS and twitter feed fails to load.
<div><center>
<div id="whitetxt"><strong>Twitter</strong></div>
<div id="tweet"> </div>
</center></div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js"></script> <script>
$(document).ready(function(){
var tweeturl = "http://twitter.com/status/user_timeline/jlarlington.json?count=5&callback=?";
$.getJSON(tweeturl, function(data){
$.each(data, function(i, item) {
var txt = item.text
.replace(/(https?:\/\/[-a-z0-9._~:\/?#@!$&\'()*+,;=%]+)/ig,'<a href="$1">$1</a>')
.replace(/@+([_A-Za-z0-9-]+)/ig, '<a href="http://twitter.com/$1">@$1</a>')
.replace(/#+([_A-Za-z0-9-]+)/ig, '<a href="http://search.twitter.com/search?q=$1">#$1</a>');
$('<p></p>').addClass(i%2 ? 'even' : 'odd').html(txt).prependTo('#tweet');
});
});
});
</script>