function addLeftNavBehavior(context)
{

	for(var i=0; i < context.childNodes.length; i++)
	{
		var n = context.childNodes[i];

		if(n.nodeName == "LI")
		{
			var AL = new AddListener(n, "mouseover", function()
			{	
				for(var i=0; i < this.childNodes.length; i++)
				{
					var n=this.childNodes[i];
					if(n.nodeName == "DIV")
					{
						
						for(var i2=0; i2 < n.childNodes.length; i2++)
						{
							var n2 = n.childNodes[i2];
							if(n2.nodeName == "DIV")
							{
								n2.className = "show";
							}
						}
					}
				}		 
				
			});

			var AL = new AddListener(n, "mouseout", function()
			{
				for(var i=0; i < this.childNodes.length; i++)
				{
					var n=this.childNodes[i];
					if(n.nodeName == "DIV")
					{
						for(var i2=0; i2 < n.childNodes.length; i2++)
						{
							var n2 = n.childNodes[i2];
							if(n2.nodeName == "DIV")
							{
								n2.className = "hide";
							}
						}
					}
				}		 
				
			});





		}
	}

}



var AL = new AddListener(window, "load", function()
{ 
	//addLeftNavBehavior(document.getElementById("topNav"));
});