//funcion contra el spam
function antispam(cuenta,clase)
{
	var dominio = "joyeriadaza.com"
	document.write("<a class='"+ clase +"' href=\"mailto:" + cuenta + "@" + dominio + "\">" + cuenta + "@" + dominio + "</a>");
}

function opcionmenu(){
	if ((self.location.href == 'http://servidor.joyeriadaza/') || (self.location.href == 'http://www.joyeriadaza.com/'))
	{
		var marcado='index';
	}
	else
	{	try {
			var documento = self.location.href.match( /\/([^/]+)$/ )[1];
			marcado = documento.replace(".aspx","");
		} catch(e){}
	}
	if (document.getElementById(marcado)!=null)
	{
		document.getElementById(marcado).className='menu_on';
		document.getElementById(marcado).onmouseout=function(){}
	}
}