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

