$(document).ready(function () {
  		$("div.menu_topo > div.sub_menu").hide();
		$("div.ponto").mouseover(function(){
			 if ($(this).next().is(":hidden")){  
	  			 $("div.menu_topo > div.sub_menu").hide();		 
		         $(this).next().show();
			 }  
	     });
		$("div.ponto8").mouseover(function(){
			 if ($(this).next().is(":hidden")){  
	  			 $("div.menu_topo > div.sub_menu").hide();		 
		         $(this).next().show();
			 }  
	     });		 

});