  $(document).ready(function()
 {
  	
    $(".tweet").tweet({
            username: "smarterfootball",
            join_text: "auto",
            avatar_size: 25,
            count: 3,
            auto_join_text_default: "we said,", 
            auto_join_text_ed: "we",
            auto_join_text_ing: "we were",
            auto_join_text_reply: "we replied to",
            auto_join_text_url: "we were checking out",
            loading_text: "loading tweets..."
    });

	$(".position").live("click", function(event){
		var theposition=$("select.positiondrills").val();		
		if(theposition=="RB")
		{
			$.scrollTo( '#RB', 2000);
		}
		if(theposition=="CBS")
		{
			$.scrollTo( '#CBS', 2000);
		}
		if(theposition=="OL")
		{
			$.scrollTo( '#OL', 2000);
		}
		if(theposition=="DL")
		{
			$.scrollTo( '#DL', 2000);
		}
		if(theposition=="LB")
		{
			$.scrollTo( '#LB', 2000);
		}
		if(theposition=="QB")
		{
			$.scrollTo( '#QB', 2000);
		}
		if(theposition=="WRTE")
		{
			$.scrollTo( '#WR', 2000);
		}

 		return false;
	});    
});
