// JavaScript Document
function random_imglink(){
var myimages=new Array()
var myalts=new Array()
//specify random images below. You can have as many as you wish
//start with zero NOT one
//myalts must be equal and corresponding to myimages

myimages[0]="/prelaw/images/random/FLfullcourt2004_121688x.jpg"
myimages[1]="/prelaw/images/random/fullcourt21688x.jpg"
myimages[2]="/prelaw/images/random/supremecourt2_big21688x.jpg"

myalts[0]="The Florida Supreme Court"
myalts[1]="The Supreme Court of the United States immediately prior to the death of Chief Justice Rehnqist and the retirement of Justice O’Connor, and their replacement by Chief Justice Roberts and Justice Alito."
myalts[2]="Supreme Court"


var ry=Math.floor(Math.random()*myimages.length)

document.write('<img src="'+myimages[ry]+'" alt="'+myalts[ry]+'" border="0">')
}

function random_imglink2(){
var myimages=new Array()
var myalts=new Array()
//specify random images below. You can have as many as you wish
//start with zero NOT one
myimages[0]="/prelaw/images/random/72xplaceholder.jpg"


myalts[0]="Buck-Morss"


var ry=Math.floor(Math.random()*myimages.length)

document.write('<img src="'+myimages[ry]+'" alt="'+myalts[ry]+'" border="0">')
}

function random_imglink3(){
var myimages=new Array()
var myalts=new Array()
//specify random images below. You can have as many as you wish
//start with zero NOT one
myimages[0]="/prelaw/images/random/72xplaceholder.jpg"


myalts[0]="Gramsci"


var ry=Math.floor(Math.random()*myimages.length)

document.write('<img src="'+myimages[ry]+'" alt="'+myalts[ry]+'" border="0">')
}

function random_imglink4(){
var myimages=new Array()
var myalts=new Array()
//specify random images below. You can have as many as you wish
//start with zero NOT one
myimages[0]="/prelaw/images/random/72xplaceholder.jpg"


myalts[0]="Ross"


var ry=Math.floor(Math.random()*myimages.length)

document.write('<img src="'+myimages[ry]+'" alt="'+myalts[ry]+'" border="0">')
}