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

