function go_to(ao, count, pname, cname)
{
	for(var i=1;i<=count;i++)
	{
		if(ao==i)
		{
			document.getElementById(pname + i).className="selected";
			document.getElementById(cname + i).style.display="";
		}
		else
		 {
			document.getElementById(pname + i).className="";
			document.getElementById(cname + i).style.display="none";
		}
	}
}

/* 导航菜单 */
var subMenuCounts = 4;
function selMenu(sub)
{
    for(i = 0; i<= subMenuCounts; i++)
    {
        if(sub != i)
        {
            document.getElementById("subMenu" + i).className = "unSelectedNav";
        }
        else
        {
            document.getElementById("subMenu" + i).className = "selectedNav";
        }
    }
}

/* 加入收藏 */
function JSAddFavorite(FavName, FavUrl)
{
    if ( window.sidebar && "object" == typeof( window.sidebar ) && "function" == typeof( window.sidebar.addPanel ) )
    {
        //  firefox
        window.sidebar.addPanel( FavName, FavUrl, '' );
    }
    else if ( document.all && "object" == typeof( window.external ) )
    {
        //  ie
        window.external.addFavorite(FavUrl, FavName );
    }
}

/* 设为首页 */
function mh()
{
	if (!makehome.isHomePage('http://www.artyoo.cn/'))
	{
		document.write("<a href=\"http://www.artyoo.cn/\" onclick=\"style.behavior='url(#default#homepage)';setHomePage('http://www.artyoo.cn/');return false;\"><strong>设为首页</strong></a>");
	}
}