// 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/songwritersstudionet_468x60.gif"
myimages[2]="http://mixedmonthly.com/store/images/banners/songwritersstudionet_468x60.gif"
myimages[3]="http://mixedmonthly.com/store/images/banners/whitedoveint_468x60.gif"
myimages[4]="http://mixedmonthly.com/store/images/banners/whitedoveint_468x60.gif"
myimages[5]="http://mixedmonthly.com/store/images/banners/wisdomrecords_468x60.gif"
myimages[6]="http://mixedmonthly.com/store/images/banners/wisdomrecords_468x60.gif"
myimages[7]="http://mixedmonthly.com/store/images/banners/vizbanner1.gif"
myimages[8]="http://mixedmonthly.com/store/images/banners/vizbanner1.gif"

//specify corresponding links below
var imagelinks=new Array()
imagelinks[1]="http://www.songwritersstudio.net"
imagelinks[2]="http://www.songwritersstudio.net"
imagelinks[3]="http://www.whitedovecorporation.com"
imagelinks[4]="http://www.whitedovecorporation.com"
imagelinks[5]="http://www.wisdomrecordssf.com"
imagelinks[6]="http://www.wisdomrecordssf.com"
imagelinks[7]="http://www.vizionaree.net"
imagelinks[8]="http://www.vizionaree.net"

var ry=Math.floor((Math.random()*9)+1)
if (ry==0)
ry=1
document.write('<a href='+'"'+imagelinks[ry]+'"'+' target="_blank"><img src="'+myimages[ry]+'" border=0 ></a>')
}
random_imglink()