// JavaScript Document
var marquee = null;
function marquee1()                      
{                      
    document.write("<div style='width:100%;overflow:hidden;margin-top:10px' id='marquee' onmouseover='clearInterval(repeat)'    onmouseout=repeat=setInterval(scrollMarquee,1)>");
    marquee = document.getElementById("marquee");
}   
function marquee2()                      
{  
    document.write("</div>")  
    marquee.childNodes[0].align='left';
    //var tr = marquee.getElementsByTagName("tr");
    //alert(tr.childNodes[0]);

    marquee.appendChild(marquee.childNodes[0].cloneNode(true));

    repeat=setInterval(scrollMarquee,1);
}   

function scrollMarquee() {
    if(marquee.scrollLeft < marquee.childNodes[0].offsetWidth)
         marquee.scrollLeft++;
    else 
         marquee.scrollLeft=0;
    } 

document.write("<div id='f_img'>");
marquee1();
document.write("<TABLE cellSpacing=5 cellPadding=0 width='100%' border=1 bordercolor=\"D0A24C\">");
document.write("<TR>");

//以TD形式输出多张图片
document.write('<TD bordercolor="#D0A24C">&nbsp;<a href="/channel/enintro/" target="_blank"><img src="/images/sp_001.gif"/></a></TD>');
document.write('<TD bordercolor="#D0A24C">&nbsp;<a href="/channel/enintro/" target="_blank"><img src="/images/sp_002.gif"/></a></TD>');
document.write('<TD bordercolor="#D0A24C">&nbsp;<a href="/channel/enintro/" target="_blank"><img src="/images/sp_003.gif"/></a></TD>');
document.write('<TD bordercolor="#D0A24C">&nbsp;<a href="/channel/enintro/" target="_blank"><img src="/images/sp_004.gif"/></a></TD>');
document.write('<TD bordercolor="#D0A24C">&nbsp;<a href="/channel/enintro/" target="_blank"><img src="/images/sp_005.gif"/></a></TD>');
document.write('<TD bordercolor="#D0A24C">&nbsp;<a href="/channel/enintro/" target="_blank"><img src="/images/sp_006.gif"/></a></TD>');
//document.write('<TD>&nbsp;<a href="/images/product/JG1.gif" target="_blank"><img src="/images/product/jg1.gif"/></a><br/>金刚JG-010Y</TD>');
//document.write('<TD>&nbsp;<a href="/images/product/td1.gif" target="_blank"><img src="/images/product/td1.gif"/></a><br/>腾达TD-002Y</TD>');
//document.write('<TD>&nbsp;<a href="/images/product/td2.gif" target="_blank"><img src="/images/product/td2.gif"/></a><br/>腾达TD-005J</TD>');
//document.write('<TD>&nbsp;<a href="/images/product/td3.gif" target="_blank"><img src="/images/product/td3.gif"/></a><br/>腾达TD-007J</TD>');
//document.write('<TD>&nbsp;<a href="/images/product/tl1.gif" target="_blank"><img src="/images/product/tl1.gif"/></a><br/>腾龙J-001</TD>');
//document.write('<TD>&nbsp;<a href="/images/product/xtd2.gif" target="_blank"><img src="/images/product/xtd2.gif"/></a><br/>新腾达-009H</TD>');




document.write("</TR>");
document.write("</TABLE>");
marquee2(); 
document.write("</div>");