function initNav()
{
	function rollOn()
	{
		this.src="images/" + this.id + "_ON.jpg";
	}
	
	function rollOff()
	{
		this.src="images/" + this.id + "_OFF.jpg";
	}
	
	document.getElementById("NavLeaf_Home2").onmouseover=rollOn;
	document.getElementById("NavLeaf_Home2").onmouseout=rollOff;
	
	document.getElementById("NavLeaf_Why2").onmouseover=rollOn;
	document.getElementById("NavLeaf_Why2").onmouseout=rollOff;
	
	document.getElementById("NavLeaf_Products3").onmouseover=rollOn;
	document.getElementById("NavLeaf_Products3").onmouseout=rollOff;
	
	document.getElementById("NavLeaf_Distributor2").onmouseover=rollOn;
	document.getElementById("NavLeaf_Distributor2").onmouseout=rollOff;
}

window.onload=initNav;