﻿// JScript 文件
 function changeImage(id)
{
//    var divLeftImagesObj=document.getElementById('divLeftImages');
//    if(divLeftImagesObj)
//    {
//        var divList=divLeftImagesObj.getElementsByTagName('div');
//        for(var i=0;i<divList.length;i++)
//        {
//            if(divList[i].id!="")
//            {
//                var currDivObj=document.getElementById(divList[i].id);
//                if(id==divList[i].id)
//                {
//                   
//                    currDivObj.style.background='url(images/LD_index_4.jpg) no-repeat';
//                }
//                else
//                {
//                      currDivObj.style.background='url(images/LD_index_3.jpg) no-repeat';
//                }
//            }
//        }
//    }
    var currentDiv=document.getElementById(id);
//    currentDiv.style.background='url(images/LD_index_4.jpg) no-repeat';
    var str=id.split('_');
    var divIndexImageObj=document.getElementById('divIndexImage');
    divIndexImageObj.style.background='url(images/copy_LD_index_Advertising_'+str[1]+'.jpg) no-repeat';
    var divIndexImageLinkObj=document.getElementById('divIndexImageLink');
    
    var changeImageBox=document.getElementById('changeImageBox');
    var j=0;
    for(var i=0;i<changeImageBox.childNodes.length;i++)
    {
        if(changeImageBox.childNodes[i].tagName=='A' || changeImageBox.childNodes[i].tagName=='a')
        {
            changeImageBox.childNodes[i].style.borderColor="#d5d4d2";
            j++;
            if(j==str[1])
            {
                changeImageBox.childNodes[i].style.borderColor="#ef0101";
            }
        }
    }
 
    if(str[1]=="1")
    {
     divIndexImageLinkObj.href='LanDeAboutUs.aspx';
//     divIndexImageLinkObj.style.height='27px';
//     divIndexImageLinkObj.style.width='98px';
//     divIndexImageLinkObj.style.display='block';
//     divIndexImageLinkObj.style.marginLeft='45px';//'372px';
//     divIndexImageLinkObj.style.marginTop='216px';//'230px';
     
     //changeImageBox.style.marginTop='10px';
    }
    else if(str[1]=="2")
    {
     divIndexImageLinkObj.href='LanDeResolvent.aspx';
//     divIndexImageLinkObj.style.height='27px';
//     divIndexImageLinkObj.style.width='98px';
//     divIndexImageLinkObj.style.display='block';
//     divIndexImageLinkObj.style.marginLeft='80px';//'115px';
//     divIndexImageLinkObj.style.marginTop='228px';//'150px';
     
     //changeImageBox.style.marginTop='2px';
    }
    else if(str[1]=="3")
    {
     divIndexImageLinkObj.href='LanDeERP.aspx';
//     divIndexImageLinkObj.style.height='27px';
//     divIndexImageLinkObj.style.width='98px';
//     divIndexImageLinkObj.style.display='block';
//     divIndexImageLinkObj.style.marginLeft='557px';//'115px';
//     divIndexImageLinkObj.style.marginTop='212px';//'150px';
     
     //changeImageBox.style.marginTop='20px';
    }
    else
    {
     divIndexImageLinkObj.href='LanDeWebPrint.aspx';
//     divIndexImageLinkObj.style.height='27px';
//     divIndexImageLinkObj.style.width='98px';
//     divIndexImageLinkObj.style.display='block';
//     divIndexImageLinkObj.style.marginLeft='45px';//'32px';
//     divIndexImageLinkObj.style.marginTop='220px';//'214px';
     
     //changeImageBox.style.marginTop='11px';
    }
}

