function fixComboBox(IDs)
{
	 for(j=0;j<IDs.length;j++)
	 {
		if($(IDs[j])==null)
			continue;

		$(IDs[j]).style.visibility='visible';
	 }	 
}

function clearValue(id)
{
	id.value='';
}

function initMenu()
{
	/*
	if (document.all&&document.getElementById) 
	{
		navRoot = document.getElementById("rootmenu");
		for (i=0; i<navRoot.childNodes.length; i++) 
		{
			node = navRoot.childNodes[i];
			
			
			if (node.nodeName=="LI")
			{
				node.onmouseover=function() 
				{
					this.className+=" over";
				}				
				
				node.onmouseout=function() 
				{
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
	*/
}

function showDetail(node)
{
	var x=node.parentNode.parentNode;
	if (x)x.className='product_show';
}

function hideDetail(node)
{
	var x=node.parentNode.parentNode;
	if (x)x.className='product_holder';
}