<!-- hide from non-JS browsers
// filename: nav.js
// Referenced by all pages for rollover functionality
// Delos Inc. 7/00

// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=

// button rollovers

var lPath;
lPath = "/images/buttons/"

// main buttons and tag line
philosophyoff = new Image(64,18); philosophyoff.src = lPath + "b_phil.gif";
philosophyon = new Image(64,18); philosophyon.src = lPath + "b_phil_r1.gif";
philosophytag = new Image(469,17); philosophytag.src = lPath + "b_phil_r2.gif";
programsoff = new Image(57,18); programsoff.src = lPath + "b_prog.gif";
programson = new Image(57,18); programson.src = lPath + "b_prog_r1.gif";
programstag = new Image(469,17); programstag.src = lPath + "b_prog_r2.gif";
commentsoff = new Image(64,18); commentsoff.src = lPath + "b_comm.gif";
commentson = new Image(64,18); commentson.src = lPath + "b_comm_r1.gif";
commentstag = new Image(469,17); commentstag.src = lPath + "b_comm_r2.gif";
locationsoff = new Image(58,18); locationsoff.src = lPath + "b_loc.gif";
locationson = new Image(58,18); locationson.src = lPath + "b_loc_r1.gif";
locationstag = new Image(469,17); locationstag.src = lPath + "b_loc_r2.gif";
contactoff = new Image(47,18); contactoff.src = lPath + "b_cont.gif";
contacton = new Image(47,18); contacton.src = lPath + "b_cont_r1.gif";
contacttag = new Image(469,17); contacttag.src = lPath + "b_cont_r2.gif";
parentsoff = new Image(46,18); parentsoff.src = lPath + "b_pare.gif";
parentson = new Image(46,18); parentson.src = lPath + "b_pare_r1.gif";
parentstag = new Image(469,17); parentstag.src = lPath + "b_pare_r2.gif";
homeoff = new Image(36,18); homeoff.src = lPath + "b_home.gif";
homeon = new Image(36,18); homeon.src = lPath + "b_home_r1.gif";
hometag = new Image(469,17); hometag.src = lPath + "b_home_r2.gif";
tagoff = new Image(469,17); tagoff.src = lPath + "space.gif";



// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=



function img2_act(imgName)
{
	var imgOn;
	var imgTag;
	
	imgOn = eval(imgName + "on.src");
	document [imgName].src = imgOn;
	imgtag = eval(imgName + "tag.src");
	document.tagline.src = imgtag;
		
	return true;
}
	
  
function img2_inact(imgName)
{
	var imgOff;
	
	imgOff = eval(imgName + "off.src");
	//tagoff = eval(tagoff.src);
	document [imgName].src = imgOff;
	document.tagline.src = tagoff.src;
		
	return true;
}


// end hide -->