/*
	HomeFade.js - Fades out the Home icon after a set period of time
	2021 by Mercury 0x0D, Creative Commons Attribution 4.0 International License

	Revision history:
	2021-12-25 - Initial release
*/





setTimeout(HomeFadeHomeTransparentOn, 3000);

home.setAttribute("onmouseover", "HomeFadeHomeTransparentOff()");
home.setAttribute("onmouseleave", "HomeFadeHomeTransparentOn()");





function HomeFadeHomeTransparentOff()
{
	home.style.opacity = 1;
}





function HomeFadeHomeTransparentOn()
{
	home.style.opacity = .3;
}
