/* //:::::::::::   SETTINGS & CUSTOMIZE COLOR SCHEME   :::::::::::\\
                           by Micah Goulart

	This script can be used as long as this
	disclaimer is left untouched.
	For bug reports or custom scripts, email me at:
	micahgoulart@mailbr.com.br

   //:::::::::::   copyright 1999   :::::::::::\\	*/




// locate search variables
var loc = location.search.substring(1, location.search.length)

// check for existence of variables
var set = (loc.length > 2)

// set scheme colors accordingly
if (loc.indexOf("Standard") != -1 || !set)
{	colors = ["#A9A9A9", "#000000", "#A9A9A9", "#FFFFFF", "#A0A0A0"]
	scheme = "Standard" }

// setScheme with color and set true location
function setScheme(color)
{	scheme = color
	if (set)
		true_loc = location.href.substring(0, location.href.indexOf("?"))
	else
		true_loc = location.href
	load(true_loc)	}


// write out day's css style sheet
document.write('<LINK HREF="../Standard.css" REL="STYLESHEET" TYPE="text/css">\n')



// build navAid
offsetX = 5
offsetY = 100
tocOffsetY = 0
tocOffsetX = 0

var toc = new Menu(0, 0, 185, 20)
toc.cssID = "toc"
toc.style.useAltText = 0
toc.style.borderColor = colors[0]
toc.style.borderWidth = 2
toc.style.itemSpacing = 0
toc.style.bgColor = toc.style.bgColorOut = colors[1]
toc.style.bgColorOver = colors[2]
toc.style.bgColorDown = colors[3]
toc.visibility = "hidden"

toc.add("index.html", "SECTION MENU:".fontcolor(colors[4]))
toc.add("../CerroNegro/index.html", "NEXT is Cerro Negro")
toc.add("http://ni.irias.biz/aapp/vm", "JUMP to Masaya")
toc.add("../Mombacho/index.html", "JUMP to Mombacho")
toc.add("../Concepcion/index.html", "BACK to Concepción-Maderas")
toc.add("../index.html", "BACK to Volcanoes Intro")
toc.add("index.html", "SITE MENU:".fontcolor(colors[4]))
toc.add("http://ni.irias.biz/Cities", "Cities")
toc.add("../index.html", "You are in the Volcanoes".fontcolor(colors[4]))
toc.add("http://ni.irias.biz/Beaches", "Beaches")
toc.add("http://ni.irias.biz/aapp", "Protected Areas")
toc.add("http://ni.irias.biz/Wallpapers", "Wallpapers")
toc.add("http://ni.irias.biz", "Nicaragua")
toc.build()

var navContent = '<IMG SRC="../MonoChrome.gif" WIDTH=25 HEIGHT=100>'

function init()
{	initNav() }

window.onload = init;