	browser = (((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 3 )) || ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 )))
	// preload universal images
	if (browser) 
	{	
		home_over = new Image;	
		home_over.src = "/images/main/home_over.gif";	
		home = new Image;
		home.src = "/images/main/home.gif";
		
		interactive_over = new Image;
		interactive_over.src = "/images/main/interactive_over.gif";
		interactive = new Image;
		interactive.src = "/images/main/interactive.gif";

		football = new Image;
		football.src = "/images/main/football.gif";
		football_over = new Image;
		football_over.src = "/images/main/football_over.gif";

		recruiting = new Image;
		recruiting.src = "/images/main/recruiting.gif";
		recruiting_over = new Image;
		recruiting_over.src = "/images/main/recruiting_over.gif";

		basketball = new Image;
		basketball.src = "/images/main/basketball.gif";
		basketball_over = new Image;
		basketball_over.src = "/images/main/basketball_over.gif";

		baseball = new Image;
		baseball.src = "/images/main/baseball.gif";
		baseball_over = new Image;
		baseball_over.src = "/images/main/baseball_over.gif";

		othersports = new Image;
		othersports.src = "/images/main/othersports.gif";
		othersports_over = new Image;
		othersports_over.src = "/images/main/othersports_over.gif";

		austin = new Image;
		austin.src = "/images/main/austin.gif";
		austin_over = new Image;
		austin_over.src = "/images/main/austin_over.gif";

		misc = new Image;
		misc.src = "/images/main/misc.gif";
		misc_over = new Image;
		misc_over.src = "/images/main/misc_over.gif";

		about = new Image;
		about.src = "/images/main/about.gif";
		about_over = new Image;
		about_over.src = "/images/main/about_over.gif";
}

function insertPic() 
{
	//nill
}

function putImage(imgDocID,imgObjName) 
{
	//manages mouseOver animations
	//   imgDocID - the name or number of the document image to be replaced
	//   imgObjName - the name of the image object to be swapped in
	if (browser) 
	{
 		document.images[imgDocID].src = eval(imgObjName + ".src")
	}
}

function openWindow(theURL)
{
	window.open(theURL);
}

