$(document).ready(function() {
	$('.fade').append('<span class="hover"></span>').each(function () {
	  var $span = $('> span.hover', this).css('opacity', 0);
	  $(this).hover(function () {
	    $span.stop().fadeTo(200, 1);
	  }, function () {
	    $span.stop().fadeTo(200, 0);
	  });
	});
});

//initialize twitter stuff

$(document).ready(function(){
	$(".tweet").tweet({
		username: "chrisfay",
		join_text: "",
		avatar_size: 32,
		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..."
	});
	
	$('#top').click(function() {  
		$(document).scrollTo(0,500);  
	});
});


