﻿// JScript File
button_home_normal = new Image();
button_home_hilite = new Image();
button_home_normal.src = "Images/Home.gif";
button_home_hilite.src = "Images/Homehilite.gif";

button_geophysical_normal = new Image();
button_geophysical_hilite = new Image();
button_geophysical_normal.src = "Images/Geophysical.gif";
button_geophysical_hilite.src = "Images/Geophysicalhilite.gif";

button_medical_normal = new Image();
button_medical_hilite = new Image();
button_medical_normal.src = "Images/Medical.gif";
button_medical_hilite.src = "Images/Medicalhilite.gif";

button_miscellaneous_normal = new Image();
button_miscellaneous_hilite = new Image();
button_miscellaneous_normal.src = "Images/ProprietaryData.gif";
button_miscellaneous_hilite.src = "Images/ProprietaryDatahilite.gif";

button_contact_normal = new Image();
button_contact_hilite = new Image();
button_contact_normal.src = "Images/AboutUs.gif";
button_contact_hilite.src = "Images/AboutUshilite.gif";

function swap()
{
	if (document.images)
	{
		for (var x=0;x<swap.arguments.length;x+=2) {
			document[swap.arguments[x]].src = eval(swap.arguments[x+1] + ".src");
		}
	}
}