// JavaScript Document
/*
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]="http://mixedmonthly.com/store/images/banners/mixedmonthly_468x60.gif"
myimages[2]="http://mixedmonthly.com/store/images/banners/mixedmonthly_468x60.gif"
myimages[3]="http://mixedmonthly.com/store/images/banners/vizbanner1.gif"
myimages[4]="http://mixedmonthly.com/store/images/banners/vizbanner1.gif"

//specify corresponding links below
var imagelinks=new Array()
imagelinks[1]="http://www.mixedmonthly.com"
imagelinks[2]="http://www.mixedmonthly.com"
imagelinks[3]="http://www.vizionaree.net"
imagelinks[4]="http://www.vizionaree.net"

var ry=Math.floor((Math.random()*3)+1)
if (ry==0)
ry=1
document.write('<span class="banner"><a href='+'"'+imagelinks[ry]+'"'+' target="_blank"><img src="'+myimages[ry]+'" border=0></a></span>')
}
random_imglink()