/*
Random Image Link Script- By Website Abstraction(http://www.wsabstract.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]="gifs/upco.gif"
myimages[2]="gifs/valleyvet.gif"
myimages[3]="gifs/synflex.jpg"
myimages[4]="gifs/carealot.jpg"
myimages[5]="gifs/jandj.jpg"
myimages[6]="http://www.petsmart.com/affiliate/images/125x125_10peroff50.gif"


//specify corresponding links below
var imagelinks=new Array()
imagelinks[1]="http://www.upco.com"
imagelinks[2]="http://www.valleyvet.com"
imagelinks[3]="http://www.activexamerica.com/at.cgi/180726/synflex/"
imagelinks[4]="http://www.carealotpets.com"
imagelinks[5]="http://www.jandjdog.com"
imagelinks[6]="http://service.bfast.com/bfast/click?bfmid=5327311&siteid=39073259&bfpage=offer21"

var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<a href='+'"'+imagelinks[ry]+'"'+'><img src="'+myimages[ry]+'" border=0></a>')
}
random_imglink()



