<!--
  var currentdate = 0;
  var core = 0;
  function StringArray (n) {
    this.length = n;
    for (var i =0; i < n; i++) {
      this[i] = 'images/foto'+i+'.jpg';
    }
  }
  image = new StringArray(12);
  var ran = 60/image.length;

  function ranimage() {
    currentdate = new Date();
    core = currentdate.getSeconds();
    core = Math.floor(core/ran);
    return(image[core]);
  }
  document.write("<a href='faq.html' target='_blank'><img src='" +ranimage()+ "' alt='DebCred - Sistema de gestão empresarial ERP organiza informações de vendas, CRM, contabilidade, fiscal, finanças, ativo fixo, PCP, produção, MRP, estoques, engenharia, custos, BI business intelligence.' border=0></a>");
