$(function() {
	$(".block_nav li").hover(function(){
		$('.nav_drop',this) .toggle(200); 
	}, function() {
		$('.nav_drop',this) .toggle(50); 
	});
});
