if(document.images)
{
	homeon = new Image(135,23); 
	homeon.src = "imgs/menu/home_on.gif";

	homeoff = new Image(135,23); 
	homeoff.src = "imgs/menu/home.gif";

	visitason = new Image(135,23); 
	visitason.src = "imgs/menu/visitas_on.gif";

	visitasoff = new Image(135,23); 
	visitasoff.src = "imgs/menu/visitas.gif";

	destaqueson = new Image(135,23); 
	destaqueson.src = "imgs/menu/destaques_on.gif";

	destaquesoff = new Image(135,23); 
	destaquesoff.src = "imgs/menu/destaques.gif";

	promocoeson = new Image(135,23); 
	promocoeson.src = "imgs/menu/promocoes_on.gif";

	promocoesoff = new Image(135,23); 
	promocoesoff.src = "imgs/menu/promocoes.gif";

	novidadeson = new Image(135,23); 
	novidadeson.src = "imgs/menu/novidades_on.gif";

	novidadesoff = new Image(135,23); 
	novidadesoff.src = "imgs/menu/novidades.gif";

	contactoson = new Image(135,23); 
	contactoson.src = "imgs/menu/contactos_on.gif";

	contactosoff = new Image(135,23); 
	contactosoff.src = "imgs/menu/contactos.gif";
}

function menuon(imgName)
{
	if(document.images)
	{
		imgOn=eval(imgName + "on.src");
		document[imgName].src= imgOn;
	}
}

function menuoff(imgName)
{
	if(document.images)
	{
		imgOff=eval(imgName + "off.src");
		document[imgName].src= imgOff;
	}
}

