
<!--
/* Check to ensure rollovers work*/
if (document.images)
{
/* preload the images */

homeoff = new Image();
	homeoff.src = "images/navigation/homeoff.gif";
homeon = new Image();
	homeon.src = "images/navigation/homeon.gif";

aboutoff = new Image();
	aboutoff.src = "images/navigation/aboutoff.gif";
abouton = new Image();
	abouton.src = "images/navigation/abouton.gif";

principaloff = new Image();
	principaloff.src = "images/navigation/principaloff.gif";
principalon = new Image();
	principalon.src = "images/navigation/principalon.gif";

curricoff = new Image();
	curricoff.src = "images/navigation/curricoff.gif";
curricon = new Image();
	curricon.src = "images/navigation/curricon.gif";

admissionsoff = new Image();
	admissionsoff.src = "images/navigation/admissionsoff.gif";
admissionson = new Image();
	admissionson.src = "images/navigation/admissionson.gif";

calendaroff = new Image();
	calendaroff.src = "images/navigation/calendaroff.gif";
calendaron = new Image();
	calendaron.src = "images/navigation/calendaron.gif";

newsoff = new Image();
	newsoff.src = "images/navigation/newsoff.gif";
newson = new Image();
	newson.src = "images/navigation/newson.gif";

contactsoff = new Image();
	contactsoff.src = "images/navigation/contactsoff.gif";
contactson = new Image();
	contactson.src = "images/navigation/contactson.gif";

faqoff = new Image();
	faqoff.src = "images/navigation/faqoff.gif";
faqon = new Image();
	faqon.src = "images/navigation/faqon.gif";

erooff = new Image();
	erooff.src = "images/navigation/erooff.gif";
eroon = new Image();
	eroon.src = "images/navigation/eroon.gif";




}

function On(imgName) {
    if (document.images) {
        document.images[imgName].src = eval(imgName+"on.src");
	}
}
function Off(imgName) {
    if (document.images) {
        document.images[imgName].src = eval(imgName+"off.src");
	}
}
//-->

