jQuery(document).ready(function($) {
	$(".tweet").tweet({
		join_text: "",
		username: "rockthecampus",
		avatar_size: 0,
		count: 3,
		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+60;
	if(varTop > 450)
	varTop = 0;
	varRun = setTimeout("autoTweet()", 9000);
}

function inputBlurFocus()
{	
var num = document.getElementById('search').value;
if(num == 'search for research,symptoms etc.') 
document.getElementById('search').value = '' ;
if(num == '') 
document.getElementById('search').value = 'search for research,symptoms etc.' ;	
}


