
function rotateQuotes3() {
  var q = rotateQuotes3.quotes;
  q = q[Math.floor(Math.random() * q.length)];
  var tr = document.getElementById("textrotator3");
  var uf = unfade(tr, 8, 1, 0);
  tr.innerHTML = q;
  new TimeoutChainer({
    callback: function() {
      var f = fade(tr, 8, 1);
      new TimeoutChainer({
        callback: rotateQuotes3,
        runAfter: f
      });
    },
    delay: 20000,
    runAfter: uf
  });
}

rotateQuotes3.quotes = [

  	"<img src='/images/rotators/thumb/9.jpg' width='75' height='72'>",
  	"<img src='/images/rotators/thumb/10.jpg' width='75' height='72'>",
  	"<img src='/images/rotators/thumb/11.jpg' width='75' height='72'>",
	"<img src='/images/rotators/thumb/12.jpg' width='75' height='72'>"
  
];

rotateQuotes3();

