// JScript 文件
function welcome(){
    var now = new Date(),hour = now.getHours();
    if(hour < 6){document.write('凌晨好! ')}
    else if (hour < 9){document.write('早上好! ')}
    else if (hour < 12){document.write('上午好! ')}
    else if (hour < 14){document.write('中午好! ')}
    else if (hour < 17){document.write('下午好! ')}
    else if (hour < 19){document.write('傍晚好! ')}
    else if (hour < 22){document.write('晚上好! ')}
    else{document.write('夜里好! ')}
}
function selectSearchTag(nIndex){
    var tag = '0';
    if(index == 2) cat="vendor";
			if(index == 3)cat="article";
			document.getElementById('search_' + curSelected).className  = "";
			var elem = document.getElementById('search_' + cat)
			elem.className  = "selected";
			document.getElementById('search_type').value = index;
			curSelected = cat;
}
function displayItem(tag1, tag2, nIndex, nCount, defaultStyle, newStyle){
            for (nI =1; nI <= nCount; nI ++)
            {
                if (nI == nIndex)
                {
                    document.getElementById(tag1 + nI).className = newStyle;
                    document.getElementById(tag2 + nI).style.display = "block";
                }
                else
                {
                    document.getElementById(tag1 + nI).className = defaultStyle;
                    document.getElementById(tag2 + nI).style.display = "none";
                }
            }
}