/* ***** Begin ***************************************************** */
function fadeObject(id, c1, c2, s1, s2) {
  var self = this;
  this.id      = id;
  this.elem    = false;
  this.colour  = {
    stt: [parseInt(c1.substr(0, 2), 16), parseInt(c1.substr(2, 2), 16), parseInt(c1.substr(4, 2), 16)],
    end: [parseInt(c2.substr(0, 2), 16), parseInt(c2.substr(2, 2), 16), parseInt(c2.substr(4, 2), 16)],
    now: [parseInt(c1.substr(0, 2), 16), parseInt(c1.substr(2, 2), 16), parseInt(c1.substr(4, 2), 16)]
  };
  this.steps   = [s1, s2];
  this.dir     = false;
  this.active  = false;
  this.queue   = [];
  this.msg     = [];
  this.message = 0;
  function d2h(num) {
    num = Math.round(num);
    return ((num < 16) ? "0" : "") + num.toString(16);
  }
  this.fade = function(message, direction) {
    this.elem = this.elem || document.getElementById(this.id);
    this.queue.push([message, direction]);
    for (var x = 0; x < this.queue.length; x++) {
      for (var y = x + 1; y < this.queue.length; y++) {
        if (this.queue[x][0] == this.queue[y][0] && this.queue[x][1] != this.queue[y][1]) {
          this.queue.splice(x, 1);
          this.queue.splice(y - 1, 1);
        }
      }
    }
    if (!this.active) setTimeout(function() { self.fadeLoop(); }, 10);
  };
  this.fadeLoop = function() {
    if (!this.active && this.queue.length) {
      if (this.dir && this.message != this.queue[0][0]) this.queue.unshift([this.message, false]);
      var msg = this.queue.shift();
      if (this.msg[msg[0]]) {
        this.active = true;
        this.elem.innerHTML = this.msg[this.message = msg[0]];
        this.dir = msg[1];
      }
    }
    if (this.dir) {
      var c1 = this.colour.stt, c2 = this.colour.end, s = this.steps[0];
    } else var c1 = this.colour.end, c2 = this.colour.stt, s = this.steps[1];
    for (var x = 0, cnow = "", inc = 0; x < 3; x++) {
      this.colour.now[x] += inc = (c2[x] - c1[x]) / s;
      cnow += this.colour.now[x] = (inc < 0) ? Math.max(this.colour.now[x], c2[x]) : Math.min(this.colour.now[x], c2[x]);
    } this.elem.style.color = "#" + d2h(this.colour.now[0]) + d2h(this.colour.now[1]) + d2h(this.colour.now[2]);
    if (cnow == c2.join("")) {
      this.active = false;
      if (!this.queue.length) {
        if (!this.dir) {
          if (this.msg[0]) {
            this.queue.push([0, true]);
            setTimeout(function() { self.fadeLoop(); }, 10);
          } else this.elem.innerHTML = "&nbsp;";
        }
      } else setTimeout(function() { self.fadeLoop(); }, 10);
    } else setTimeout(function() { self.fadeLoop(); }, 10);
  };
  if (window.addEventListener) {
    window.addEventListener('load', function() { self.fade(0, true); }, false); 
  } else if (window.attachEvent)
    window.attachEvent('onload', function() { self.fade(0, true); });
}
/* ***** End ******************************************************* */
var fader = new Array();
	var hash = new Array();
	function throb(item) {

	  if (!hash[item]) hash[item] = 2;
	  fader[item].fade(Math.floor(hash[item] / 2), !(hash[item] % 2));
	  setTimeout(function() { throb(item); }, (hash[item] % 2) ? 100 : 5000);
	  if (++hash[item] > fader[item].msg.length * 2 - 1) hash[item] = 2;
	}

	fader[2] = new fadeObject('fade2', 'e6e6fa', '000000', 30, 30);
	fader[2].msg[5] = "Wow! What an Extraordinary speaker! Thanks very much for the excellent session you gave us this morning! - Kevin Smith Select Network Romford";
	fader[2].msg[6] = "Im sure many, including me, will adopt your F.O.C.U.S. strategy! - Jane Beales M.IoD Associate Director LFC Insurance";
	fader[2].msg[7] = "I came away from hearing you speaking with great inspiration for my business! - Liz Rochester Bit2Flash                         ";
	fader[2].msg[8] = "I particularly liked the fact that I went away with a few simple but essential and easy to remember tips - Rob Ivory Alton8 Ltd";
	fader[2].msg[9] = "Good to have met you on Friday, your talk was thought provoking and enjoyable - Simon Bell Select Network Colchester";
        fader[2].msg[2] = "We were all totally engaged and it was great to be made to laugh and think and to come away with practical tools to use straight away - Julia Curle Financial Associates ";
	fader[2].msg[1] = "The hour just whizzed by as we learnt about F.O.C.U.S and how to set our minds to get the desired outcome for our business - Gill Tiney Steps to Success";
	fader[2].msg[3] = "I was really impressed by the way he made me identify my key personality strengths and weaknesses - Ismael van der Schyff Nsquared Creations Ltd";
	fader[2].msg[4] = "I think Paul's talk probably packed more caffeine than the hotel coffee, I left the breakfast meeting and really hit the ground running! - Nigel Gibb Offsite Digital";
	fader[2].msg[10] = "Paul’s F.O.C.U.S sales seminar was easy to understand, very clear and concise and made a lot of sense. I could have spent a lot longer listening to Paul who delivers his message in a friendly and relaxed way. Well done Paul – keep up the good work. - Alan Brown Senior Partner Brown & Tiney";



// Start this fader
	setTimeout(function() { throb(2); }, 1000);
