jQuery(document).ready(function($) {
$(".tweet").tweet({
  join_text: "",
  username: "galacticfunk",
  avatar_size: 0,
  count: 10,
		inf_tip:1,
  auto_join_text_default: "we said,", 
  auto_join_text_ed: "we",
  auto_join_text_ing: "we were",
  auto_join_text_reply: "we replied",
  auto_join_text_url: "we were checking out",
  loading_text: "loading tweets..."
});       
$('.outer_tweet').hover(function(){
 clearTimeout(varRun);				 
 },function(){
autoTweet();						  
});
autoTweet(); 
});
varTop = 0;
function autoTweet(){ 
  $('.tweet ul').animate({marginTop: "-"+varTop+"px"});	
  varTop = varTop+50;
  if(varTop > 360)
		varTop = 0;
 varRun = setTimeout("autoTweet()", 5000);
}

