﻿// JScript 文件

document.writeln("<table width='970' border='0' align='center' cellpadding='0' cellspacing='0' class='Header'>");
document.writeln("<tr><td class='Logo'><img src='/images/Logo.png' alt='杭州中科微电子有限公司' border='0' title='杭州中科微电子有限公司' /></td><td width='32'><a href='/html/about/job/index.html'><img src='/images/Msn.png' alt='人才招聘' border='0' /></a></td> <td width='31'> <a href='mailto:sales@casic.ac.cn'><img src='/images/Email.png' alt='Email' border='0' /></a></td> <td width='42'><a href='/en/'><img src='/images/En.png' alt='英文版' border='0' /></a></td></tr>");
document.writeln("</table>");
document.writeln("<table width='970' border='0' align='center' cellpadding='0' cellspacing='0'>");
document.writeln("<tr><td class='MenuBg'><a id='a_about' href='/html/about/' title='关于我们' class='' >关于我们</a> <a id='a_news' href='/html/news/' title='新闻与活动' class='' >新闻与活动</a> <a id='a_down' href='/html/down/' title='资料' class='' >资料</a> <a id='a_product' href='/html/product/p/' title='产品与方案' class='' >产品与方案</a> <a id='a_index' href='/' title='首页' class='' > 首页</a></td></tr>");
document.writeln("</table>");

function menuTop()
{
    var url=window.location.href;
    url=url.toLowerCase();
    
    document.getElementById("a_about").className = "";
    document.getElementById("a_news").className = "";
    document.getElementById("a_down").className = "";
    document.getElementById("a_product").className = "";
    document.getElementById("a_index").className = "";
    
    if(url.indexOf("/html/about/")>-1)
    {
        document.getElementById("a_about").className = "MenuLink";
    }
    else if(url.indexOf("/html/news/")>-1)
    {
        document.getElementById("a_news").className = "MenuLink";
    }
    else if(url.indexOf("/html/down/")>-1)
    {
        document.getElementById("a_down").className = "MenuLink";
    }
    else if(url.indexOf("/html/product/")>-1)
    {
        document.getElementById("a_product").className = "MenuLink";
    }
    else
    {
        document.getElementById("a_index").className = "MenuLink";
    }
}





