function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="http://edccomp.com/banner/ubnt.png"
myimages[2]="http://edccomp.com/banner/nanostation2.png"

//specify corresponding links below
var imagelinks=new Array()
imagelinks[1]="http://edccomp.com/32-ubiquiti-product-s"
imagelinks[2]="http://edccomp.com/ubiquiti-80211-a-b-g-product-s/232-nanostation-2.html"

var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<a href='+'"'+imagelinks[ry]+'"'+'><img src="'+myimages[ry]+'" style="padding-left:2px" border=0></a>')
}
random_imglink()
