<!--
// Author: Howard Lively [theRamMan@CarolinaFan.com]
// Date:   October 30, 2001
// Dept:   Scholarships & Student Aid - UNC-CH
// Appl:   SSA web site
// Func:   Rollover images effect.

sitePath = "/studentaid/";

agent = navigator.userAgent;
supportjava = 2;
if (agent.indexOf("a/3") == -1 && agent.indexOf("a/4") == -1) supportjava = 2;
else supportjava = 1;

if (supportjava == 1) {

pic1on = new Image ();
pic1on.src = sitePath + "images/ssa_site_map_on.gif";
pic1off = new Image ();
pic1off.src = sitePath + "images/ssa_site_map_off.gif";

pic2on = new Image ();
pic2on.src = sitePath + "images/ssa_text_only_on.gif";
pic2off = new Image ();
pic2off.src = sitePath + "images/ssa_text_only_off.gif";

pic3on = new Image ();
pic3on.src = sitePath + "images/ssa_search_on.gif";
pic3off = new Image ();
pic3off.src = sitePath + "images/ssa_search_off.gif";

};

function select(img1,img2) {
	if (supportjava == 1) {
 	 document.images[img1].src=eval(img2+".src");
	};
};
//-->
