
var butoff = new Array();
		
butoff[1] = new Image(65,15);
butoff[2] = new Image(68,15);
butoff[3] = new Image(75,16);
butoff[4] = new Image(75,16);
butoff[5] = new Image(73,15);	
	
butoff[1].src = "home.gif";
butoff[2].src = "names.gif";
butoff[3].src = "sayings.gif";
butoff[4].src = "practical.gif";
butoff[5].src = "custom.gif";


var buton = new Array();
	
buton[1] = new Image(65,12);
buton[2] = new Image(68,12);
buton[3] = new Image(75,15);
buton[4] = new Image(75,15);
buton[5] = new Image(73,12);	

buton[1].src = "home1.gif";
buton[2].src = "names1.gif";
buton[3].src = "sayings1.gif";
buton[4].src = "practical1.gif";
buton[5].src = "custom1.gif";

var msg = new Array();
msg[1] = "Click to go back to the Home Page";
msg[2] = "This page will show you designs for Name Magnets";
msg[3] = "This page will show you funny sayings";
msg[4] = "This page will show you useful magnets such as clean/dirty magnets";
msg[5] = "This page will show you custom designs and you can design your own magnet"; 



  


function imageOn(index)
{
	document.images[index].src = buton[index].src;
	window.status=msg[index];
}

function imageOff(index)
{
	document.images[index].src = butoff[index].src;
	window.status='';
}
