$(document).ready(function()
	{
		$("li").hover(
			function(){
				$(this).find('#vis_not')
				.slideToggle('slow');
		});
		
		
	});
