var hexinput1=113  // Initial color value.
var hexinput2=8
var hexinput3=8

var inc=0 //increment variable

function fadingtext(){	   



if (hexinput1<255 || hexinput2<255 || hexinput3<255) {	
hexinput1+=11;
hexinput2+=11;
hexinput3+=11;// increase color value
document.getElementById("fader").style.color="rgb("+hexinput1+","+hexinput2+","+hexinput3+")"; // Set color value.
setTimeout("fadingtext()",50);	
}
else {
hexinput1=113 ; // Initial color value.
hexinput2=8;
hexinput3=8;
}
}
//alert("hex1=" + hexinput1 + "hex2=" + hexinput2 + "hex3=" + hexinput3);
/*}
else 
hexinput1=113 ; // Initial color value.
hexinput2=8;
hexinput3=8;
}
*/
function changetext(){
if (!document.getElementById) return
var inc=Math.floor(Math.random()*12);

if (inc==0) {
document.getElementById("fader").innerHTML="\"The feedback from the whole event has been very positive. People were truly impressed by your performance!\"<br /><div id=\"topquote_sub\">Kate Stump, Samsung, London</div>"
}

if (inc==1) {
document.getElementById("fader").innerHTML="\"We are still talking about the fantastic entertainment you provided\"<br /><div id=\"topquote_sub\">Alison Manuel, Montanaro Investment Managers Ltd. London</div>"
}
if (inc==2) {
document.getElementById("fader").innerHTML="\"Without exception, our members thought you were stunning!\"<br /><div id=\"topquote_sub\">Graham Roads, Win G.C. Winchester</div>"
}
if (inc==3) {
document.getElementById("fader").innerHTML="\"After you left I overheard many conversations of clients discussing their amazement.\" <br /><div id=\"topquote_sub\">Emma Rolfe, Account Executive ProMotions, Oxford</div>"
}

if (inc==4) {
document.getElementById("fader").innerHTML="\"Judging from the responses from our customers since our return, everyone thoroughly enjoyed your show\" <br /><div id=\"topquote_sub\">Geoff Costigan, Sales Director, Sony UK</div>"
}
if (inc==5) {
document.getElementById("fader").innerHTML="\"Marc Paul is at the very top of his chosen profession\"<br /><div id=\"topquote_sub\">Review of Marc's theatre show by Richard Stupple for ABRA magazine</div>"
}


if (inc==6) {
document.getElementById("fader").innerHTML="\"Impressively managed to silence a host of sceptics...\"<br /><div id=\"topquote_sub\">Review of Marc's theatre show by Joe Sweeney for The Express and Star, Wolverhampton</div>"
}
if (inc==7) {
document.getElementById("fader").innerHTML="\"The client was absolutely delighted with Marc Paul last night.\"<br /><div id=\"topquote_sub\">Feedback via Viki Sever at JBA International</div>"
}
if (inc==8) {
document.getElementById("fader").innerHTML="\"It is Mr Paul's ability to invoke the 'wow' factor in his audience... that confirms him as something special\"<br /><div id=\"topquote_sub\">Dave Cauley, NLP Master Practitioner, Portsmouth</div>"
}

if (inc==9) {
document.getElementById("fader").innerHTML="\"Marc Paul was, in a word...'Awesome'\"<br /><div id=\"topquote_sub\">Review by Simon Shaw, Ipswich</div>"
}
if (inc==10) {
document.getElementById("fader").innerHTML="\"You had everyone 'believing' by the end of the evening!\"<br /><div id=\"topquote_sub\">Claire Gill, ProMotions, Oxford</div>"
}
if (inc==11) {
document.getElementById("fader").innerHTML="\"To say that we were impressed really is an understatement.\"<br /><div id=\"topquote_sub\">Anya Thomson, Night Train Productions, Edinburgh</div>"
}


//inc=inc+1;
fadingtext()
setTimeout("changetext()",8000)
}

window.onload=changetext


