jQuery(function(){
	jQuery("div.news_item_v2").hover(
		function(){
			jQuery('div.inner', this).animate({"height": "200px"}, "slow");
		},
		function(){
			jQuery('div.inner', this).animate({"height": "68px"}, "fast");
		}
	);
});
