


/***********************************************
* Fading Ticker Tape Script- © Dynamic Drive (www.dynamicdrive.com)
* This notice must stay intact for use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/

//default speed is 10 seconds, Change that as desired
var speed=10000

var news=new Array()
news[0]="This is an absolutely fantastic event that the students really enjoy.  But more importantly it contributes significantly to raising the skills and aspirations of our young people to go on and build a vibrant North East Economy.<br><b>Gary Groom, Principle, Redcar and Cleveland College.</b>"
news[1]="The Working Knowledge Group student events offer a thoroughly rewarding experience. Being able to interact with such enthusiastic and energetic students was refreshing for me and it was great to feel that my experience may have been of benefit to them.<br><b>Clive John, Head of Lloyds Development Capital.</b>"
news[2]="One of the most fulfilling activities that I've participated in during my career to date.  I would like to be involved again.<br><b>Lesley Walker - Business Gateway</b>"
news[3]="It was really encouraging to find such enthusiastic and innovative approaches from such a wide variety of people.<br><b>Sir Robin Young - Former Permanent Secretary to the DTI</b>"
news[4]="I had a very enlightening and rewarding day offering my help as a 'People Expert'. I really enjoyed the day although it was quite mentally tiring - in fact I had such a good time that I offered to help out again. It was also good to network with the other 'experts'.<br><b>Julie Dawson, Consultant, Drury PSM</b>"
news[5]="I think this is a terrific event for all involved, and very well organised- thanks for inviting me.<br><b>Jackie Colligan, Co Founder, Silk Road</b>"
news[6]="This was a really interesting and enjoyable day for all concerned, it was great to have the opportunity to step outside the normal working day and engage with such fresh young eager minds. It was great to see how seriously they all took all aspects of the challenge they were set and to see how much they got of the experience. There were added benefits of engaging and networking with fellow 'experts' too.<br><b>Jonathon Smith, Business Development Director, CS Communicate</b>"
news[7]="Thanks for having me as one of your judges. I enjoyed the experience thoroughly. The event was well organised and I think very beneficial to the students.<br><b>Arjan Overwater, Managing Director, Future Considerations</b>" 
//expand or shorten this list of messages as desired

var fadescheme=1 //set 0 to fade bgcolor from (white to black), 1 for (black to white)
var hex=(fadescheme==1)? 255 : 0
var startcolor=(fadescheme==1)? "rgb(255,255,255)" : "rgb(0,0,0)"
var endcolor=(fadescheme==0)? "rgb(0,0,0)" : "rgb(255,255,255)"
var frame=20;

var ie=document.all
var ns6=document.getElementById
var ns4=document.layers

i=0
tickerobject=ie? subtickertape: ns6? document.getElementById("subtickertape") : document.tickertape.document

function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers)
setTimeout("window.onresize=regenerate",1000)
}

function bgcolorfade() {	         	
// 20 frames fading process
if(frame>0) {	
hex=(fadescheme==0)? hex-12 : hex+12 // increase or decrease color value depd on fadescheme
tickerobject.style.backgroundColor="rgb("+hex+","+hex+","+hex+")"; // Set color value.
frame--;
setTimeout("bgcolorfade()",20);	
}
else{
tickerobject.style.backgroundColor=endcolor;
frame=20;
hex=(fadescheme==1)? 255 : 0
}   
}

function updatecontent(){
if (ie||ns6)
bgcolorfade()
if (ns4){
tickerobject.subtickertape.document.write('<span class="subtickertapefont">'+news[i]+'</span>')
tickerobject.subtickertape.document.close()
}
else 
tickerobject.innerHTML=news[i]

if (i<news.length-1)
i++
else
i=0
setTimeout("updatecontent()",speed)
}

