jQuery(function(){
	jQuery('.lifestream li').hover(
		function(){
			jQuery('.lifestream li').stop().animate({width: "18%", fontSize: "11px",}, 300),
			jQuery(this).stop().animate({fontSize: "21px", width: "33%"}, 300)
			}, 
		function(){
			jQuery('.lifestream li').stop().animate({width: "22%", fontSize: "13px"}, 300),
			jQuery(this).stop().animate({fontSize: "13px", width: "22%"}, 300)
			}
	);	   
});
