	historyoff = new Image();
	historyoff.src = "images/inside/historyoff.gif";

	historyon = new Image();
	historyon.src = "images/inside/historyon.gif";
	
	messageoff = new Image();
	messageoff.src = "images/inside/messageoff.gif";

	messageon = new Image();
	messageon.src = "images/inside/messageon.gif";
	
	grantsoff = new Image();
	grantsoff.src = "images/inside/grantsoff.gif";

	grantson = new Image();
	grantson.src = "images/inside/grantson.gif";
	
	financialsoff = new Image();
	financialsoff.src = "images/inside/financialsoff.gif";

	financialson = new Image();
	financialson.src = "images/inside/financialson.gif";
	
	guidelinesoff = new Image();
	guidelinesoff.src = "images/inside/guidelinesoff.gif";

	guidelineson = new Image();
	guidelineson.src = "images/inside/guidelineson.gif";
	
	applicationoff = new Image();
	applicationoff.src = "images/inside/applicationoff.gif";

	applicationon = new Image();
	applicationon.src = "images/inside/applicationon.gif";
	
	homeoff = new Image();
	homeoff.src = "images/inside/homeoff.gif";

	homeon = new Image();
	homeon.src = "images/inside/homeon.gif";
	
	contactoff = new Image();
	contactoff.src = "images/inside/contactoff.gif";

	contacton = new Image();
	contacton.src = "images/inside/contacton.gif";
	
	function buttonOver(imgName) {
	buttonChange(imgName,'on');
	}
	
	function buttonOut(imgName) {
		buttonChange(imgName,'off');
	}
	
	function buttonChange(imgName,mode) {
		document[imgName].src = eval(imgName + mode + ".src");
	}