/*Set the mouseover classes for the navigation links (for IE6) and apply id for the link to the current page*/
function setMouseOvers()
{
	var navUL = document.getElementById('menu');
	
	var navigationChildren = navUL.childNodes;
	for(var i = 0; i < navigationChildren.length; i++)
	{
		if(navigationChildren[i].nodeName == 'LI')
		{
			navigationChildren[i].onmouseover = function()
			{
				this.className = 'over';
			}
			
			navigationChildren[i].onmouseout = function()
			{
				this.className = '';
			}		
		}
	}
}
