// Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/
var thissize=9
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"

var message = new Array()
message[0]="<i>‘Thank you to the organisation and staff for a most wonderful,<br>professional and rewarding experience – well done!’</i><br><b>(Malcolm Boyd, Dunbar Stewart Pty Ltd)</b>"
message[1]="<i>‘A wonderful experience, relevant material,<br>the best organised conference I have ever attended.’</i><br><b>(Jan Cullis, The Bronte Foundation)</b>"
message[2]="<i>‘I found the overall conference to be very rewarding and valuable.<br>It was very well presented, professional and organised.’</i><br><b>(Laura Hopkins, North Australian Aboriginal Legal Aid Service, Darwin)</b>"
message[3]="<i>‘Great experience – will definitely benefit our organisation.’</i><br><b>(David Peterson, St Lukes Anglicare)</b>"
message[4]="<i>‘Very, very well done.<br>Best three days I have ever spent at a conference.’</i><br><b>(Kevin Crestly, Gawith Villa Inc)</b>"
message[5]="<i>‘Extremely professional, well organised,<br>outstanding speakers, excellent format.’</i><br><b>(Jan Owen, SVA)</b>"
message[6]="<i>‘This has been one of the best conferences I have ever attended.<br>I am re-energised and motivated.’</i><br><b>(John Winkett, Charities Aid Foundation) </b>"

var i_blurstrength=10
var i_message=Math.round(Math.random()*6);
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='visibility:visible;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()",60)
}
else {
if (i_textcolor >=textcolor.length-1) {i_textcolor=textcolor.length-1}
blurthis.innerHTML="<span id='blurit1' style='visibility:visible;filter:blendTrans(duration=4.2);font-family:"+textfont+";font-size:"+thissize+"pt;color:000000'>"+message[i_message]+"</span>";
i_message=Math.round(Math.random()*6);
if (i_message>=message.length){i_message=0}
i_blurstrength=20
i_textcolor=0
clearTimeout(timer)
var timer=setTimeout("blurtext()",6000)
}
}	
}