function initPage()
{
	var navRoot2 = document.getElementById("subscribe");
		if (navRoot2)
		{
			navRoot2.onmouseover = function()
			{
				this.className += " active"
	                }
		navRoot2.onmouseout = function()
			{
				this.className =  this.className.replace(new RegExp(" active"),"");
			}
		}
	var navRoot = document.getElementById("login");
		navRoot.onmouseover = function()
			{
				this.className += " active"
	                }
		navRoot.onmouseout = function()
			{
				this.className =  this.className.replace(new RegExp(" active"),"");
			}
	var navRoot1 = document.getElementById("email");
		navRoot1.onmouseover = function()
			{
				this.className += " active"
	                }
		navRoot1.onmouseout = function()
			{
				this.className =  this.className.replace(new RegExp(" active"),"");
			}
	var navRoot1 = document.getElementById("featured-link");
		if(navRoot1)
		{
			navRoot1.onmouseover = function()
			{
					this.className += " active"
		  }
		  navRoot1.onmouseout = function()
			{
				this.className =  this.className.replace(new RegExp(" active"),"");
			}
		}
	var navRoot1 = document.getElementById("clound-links");
		navRoot1.onmouseover = function()
			{
				this.className += " active"
	                }
		navRoot1.onmouseout = function()
			{
				this.className =  this.className.replace(new RegExp(" active"),"");
			}
	
}

if (window.attachEvent && !window.opera)
	attachEvent("onload", initPage);
