<!--

var siteURL = 'http://www.arpm.com';

if (document.images) {

	img1on = new Image()
	img1on.src = siteURL + "/images/option_home_over.gif";
	img2on = new Image()
	img2on.src = siteURL + "/images/option_aboutus_over.gif";
	img3on = new Image()
	img3on.src = siteURL + "/images/option_student_over.gif";
	img4on = new Image()
	img4on.src = siteURL + "/images/option_prof_over.gif";
	img5on = new Image()
	img5on.src = siteURL + "/images/option_office_over.gif";
	img6on = new Image()
	img6on.src = siteURL + "/images/parking-rentals-over.gif";
	img7on = new Image()
	img7on.src = siteURL + "/images/option_contact_over.gif";
	img8on = new Image()
	img8on.src = siteURL + "/images/option_maintenance_over.gif";
	img9on = new Image()
	img9on.src = siteURL + "/images/option_feedback_over.gif";
	img10on = new Image()
	img10on.src = siteURL + "/images/option_forms_over.gif";
	img11on = new Image()
	img11on.src = siteURL + "/images/pay_online_over.gif";

	img1off = new Image()
	img1off.src = siteURL + "/images/option_home.gif";
	img2off = new Image()
	img2off.src = siteURL + "/images/option_aboutus.gif";
	img3off = new Image()
	img3off.src = siteURL + "/images/option_student.gif";
	img4off = new Image()
	img4off.src = siteURL + "/images/option_prof.gif";
	img5off = new Image()
	img5off.src = siteURL + "/images/option_office.gif";
	img6off = new Image()
	img6off.src = siteURL + "/images/parking-rentals.gif";
	img7off = new Image()
	img7off.src = siteURL + "/images/option_contact.gif";
	img8off = new Image()
	img8off.src = siteURL + "/images/option_maintenance.gif";
	img9off = new Image()
	img9off.src = siteURL + "/images/option_feedback.gif";
	img10off = new Image()
	img10off.src = siteURL + "/images/option_forms.gif";
	img11off = new Image()
	img11off.src = siteURL + "/images/pay_online.gif";

}

function imgAct(imgName) {
	if (document.images) {
	    document[imgName].src = eval(imgName + "on.src");
	}
}

function imgInact(imgName) {
	if (document.images) {
	    document[imgName].src = eval(imgName + "off.src");
	}
}

//-->
