// DO NOT ALTER THIS PAGE IN ANY WAY// THIS IS THE JAVASCRIPT THE REST OF THE SITE USES// TO ENABLE MENU ROLLOVERS// main menu rollover	menuItem['home'] = new menuItem('home');	menuItem['work'] = new menuItem('work');	menuItem['journal'] = new menuItem('journal');	menuItem['writing'] = new menuItem('writing');	menuItem['bio'] = new menuItem('bio');	menuItem['news'] = new menuItem('news');	menuItem['contact'] = new menuItem('contact');	function img_act (imgName)	{	document[imgName].src = menuItem[imgName].on.src;	}function img_inact (imgName)	{	document[imgName].src = menuItem[imgName].off.src;	}	function img_act2 (imgName)	{	document[imgName].src = menuItem[imgName].on2.src;	}function img_inact2 (imgName)	{	document[imgName].src = menuItem[imgName].off2.src;	}function menuItem (name)	{	this.on = new Image();	this.on.src = "http://www.mitchepstein.net/gfx/global_nav/" + name + 	"_w.gif"	this.off = new Image();	this.off.src = "http://www.mitchepstein.net/gfx/global_nav/" + name + 	"_g.gif"	this.on2 = new Image();	this.on2.src = "http://www.mitchepstein.net/gfx/global_nav/" + name + 	"_w2.gif"	this.off2 = new Image();	this.off2.src = "http://www.mitchepstein.net/gfx/global_nav/" + name + 	"_g2.gif"	this.sel = new Image();	this.sel.src = "http://www.mitchepstein.net/gfx/global_nav/" + name + 	"_o.gif"	}