{
	coachon = new Image();
	coachon.src = "../images/r-coaching.gif";
	weighton = new Image();
	weighton.src = "../images/r-weight.gif";
	inspireon = new Image();
	inspireon.src = "../images/r-inspiration.gif";
	libraryon = new Image();
	libraryon.src = "../images/r-library.gif";
	newson = new Image();
	newson.src = "../images/r-newsletter.gif";
	abouton = new Image();
	abouton.src = "../images/r-about.gif";
	contacton = new Image();
	contacton.src = "../images/r-contact.gif";
	homeon = new Image();
	homeon.src = "../images/r-home.gif";

	coachoff = new Image();
	coachoff.src = "../images/m-coaching.gif";
	weightoff = new Image();
	weightoff.src = "../images/m-weight.gif";
	inspireoff = new Image();
	inspireoff.src = "../images/m-inspiration.gif";
	libraryoff = new Image();
	libraryoff.src = "../images/m-library.gif";
	newsoff = new Image();
	newsoff.src = "../images/m-newsletter.gif";
	aboutoff = new Image();
	aboutoff.src = "../images/m-about.gif";
	contactoff = new Image();
	contactoff.src = "../images/m-contact.gif";
	homeoff = new Image();
	homeoff.src = "../images/m-home.gif";
}

function imgOn(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "on.src");
	}
}

function imgOff(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "off.src");
	}
}