﻿// JScript 文件
MainPageMenuSelect('sy');

function ShowDiv(obj)
{
    document.getElementById("hot_photo").style.display="none";
    document.getElementById("hot_mv").style.display="none";
    document.getElementById("photo_li").className="";
    document.getElementById("mtv_li").className="";
    
    if (obj=="hot_photo")
    {
        document.getElementById("photo_li").className="phb_h";
    }
    else
    {
        document.getElementById("mtv_li").className="phb_h";
    }
    document.getElementById(obj).style.display="inline";
}
