Do you mean THE:

section, or something else?
If that's what you're talking about, I'm unfamiliar with that widget (widgets.twimg.com/j/2/widget.js). But it looks like it's initialized by this on page code:
Code:
<script>
new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 5,
interval: 6000,
width: 300,
height: 300,
theme: {
shell: {
background: '#ffffff',
color: '#999'
},
tweets: {
background: '#ffffff',
color: '#666',
links: '#000'
}
},
features: {
scrollbar: false,
loop: false,
live: false,
hashtags: true,
timestamp: true,
avatars: false,
behavior: 'all'
}
}).render().setUser('intothegloss').start();
</script>
And it looks like the highlighted line sets the number of posts to retrieve. And one would assume these are the 5 most recent posts.
You could increase that number to - say 10, and then randomly shuffle the resulting DOM, and then show only the first random five, or something like that. This could be easy to do, if the timing is right, via jQuery which I see the page already uses.
First backup what you've got!
Then, something like (replace the above with):
Code:
<script>
new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 10,
interval: 6000,
width: 300,
height: 300,
theme: {
shell: {
background: '#ffffff',
color: '#999'
},
tweets: {
background: '#ffffff',
color: '#666',
links: '#000'
}
},
features: {
scrollbar: false,
loop: false,
live: false,
hashtags: true,
timestamp: true,
avatars: false,
behavior: 'all'
}
}).render().setUser('intothegloss').start();
jQuery(function($){
$(window).load(function(){
var twits = [], tp = $('.twtr-tweet').parent();
$('.twtr-tweet').each(function(){
twits.push(this);
});
twits.sort(function() {return 0.5 - Math.random()});
for (var i = twits.length - 1; i > -1; --i){
tp.prepend(twits[i]);
}
$('.twtr-tweet:gt(4)').css({display: 'none'});
});
});
</script>
Bookmarks