var c = 1;

/* Preloading images */
theImages = new Array();

theImages[1] = new Image();
theImages[1].src = "/images/logos/bacardi.jpg";
theImages[2] = new Image();
theImages[2].src = "/images/logos/bally.jpg";
theImages[3] = new Image();
theImages[3].src = "/images/logos/bic.jpg";
theImages[4] = new Image();
theImages[4].src = "/images/logos/bmg.jpg";
theImages[5] = new Image();
theImages[5].src = "/images/logos/cardenas.jpg";
theImages[6] = new Image();
theImages[6].src = "/images/logos/carhartt.jpg";
theImages[7] = new Image();
theImages[7].src = "/images/logos/current.jpg";
theImages[8] = new Image();
theImages[8].src = "/images/logos/dhl.jpg";
theImages[9] = new Image();
theImages[9].src = "/images/logos/du.jpg";
theImages[10] = new Image();
theImages[10].src = "/images/logos/emc.jpg";
theImages[11] = new Image();
theImages[11].src = "/images/logos/fox.jpg";
theImages[12] = new Image();
theImages[12].src = "/images/logos/gmaccm.jpg";
theImages[13] = new Image();
theImages[13].src = "/images/logos/graco.jpg";
theImages[14] = new Image();
theImages[14].src = "/images/logos/gsk.jpg";
theImages[15] = new Image();
theImages[15].src = "/images/logos/hobbylobby.jpg";
theImages[16] = new Image();
theImages[16].src = "/images/logos/hondalogo.gif";
theImages[17] = new Image();
theImages[17].src = "/images/logos/honeywell.jpg";
theImages[18] = new Image();
theImages[18].src = "/images/logos/horizonhobby.jpg";
theImages[19] = new Image();
theImages[19].src = "/images/logos/husqvarna.jpg";
theImages[20] = new Image();
theImages[20].src = "/images/logos/ibm.gif";
theImages[21] = new Image();
theImages[21].src = "/images/logos/ing.jpg";
theImages[22] = new Image();
theImages[22].src = "/images/logos/kia.jpg";
theImages[23] = new Image();
theImages[23].src = "/images/logos/lennox.jpg";
theImages[24] = new Image();
theImages[24].src = "/images/logos/mapics.jpg";
theImages[25] = new Image();
theImages[25].src = "/images/logos/monro.jpg";
theImages[26] = new Image();
theImages[26].src = "/images/logos/mrg.jpg";
theImages[27] = new Image();
theImages[27].src = "/images/logos/mtolive.jpg";
theImages[28] = new Image();
theImages[28].src = "/images/logos/nike.jpg";
theImages[29] = new Image();
theImages[29].src = "/images/logos/paramount.jpg";
theImages[30] = new Image();
theImages[30].src = "/images/logos/peacehealth.jpg";
theImages[31] = new Image();
theImages[31].src = "/images/logos/polo.jpg";
theImages[32] = new Image();
theImages[32].src = "/images/logos/purina.jpg";
theImages[33] = new Image();
theImages[33].src = "/images/logos/raybestos.jpg";
theImages[34] = new Image();
theImages[34].src = "/images/logos/revlon.jpg";
theImages[35] = new Image();
theImages[35].src = "/images/logos/riviera.jpg";
theImages[36] = new Image();
theImages[36].src = "/images/logos/roland.jpg";
theImages[37] = new Image();
theImages[37].src = "/images/logos/sauder.jpg";
theImages[38] = new Image();
theImages[38].src = "/images/logos/sierrapine.jpg";
theImages[39] = new Image();
theImages[39].src = "/images/logos/skippers.jpg";
theImages[40] = new Image();
theImages[40].src = "/images/logos/sonic.jpg";
theImages[41] = new Image();
theImages[41].src = "/images/logos/suzuki.jpg";
theImages[42] = new Image();
theImages[42].src = "/images/logos/thermofisher.gif";
theImages[43] = new Image();
theImages[43].src = "/images/logos/totes.jpg";
theImages[44] = new Image();
theImages[44].src = "/images/logos/tvo.jpg";
theImages[45] = new Image();
theImages[45].src = "/images/logos/twcable.jpg";
theImages[46] = new Image();
theImages[46].src = "/images/logos/tyson.jpg";
theImages[47] = new Image();
theImages[47].src = "/images/logos/zenith.jpg";
theImages[48] = new Image();
theImages[48].src = "/images/logos/zurich.jpg";

function disp_img(w) {
   if (c == 49)
      c = 1;
   document.ani.src = theImages[c].src;
   c++;
   }

t = setInterval("disp_img(c)", 1700);
