// JavaScript Document

<!--

/*
Random Image Link Script- 
*/

function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="featureimages/12pm.jpg"
myimages[2]="featureimages/ceo.jpg"
myimages[3]="featureimages/cwa.jpg"
myimages[4]="featureimages/smoke-free.jpg"


//specify corresponding links below
var imagelinks=new Array()
imagelinks[1]="http://canadacollege.edu/news/stories/waitlist.html"
imagelinks[2]="features/ceo.html"
imagelinks[3]="features/cwa.html"
imagelinks[4]="features/smoke-free.html"


var text=new Array()
text[1]="<h1>Adding a Class for Spring Semester? Remember to Pay Your Fees</h1>If you are adding a class for spring semester you need to pay your fees by midnight the same day or you'll be dropped."
text[2]="<h1>Ca&ntilde;ada Opens Center for Entrepreneurial Opportunities</h1>The center is designed to help small business owners in San Mateo County."
text[3]="<h1>Ca&ntilde;ada Offers New Program for Working Adults</h1>Ca&ntilde;ada College has a new program to help working adults earn an associate degree in three years while attending classes on Thursday nights and Saturdays."
text[4]="<h1>Ca&ntilde;ada Is a Smoke Free Campus</h1>Smoking and tobacco are prohibited on on the Ca&ntilde;ada College campus."


var click="<p><font color='#00FF00'>Click here to learn more"


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>')
document.write(text[ry])
document.write('<a href='+'"'+imagelinks[ry]+'"'+'><p>Click here to learn more</font></p>')
}
random_imglink()
//-->
