// JavaScript Document

function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="http://www.heartspring.org/home/parentweekend.jpg"

//specify corresponding links below
var imagelinks=new Array()
imagelinks[1]="http://www.heartspring.org/school/parentweekend.php"

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()

/*
Random Image Link Script- By JavaScript Kit(http://www.javascriptkit.com) 
http://www.javascriptkit.com/script/cut144.shtml
Updated: 00/04/25
*/
