
// Added by Rob Harbin to fix IE6 CSS hover

	
       fixhover=function() 
       {
                navRoot = document.getElementById('nav');
                for(i=0; i<navRoot.childNodes.length; i++) 
		{
                        menuitem = navRoot.childNodes[i];
				if (menuitem.nodeName=='LI') 
				{
				
					menuitem.onmouseover=function() 
					{
					this.className+=' menuhover';
					
					}
				
					
                        		menuitem.onmouseout=function() 
					{
					this.className='';
					}
				}
                }
		
		sideNav = document.getElementById('navside');
		for(i=0; i<sideNav.childNodes.length; i++)
		{
			menuitem = sideNav.childNodes[i];
				if(menuitem.nodeName=='LI')
				{
					menuitem.onmouseover=function()
					{
						this.className+='sideMenuHover';
					}
					
					menuitem.onmouseout=function()
					{
						this.className=''
					}
				}
		}
		
		if(document.getElementById('navsidetwo'))
		{
		sideNavtwo = document.getElementById('navsidetwo');
		for(i=0; i<sideNavtwo.childNodes.length; i++)
		{
			menuitem = sideNavtwo.childNodes[i];
				if(menuitem.nodeName=='LI')
				{
					menuitem.onmouseover=function()
					{
						this.className+='sideMenuHover';
					}
					
					menuitem.onmouseout=function()
					{
						this.className=''
					}
				}
		}
		}
					
	
	}


              

		

