/* //:::::::::::   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("PaleGreen") != -1 || !set)
{	colors = ["#00CCFF", "#0000A0", "#00CCFF", "#FFFFFF", "Black"]
	scheme = "PaleGreen" }


// 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, 190, 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("http://ni.irias.biz/Cities", "Cities Section")
toc.add("http://ni.irias.biz/Volcanoes/", "Volcanoes Section")
toc.add("http://ni.irias.biz/Beaches/", "Beaches Section")
toc.add("http://ni.irias.biz/aapp/", "Protected Areas")
toc.add("http://ni.irias.biz/Wallpapers/", "Wallapapers Section")
toc.add("http://ni.irias.biz", "Nicaragua Intro")
toc.build()

var navContent = '<IMG SRC="MonoChrome.gif" WIDTH=25 HEIGHT=100>'

function init()
{	initNav() }

window.onload = init;


	
