var imagenumber = 7;
var randomnumber = Math.random() ;
var rand1 = Math.round( (imagenumber-1) * randomnumber) + 1 ;
images = new Array
<!--Indicate what image will be displayed on home page. You must comment out all other lines with this> <!--
images[1] = "tuition.jpg"
images[2] = "rankings2008.jpg"
images[3] = "right_time1.jpg"
images[4] = "right_time2.jpg"
images[5] = "right_time3.jpg"
images[6] = "right_time5.jpg"
images[7] = "openhouse_2010.jpg"

var image = images[rand1] 
<!-- Use "images[rand1]" to rotate through all images.  -->
links = new Array
links[1] = "http://www.cooley.edu/prospective/tuitioncalc.html"
links[2] = "http://www.cooley.edu/rankings/index.htm"
links[3] = "http://www.cooley.edu/prospective/index.html"
links[4] = "http://www.cooley.edu/prospective/index.html"
links[5] = "http://www.cooley.edu/prospective/index.html"
links[6] = "http://www.cooley.edu/prospective/index.html"
links[7] = "http://www.cooley.edu/prospective/openhouse.html"
// -- End Hiding Here -->
var link = links[rand1]