
var curpath =	location.pathname;

var menu =	new Object();

menu.home =	new Object();
menu.home.on =	new Image();
menu.home.on.src = "graphics/home1.jpg";
menu.home.off =	new Image();
menu.home.off.src = "graphics/home0.jpg";
menu.home.ht = 33;
menu.home.path = "/index.shtml";

menu.company =	new Object();
menu.company.on =	new Image();
menu.company.on.src = "graphics/profile1.jpg";
menu.company.off =	new Image();
menu.company.off.src = "graphics/profile0.jpg";
menu.company.ht = 34;
menu.company.path = "/company.shtml";

menu.port =	new Object();
menu.port.on =	new Image();
menu.port.on.src = "graphics/port1.jpg";
menu.port.off =	new Image();
menu.port.off.src = "graphics/port0.jpg";
menu.port.ht = 33;
menu.port.path = "/portfolio.shtml";

menu.faq =	new Object();
menu.faq.on =	new Image();
menu.faq.on.src = "graphics/faq1.jpg";
menu.faq.off =	new Image();
menu.faq.off.src = "graphics/faq0.jpg";
menu.faq.ht = 33;
menu.faq.path = "/faq.shtml";

menu.contact =	new Object();
menu.contact.on =	new Image();
menu.contact.on.src = "graphics/contact1.jpg";
menu.contact.off =	new Image();
menu.contact.off.src = "graphics/contact0.jpg";
menu.contact.ht = 33;
menu.contact.path = "mailto:info@arizonahomeworks.com";

if (curpath == "/") {
	curpath = menu.home.path;
}

function rollOn(cur) {
	if (document.images) {
		if (menu[cur].path !== curpath) {
			document[cur].src = menu[cur].on.src;
		}
	}
}

function rollOff(cur) {
	if (document.images) {
		if (menu[cur].path !== curpath) {
			document[cur].src = menu[cur].off.src;
		}
	}
}

function menuItem(cur) {
	var imgsrc;
	if (menu[cur].path == curpath) {
		imgsrc = menu[cur].on.src;
	}
	else {
		imgsrc = menu[cur].off.src;
	}
	document.write('<a href = "' + menu[cur].path + '" onMouseOver = "rollOn(\'' + cur + '\')" onMouseOut = "rollOff(\'' + cur + '\')"><img src="' + imgsrc + '" width="120" height="' + menu[cur].ht + '" border="0" name="' + cur + '"></a>');
}
