public override string PrintSelectedItem (Menu menu, string item)
		{
			string html = String.Empty;
			html += "<td class=\"" + this.styleClass + "_td_current_" + this.actualDepth + "\">";
			html += "<a href=" + menu.ToUrl(config.GetValue(Constants.SITE_ROOT));
			html += " title=\"" + menu.Name +"\">"+ item;
			html += "</a>";
			html += "</td>";
			return html;
		}
		public override string PrintSelectedItem (Menu menu, string item)
		{
			string html = String.Empty;

			html += "<li class=\"" + this.styleClass + "_li_current_" + this.actualDepth + "\">";
			html += "<table class=\"" + this.styleClass + "\">";
			html += "<td class=\"" + this.styleClass + "vinyeta" + this.actualDepth + "\">";
			if (this.actualDepth != 1)
				html += ">";						// ViƱeta
			html += "</td>";
			html += "<td class=\"" + this.styleClass + "texto" + this.actualDepth + "\">";
			html += "<a href=" + menu.ToUrl(config.GetValue(Constants.SITE_ROOT));
			html += " title=\"" + menu.Name +"\">" + item;
			html += "</a>";
			html += "</td>";
			html += "</table>";
			html += "</li>";
         html += "<img src=\"" + config.GetValue(Constants.SITE_ROOT) + "/Public/style/img/separamenu.gif\" class=\"" + this.styleClass + ">";
			return html;
		}