<!--
var itsgood = document.images;

var on = new Array();
var off = new Array();

var refname = new Array();
var refstatus = new Array();

var imgPath = "/nav/"; // logical path to the images.

refname[0] = "aboutus"; // don't put the extension, just the filename before it.
refname[1] = "articles";
refname[2] = "books";
refname[3] = "contactus";
refname[4] = "services";

refstatus[0] = "About the Company"; // status bar message.
refstatus[1] = "Read our Articles Online";
refstatus[2] = "Purchase our Books";
refstatus[3] = "Get in Contact with Us";
refstatus[4] = "CPC Econometrics Services";

// and so on for as many rollover images you need.

if (itsgood) {
	for (i=0;i<=refname.length;i++) {
		on[i]  = new Image();
		off[i] = new Image();

		on[i].src  = imgPath + refname[i] + "_on.gif"; // or whatever extention it is
		off[i].src = imgPath + refname[i] + ".gif";
	}
}

function msOver(imgNumber) {
	if(itsgood) {
		var imgName = refname[imgNumber];
		document.images[imgName].src = on[imgNumber].src;
		window.status=refstatus[imgNumber];
		return true;
	}
}

function msOut(imgNumber) {
	if(itsgood) {
		var imgName = refname[imgNumber];
		document.images[imgName].src = off[imgNumber].src;
		window.status='';
		return true;
	}
}
//-->