$('#Feed').html('<center><img src="./_assets/i/home/ajax-loader.gif" width="31" height="31" class="AjaxLoader" /></center>');
$.ajax({
	url: '/twitter_populate',
	success: function(data) {
		$('#Feed').html(data);
	}
});

$(document).ready(function() { 
	$(".project").hover(	
		function () {
		    $(this).stop().fadeTo("slow", 0.07);
		},
		function (){
			$(this).stop().fadeTo("slow", 1);
	});
});
