<!-- HIDE FROM INCOMPATIBLE BROWSERS



/* variables */

var aOut = new Image();
aOut.src = "aOut.png";
var aIn = new Image();
aIn.src = "aOver.png";
var pOut = new Image();
pOut.src = "pOut.png";
var pIn = new Image();
pIn.src = "pOver.png";
var rOut = new Image();
rOut.src = "rOut.png";
var rIn = new Image();
rIn.src = "rOver.png";
var nOut = new Image();
nOut.src = "nOut.png";
var nIn = new Image();
nIn.src = "nOver.png";
/* changes the image used for the left arrow on mousedown to ldown.gif. */

function PhotoIn(){
	document.getElementById("photos").src = pIn.src;
}

/* changes the image used for the left arrow on mouseup to lup.gif. */

function PhotoOut(){
	document.getElementById("photos").src = pOut.src;
}

/* changes the image used for the right arrow on mousedown to rdown.gif. */

function AboutIn(){
	document.getElementById("about").src = aIn.src;
}

/* Changes the image used for the right arrow on mouseup to rup.gif. */

function AboutOut(){
	document.getElementById("about").src = aOut.src;
}


function ResourceIn(){
	document.getElementById("resources").src = rIn.src;
}

/* Changes the image used for the right arrow on mouseup to rup.gif. */

function ResourceOut(){
	document.getElementById("resources").src = rOut.src;
}


function NewsIn(){
	document.getElementById("news").src = nIn.src;
}

/* Changes the image used for the right arrow on mouseup to rup.gif. */

function NewsOut(){
	document.getElementById("news").src = nOut.src;
}

// STOP HIDING FROM INCOMPATIBLE BROWSERS -->

// JavaScript Document
