function SwapNavImg(ImgName, Element)
{
	if (Element != CurrentPage)
	{ document.getElementById(Element).src='http://www.herbgathering.com/herbgathering/images/navigation/' + ImgName }

	return false;
}

if (typeof document.getElementById("homenavimg").addEventListener != "undefined")
{
	document.getElementById("homenavimg").addEventListener("mouseover",function() { SwapNavImg('home-on_19.gif','homenavimg'); },false);
	document.getElementById("homenavimg").addEventListener("mouseout",function() { SwapNavImg('home_19.gif','homenavimg'); },false);

	document.getElementById("catnipnavimg").addEventListener("mouseover",function() { SwapNavImg('catniptoys_on_20.gif','catnipnavimg'); },false);
	document.getElementById("catnipnavimg").addEventListener("mouseout",function() { SwapNavImg('catniptoys_20.gif','catnipnavimg'); },false);

	document.getElementById("lavenderbagnavimg").addEventListener("mouseover",function() { SwapNavImg('lavenderbags_on_21.gif','lavenderbagnavimg'); },false);
	document.getElementById("lavenderbagnavimg").addEventListener("mouseout",function() { SwapNavImg('lavenderbags_21.gif','lavenderbagnavimg'); },false);

	document.getElementById("pastelnavimg").addEventListener("mouseover",function() { SwapNavImg('pastels_on_22.gif','pastelnavimg'); },false);
	document.getElementById("pastelnavimg").addEventListener("mouseout",function() { SwapNavImg('pastels_22.gif','pastelnavimg'); },false);

	document.getElementById("recipienavimg").addEventListener("mouseover",function() { SwapNavImg('herbrecipe_on_23.gif','recipienavimg'); },false);
	document.getElementById("recipienavimg").addEventListener("mouseout",function() { SwapNavImg('herbrecipe_23.gif','recipienavimg'); },false);

	document.getElementById("wholesalenavimg").addEventListener("mouseover",function() { SwapNavImg('wholesalenav_on.gif','wholesalenavimg'); },false);
	document.getElementById("wholesalenavimg").addEventListener("mouseout",function() { SwapNavImg('wholesalenav.gif','wholesalenavimg'); },false);
}

if (typeof document.getElementById("homenavimg").attachEvent != "undefined")
{
	document.getElementById("homenavimg").attachEvent("onmouseover",function() { SwapNavImg('home-on_19.gif','homenavimg'); });
	document.getElementById("homenavimg").attachEvent("onmouseout",function() { SwapNavImg('home_19.gif','homenavimg'); });

	document.getElementById("catnipnavimg").attachEvent("onmouseover",function() { SwapNavImg('catniptoys_on_20.gif','catnipnavimg'); });
	document.getElementById("catnipnavimg").attachEvent("onmouseout",function() { SwapNavImg('catniptoys_20.gif','catnipnavimg'); });

	document.getElementById("lavenderbagnavimg").attachEvent("onmouseover",function() { SwapNavImg('lavenderbags_on_21.gif','lavenderbagnavimg'); });
	document.getElementById("lavenderbagnavimg").attachEvent("onmouseout",function() { SwapNavImg('lavenderbags_21.gif','lavenderbagnavimg'); });

	document.getElementById("pastelnavimg").attachEvent("onmouseover",function() { SwapNavImg('pastels_on_22.gif','pastelnavimg'); });
	document.getElementById("pastelnavimg").attachEvent("onmouseout",function() { SwapNavImg('pastels_22.gif','pastelnavimg'); });

	document.getElementById("recipienavimg").attachEvent("onmouseover",function() { SwapNavImg('herbrecipe_on_23.gif','recipienavimg'); });
	document.getElementById("recipienavimg").attachEvent("onmouseout",function() { SwapNavImg('herbrecipe_23.gif','recipienavimg'); });

	document.getElementById("wholesalenavimg").attachEvent("onmouseover",function() { SwapNavImg('wholesalenav_on.gif','wholesalenavimg'); });
	document.getElementById("wholesalenavimg").attachEvent("onmouseout",function() { SwapNavImg('wholesalenav.gif','wholesalenavimg'); });
}
