<!--
// grabbed from http://www.xs4all.nl/~ppk/js/mouseov.html
// Some variables
var base= "images/menu_"
var nrm = new Array();
var omo = new Array();
var stuff = new Array('introduction','executive_summary','advisory_board','hartford_faculty','service_learning','course_outlines','field_experience','resources','other_links','hartford_students');

// Pre-load part.
if (document.images)
{
	for (i=0;i<stuff.length;i++)
	{
		nrm[i] = new Image;
		nrm[i].src = base + stuff[i] + ".gif"
		omo[i] = new Image;
		omo[i].src = base + stuff[i] + "_on.gif";
	}
}


// The functions: first mouseover, then mouseout
function over(no)
{
	if (document.images)
	{
		document.images[stuff[no]].src = omo[no].src
	}
}

function out(no)
{
	if (document.images)
	{
		document.images[stuff[no]].src = nrm[no].src
	}
}

-->