function rollOn(img_name)
{
	if (document.images)
	{
		image_on = eval(img_name + "_on.src")
		document [img_name].src = image_on
	}
}

function rollOff(img_name)
{
	if (document.images)
	{
		image_off = eval(img_name + "_off.src")
		document [img_name].src = image_off
	}
}

if (document.images)
{
	sobre_on = new Image()
	sobre_on.src = "images/nav_sobre_on.gif"
	sobre_off = new Image()
	sobre_off.src = "images/nav_sobre.gif"

	visita_on = new Image()
	visita_on.src = "images/nav_visita_on.gif"
	visita_off = new Image()
	visita_off.src = "images/nav_visita.gif"

	reservaciones_on = new Image()
	reservaciones_on.src = "images/nav_reservaciones_on.gif"
	reservaciones_off = new Image()
	reservaciones_off.src = "images/nav_reservaciones.gif"

	contacto_on = new Image()
	contacto_on.src = "images/nav_contacto_on.gif"
	contacto_off = new Image()
	contacto_off.src = "images/nav_contacto.gif"
}
