function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="./i/home-online-order-management.gif"
myimages[2]="./i/home-quality-service.gif"
myimages[3]="./i/home-superior-customer-support.gif"
myimages[4]="./i/home-thinking-outside-the-box.gif"
myimages[5]="./i/home-we-are-your-partner.gif"
myimages[6]="./i/home-working-together-success.gif"
var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<img src="'+myimages[ry]+'" border=0>')
}
random_imglink()