

homeon = new Image();			 homeon.src="/images/graphics/nav/home_on.jpg";
			stageon = new Image();		 	 stageon.src="/images/graphics/nav/stage_on.jpg";
			onedayon = new Image();			 onedayon.src="/images/graphics/nav/oneday_on.jpg";
			womenson = new Image();			 womenson.src="/images/graphics/nav/womens_on.jpg";
			rideron = new Image();			 rideron.src="/images/graphics/nav/rider_on.jpg";
			otherlinkson = new Image();		 otherlinkson.src="/images/graphics/nav/links_on.jpg";

			homeoff = new Image();			 homeoff.src="/images/graphics/nav/home_off.jpg";
			stageoff = new Image();			 stageoff.src="/images/graphics/nav/stage_off.jpg";
			onedayoff = new Image();		 onedayoff.src="/images/graphics/nav/oneday_off.jpg";
			womensoff = new Image();		 womensoff.src="/images/graphics/nav/womens_off.jpg";
			rideroff = new Image();			 rideroff.src="/images/graphics/nav/rider_off.jpg";
			otherlinksoff = new Image();	 otherlinksoff.src="/images/graphics/nav/links_off.jpg";



		<!-- Adds a suffix onto the image name so that the program calls the on state of the image -->
function imgOn(iname) {
			if (document.images) {
				document[iname].src = eval(iname + "on.src");
			}
		}

		<!-- Adds a suffix onto the image name so that the program calls the off state of the image -->
function imgOff(iname) {
			if (document.images) {
				document[iname].src = eval(iname + "off.src");
			}
		}
		
function KeyCodes(){
	document.onkeypress=function(evt){ KeyPress(evt?evt.keyCode:event.keyCode); }
	document.onkeydown=function(evt){ KeyPress(evt?evt.keyCode:event.keyCode); }
}

function KeyPress(e){
	if(document.getElementById('prev-pict') ||  document.getElementById('next-pict')) {
		
		if (e==37)
				{
					if(document.getElementById('prev-pict')) {
						location.href = document.getElementById('prev-pict').href; 
					}
			}
		else if (e==39)
				{ 
					location.href = document.getElementById('next-pict').href; 
					}
			}
		}
