<!--
document.write("<script type='text/javascript' src='/js/search.js'></script>");

var str = "<table  width='632' height='30' border='0' cellpadding='0' cellspacing='0'>" +
              "<tr id='navigates'>" +
                "<td><img onclick='setHref(\"/\")'     style='cursor:hand;' id='navigate1' src='/images/a_01.gif' width='41' height='30' alt=''></td>" +
                "<td><img onclick='setHref(\"/zrzc\")' style='cursor:hand;' id='navigate2' src='/images/a_02.gif' width='71' height='30' alt=''></td>" +
                "<td><img onclick='setHref(\"/rdjg\")' style='cursor:hand;' id='navigate3' src='/images/a_03.gif' width='70' height='30' alt=''></td>" +
                "<td><img onclick='setHref(\"/fzsc\")' style='cursor:hand;' id='navigate4' src='/images/a_04.gif' width='70' height='30' alt=''></td>" +
                "<td><img onclick='setHref(\"/jdjc/gzjd\")' style='cursor:hand;' id='navigate5' src='/images/a_05.gif' width='70' height='30' alt=''></td>" +
                "<td><img onclick='setHref(\"/zdsxjd\")' style='cursor:hand;' id='navigate6' src='/images/a_06.gif' width='97' height='30' alt=''></td>" +
                "<td><img onclick='setHref(\"/rsrm\")' style='cursor:hand;' id='navigate7' src='/images/a_07.gif' width='69' height='30' alt=''></td>" +
                "<td><img onclick='setHref(\"/jjdb\")' style='cursor:hand;' id='navigate8' src='/images/a_08.gif' width='71' height='30' alt=''></td>" +
                "<td><img onclick='setHref(\"/hdcy/InteraPar.html\")' style='cursor:hand;' id='navigate9' src='/images/a_09.gif' width='73' height='30' alt=''></td>" +
              "</tr>" +
          "</table>";


document.write(str);

var pathname =  window.location.pathname.substr(1);
pathname = pathname.indexOf("/") == -1 ? "index" : pathname.substr(0,pathname.indexOf("/"));
if(pathname.length < 2) pathname = "index";

switch(pathname.toLowerCase()){
    case "index":
    {
        Navigate(1);
        break;
    }
    case "zrzc":
    {
        Navigate(2);
        break;
    }  
    case "rdjg":
    {
        Navigate(3);
        break;
    } 
    case "fzsc":
    {
        Navigate(4);
        break;
    } 
    case "jdjc":
    {
        Navigate(5);
        break;
    } 
    case "zdsxjd":
    {
        Navigate(6);
        break;
    } 
    case "rsrm":
    {
        Navigate(7);
        break;
    } 
    case "jjdb":
    {
        Navigate(8);
        break;
    } 
    case "hdcy":
    {
        Navigate(9);
        break;
    } 
}

function Navigate(index)
{    
    var dom = document.getElementById("navigate"+index);
    dom.setAttribute("src",dom.getAttribute("src").replace("a_","b_"));
}

function setHref(url){
    window.location.href = url;
}


-->

