
function rotateQuotes() {
  var q = rotateQuotes.quotes;
  q = q[Math.floor(Math.random() * q.length)];
  var tr = document.getElementById("rotator_top");
  var uf = unfade(tr, 7, 1, 0);
  tr.innerHTML = q;
  new TimeoutChainer({
    callback: function() {
      var f = fade(tr, 7, 1);
      new TimeoutChainer({
        callback: rotateQuotes,
        runAfter: f
      });
    },
    delay: 2000,
    runAfter: uf
  });
}

rotateQuotes.quotes = [

  	"<img src='/images/home_rotate/1.jpg' width='450' height='286'>",
  	"<img src='/images/home_rotate/2.jpg' width='450' height='286'>",
  	"<img src='/images/home_rotate/3.jpg' width='450' height='286'>",
  	"<img src='/images/home_rotate/4.jpg' width='450' height='286'>",
  	"<img src='/images/home_rotate/5.jpg' width='450' height='286'>",
	"<img src='/images/home_rotate/6.jpg' width='450' height='286'>",
	"<img src='/images/home_rotate/7.jpg' width='450' height='286'>",
	"<img src='/images/home_rotate/8.jpg' width='450' height='286'>",
  	"<img src='/images/home_rotate/10.jpg' width='450' height='286'>"
];

rotateQuotes();
