
function rotateQuotes() {
  var q = rotateQuotes.quotes;
  q = q[Math.floor(Math.random() * q.length)];
  var tr = document.getElementById("textrotator_large");
  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: 4000,
    runAfter: uf
  });
}

rotateQuotes.quotes = [

  	"<img src='/images/home_main_rotate/1.jpg' width='654' height='327'>",
  	"<img src='/images/home_main_rotate/2.jpg' width='654' height='327'>",
  	"<img src='/images/home_main_rotate/3.jpg' width='654' height='327'>",
  	"<img src='/images/home_main_rotate/4.jpg' width='654' height='327'>",
  	"<img src='/images/home_main_rotate/5.jpg' width='654' height='327'>",
	"<img src='/images/home_main_rotate/6.jpg' width='654' height='327'>",
	"<img src='/images/home_main_rotate/7.jpg' width='654' height='327'>",
	"<img src='/images/home_main_rotate/8.jpg' width='654' height='327'>",
	"<img src='/images/home_main_rotate/9.jpg' width='654' height='327'>",
	"<img src='/images/home_main_rotate/10.jpg' width='654' height='327'>",
	"<img src='/images/home_main_rotate/11.jpg' width='654' height='327'>",
	"<img src='/images/home_main_rotate/12.jpg' width='654' height='327'>",
	"<img src='/images/home_main_rotate/13.jpg' width='654' height='327'>",
	"<img src='/images/home_main_rotate/14.jpg' width='654' height='327'>",
	"<img src='/images/home_main_rotate/15.jpg' width='654' height='327'>",
	"<img src='/images/home_main_rotate/16.jpg' width='654' height='327'>",
	"<img src='/images/home_main_rotate/17.jpg' width='654' height='327'>",
	"<img src='/images/home_main_rotate/18.jpg' width='654' height='327'>",
	"<img src='/images/home_main_rotate/19.jpg' width='654' height='327'>"
  
];

rotateQuotes();
