function joeMouseOver( s )
{
	if (s!=document.joe.here)
	document.images[s].src= document.joe.iOver[s].src;
}

function joeMouseOut( s )
{
	if (s!=document.joe.here)
	document.images[s].src= document.joe.iOut[s].src;
}

function baseName(s2)
{
	s = ""+s2
	l = s.length;
	if (s.charAt(l-1)=='/') return "index";

	parts = s.split("/")
	l = parts.length
	last = parts[l-1]
	parts = last.split(".")
	return parts[0]
}



function joe_preload(s)
{
	if (s!=document.joe.here)
	{
		sOut = "redmenu/" + s + ".gif"
		sOver = "hotmenu/" + s + ".gif"

		document.joe.iOut[s] = new Image();
		document.joe.iOut[s].src = sOut
	
		document.joe.iOver[s] = new Image();
		document.joe.iOver[s].src = sOver
	}
}

function joe_here()
{
//	if(document.images[document.joe.here])
//		document.images[document.joe.here].src= "images/nav_" + document.joe.here + "_here.gif"
}

document.joe = new Object();
document.joe.iOver = new Array();
document.joe.iOut = new Array();
document.joe.here = baseName(document.location);


joe_preload("about")
joe_preload("awards")
joe_preload("photos")
joe_preload("contact")
