$(function() {
	
	$("#news li").each(function(){
		$(this).hover(function(){
			$(this).find("a").stop().animate({
				height: '208px'
			}, 100);
		},function(){
			$(this).find("a").stop().animate({
				height: '154px'
			}, 100);
		});
	});
});
