		jQuery(function($){
		var id;
			jQuery("#menu div.nodo_menu").hover(
			function(id){
				id=jQuery(this).attr("id").split("_")[1];
				var nodos_sub=jQuery("#sub_"+id).val();
				jQuery(this).append(nodos_sub);
				jQuery(".submenu").fadeIn(500);	
			},
			function (id) {
				jQuery(".submenu").remove();
			})

		})
