/*
Random Image Link Script- By JavaScript Kit(http://www.javascriptkit.com) 
Over 200+ free JavaScripts here!
Updated: 00/04/25
*/

function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="images/top_image_dvf.jpg"
myimages[2]="images/top_image_dvm.jpg"

//specify corresponding links below
var imagelinks=new Array()
imagelinks[1]="products/video/dvf.htm"
imagelinks[2]="products/video/dvm.htm"

var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<a href='+'"'+imagelinks[ry]+'"'+'><img src="'+myimages[ry]+'" alt="'+'New Product'+'" border=0 /></a>')
}
random_imglink()
