// JavaScript Document  Navigation.js
<!--
function showNav(choice)
{
if (choice == 0)
	document.NavAnimationFeature.GotoFrame(1);
if (choice == 1)
	document.NavAnimationFeature.GotoFrame(10);
if (choice == 11)
	document.NavAnimationFeature.GotoFrame(15);
if (choice == 2)
	document.NavAnimationFeature.GotoFrame(20);
if (choice == 21)
	document.NavAnimationFeature.GotoFrame(25);
if (choice == 3)
	document.NavAnimationFeature.GotoFrame(30);
if (choice == 31)
	document.NavAnimationFeature.GotoFrame(35);
if (choice == 4)
	document.NavAnimationFeature.GotoFrame(40);
if (choice == 41)
	document.NavAnimationFeature.GotoFrame(45);
}
-->