/**************************************************************************************************************************

This does all the rollovers. It is a standard rollover script; there is very little different from any rollover script you can find on the web. If you want to add more javaScript functions, you can make a new .js file.

All of the highlighted images have a "2" at the end of the name. This is for both the variable name and the image address. Therefore, if you want to make a new image that changes when you hover over it, you name your default image NAME.jpg and your highlighted image NAME2.jpg. I don't forsee you needing to do this, though.

In index_commented.html, I said you would need to change this file if you wanted more navigation buttons. You would copy this:
	navigationa = new Image()
	navigationa.src = "/hb/cssfiles/navigation.gif"
	navigationa2 = new Image()
	navigationa2.src = "/hb/cssfiles/navigation2.gif"

And you would change each 'a' following "navigation" to your new letter.

You can paste this anywhere within the outer braces.

**************************************************************************************************************************/



if (document.images)
{
	navigation0 = new Image()
	navigation0.src = "Button.gif"
	navigation0b = new Image()
	navigation0b.src = "Button-Over-State.gif"
	navigation0c = new Image()
	navigation0c.src = "Button-Down-State.gif"

	navigation1 = new Image()
	navigation1.src = "Button.gif"
	navigation1b = new Image()
	navigation1b.src = "Button-Over-State.gif"
	navigation1c = new Image()
	navigation1c.src = "Button-Down-State.gif"

	navigation2 = new Image()
	navigation2.src = "Button.gif"
	navigation2b = new Image()
	navigation2b.src = "Button-Over-State.gif"
	navigation2c = new Image()
	navigation2c.src = "Button-Down-State.gif"

	navigation3 = new Image()
	navigation3.src = "Button.gif"
	navigation3b = new Image()
	navigation3b.src = "Button-Over-State.gif"
	navigation3c = new Image()
	navigation3c.src = "Button-Down-State.gif"

	navigation4 = new Image()
	navigation4.src = "Button.gif"
	navigation4b = new Image()
	navigation4b.src = "Button-Over-State.gif"
	navigation4c = new Image()
	navigation4c.src = "Button-Down-State.gif"
	
	
	
	
	navigationS0 = new Image()
	navigationS0.src = "Button.gif"
	navigationS0b = new Image()
	navigationS0b.src = "Button-Over-State.gif"
	navigationS0c = new Image()
	navigationS0c.src = "Button-Down-State.gif"

	navigationS1 = new Image()
	navigationS1.src = "Button.gif"
	navigationS1b = new Image()
	navigationS1b.src = "Button-Over-State.gif"
	navigationS1c = new Image()
	navigationS1c.src = "Button-Down-State.gif"

	navigationS2 = new Image()
	navigationS2.src = "Button.gif"
	navigationS2b = new Image()
	navigationS2b.src = "Button-Over-State.gif"
	navigationS2c = new Image()
	navigationS2c.src = "Button-Down-State.gif"

	navigationS3 = new Image()
	navigationS3.src = "Button.gif"
	navigationS3b = new Image()
	navigationS3b.src = "Button-Over-State.gif"
	navigationS3c = new Image()
	navigationS3c.src = "Button-Down-State.gif"

	navigationS4 = new Image()
	navigationS4.src = "Button.gif"
	navigationS4b = new Image()
	navigationS4b.src = "Button-Over-State.gif"
	navigationS4c = new Image()
	navigationS4c.src = "Button-Down-State.gif"

	navigationS5 = new Image()
	navigationS5.src = "Button.gif"
	navigationS5b = new Image()
	navigationS5b.src = "Button-Over-State.gif"
	navigationS5c = new Image()
	navigationS5c.src = "Button-Down-State.gif"

	navigationS6 = new Image()
	navigationS6.src = "Button.gif"
	navigationS6b = new Image()
	navigationS6b.src = "Button-Over-State.gif"
	navigationS6c = new Image()
	navigationS6c.src = "Button-Down-State.gif"
	
	navigationS7 = new Image()
	navigationS7.src = "Button.gif"
	navigationS7b = new Image()
	navigationS7b.src = "Button-Over-State.gif"
	navigationS7c = new Image()
	navigationS7c.src = "Button-Down-State.gif"
	
	navigationS8 = new Image()
	navigationS8.src = "Button.gif"
	navigationS8b = new Image()
	navigationS8b.src = "Button-Over-State.gif"
	navigationS8c = new Image()
	navigationS8c.src = "Button-Down-State.gif"
	

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

	function turnOff(imgName)
	{
		if (document.images)
		{
			imgOff=eval(imgName + ".src");
			document[imgName].src= imgOff;
		}
	}
	
	function turnDown(imgName)
	{
		if (document.images)
		{
			imgOff=eval(imgName + "c.src");
			document[imgName].src= imgDwn;
		}
	}
}

// -->