$("#topo_menu > a").each(function () {
			if ($(this).attr("href") == "")
      			$(this).replaceWith('<span id="over">' + $(this).text() + '</span>');
    	});
  
		$("#topo_menu > #over").mouseover(function() { 
					var offset = $(this).offset();
					$("#submenu").css("left", offset.left - 10);
					$("#submenu").css("top", offset.top - 10);
					$("#submenu").show("fast");
		});
		$("#submenu").mouseover(function() { $("#submenu").show()});
		$("#submenu").mouseout(function() { $("#submenu").hide()});