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';

    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=0 cellPadding=0 width='100%' border=0>");
document.write("<TR>");
document.write('<TD>&nbsp;&nbsp;&nbsp;<a href="products-tabletennis.html" target="_blank"><img src="pic/1.jpg" border="0" /></a></TD>');
document.write('<TD>&nbsp;&nbsp;&nbsp;<a href="products-volleyball.html" target="_blank"><img src="pic/2.jpg" border="0" /></a></TD>');
document.write('<TD>&nbsp;&nbsp;&nbsp;<a href="products-handball.html" target="_blank"><img src="pic/3.jpg" border="0" /></a></TD>');
document.write('<TD>&nbsp;&nbsp;&nbsp;<a href="products-tennis.html" target="_blank"><img src="pic/4.jpg" border="0" /></a></TD>');
document.write('<TD>&nbsp;&nbsp;&nbsp;<a href="products-tennis.html" target="_blank"><img src="pic/5.jpg" border="0" /></a></TD>');
document.write('<TD>&nbsp;&nbsp;&nbsp;<a href="products-tennis.html" target="_blank"><img src="pic/6.jpg" border="0" /></a></TD>');
document.write("</TR>");
document.write("</TABLE>");
marquee2(); 
document.write("</div>");