function initPage()
{
	var navRoot = document.getElementById("rss");
	navRoot.onmouseover = function()
	{
		if (this.className.indexOf("rss-active") == -1) {
			this.className += " rss-active";
		}
        }
	navRoot.onmouseout = function()
	{
		if (this.className.indexOf("rss-active") != -1) {
			this.className = this.className.replace("rss-active","");
		}
	}

}

if (window.addEventListener)
	window.addEventListener("load", initPage, false);
else if (window.attachEvent)
	window.attachEvent("onload", initPage);
