<!--

//configure the paths of the images, plus corresponding target links
slideshowimages("banner/LCD-ProArt.jpg","banner/NB_FA.jpg","banner/All-in-one_fa.jpg","banner/Epad.jpg","banner/LED-fa.jpg","banner/K series-fa.jpg")
slideshowlinks("product display.html","product notebook.html","product all-in-one.html","product epad.html","product display.html","product notebook.html")

//configure the speed of the slideshow, in miliseconds
var slideshowspeed=6000

var whichlink=0
var whichimage=0
function slideit(){
if (!document.images)
return
document.images.slide.src=slideimages[whichimage].src
whichlink=whichimage
if (whichimage<slideimages.length-1)
whichimage++
else
whichimage=0
setTimeout("slideit()",slideshowspeed)
}
slideit()

//-->


