// Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/
<!-- Beginning of JavaScript -
var thissize=11
var textfont="Verdana"

var textcolor= new Array()
textcolor[0]="EEEEEE"
textcolor[1]="DDDDDD"
textcolor[2]="CCCCCC"
textcolor[3]="AAAAAA"
textcolor[4]="888888"
textcolor[5]="666666"
textcolor[6]="555555"
textcolor[7]="444444"
textcolor[8]="333333"
textcolor[9]="222222"
textcolor[10]="111111"
textcolor[11]="000000"

var message = new Array()
// To create messages use the array bracket and number them serially e.g [1,2,3,4]
message[0]="<a href=http://www.run.edu.ng/STUDENT_HANDBOOK.pdf><img border=0 src=imagefiles/Student_handbook.jpg></a>"
message[1]="<a href=http://www.run.edu.ng/staff_handbook.pdf><img border=0 src=imagefiles/staff_handbook.jpg></a>"
message[2]="<a href=http://www.run.edu.ng/CRITERIA_FOR_APPT_&_PROMOTION_OF_ACAD2__STAFF.pdf><img border=0 src=imagefiles/Criteria_for_app&pro.gif></a>"

var i_blurstrength=20
var i_message=0
var i_textcolor=0

function blurtext() {		
if(document.all) {
if (i_blurstrength >=-2) {
if (i_textcolor >=textcolor.length-1) {i_textcolor=textcolor.length-1}
blurthis.innerHTML="<span id='blurpit1' style='position:relative;visibility:visible;width:200px;top:5px;left:2px;filter:blur(add=0,strength="+i_blurstrength+",direction=90);font-family:"+textfont+";font-size:"+thissize+"pt;color:"+textcolor[i_textcolor]+"'>"+message[i_message]+"</span>";
document.close()
i_blurstrength=i_blurstrength-2
i_textcolor++
var timer=setTimeout("blurtext()",120)
}
else {
if (i_textcolor >=textcolor.length-1) {i_textcolor=textcolor.length-1}
blurthis.innerHTML="<span id='blurit1' style='position:relative;visibility:visible;width:200px; top:5px;left:2px;filter:blendTrans(duration=4.2);font-family:"+textfont+";font-size:"+thissize+"pt;color:000000'>"+message[i_message]+"</span>";
i_message++
if (i_message>=message.length){i_message=0}
i_blurstrength=20
i_textcolor=0
clearTimeout(timer)
var timer=setTimeout("blurtext()",5000)
}
}	
}
// - End of JavaScript - -->