<!--

/*
Random Image Link Script- By JavaScript Kit(http://www.javascriptkit.com) 
Over 200+ free JavaScripts here!
Updated: 00/04/25
7/2003 Modified for use in CSB and Trellix by Samantha Conway and also  to define target window and remove dotted line
MUST change gEMDIR to GEMDIR before using code!!!
*/

function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="images/cau.jpg"
myimages[2]="images/independ.jpg"
myimages[3]="images/irisglen.jpg"
myimages[4]="images/cherry.jpg"
myimages[5]="images/columbus.jpg"


//specify corresponding links below
var imagelinks=new Array()
imagelinks[1]="case-studies/higher-education/clark-atlanta-university.html"
imagelinks[2]="case-studies/k-12/independence-schools.html"
imagelinks[3]="case-studies/renewable-energy/iris-glen.html"
imagelinks[4]="case-studies/government/federal/cherry-point2.html"
imagelinks[5]="case-studies/healthcare/columbus-regional.html"


var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<a href='+'"'+imagelinks[ry]+'"'+' target="_self" onfocus="this.blur()" '+'><img src="'+myimages[ry]+'" alt="ESG Customer Spotlights" border=0></a>')
}
random_imglink()
//-->
