$(function(){
	$('#menu-v li').hover(function(){
		$(this).find('.effect-v').animate({height:'40px'},{queue:false,duration:200});
	}, function(){
		$(this).find('.effect-v').animate({height:'16px'},{queue:false,duration:200});
	});
});
