twitter cycle
jQuery('document').ready(function(){
jQuery('#twitter_update_list').cycle({
fx: 'scrollHorz',
timeout: 5000,
prev: '#prev',
next: '#next',
easing: 'easeInOutBack',
cleartypeNoBg: true
});
jQuery(".twitter a").filter(function() {
return this.hostname && this.hostname !== location.hostname;
}).attr('target', '_blank');
})