$(document).ready(function(){
		$(".a").hover(
			function() {
				$(this).stop().animate({"opacity": "0"}, "slow");
			},
			function() {
				$(this).stop().animate({"opacity": "1"}, "slow");
			});

		$(function(){
      $(".tweet").tweet({
        username: "yourstrulysf",
        count:1,
        loading_text: "loading tweets..."
      });
		});

});
		
	
