if (document.images) {
	on = new Array();

	on["ourgoal"] = new Image();
	on["ourgoal"].src = "images/menu/ourgoal_over.gif"
	on["donations"] = new Image();
	on["donations"].src = "images/newLayout/menu/donations_over.gif"
	on["events"] = new Image();
	on["events"].src = "images/newLayout/menu/events_over2.gif"
	on["about"] = new Image();
	on["about"].src = "images/newLayout/menu/about_over.gif"
	on["apply"] = new Image();
	on["apply"].src = "images/newLayout/menu/apply_over.gif"
	on["contact"] = new Image();
	on["contact"].src = "images/newLayout/menu/sponsor_over.gif"
	


	off = new Array();

	off["ourgoal"] = new Image();
	off["ourgoal"].src = "images/menu/ourgoal.gif"
	off["donations"] = new Image();
	off["donations"].src = "images/newLayout/menu/donations.gif"
	off["events"] = new Image();
	off["events"].src = "images/newLayout/menu/events.gif"
	off["about"] = new Image();
	off["about"].src = "images/newLayout/menu/about.gif"
	off["apply"] = new Image();
	off["apply"].src = "images/newLayout/menu/apply.gif"
	off["contact"] = new Image();
	off["contact"].src = "images/newLayout/menu/sponsor.gif"
	
}

function msover(imageName) {
			if (document.images) {	
				document.images[imageName].src = on[imageName].src;
			}
		}

function msout(imageName) {
			if (document.images) {
	                  			document.images[imageName].src = off[imageName].src
			}	            
		}
