function tabon_outfit_quick_links(myClass, divid)
{
		navRoot = document.getElementById("outfit_quick_links");
		var num = 0;
		for (i=0; i<navRoot.childNodes.length; i++) 
		{
				node = navRoot.childNodes[i];
				if (node.nodeName=="A") 
				{
					num++;
					node.className=node.className.replace(" over", "");
					if(myClass == node.className)
					{
						node.className+=" over";
					}
				}
		}

		for(i=1; i<=3; i++)
		{
			if(document.getElementById("div" + i))
			{
				if(i == divid)
				{
					document.getElementById("div" + i).style.display = "";
				}
				else
				{
					document.getElementById("div" + i).style.display = "none";
				}
			}
	}
}
